blob: 8f1c6b639ac126374f1e0552dfb4e4af01834cf4 [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);
Xin Longf48ef4c2017-07-23 09:34:27 +080072static struct sctp_cookie_param *sctp_pack_cookie(
73 const struct sctp_endpoint *ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 const struct sctp_association *asoc,
75 const struct sctp_chunk *init_chunk,
76 int *cookie_len,
77 const __u8 *raw_addrs, int addrs_len);
78static int sctp_process_param(struct sctp_association *asoc,
79 union sctp_params param,
80 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +010081 gfp_t gfp);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -050082static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
83 const void *data);
stephen hemminger6daaf0d2014-01-09 22:31:11 -080084static void *sctp_addto_chunk_fixed(struct sctp_chunk *, int len,
85 const void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Vlad Yasevich072017b2013-08-09 22:05:36 -040087/* Control chunk destructor */
88static void sctp_control_release_owner(struct sk_buff *skb)
89{
90 /*TODO: do memory release */
91}
92
93static void sctp_control_set_owner_w(struct sctp_chunk *chunk)
94{
95 struct sctp_association *asoc = chunk->asoc;
96 struct sk_buff *skb = chunk->skb;
97
98 /* TODO: properly account for control chunks.
99 * To do it right we'll need:
100 * 1) endpoint if association isn't known.
101 * 2) proper memory accounting.
102 *
103 * For now don't do anything for now.
104 */
105 skb->sk = asoc ? asoc->base.sk : NULL;
106 skb->destructor = sctp_control_release_owner;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* What was the inbound interface for this chunk? */
110int sctp_chunk_iif(const struct sctp_chunk *chunk)
111{
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -0300112 struct sk_buff *skb = chunk->skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -0300114 return SCTP_INPUT_CB(skb)->af->skb_iif(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117/* RFC 2960 3.3.2 Initiation (INIT) (1)
118 *
119 * Note 2: The ECN capable field is reserved for future use of
120 * Explicit Congestion Notification.
121 */
122static const struct sctp_paramhdr ecap_param = {
123 SCTP_PARAM_ECN_CAPABLE,
Harvey Harrison09640e632009-02-01 00:45:17 -0800124 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126static const struct sctp_paramhdr prsctp_param = {
127 SCTP_PARAM_FWD_TSN_SUPPORT,
Harvey Harrison09640e632009-02-01 00:45:17 -0800128 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Neil Horman5fa782c2010-04-28 10:30:59 +0000131/* A helper to initialize an op error inside a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * provided chunk, as most cause codes will be embedded inside an
133 * abort chunk.
134 */
Al Viro5bf2db02006-11-20 16:59:45 -0800135void sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +0800136 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 sctp_errhdr_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 __u16 len;
140
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900141 /* Cause code constants are now defined in network order. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 err.cause = cause_code;
143 len = sizeof(sctp_errhdr_t) + paylen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 err.length = htons(len);
Vlad Yasevich4a1c0102007-01-09 14:35:51 -0800145 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Neil Horman5fa782c2010-04-28 10:30:59 +0000148/* A helper to initialize an op error inside a
149 * provided chunk, as most cause codes will be embedded inside an
150 * abort chunk. Differs from sctp_init_cause in that it won't oops
151 * if there isn't enough space in the op error chunk
152 */
Ioan Orghicidb28aaf2012-07-13 07:16:37 +0000153static int sctp_init_cause_fixed(struct sctp_chunk *chunk, __be16 cause_code,
Neil Horman5fa782c2010-04-28 10:30:59 +0000154 size_t paylen)
155{
156 sctp_errhdr_t err;
157 __u16 len;
158
159 /* Cause code constants are now defined in network order. */
160 err.cause = cause_code;
161 len = sizeof(sctp_errhdr_t) + paylen;
162 err.length = htons(len);
163
Wei Yongjun2e3219b2010-05-17 22:51:58 -0700164 if (skb_tailroom(chunk->skb) < len)
Neil Horman5fa782c2010-04-28 10:30:59 +0000165 return -ENOSPC;
166 chunk->subh.err_hdr = sctp_addto_chunk_fixed(chunk,
167 sizeof(sctp_errhdr_t),
168 &err);
169 return 0;
170}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/* 3.3.2 Initiation (INIT) (1)
172 *
173 * This chunk is used to initiate a SCTP association between two
174 * endpoints. The format of the INIT chunk is shown below:
175 *
176 * 0 1 2 3
177 * 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
178 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
179 * | Type = 1 | Chunk Flags | Chunk Length |
180 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
181 * | Initiate Tag |
182 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
183 * | Advertised Receiver Window Credit (a_rwnd) |
184 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
185 * | Number of Outbound Streams | Number of Inbound Streams |
186 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
187 * | Initial TSN |
188 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
189 * \ \
190 * / Optional/Variable-Length Parameters /
191 * \ \
192 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
193 *
194 *
195 * The INIT chunk contains the following parameters. Unless otherwise
196 * noted, each parameter MUST only be included once in the INIT chunk.
197 *
198 * Fixed Parameters Status
199 * ----------------------------------------------
200 * Initiate Tag Mandatory
201 * Advertised Receiver Window Credit Mandatory
202 * Number of Outbound Streams Mandatory
203 * Number of Inbound Streams Mandatory
204 * Initial TSN Mandatory
205 *
206 * Variable Parameters Status Type Value
207 * -------------------------------------------------------------
208 * IPv4 Address (Note 1) Optional 5
209 * IPv6 Address (Note 1) Optional 6
210 * Cookie Preservative Optional 9
211 * Reserved for ECN Capable (Note 2) Optional 32768 (0x8000)
212 * Host Name Address (Note 3) Optional 11
213 * Supported Address Types (Note 4) Optional 12
214 */
215struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
216 const struct sctp_bind_addr *bp,
Al Virodd0fc662005-10-07 07:46:04 +0100217 gfp_t gfp, int vparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000219 struct net *net = sock_net(asoc->base.sk);
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200220 struct sctp_endpoint *ep = asoc->ep;
Xin Long4ae70c02017-06-30 11:52:21 +0800221 struct sctp_inithdr init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 union sctp_params addrs;
223 size_t chunksize;
224 struct sctp_chunk *retval = NULL;
225 int num_types, addrs_len = 0;
226 struct sctp_sock *sp;
Xin Longe925d502017-07-17 11:29:53 +0800227 struct sctp_supported_addrs_param sat;
Al Viro3dbe8652006-11-20 17:25:49 -0800228 __be16 types[2];
Xin Long85f6bd22017-07-17 11:29:55 +0800229 struct sctp_adaptation_ind_param aiparam;
Xin Long15328d92017-07-17 11:29:56 +0800230 struct sctp_supported_ext_param ext_param;
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700231 int num_ext = 0;
Xin Long10b3bf52017-07-14 22:07:33 +0800232 __u8 extensions[4];
Xin Long3c918702017-06-30 11:52:16 +0800233 struct sctp_paramhdr *auth_chunks = NULL,
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700234 *auth_hmacs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /* RFC 2960 3.3.2 Initiation (INIT) (1)
237 *
238 * Note 1: The INIT chunks can contain multiple addresses that
239 * can be IPv4 and/or IPv6 in any combination.
240 */
241 retval = NULL;
242
243 /* Convert the provided bind address list to raw format. */
244 addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
245
246 init.init_tag = htonl(asoc->c.my_vtag);
247 init.a_rwnd = htonl(asoc->rwnd);
248 init.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
249 init.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
250 init.initial_tsn = htonl(asoc->c.initial_tsn);
251
252 /* How many address types are needed? */
253 sp = sctp_sk(asoc->base.sk);
254 num_types = sp->pf->supported_addrs(sp, types);
255
Wei Yongjuna8170c32010-04-28 08:47:21 +0000256 chunksize = sizeof(init) + addrs_len;
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300257 chunksize += SCTP_PAD4(SCTP_SAT_LEN(num_types));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 chunksize += sizeof(ecap_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500259
Xin Long28aa4c22016-07-09 19:47:40 +0800260 if (asoc->prsctp_enable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800261 chunksize += sizeof(prsctp_param);
262
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700263 /* ADDIP: Section 4.2.7:
264 * An implementation supporting this extension [ADDIP] MUST list
265 * the ASCONF,the ASCONF-ACK, and the AUTH chunks in its INIT and
266 * INIT-ACK parameters.
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700267 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000268 if (net->sctp.addip_enable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700269 extensions[num_ext] = SCTP_CID_ASCONF;
270 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
271 num_ext += 2;
272 }
273
Xin Longc28445c2017-01-18 00:44:45 +0800274 if (asoc->reconf_enable) {
275 extensions[num_ext] = SCTP_CID_RECONF;
276 num_ext += 1;
277 }
278
malc6fc791e2009-03-12 09:49:20 +0000279 if (sp->adaptation_ind)
280 chunksize += sizeof(aiparam);
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 chunksize += vparam_len;
283
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700284 /* Account for AUTH related parameters */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200285 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700286 /* Add random parameter length*/
287 chunksize += sizeof(asoc->c.auth_random);
288
289 /* Add HMACS parameter length if any were defined */
Xin Long3c918702017-06-30 11:52:16 +0800290 auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700291 if (auth_hmacs->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300292 chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700293 else
294 auth_hmacs = NULL;
295
296 /* Add CHUNKS parameter length */
Xin Long3c918702017-06-30 11:52:16 +0800297 auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700298 if (auth_chunks->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300299 chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700300 else
Vlad Yasevich9baffaa2007-11-29 08:44:34 -0500301 auth_chunks = NULL;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700302
303 extensions[num_ext] = SCTP_CID_AUTH;
304 num_ext += 1;
305 }
306
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700307 /* If we have any extensions to report, account for that */
308 if (num_ext)
Xin Long15328d92017-07-17 11:29:56 +0800309 chunksize += SCTP_PAD4(sizeof(ext_param) + 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;
Xin Long15328d92017-07-17 11:29:56 +0800351 ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
352 sctp_addto_chunk(retval, sizeof(ext_param), &ext_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500353 sctp_addto_param(retval, num_ext, extensions);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700354 }
355
Xin Long28aa4c22016-07-09 19:47:40 +0800356 if (asoc->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700358
malc6fc791e2009-03-12 09:49:20 +0000359 if (sp->adaptation_ind) {
360 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
361 aiparam.param_hdr.length = htons(sizeof(aiparam));
362 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
363 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
364 }
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700365
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700366 /* Add SCTP-AUTH chunks to the parameter list */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200367 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700368 sctp_addto_chunk(retval, sizeof(asoc->c.auth_random),
369 asoc->c.auth_random);
370 if (auth_hmacs)
371 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
372 auth_hmacs);
373 if (auth_chunks)
374 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
375 auth_chunks);
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377nodata:
Jesper Juhla51482b2005-11-08 09:41:34 -0800378 kfree(addrs.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return retval;
380}
381
382struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
383 const struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +0100384 gfp_t gfp, int unkparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Xin Long4ae70c02017-06-30 11:52:21 +0800386 struct sctp_inithdr initack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct sctp_chunk *retval;
388 union sctp_params addrs;
malc6fc791e2009-03-12 09:49:20 +0000389 struct sctp_sock *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int addrs_len;
Xin Longf48ef4c2017-07-23 09:34:27 +0800391 struct sctp_cookie_param *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int cookie_len;
393 size_t chunksize;
Xin Long85f6bd22017-07-17 11:29:55 +0800394 struct sctp_adaptation_ind_param aiparam;
Xin Long15328d92017-07-17 11:29:56 +0800395 struct sctp_supported_ext_param ext_param;
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700396 int num_ext = 0;
Xin Long10b3bf52017-07-14 22:07:33 +0800397 __u8 extensions[4];
Xin Long3c918702017-06-30 11:52:16 +0800398 struct sctp_paramhdr *auth_chunks = NULL,
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700399 *auth_hmacs = NULL,
400 *auth_random = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 retval = NULL;
403
404 /* Note: there may be no addresses to embed. */
405 addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
406
407 initack.init_tag = htonl(asoc->c.my_vtag);
408 initack.a_rwnd = htonl(asoc->rwnd);
409 initack.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
410 initack.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
411 initack.initial_tsn = htonl(asoc->c.initial_tsn);
412
413 /* FIXME: We really ought to build the cookie right
414 * into the packet instead of allocating more fresh memory.
415 */
416 cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
417 addrs.v, addrs_len);
418 if (!cookie)
419 goto nomem_cookie;
420
421 /* Calculate the total size of allocation, include the reserved
422 * space for reporting unknown parameters if it is specified.
423 */
malc6fc791e2009-03-12 09:49:20 +0000424 sp = sctp_sk(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
426
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900427 /* Tell peer that we'll do ECN only if peer advertised such cap. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (asoc->peer.ecn_capable)
429 chunksize += sizeof(ecap_param);
430
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000431 if (asoc->peer.prsctp_capable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800432 chunksize += sizeof(prsctp_param);
433
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000434 if (asoc->peer.asconf_capable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700435 extensions[num_ext] = SCTP_CID_ASCONF;
436 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
437 num_ext += 2;
438 }
439
Xin Longc28445c2017-01-18 00:44:45 +0800440 if (asoc->peer.reconf_capable) {
441 extensions[num_ext] = SCTP_CID_RECONF;
442 num_ext += 1;
443 }
444
malc6fc791e2009-03-12 09:49:20 +0000445 if (sp->adaptation_ind)
446 chunksize += sizeof(aiparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700448 if (asoc->peer.auth_capable) {
Xin Long3c918702017-06-30 11:52:16 +0800449 auth_random = (struct sctp_paramhdr *)asoc->c.auth_random;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700450 chunksize += ntohs(auth_random->length);
451
Xin Long3c918702017-06-30 11:52:16 +0800452 auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700453 if (auth_hmacs->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300454 chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700455 else
456 auth_hmacs = NULL;
457
Xin Long3c918702017-06-30 11:52:16 +0800458 auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700459 if (auth_chunks->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300460 chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700461 else
462 auth_chunks = NULL;
463
464 extensions[num_ext] = SCTP_CID_AUTH;
465 num_ext += 1;
466 }
467
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500468 if (num_ext)
Xin Long15328d92017-07-17 11:29:56 +0800469 chunksize += SCTP_PAD4(sizeof(ext_param) + num_ext);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* Now allocate and fill out the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300472 retval = sctp_make_control(asoc, SCTP_CID_INIT_ACK, 0, chunksize, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 if (!retval)
474 goto nomem_chunk;
475
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400476 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
477 *
478 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
479 * HEARTBEAT ACK, * etc.) to the same destination transport
480 * address from which it received the DATA or control chunk
481 * to which it is replying.
482 *
483 * [INIT ACK back to where the INIT came from.]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 */
485 retval->transport = chunk->transport;
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 retval->subh.init_hdr =
488 sctp_addto_chunk(retval, sizeof(initack), &initack);
489 retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
490 sctp_addto_chunk(retval, cookie_len, cookie);
491 if (asoc->peer.ecn_capable)
492 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700493 if (num_ext) {
494 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
Xin Long15328d92017-07-17 11:29:56 +0800495 ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
496 sctp_addto_chunk(retval, sizeof(ext_param), &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
714/* Make a DATA chunk for the given association from the provided
715 * parameters. However, do not populate the data payload.
716 */
717struct sctp_chunk *sctp_make_datafrag_empty(struct sctp_association *asoc,
718 const struct sctp_sndrcvinfo *sinfo,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300719 int data_len, __u8 flags, __u16 ssn,
720 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct sctp_chunk *retval;
723 struct sctp_datahdr dp;
724 int chunk_len;
725
726 /* We assign the TSN as LATE as possible, not here when
727 * creating the chunk.
728 */
729 dp.tsn = 0;
730 dp.stream = htons(sinfo->sinfo_stream);
731 dp.ppid = sinfo->sinfo_ppid;
732
733 /* Set the flags for an unordered send. */
Ivan Skytte Jorgenseneaa5c542005-10-28 15:10:00 -0700734 if (sinfo->sinfo_flags & SCTP_UNORDERED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 flags |= SCTP_DATA_UNORDERED;
736 dp.ssn = 0;
737 } else
738 dp.ssn = htons(ssn);
739
740 chunk_len = sizeof(dp) + data_len;
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300741 retval = sctp_make_data(asoc, flags, chunk_len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!retval)
743 goto nodata;
744
745 retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
746 memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
747
748nodata:
749 return retval;
750}
751
752/* Create a selective ackowledgement (SACK) for the given
753 * association. This reports on which TSN's we've seen to date,
754 * including duplicates and gaps.
755 */
756struct sctp_chunk *sctp_make_sack(const struct sctp_association *asoc)
757{
758 struct sctp_chunk *retval;
759 struct sctp_sackhdr sack;
760 int len;
761 __u32 ctsn;
762 __u16 num_gabs, num_dup_tsns;
Neil Horman42448542012-06-30 03:04:26 +0000763 struct sctp_association *aptr = (struct sctp_association *)asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Vlad Yasevich02015182008-10-08 14:19:01 -0700765 struct sctp_gap_ack_block gabs[SCTP_MAX_GABS];
Neil Horman42448542012-06-30 03:04:26 +0000766 struct sctp_transport *trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Vlad Yasevich02015182008-10-08 14:19:01 -0700768 memset(gabs, 0, sizeof(gabs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 ctsn = sctp_tsnmap_get_ctsn(map);
Daniel Borkmannbb333812013-06-28 19:49:40 +0200770
771 pr_debug("%s: sackCTSNAck sent:0x%x\n", __func__, ctsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 /* How much room is needed in the chunk? */
Vlad Yasevich02015182008-10-08 14:19:01 -0700774 num_gabs = sctp_tsnmap_num_gabs(map, gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 num_dup_tsns = sctp_tsnmap_num_dups(map);
776
777 /* Initialize the SACK header. */
778 sack.cum_tsn_ack = htonl(ctsn);
779 sack.a_rwnd = htonl(asoc->a_rwnd);
780 sack.num_gap_ack_blocks = htons(num_gabs);
781 sack.num_dup_tsns = htons(num_dup_tsns);
782
783 len = sizeof(sack)
784 + sizeof(struct sctp_gap_ack_block) * num_gabs
785 + sizeof(__u32) * num_dup_tsns;
786
787 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300788 retval = sctp_make_control(asoc, SCTP_CID_SACK, 0, len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!retval)
790 goto nodata;
791
792 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
793 *
794 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
795 * HEARTBEAT ACK, etc.) to the same destination transport
796 * address from which it received the DATA or control chunk to
797 * which it is replying. This rule should also be followed if
798 * the endpoint is bundling DATA chunks together with the
799 * reply chunk.
800 *
801 * However, when acknowledging multiple DATA chunks received
802 * in packets from different source addresses in a single
803 * SACK, the SACK chunk may be transmitted to one of the
804 * destination transport addresses from which the DATA or
805 * control chunks being acknowledged were received.
806 *
807 * [BUG: We do not implement the following paragraph.
808 * Perhaps we should remember the last transport we used for a
809 * SACK and avoid that (if possible) if we have seen any
810 * duplicates. --piggy]
811 *
812 * When a receiver of a duplicate DATA chunk sends a SACK to a
813 * multi- homed endpoint it MAY be beneficial to vary the
814 * destination address and not use the source address of the
815 * DATA chunk. The reason being that receiving a duplicate
816 * from a multi-homed endpoint might indicate that the return
817 * path (as specified in the source address of the DATA chunk)
818 * for the SACK is broken.
819 *
820 * [Send to the address from which we last received a DATA chunk.]
821 */
822 retval->transport = asoc->peer.last_data_from;
823
824 retval->subh.sack_hdr =
825 sctp_addto_chunk(retval, sizeof(sack), &sack);
826
827 /* Add the gap ack block information. */
828 if (num_gabs)
829 sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
Vlad Yasevich02015182008-10-08 14:19:01 -0700830 gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Add the duplicate TSN information. */
Michele Baldessari196d6752012-12-01 04:49:42 +0000833 if (num_dup_tsns) {
834 aptr->stats.idupchunks += num_dup_tsns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
836 sctp_tsnmap_get_dups(map));
Michele Baldessari196d6752012-12-01 04:49:42 +0000837 }
Neil Horman42448542012-06-30 03:04:26 +0000838 /* Once we have a sack generated, check to see what our sack
839 * generation is, if its 0, reset the transports to 0, and reset
840 * the association generation to 1
841 *
842 * The idea is that zero is never used as a valid generation for the
843 * association so no transport will match after a wrap event like this,
844 * Until the next sack
845 */
846 if (++aptr->peer.sack_generation == 0) {
847 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
848 transports)
849 trans->sack_generation = 0;
850 aptr->peer.sack_generation = 1;
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852nodata:
853 return retval;
854}
855
856/* Make a SHUTDOWN chunk. */
857struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
858 const struct sctp_chunk *chunk)
859{
Xin Longe61e4052017-08-03 15:42:09 +0800860 struct sctp_shutdownhdr shut;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 struct sctp_chunk *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 __u32 ctsn;
863
864 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
865 shut.cum_tsn_ack = htonl(ctsn);
866
Vlad Yasevich072017b2013-08-09 22:05:36 -0400867 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN, 0,
Xin Longe61e4052017-08-03 15:42:09 +0800868 sizeof(shut), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!retval)
870 goto nodata;
871
872 retval->subh.shutdown_hdr =
873 sctp_addto_chunk(retval, sizeof(shut), &shut);
874
875 if (chunk)
876 retval->transport = chunk->transport;
877nodata:
878 return retval;
879}
880
881struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
882 const struct sctp_chunk *chunk)
883{
884 struct sctp_chunk *retval;
885
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300886 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0,
887 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
890 *
891 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
892 * HEARTBEAT ACK, * etc.) to the same destination transport
893 * address from which it * received the DATA or control chunk
894 * to which it is replying.
895 *
896 * [ACK back to where the SHUTDOWN came from.]
897 */
898 if (retval && chunk)
899 retval->transport = chunk->transport;
900
901 return retval;
902}
903
904struct sctp_chunk *sctp_make_shutdown_complete(
905 const struct sctp_association *asoc,
906 const struct sctp_chunk *chunk)
907{
908 struct sctp_chunk *retval;
909 __u8 flags = 0;
910
Jerome Forissier047a2422005-04-28 11:58:43 -0700911 /* Set the T-bit if we have no association (vtag will be
912 * reflected)
913 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
915
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300916 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags,
917 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
920 *
921 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
922 * HEARTBEAT ACK, * etc.) to the same destination transport
923 * address from which it * received the DATA or control chunk
924 * to which it is replying.
925 *
926 * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
927 * came from.]
928 */
929 if (retval && chunk)
930 retval->transport = chunk->transport;
931
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900932 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935/* Create an ABORT. Note that we set the T bit if we have no
Jerome Forissier047a2422005-04-28 11:58:43 -0700936 * association, except when responding to an INIT (sctpimpguide 2.41).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 */
938struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
939 const struct sctp_chunk *chunk,
940 const size_t hint)
941{
942 struct sctp_chunk *retval;
943 __u8 flags = 0;
944
Jerome Forissier047a2422005-04-28 11:58:43 -0700945 /* Set the T-bit if we have no association and 'chunk' is not
946 * an INIT (vtag will be reflected).
947 */
948 if (!asoc) {
949 if (chunk && chunk->chunk_hdr &&
950 chunk->chunk_hdr->type == SCTP_CID_INIT)
951 flags = 0;
952 else
953 flags = SCTP_CHUNK_FLAG_T;
954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300956 retval = sctp_make_control(asoc, SCTP_CID_ABORT, flags, hint,
957 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
960 *
961 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
962 * HEARTBEAT ACK, * etc.) to the same destination transport
963 * address from which it * received the DATA or control chunk
964 * to which it is replying.
965 *
966 * [ABORT back to where the offender came from.]
967 */
968 if (retval && chunk)
969 retval->transport = chunk->transport;
970
971 return retval;
972}
973
974/* Helper to create ABORT with a NO_USER_DATA error. */
975struct sctp_chunk *sctp_make_abort_no_data(
976 const struct sctp_association *asoc,
977 const struct sctp_chunk *chunk, __u32 tsn)
978{
979 struct sctp_chunk *retval;
Al Viro9f81bcd2006-11-20 17:26:34 -0800980 __be32 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t)
983 + sizeof(tsn));
984
985 if (!retval)
986 goto no_mem;
987
988 /* Put the tsn back into network byte order. */
989 payload = htonl(tsn);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +0800990 sctp_init_cause(retval, SCTP_ERROR_NO_DATA, sizeof(payload));
991 sctp_addto_chunk(retval, sizeof(payload), (const void *)&payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
994 *
995 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
996 * HEARTBEAT ACK, * etc.) to the same destination transport
997 * address from which it * received the DATA or control chunk
998 * to which it is replying.
999 *
1000 * [ABORT back to where the offender came from.]
1001 */
1002 if (chunk)
1003 retval->transport = chunk->transport;
1004
1005no_mem:
1006 return retval;
1007}
1008
1009/* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error. */
1010struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
Al Viro6ce8e9c2014-04-06 21:25:44 -04001011 struct msghdr *msg,
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001012 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
1014 struct sctp_chunk *retval;
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001015 void *payload = NULL;
1016 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001018 retval = sctp_make_abort(asoc, NULL, sizeof(sctp_errhdr_t) + paylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (!retval)
1020 goto err_chunk;
1021
1022 if (paylen) {
1023 /* Put the msg_iov together into payload. */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001024 payload = kmalloc(paylen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (!payload)
1026 goto err_payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Al Viro6ce8e9c2014-04-06 21:25:44 -04001028 err = memcpy_from_msg(payload, msg, paylen);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001029 if (err < 0)
1030 goto err_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001033 sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, paylen);
1034 sctp_addto_chunk(retval, paylen, payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 if (paylen)
1037 kfree(payload);
1038
1039 return retval;
1040
1041err_copy:
1042 kfree(payload);
1043err_payload:
1044 sctp_chunk_free(retval);
1045 retval = NULL;
1046err_chunk:
1047 return retval;
1048}
1049
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001050/* Append bytes to the end of a parameter. Will panic if chunk is not big
1051 * enough.
1052 */
1053static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
1054 const void *data)
1055{
1056 void *target;
1057 int chunklen = ntohs(chunk->chunk_hdr->length);
1058
1059 target = skb_put(chunk->skb, len);
1060
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001061 if (data)
1062 memcpy(target, data, len);
1063 else
1064 memset(target, 0, len);
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001065
1066 /* Adjust the chunk length field. */
1067 chunk->chunk_hdr->length = htons(chunklen + len);
1068 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1069
1070 return target;
1071}
1072
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001073/* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074struct sctp_chunk *sctp_make_abort_violation(
1075 const struct sctp_association *asoc,
1076 const struct sctp_chunk *chunk,
1077 const __u8 *payload,
1078 const size_t paylen)
1079{
1080 struct sctp_chunk *retval;
1081 struct sctp_paramhdr phdr;
1082
Xin Long3c918702017-06-30 11:52:16 +08001083 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t) + paylen +
1084 sizeof(phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (!retval)
1086 goto end;
1087
Xin Long3c918702017-06-30 11:52:16 +08001088 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, paylen +
1089 sizeof(phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 phdr.type = htons(chunk->chunk_hdr->type);
1092 phdr.length = chunk->chunk_hdr->length;
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001093 sctp_addto_chunk(retval, paylen, payload);
Xin Long3c918702017-06-30 11:52:16 +08001094 sctp_addto_param(retval, sizeof(phdr), &phdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096end:
1097 return retval;
1098}
1099
Wei Yongjunba016672008-09-30 05:32:24 -07001100struct sctp_chunk *sctp_make_violation_paramlen(
1101 const struct sctp_association *asoc,
1102 const struct sctp_chunk *chunk,
1103 struct sctp_paramhdr *param)
1104{
1105 struct sctp_chunk *retval;
1106 static const char error[] = "The following parameter had invalid length:";
1107 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t) +
Xin Long3c918702017-06-30 11:52:16 +08001108 sizeof(*param);
Wei Yongjunba016672008-09-30 05:32:24 -07001109
1110 retval = sctp_make_abort(asoc, chunk, payload_len);
1111 if (!retval)
1112 goto nodata;
1113
1114 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION,
Xin Long3c918702017-06-30 11:52:16 +08001115 sizeof(error) + sizeof(*param));
Wei Yongjunba016672008-09-30 05:32:24 -07001116 sctp_addto_chunk(retval, sizeof(error), error);
Xin Long3c918702017-06-30 11:52:16 +08001117 sctp_addto_param(retval, sizeof(*param), param);
Wei Yongjunba016672008-09-30 05:32:24 -07001118
1119nodata:
1120 return retval;
1121}
1122
Neil Hormande4594a2012-11-20 10:14:30 +00001123struct sctp_chunk *sctp_make_violation_max_retrans(
1124 const struct sctp_association *asoc,
1125 const struct sctp_chunk *chunk)
1126{
1127 struct sctp_chunk *retval;
1128 static const char error[] = "Association exceeded its max_retans count";
1129 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t);
1130
1131 retval = sctp_make_abort(asoc, chunk, payload_len);
1132 if (!retval)
1133 goto nodata;
1134
1135 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, sizeof(error));
1136 sctp_addto_chunk(retval, sizeof(error), error);
1137
1138nodata:
1139 return retval;
1140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/* Make a HEARTBEAT chunk. */
1143struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
Wei Yongjun92c73af2011-04-19 21:31:47 +00001144 const struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Wei Yongjun92c73af2011-04-19 21:31:47 +00001146 struct sctp_chunk *retval;
1147 sctp_sender_hb_info_t hbinfo;
1148
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001149 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT, 0,
1150 sizeof(hbinfo), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (!retval)
1153 goto nodata;
1154
Wei Yongjun92c73af2011-04-19 21:31:47 +00001155 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
1156 hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
1157 hbinfo.daddr = transport->ipaddr;
1158 hbinfo.sent_at = jiffies;
1159 hbinfo.hb_nonce = transport->hb_nonce;
1160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /* Cast away the 'const', as this is just telling the chunk
1162 * what transport it belongs to.
1163 */
1164 retval->transport = (struct sctp_transport *) transport;
Wei Yongjun92c73af2011-04-19 21:31:47 +00001165 retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
1166 &hbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168nodata:
1169 return retval;
1170}
1171
1172struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
1173 const struct sctp_chunk *chunk,
1174 const void *payload, const size_t paylen)
1175{
1176 struct sctp_chunk *retval;
1177
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001178 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen,
1179 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (!retval)
1181 goto nodata;
1182
1183 retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
1184
1185 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1186 *
1187 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1188 * HEARTBEAT ACK, * etc.) to the same destination transport
1189 * address from which it * received the DATA or control chunk
1190 * to which it is replying.
1191 *
1192 * [HBACK back to where the HEARTBEAT came from.]
1193 */
1194 if (chunk)
1195 retval->transport = chunk->transport;
1196
1197nodata:
1198 return retval;
1199}
1200
1201/* Create an Operation Error chunk with the specified space reserved.
1202 * This routine can be used for containing multiple causes in the chunk.
1203 */
1204static struct sctp_chunk *sctp_make_op_error_space(
1205 const struct sctp_association *asoc,
1206 const struct sctp_chunk *chunk,
1207 size_t size)
1208{
1209 struct sctp_chunk *retval;
1210
Vlad Yasevich072017b2013-08-09 22:05:36 -04001211 retval = sctp_make_control(asoc, SCTP_CID_ERROR, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001212 sizeof(sctp_errhdr_t) + size, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (!retval)
1214 goto nodata;
1215
1216 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1217 *
1218 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1219 * HEARTBEAT ACK, etc.) to the same destination transport
1220 * address from which it received the DATA or control chunk
1221 * to which it is replying.
1222 *
1223 */
1224 if (chunk)
1225 retval->transport = chunk->transport;
1226
1227nodata:
1228 return retval;
1229}
1230
Neil Horman5fa782c2010-04-28 10:30:59 +00001231/* Create an Operation Error chunk of a fixed size,
1232 * specifically, max(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT)
1233 * This is a helper function to allocate an error chunk for
1234 * for those invalid parameter codes in which we may not want
Jorrit Schippersd82603c2012-12-27 17:33:02 +01001235 * to report all the errors, if the incoming chunk is large
Neil Horman5fa782c2010-04-28 10:30:59 +00001236 */
1237static inline struct sctp_chunk *sctp_make_op_error_fixed(
1238 const struct sctp_association *asoc,
1239 const struct sctp_chunk *chunk)
1240{
1241 size_t size = asoc ? asoc->pathmtu : 0;
1242
1243 if (!size)
1244 size = SCTP_DEFAULT_MAXSEGMENT;
1245
1246 return sctp_make_op_error_space(asoc, chunk, size);
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/* Create an Operation Error chunk. */
1250struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
1251 const struct sctp_chunk *chunk,
Al Viro63706c52006-11-20 17:00:05 -08001252 __be16 cause_code, const void *payload,
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001253 size_t paylen, size_t reserve_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct sctp_chunk *retval;
1256
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001257 retval = sctp_make_op_error_space(asoc, chunk, paylen + reserve_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!retval)
1259 goto nodata;
1260
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001261 sctp_init_cause(retval, cause_code, paylen + reserve_tail);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001262 sctp_addto_chunk(retval, paylen, payload);
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001263 if (reserve_tail)
1264 sctp_addto_param(retval, reserve_tail, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266nodata:
1267 return retval;
1268}
1269
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001270struct sctp_chunk *sctp_make_auth(const struct sctp_association *asoc)
1271{
1272 struct sctp_chunk *retval;
1273 struct sctp_hmac *hmac_desc;
1274 struct sctp_authhdr auth_hdr;
1275 __u8 *hmac;
1276
1277 /* Get the first hmac that the peer told us to use */
1278 hmac_desc = sctp_auth_asoc_get_hmac(asoc);
1279 if (unlikely(!hmac_desc))
1280 return NULL;
1281
Vlad Yasevich072017b2013-08-09 22:05:36 -04001282 retval = sctp_make_control(asoc, SCTP_CID_AUTH, 0,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001283 hmac_desc->hmac_len + sizeof(sctp_authhdr_t),
1284 GFP_ATOMIC);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001285 if (!retval)
1286 return NULL;
1287
1288 auth_hdr.hmac_id = htons(hmac_desc->hmac_id);
1289 auth_hdr.shkey_id = htons(asoc->active_key_id);
1290
1291 retval->subh.auth_hdr = sctp_addto_chunk(retval, sizeof(sctp_authhdr_t),
1292 &auth_hdr);
1293
Johannes Bergaa9f9792017-06-13 14:28:18 +02001294 hmac = skb_put_zero(retval->skb, hmac_desc->hmac_len);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001295
1296 /* Adjust the chunk header to include the empty MAC */
1297 retval->chunk_hdr->length =
1298 htons(ntohs(retval->chunk_hdr->length) + hmac_desc->hmac_len);
1299 retval->chunk_end = skb_tail_pointer(retval->skb);
1300
1301 return retval;
1302}
1303
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305/********************************************************************
1306 * 2nd Level Abstractions
1307 ********************************************************************/
1308
1309/* Turn an skb into a chunk.
1310 * FIXME: Eventually move the structure directly inside the skb->cb[].
wangweidong3dc0a542013-10-26 16:06:31 +08001311 *
1312 * sctpimpguide-05.txt Section 2.8.2
1313 * M1) Each time a new DATA chunk is transmitted
1314 * set the 'TSN.Missing.Report' count for that TSN to 0. The
1315 * 'TSN.Missing.Report' count will be used to determine missing chunks
1316 * and when to fast retransmit.
1317 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
1319struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
1320 const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001321 struct sock *sk, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 struct sctp_chunk *retval;
1324
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001325 retval = kmem_cache_zalloc(sctp_chunk_cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 if (!retval)
1328 goto nodata;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001329 if (!sk)
1330 pr_debug("%s: chunkifying skb:%p w/o an sk\n", __func__, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
David S. Miller79af02c2005-07-08 21:47:49 -07001332 INIT_LIST_HEAD(&retval->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 retval->skb = skb;
1334 retval->asoc = (struct sctp_association *)asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 retval->singleton = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Neil Hormanc226ef92008-07-25 12:44:09 -04001337 retval->fast_retransmit = SCTP_CAN_FRTX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* Polish the bead hole. */
1340 INIT_LIST_HEAD(&retval->transmitted_list);
1341 INIT_LIST_HEAD(&retval->frag_list);
1342 SCTP_DBG_OBJCNT_INC(chunk);
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001343 refcount_set(&retval->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345nodata:
1346 return retval;
1347}
1348
1349/* Set chunk->source and dest based on the IP header in chunk->skb. */
1350void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
1351 union sctp_addr *dest)
1352{
Al Virof235fca2006-11-20 17:09:01 -08001353 memcpy(&chunk->source, src, sizeof(union sctp_addr));
Al Viro16b0a032006-11-20 17:13:38 -08001354 memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/* Extract the source address from a chunk. */
1358const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
1359{
1360 /* If we have a known transport, use that. */
1361 if (chunk->transport) {
Al Viro6a1e5f32006-11-20 17:12:25 -08001362 return &chunk->transport->ipaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 } else {
1364 /* Otherwise, extract it from the IP header. */
Al Viro6a1e5f32006-11-20 17:12:25 -08001365 return &chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367}
1368
1369/* Create a new chunk, setting the type and flags headers from the
1370 * arguments, reserving enough space for a 'paylen' byte payload.
1371 */
Vlad Yasevich072017b2013-08-09 22:05:36 -04001372static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001373 __u8 type, __u8 flags, int paylen,
1374 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 struct sctp_chunk *retval;
Xin Long922dbc52017-06-30 11:52:13 +08001377 struct sctp_chunkhdr *chunk_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 struct sk_buff *skb;
1379 struct sock *sk;
1380
1381 /* No need to allocate LL here, as this is only a chunk. */
Xin Long922dbc52017-06-30 11:52:13 +08001382 skb = alloc_skb(SCTP_PAD4(sizeof(*chunk_hdr) + paylen), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (!skb)
1384 goto nodata;
1385
1386 /* Make room for the chunk header. */
Xin Long922dbc52017-06-30 11:52:13 +08001387 chunk_hdr = (struct sctp_chunkhdr *)skb_put(skb, sizeof(*chunk_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 chunk_hdr->type = type;
1389 chunk_hdr->flags = flags;
Xin Long922dbc52017-06-30 11:52:13 +08001390 chunk_hdr->length = htons(sizeof(*chunk_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 sk = asoc ? asoc->base.sk : NULL;
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001393 retval = sctp_chunkify(skb, asoc, sk, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (!retval) {
1395 kfree_skb(skb);
1396 goto nodata;
1397 }
1398
1399 retval->chunk_hdr = chunk_hdr;
Xin Long922dbc52017-06-30 11:52:13 +08001400 retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(*chunk_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001402 /* Determine if the chunk needs to be authenticated */
1403 if (sctp_auth_send_cid(type, asoc))
1404 retval->auth = 1;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return retval;
1407nodata:
1408 return NULL;
1409}
1410
Vlad Yasevich072017b2013-08-09 22:05:36 -04001411static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001412 __u8 flags, int paylen, gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001413{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001414 return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001415}
1416
1417static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001418 __u8 type, __u8 flags, int paylen,
1419 gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001420{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001421 struct sctp_chunk *chunk;
Vlad Yasevich072017b2013-08-09 22:05:36 -04001422
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001423 chunk = _sctp_make_chunk(asoc, type, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001424 if (chunk)
1425 sctp_control_set_owner_w(chunk);
1426
1427 return chunk;
1428}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430/* Release the memory occupied by a chunk. */
1431static void sctp_chunk_destroy(struct sctp_chunk *chunk)
1432{
Vlad Yasevicha08de642007-12-20 14:11:47 -08001433 BUG_ON(!list_empty(&chunk->list));
1434 list_del_init(&chunk->transmitted_list);
1435
Daniel Borkmannc4856582014-03-04 16:35:51 +01001436 consume_skb(chunk->skb);
1437 consume_skb(chunk->auth_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 SCTP_DBG_OBJCNT_DEC(chunk);
1440 kmem_cache_free(sctp_chunk_cachep, chunk);
1441}
1442
1443/* Possibly, free the chunk. */
1444void sctp_chunk_free(struct sctp_chunk *chunk)
1445{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /* Release our reference on the message tracker. */
1447 if (chunk->msg)
1448 sctp_datamsg_put(chunk->msg);
1449
1450 sctp_chunk_put(chunk);
1451}
1452
1453/* Grab a reference to the chunk. */
1454void sctp_chunk_hold(struct sctp_chunk *ch)
1455{
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001456 refcount_inc(&ch->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457}
1458
1459/* Release a reference to the chunk. */
1460void sctp_chunk_put(struct sctp_chunk *ch)
1461{
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001462 if (refcount_dec_and_test(&ch->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 sctp_chunk_destroy(ch);
1464}
1465
1466/* Append bytes to the end of a chunk. Will panic if chunk is not big
1467 * enough.
1468 */
1469void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
1470{
1471 void *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 int chunklen = ntohs(chunk->chunk_hdr->length);
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03001473 int padlen = SCTP_PAD4(chunklen) - chunklen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
yuan linyub952f4d2017-06-18 22:52:04 +08001475 skb_put_zero(chunk->skb, padlen);
Johannes Berg59ae1d12017-06-16 14:29:20 +02001476 target = skb_put_data(chunk->skb, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /* Adjust the chunk length field. */
1479 chunk->chunk_hdr->length = htons(chunklen + padlen + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001480 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 return target;
1483}
1484
Neil Horman5fa782c2010-04-28 10:30:59 +00001485/* Append bytes to the end of a chunk. Returns NULL if there isn't sufficient
1486 * space in the chunk
1487 */
stephen hemminger6daaf0d2014-01-09 22:31:11 -08001488static void *sctp_addto_chunk_fixed(struct sctp_chunk *chunk,
1489 int len, const void *data)
Neil Horman5fa782c2010-04-28 10:30:59 +00001490{
Wei Yongjun2e3219b2010-05-17 22:51:58 -07001491 if (skb_tailroom(chunk->skb) >= len)
Neil Horman5fa782c2010-04-28 10:30:59 +00001492 return sctp_addto_chunk(chunk, len, data);
1493 else
1494 return NULL;
1495}
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497/* Append bytes from user space to the end of a chunk. Will panic if
1498 * chunk is not big enough.
1499 * Returns a kernel err value.
1500 */
Al Viroe0eb0932014-11-15 01:11:23 -05001501int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len,
1502 struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Al Viroe0eb0932014-11-15 01:11:23 -05001504 void *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 /* Make room in chunk for data. */
1507 target = skb_put(chunk->skb, len);
1508
1509 /* Copy data (whole iovec) into chunk */
Al Viro3b6d4db2017-02-17 23:17:41 -05001510 if (!copy_from_iter_full(target, len, from))
Al Viroe0eb0932014-11-15 01:11:23 -05001511 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /* Adjust the chunk length field. */
1514 chunk->chunk_hdr->length =
1515 htons(ntohs(chunk->chunk_hdr->length) + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001516 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Al Viroe0eb0932014-11-15 01:11:23 -05001518 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521/* Helper function to assign a TSN if needed. This assumes that both
1522 * the data_hdr and association have already been assigned.
1523 */
1524void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
1525{
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001526 struct sctp_datamsg *msg;
1527 struct sctp_chunk *lchunk;
1528 struct sctp_stream *stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 __u16 ssn;
1530 __u16 sid;
1531
1532 if (chunk->has_ssn)
1533 return;
1534
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001535 /* All fragments will be on the same stream */
1536 sid = ntohs(chunk->subh.data_hdr->stream);
Xin Longcee360a2017-05-31 16:36:31 +08001537 stream = &chunk->asoc->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001539 /* Now assign the sequence number to the entire message.
1540 * All fragments must have the same stream sequence number.
1541 */
1542 msg = chunk->msg;
1543 list_for_each_entry(lchunk, &msg->chunks, frag_list) {
1544 if (lchunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
1545 ssn = 0;
1546 } else {
1547 if (lchunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
Xin Longa8386312017-01-06 22:18:33 +08001548 ssn = sctp_ssn_next(stream, out, sid);
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001549 else
Xin Longa8386312017-01-06 22:18:33 +08001550 ssn = sctp_ssn_peek(stream, out, sid);
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001551 }
1552
1553 lchunk->subh.data_hdr->ssn = htons(ssn);
1554 lchunk->has_ssn = 1;
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558/* Helper function to assign a TSN if needed. This assumes that both
1559 * the data_hdr and association have already been assigned.
1560 */
1561void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
1562{
1563 if (!chunk->has_tsn) {
1564 /* This is the last possible instant to
1565 * assign a TSN.
1566 */
1567 chunk->subh.data_hdr->tsn =
1568 htonl(sctp_association_get_next_tsn(chunk->asoc));
1569 chunk->has_tsn = 1;
1570 }
1571}
1572
1573/* Create a CLOSED association to use with an incoming packet. */
1574struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001575 struct sctp_chunk *chunk,
Al Virodd0fc662005-10-07 07:46:04 +01001576 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
1578 struct sctp_association *asoc;
1579 struct sk_buff *skb;
1580 sctp_scope_t scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 /* Create the bare association. */
1583 scope = sctp_scope(sctp_source(chunk));
1584 asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
1585 if (!asoc)
1586 goto nodata;
1587 asoc->temp = 1;
1588 skb = chunk->skb;
1589 /* Create an entry for the source address of the packet. */
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -03001590 SCTP_INPUT_CB(skb)->af->from_skb(&asoc->c.peer_addr, skb, 1);
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592nodata:
1593 return asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596/* Build a cookie representing asoc.
1597 * This INCLUDES the param header needed to put the cookie in the INIT ACK.
1598 */
Xin Longf48ef4c2017-07-23 09:34:27 +08001599static struct sctp_cookie_param *sctp_pack_cookie(
1600 const struct sctp_endpoint *ep,
1601 const struct sctp_association *asoc,
1602 const struct sctp_chunk *init_chunk,
1603 int *cookie_len,
1604 const __u8 *raw_addrs, int addrs_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 struct sctp_signed_cookie *cookie;
Xin Longf48ef4c2017-07-23 09:34:27 +08001607 struct sctp_cookie_param *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int headersize, bodysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001610 /* Header size is static data prior to the actual cookie, including
1611 * any padding.
1612 */
Xin Long3c918702017-06-30 11:52:16 +08001613 headersize = sizeof(struct sctp_paramhdr) +
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001614 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001615 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 bodysize = sizeof(struct sctp_cookie)
1617 + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
1618
1619 /* Pad out the cookie to a multiple to make the signature
1620 * functions simpler to write.
1621 */
1622 if (bodysize % SCTP_COOKIE_MULTIPLE)
1623 bodysize += SCTP_COOKIE_MULTIPLE
1624 - (bodysize % SCTP_COOKIE_MULTIPLE);
1625 *cookie_len = headersize + bodysize;
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 /* Clear this memory since we are sending this data structure
1628 * out on the network.
1629 */
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02001630 retval = kzalloc(*cookie_len, GFP_ATOMIC);
1631 if (!retval)
1632 goto nodata;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 cookie = (struct sctp_signed_cookie *) retval->body;
1635
1636 /* Set up the parameter header. */
1637 retval->p.type = SCTP_PARAM_STATE_COOKIE;
1638 retval->p.length = htons(*cookie_len);
1639
1640 /* Copy the cookie part of the association itself. */
1641 cookie->c = asoc->c;
1642 /* Save the raw address list length in the cookie. */
1643 cookie->c.raw_addr_list_len = addrs_len;
1644
1645 /* Remember PR-SCTP capability. */
1646 cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
1647
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001648 /* Save adaptation indication in the cookie. */
1649 cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /* Set an expiration time for the cookie. */
Daniel Borkmann52db8822013-06-25 18:17:27 +02001652 cookie->c.expiration = ktime_add(asoc->cookie_life,
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001653 ktime_get_real());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 /* Copy the peer's init packet. */
1656 memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
1657 ntohs(init_chunk->chunk_hdr->length));
1658
1659 /* Copy the raw local address list of the association. */
1660 memcpy((__u8 *)&cookie->c.peer_init[0] +
1661 ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
1662
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001663 if (sctp_sk(ep->base.sk)->hmac) {
Herbert Xu5821c762016-01-24 21:20:12 +08001664 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1665 int err;
Herbert Xu1b489e12006-08-20 15:07:14 +10001666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 /* Sign the message. */
Herbert Xu5821c762016-01-24 21:20:12 +08001668 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1669 desc->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Herbert Xu5821c762016-01-24 21:20:12 +08001671 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1672 sizeof(ep->secret_key)) ?:
1673 crypto_shash_digest(desc, (u8 *)&cookie->c, bodysize,
1674 cookie->signature);
1675 shash_desc_zero(desc);
1676 if (err)
Herbert Xu1b489e12006-08-20 15:07:14 +10001677 goto free_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 return retval;
Herbert Xu1b489e12006-08-20 15:07:14 +10001681
1682free_cookie:
1683 kfree(retval);
1684nodata:
1685 *cookie_len = 0;
1686 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
1689/* Unpack the cookie from COOKIE ECHO chunk, recreating the association. */
1690struct sctp_association *sctp_unpack_cookie(
1691 const struct sctp_endpoint *ep,
1692 const struct sctp_association *asoc,
Al Virodd0fc662005-10-07 07:46:04 +01001693 struct sctp_chunk *chunk, gfp_t gfp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 int *error, struct sctp_chunk **errp)
1695{
1696 struct sctp_association *retval = NULL;
1697 struct sctp_signed_cookie *cookie;
1698 struct sctp_cookie *bear_cookie;
1699 int headersize, bodysize, fixed_size;
Vlad Yasevich313e7b42006-01-17 11:55:57 -08001700 __u8 *digest = ep->digest;
Daniel Borkmann570617e2013-02-12 05:15:33 +00001701 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 sctp_scope_t scope;
1703 struct sk_buff *skb = chunk->skb;
Daniel Borkmann52db8822013-06-25 18:17:27 +02001704 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001706 /* Header size is static data prior to the actual cookie, including
1707 * any padding.
1708 */
Xin Long922dbc52017-06-30 11:52:13 +08001709 headersize = sizeof(struct sctp_chunkhdr) +
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001710 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001711 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
1713 fixed_size = headersize + sizeof(struct sctp_cookie);
1714
1715 /* Verify that the chunk looks like it even has a cookie.
1716 * There must be enough room for our cookie and our peer's
1717 * INIT chunk.
1718 */
1719 len = ntohs(chunk->chunk_hdr->length);
1720 if (len < fixed_size + sizeof(struct sctp_chunkhdr))
1721 goto malformed;
1722
1723 /* Verify that the cookie has been padded out. */
1724 if (bodysize % SCTP_COOKIE_MULTIPLE)
1725 goto malformed;
1726
1727 /* Process the cookie. */
1728 cookie = chunk->subh.cookie_hdr;
1729 bear_cookie = &cookie->c;
1730
1731 if (!sctp_sk(ep->base.sk)->hmac)
1732 goto no_hmac;
1733
1734 /* Check the signature. */
Herbert Xu5821c762016-01-24 21:20:12 +08001735 {
1736 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1737 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Herbert Xu5821c762016-01-24 21:20:12 +08001739 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1740 desc->flags = 0;
1741
1742 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1743 sizeof(ep->secret_key)) ?:
1744 crypto_shash_digest(desc, (u8 *)bear_cookie, bodysize,
1745 digest);
1746 shash_desc_zero(desc);
1747
1748 if (err) {
1749 *error = -SCTP_IERROR_NOMEM;
1750 goto fail;
1751 }
Herbert Xu1b489e12006-08-20 15:07:14 +10001752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
Daniel Borkmann570617e2013-02-12 05:15:33 +00001755 *error = -SCTP_IERROR_BAD_SIG;
1756 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758
1759no_hmac:
1760 /* IG Section 2.35.2:
1761 * 3) Compare the port numbers and the verification tag contained
1762 * within the COOKIE ECHO chunk to the actual port numbers and the
1763 * verification tag within the SCTP common header of the received
1764 * packet. If these values do not match the packet MUST be silently
1765 * discarded,
1766 */
1767 if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
1768 *error = -SCTP_IERROR_BAD_TAG;
1769 goto fail;
1770 }
1771
Al Viro9b1dfad2006-11-20 17:09:17 -08001772 if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
1774 *error = -SCTP_IERROR_BAD_PORTS;
1775 goto fail;
1776 }
1777
1778 /* Check to see if the cookie is stale. If there is already
1779 * an association, there is no need to check cookie's expiration
1780 * for init collision case of lost COOKIE ACK.
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001781 * If skb has been timestamped, then use the stamp, otherwise
1782 * use current time. This introduces a small possibility that
1783 * that a cookie may be considered expired, but his would only slow
1784 * down the new association establishment instead of every packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 */
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001786 if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
Daniel Borkmann52db8822013-06-25 18:17:27 +02001787 kt = skb_get_ktime(skb);
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001788 else
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001789 kt = ktime_get_real();
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001790
Daniel Borkmann67cb9362014-06-11 18:19:28 +02001791 if (!asoc && ktime_before(bear_cookie->expiration, kt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /*
1793 * Section 3.3.10.3 Stale Cookie Error (3)
1794 *
1795 * Cause of error
1796 * ---------------
1797 * Stale Cookie Error: Indicates the receipt of a valid State
1798 * Cookie that has expired.
1799 */
1800 len = ntohs(chunk->chunk_hdr->length);
1801 *errp = sctp_make_op_error_space(asoc, chunk, len);
1802 if (*errp) {
Daniel Borkmann52db8822013-06-25 18:17:27 +02001803 suseconds_t usecs = ktime_to_us(ktime_sub(kt, bear_cookie->expiration));
Al Viro34bcca22006-11-20 17:27:15 -08001804 __be32 n = htonl(usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 sctp_init_cause(*errp, SCTP_ERROR_STALE_COOKIE,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001807 sizeof(n));
1808 sctp_addto_chunk(*errp, sizeof(n), &n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 *error = -SCTP_IERROR_STALE_COOKIE;
1810 } else
1811 *error = -SCTP_IERROR_NOMEM;
1812
1813 goto fail;
1814 }
1815
1816 /* Make a new base association. */
1817 scope = sctp_scope(sctp_source(chunk));
1818 retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
1819 if (!retval) {
1820 *error = -SCTP_IERROR_NOMEM;
1821 goto fail;
1822 }
1823
1824 /* Set up our peer's port number. */
1825 retval->peer.port = ntohs(chunk->sctp_hdr->source);
1826
1827 /* Populate the association from the cookie. */
1828 memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
1829
1830 if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
1831 GFP_ATOMIC) < 0) {
1832 *error = -SCTP_IERROR_NOMEM;
1833 goto fail;
1834 }
1835
1836 /* Also, add the destination address. */
1837 if (list_empty(&retval->base.bind_addr.address_list)) {
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08001838 sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -03001839 sizeof(chunk->dest), SCTP_ADDR_SRC,
1840 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
1843 retval->next_tsn = retval->c.initial_tsn;
1844 retval->ctsn_ack_point = retval->next_tsn - 1;
1845 retval->addip_serial = retval->c.initial_tsn;
Xin Longcc16f002017-01-18 00:44:42 +08001846 retval->strreset_outseq = retval->c.initial_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 retval->adv_peer_ack_point = retval->ctsn_ack_point;
1848 retval->peer.prsctp_capable = retval->c.prsctp_capable;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001849 retval->peer.adaptation_ind = retval->c.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 /* The INIT stuff will be done by the side effects. */
1852 return retval;
1853
1854fail:
1855 if (retval)
1856 sctp_association_free(retval);
1857
1858 return NULL;
1859
1860malformed:
1861 /* Yikes! The packet is either corrupt or deliberately
1862 * malformed.
1863 */
1864 *error = -SCTP_IERROR_MALFORMED;
1865 goto fail;
1866}
1867
1868/********************************************************************
1869 * 3rd Level Abstractions
1870 ********************************************************************/
1871
1872struct __sctp_missing {
Al Viro9f81bcd2006-11-20 17:26:34 -08001873 __be32 num_missing;
1874 __be16 type;
Eric Dumazetbc105022010-06-03 03:21:52 -07001875} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877/*
1878 * Report a missing mandatory parameter.
1879 */
1880static int sctp_process_missing_param(const struct sctp_association *asoc,
Xin Long34b4e292017-06-30 11:52:17 +08001881 enum sctp_param paramtype,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 struct sctp_chunk *chunk,
1883 struct sctp_chunk **errp)
1884{
1885 struct __sctp_missing report;
1886 __u16 len;
1887
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03001888 len = SCTP_PAD4(sizeof(report));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 /* Make an ERROR chunk, preparing enough room for
1891 * returning multiple unknown parameters.
1892 */
1893 if (!*errp)
1894 *errp = sctp_make_op_error_space(asoc, chunk, len);
1895
1896 if (*errp) {
1897 report.num_missing = htonl(1);
1898 report.type = paramtype;
Vlad Yasevichebdfcad2007-01-15 19:12:31 -08001899 sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001900 sizeof(report));
1901 sctp_addto_chunk(*errp, sizeof(report), &report);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903
1904 /* Stop processing this chunk. */
1905 return 0;
1906}
1907
1908/* Report an Invalid Mandatory Parameter. */
1909static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
1910 struct sctp_chunk *chunk,
1911 struct sctp_chunk **errp)
1912{
1913 /* Invalid Mandatory Parameter Error has no payload. */
1914
1915 if (!*errp)
1916 *errp = sctp_make_op_error_space(asoc, chunk, 0);
1917
1918 if (*errp)
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001919 sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /* Stop processing this chunk. */
1922 return 0;
1923}
1924
1925static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
1926 struct sctp_paramhdr *param,
1927 const struct sctp_chunk *chunk,
1928 struct sctp_chunk **errp)
1929{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001930 /* This is a fatal error. Any accumulated non-fatal errors are
1931 * not reported.
1932 */
1933 if (*errp)
1934 sctp_chunk_free(*errp);
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 /* Create an error chunk and fill it in with our payload. */
Wei Yongjunba016672008-09-30 05:32:24 -07001937 *errp = sctp_make_violation_paramlen(asoc, chunk, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 return 0;
1940}
1941
1942
1943/* Do not attempt to handle the HOST_NAME parm. However, do
1944 * send back an indicator to the peer.
1945 */
1946static int sctp_process_hn_param(const struct sctp_association *asoc,
1947 union sctp_params param,
1948 struct sctp_chunk *chunk,
1949 struct sctp_chunk **errp)
1950{
1951 __u16 len = ntohs(param.p->length);
1952
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001953 /* Processing of the HOST_NAME parameter will generate an
1954 * ABORT. If we've accumulated any non-fatal errors, they
1955 * would be unrecognized parameters and we should not include
1956 * them in the ABORT.
1957 */
1958 if (*errp)
1959 sctp_chunk_free(*errp);
1960
1961 *errp = sctp_make_op_error_space(asoc, chunk, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001963 if (*errp) {
1964 sctp_init_cause(*errp, SCTP_ERROR_DNS_FAILED, len);
1965 sctp_addto_chunk(*errp, len, param.v);
1966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 /* Stop processing this chunk. */
1969 return 0;
1970}
1971
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00001972static int sctp_verify_ext_param(struct net *net, union sctp_params param)
Vlad Yasevichd6701192007-12-20 14:13:31 -08001973{
Xin Long3c918702017-06-30 11:52:16 +08001974 __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichd6701192007-12-20 14:13:31 -08001975 int have_auth = 0;
1976 int have_asconf = 0;
1977 int i;
1978
1979 for (i = 0; i < num_ext; i++) {
1980 switch (param.ext->chunks[i]) {
wangweidongf7010e62013-12-23 12:16:52 +08001981 case SCTP_CID_AUTH:
1982 have_auth = 1;
1983 break;
1984 case SCTP_CID_ASCONF:
1985 case SCTP_CID_ASCONF_ACK:
1986 have_asconf = 1;
1987 break;
Vlad Yasevichd6701192007-12-20 14:13:31 -08001988 }
1989 }
1990
1991 /* ADD-IP Security: The draft requires us to ABORT or ignore the
1992 * INIT/INIT-ACK if ADD-IP is listed, but AUTH is not. Do this
1993 * only if ADD-IP is turned on and we are not backward-compatible
1994 * mode.
1995 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001996 if (net->sctp.addip_noauth)
Vlad Yasevichd6701192007-12-20 14:13:31 -08001997 return 1;
1998
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001999 if (net->sctp.addip_enable && !have_auth && have_asconf)
Vlad Yasevichd6701192007-12-20 14:13:31 -08002000 return 0;
2001
2002 return 1;
2003}
2004
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002005static void sctp_process_ext_param(struct sctp_association *asoc,
2006 union sctp_params param)
2007{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002008 struct net *net = sock_net(asoc->base.sk);
Xin Long3c918702017-06-30 11:52:16 +08002009 __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002010 int i;
2011
2012 for (i = 0; i < num_ext; i++) {
2013 switch (param.ext->chunks[i]) {
Xin Longc28445c2017-01-18 00:44:45 +08002014 case SCTP_CID_RECONF:
2015 if (asoc->reconf_enable &&
2016 !asoc->peer.reconf_capable)
2017 asoc->peer.reconf_capable = 1;
2018 break;
wangweidongf7010e62013-12-23 12:16:52 +08002019 case SCTP_CID_FWD_TSN:
Xin Long28aa4c22016-07-09 19:47:40 +08002020 if (asoc->prsctp_enable && !asoc->peer.prsctp_capable)
2021 asoc->peer.prsctp_capable = 1;
wangweidongf7010e62013-12-23 12:16:52 +08002022 break;
2023 case SCTP_CID_AUTH:
2024 /* if the peer reports AUTH, assume that he
2025 * supports AUTH.
2026 */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002027 if (asoc->ep->auth_enable)
wangweidongf7010e62013-12-23 12:16:52 +08002028 asoc->peer.auth_capable = 1;
2029 break;
2030 case SCTP_CID_ASCONF:
2031 case SCTP_CID_ASCONF_ACK:
2032 if (net->sctp.addip_enable)
2033 asoc->peer.asconf_capable = 1;
2034 break;
2035 default:
2036 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002037 }
2038 }
2039}
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041/* RFC 3.2.1 & the Implementers Guide 2.2.
2042 *
2043 * The Parameter Types are encoded such that the
2044 * highest-order two bits specify the action that must be
2045 * taken if the processing endpoint does not recognize the
2046 * Parameter Type.
2047 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002048 * 00 - Stop processing this parameter; do not process any further
2049 * parameters within this chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002051 * 01 - Stop processing this parameter, do not process any further
2052 * parameters within this chunk, and report the unrecognized
2053 * parameter in an 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 *
2055 * 10 - Skip this parameter and continue processing.
2056 *
2057 * 11 - Skip this parameter and continue processing but
2058 * report the unrecognized parameter in an
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002059 * 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 *
2061 * Return value:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002062 * SCTP_IERROR_NO_ERROR - continue with the chunk
2063 * SCTP_IERROR_ERROR - stop and report an error.
2064 * SCTP_IERROR_NOMEME - out of memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002066static sctp_ierror_t sctp_process_unk_param(const struct sctp_association *asoc,
2067 union sctp_params param,
2068 struct sctp_chunk *chunk,
2069 struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002071 int retval = SCTP_IERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
2074 case SCTP_PARAM_ACTION_DISCARD:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002075 retval = SCTP_IERROR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 break;
2077 case SCTP_PARAM_ACTION_SKIP:
2078 break;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002079 case SCTP_PARAM_ACTION_DISCARD_ERR:
2080 retval = SCTP_IERROR_ERROR;
2081 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 case SCTP_PARAM_ACTION_SKIP_ERR:
2083 /* Make an ERROR chunk, preparing enough room for
2084 * returning multiple unknown parameters.
2085 */
2086 if (NULL == *errp)
Neil Horman5fa782c2010-04-28 10:30:59 +00002087 *errp = sctp_make_op_error_fixed(asoc, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 if (*errp) {
Jiri Bohac2205a6e2011-02-17 13:12:08 +00002090 if (!sctp_init_cause_fixed(*errp, SCTP_ERROR_UNKNOWN_PARAM,
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03002091 SCTP_PAD4(ntohs(param.p->length))))
Jiri Bohac2205a6e2011-02-17 13:12:08 +00002092 sctp_addto_chunk_fixed(*errp,
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03002093 SCTP_PAD4(ntohs(param.p->length)),
Jiri Bohac2205a6e2011-02-17 13:12:08 +00002094 param.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 } else {
2096 /* If there is no memory for generating the ERROR
2097 * report as specified, an ABORT will be triggered
2098 * to the peer and the association won't be
2099 * established.
2100 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002101 retval = SCTP_IERROR_NOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 break;
2104 default:
2105 break;
2106 }
2107
2108 return retval;
2109}
2110
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002111/* Verify variable length parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 * Return values:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002113 * SCTP_IERROR_ABORT - trigger an ABORT
2114 * SCTP_IERROR_NOMEM - out of memory (abort)
2115 * SCTP_IERROR_ERROR - stop processing, trigger an ERROR
2116 * SCTP_IERROR_NO_ERROR - continue with the chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 */
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002118static sctp_ierror_t sctp_verify_param(struct net *net,
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002119 const struct sctp_endpoint *ep,
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002120 const struct sctp_association *asoc,
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002121 union sctp_params param,
Xin Long6d85e682017-06-30 11:52:14 +08002122 enum sctp_cid cid,
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002123 struct sctp_chunk *chunk,
2124 struct sctp_chunk **err_chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125{
Wei Yongjun72da7b32008-04-12 18:39:19 -07002126 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002127 int retval = SCTP_IERROR_NO_ERROR;
Wei Yongjun72da7b32008-04-12 18:39:19 -07002128 __u16 n_elt, id = 0;
2129 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 /* FIXME - This routine is not looking at each parameter per the
2132 * chunk type, i.e., unrecognized parameters should be further
2133 * identified based on the chunk id.
2134 */
2135
2136 switch (param.p->type) {
2137 case SCTP_PARAM_IPV4_ADDRESS:
2138 case SCTP_PARAM_IPV6_ADDRESS:
2139 case SCTP_PARAM_COOKIE_PRESERVATIVE:
2140 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2141 case SCTP_PARAM_STATE_COOKIE:
2142 case SCTP_PARAM_HEARTBEAT_INFO:
2143 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2144 case SCTP_PARAM_ECN_CAPABLE:
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002145 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yasevichd6701192007-12-20 14:13:31 -08002146 break;
2147
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002148 case SCTP_PARAM_SUPPORTED_EXT:
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002149 if (!sctp_verify_ext_param(net, param))
Vlad Yasevichd6701192007-12-20 14:13:31 -08002150 return SCTP_IERROR_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 break;
2152
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002153 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002154 if (net->sctp.addip_enable)
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002155 break;
2156 goto fallthrough;
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 case SCTP_PARAM_HOST_NAME_ADDRESS:
2159 /* Tell the peer, we won't support this param. */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002160 sctp_process_hn_param(asoc, param, chunk, err_chunk);
2161 retval = SCTP_IERROR_ABORT;
2162 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002165 if (ep->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002167 goto fallthrough;
2168
2169 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002170 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002171 goto fallthrough;
2172
2173 /* SCTP-AUTH: Secion 6.1
2174 * If the random number is not 32 byte long the association
2175 * MUST be aborted. The ABORT chunk SHOULD contain the error
2176 * cause 'Protocol Violation'.
2177 */
2178 if (SCTP_AUTH_RANDOM_LENGTH !=
Xin Long3c918702017-06-30 11:52:16 +08002179 ntohs(param.p->length) - sizeof(struct sctp_paramhdr)) {
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002180 sctp_process_inv_paramlength(asoc, param.p,
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002181 chunk, err_chunk);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002182 retval = SCTP_IERROR_ABORT;
2183 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002184 break;
2185
2186 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002187 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002188 goto fallthrough;
2189
2190 /* SCTP-AUTH: Section 3.2
2191 * The CHUNKS parameter MUST be included once in the INIT or
2192 * INIT-ACK chunk if the sender wants to receive authenticated
2193 * chunks. Its maximum length is 260 bytes.
2194 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002195 if (260 < ntohs(param.p->length)) {
2196 sctp_process_inv_paramlength(asoc, param.p,
2197 chunk, err_chunk);
2198 retval = SCTP_IERROR_ABORT;
2199 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002200 break;
2201
2202 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002203 if (!ep->auth_enable)
Wei Yongjun72da7b32008-04-12 18:39:19 -07002204 goto fallthrough;
2205
2206 hmacs = (struct sctp_hmac_algo_param *)param.p;
Xin Long3c918702017-06-30 11:52:16 +08002207 n_elt = (ntohs(param.p->length) -
2208 sizeof(struct sctp_paramhdr)) >> 1;
Wei Yongjun72da7b32008-04-12 18:39:19 -07002209
2210 /* SCTP-AUTH: Section 6.1
2211 * The HMAC algorithm based on SHA-1 MUST be supported and
2212 * included in the HMAC-ALGO parameter.
2213 */
2214 for (i = 0; i < n_elt; i++) {
2215 id = ntohs(hmacs->hmac_ids[i]);
2216
2217 if (id == SCTP_AUTH_HMAC_ID_SHA1)
2218 break;
2219 }
2220
2221 if (id != SCTP_AUTH_HMAC_ID_SHA1) {
2222 sctp_process_inv_paramlength(asoc, param.p, chunk,
2223 err_chunk);
2224 retval = SCTP_IERROR_ABORT;
2225 }
2226 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002227fallthrough:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 default:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002229 pr_debug("%s: unrecognized param:%d for chunk:%d\n",
2230 __func__, ntohs(param.p->type), cid);
2231
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002232 retval = sctp_process_unk_param(asoc, param, chunk, err_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 break;
2234 }
2235 return retval;
2236}
2237
2238/* Verify the INIT packet before we process it. */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002239int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep,
Xin Long6d85e682017-06-30 11:52:14 +08002240 const struct sctp_association *asoc, enum sctp_cid cid,
Xin Long01a992b2017-06-30 11:52:22 +08002241 struct sctp_init_chunk *peer_init,
2242 struct sctp_chunk *chunk, struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 union sctp_params param;
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002245 bool has_cookie = false;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002246 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002248 /* Check for missing mandatory parameters. Note: Initial TSN is
2249 * also mandatory, but is not checked here since the valid range
2250 * is 0..2**32-1. RFC4960, section 3.3.3.
2251 */
2252 if (peer_init->init_hdr.num_outbound_streams == 0 ||
2253 peer_init->init_hdr.num_inbound_streams == 0 ||
2254 peer_init->init_hdr.init_tag == 0 ||
2255 ntohl(peer_init->init_hdr.a_rwnd) < SCTP_DEFAULT_MINWINDOW)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002256 return sctp_process_inv_mandatory(asoc, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 sctp_walk_params(param, peer_init, init_hdr.params) {
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002259 if (param.p->type == SCTP_PARAM_STATE_COOKIE)
2260 has_cookie = true;
2261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 /* There is a possibility that a parameter length was bad and
2264 * in that case we would have stoped walking the parameters.
2265 * The current param.p would point at the bad one.
2266 * Current consensus on the mailing list is to generate a PROTOCOL
2267 * VIOLATION error. We build the ERROR chunk here and let the normal
2268 * error handling code build and send the packet.
2269 */
wangweidong26ac8e52013-12-23 12:16:51 +08002270 if (param.v != (void *)chunk->chunk_end)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002271 return sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 /* The only missing mandatory param possible today is
2274 * the state cookie for an INIT-ACK chunk.
2275 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002276 if ((SCTP_CID_INIT_ACK == cid) && !has_cookie)
2277 return sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
2278 chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002280 /* Verify all the variable length parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 sctp_walk_params(param, peer_init, init_hdr.params) {
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002282 result = sctp_verify_param(net, ep, asoc, param, cid,
2283 chunk, errp);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002284 switch (result) {
wangweidongf7010e62013-12-23 12:16:52 +08002285 case SCTP_IERROR_ABORT:
2286 case SCTP_IERROR_NOMEM:
2287 return 0;
2288 case SCTP_IERROR_ERROR:
2289 return 1;
2290 case SCTP_IERROR_NO_ERROR:
2291 default:
2292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
2294
2295 } /* for (loop through all parameters) */
2296
2297 return 1;
2298}
2299
2300/* Unpack the parameters in an INIT packet into an association.
2301 * Returns 0 on failure, else success.
2302 * FIXME: This is an association method.
2303 */
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002304int sctp_process_init(struct sctp_association *asoc, struct sctp_chunk *chunk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 const union sctp_addr *peer_addr,
Xin Long01a992b2017-06-30 11:52:22 +08002306 struct sctp_init_chunk *peer_init, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002308 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 union sctp_params param;
2310 struct sctp_transport *transport;
2311 struct list_head *pos, *temp;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002312 struct sctp_af *af;
2313 union sctp_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 char *cookie;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002315 int src_match = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 /* We must include the address that the INIT packet came from.
2318 * This is the only address that matters for an INIT packet.
2319 * When processing a COOKIE ECHO, we retrieve the from address
2320 * of the INIT from the cookie.
2321 */
2322
2323 /* This implementation defaults to making the first transport
2324 * added as the primary transport. The source address seems to
2325 * be a a better choice than any of the embedded addresses.
2326 */
wangweidongcb3f8372013-12-23 12:16:50 +08002327 if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002328 goto nomem;
2329
2330 if (sctp_cmp_addr_exact(sctp_source(chunk), peer_addr))
2331 src_match = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 /* Process the initialization parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 sctp_walk_params(param, peer_init, init_hdr.params) {
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002335 if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
2336 param.p->type == SCTP_PARAM_IPV6_ADDRESS)) {
2337 af = sctp_get_af_specific(param_type2af(param.p->type));
2338 af->from_addr_param(&addr, param.addr,
2339 chunk->sctp_hdr->source, 0);
2340 if (sctp_cmp_addr_exact(sctp_source(chunk), &addr))
2341 src_match = 1;
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 if (!sctp_process_param(asoc, param, peer_addr, gfp))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002345 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
2347
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002348 /* source address of chunk may not match any valid address */
2349 if (!src_match)
2350 goto clean_up;
2351
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002352 /* AUTH: After processing the parameters, make sure that we
2353 * have all the required info to potentially do authentications.
2354 */
2355 if (asoc->peer.auth_capable && (!asoc->peer.peer_random ||
2356 !asoc->peer.peer_hmacs))
2357 asoc->peer.auth_capable = 0;
2358
Vlad Yasevichd6701192007-12-20 14:13:31 -08002359 /* In a non-backward compatible mode, if the peer claims
2360 * support for ADD-IP but not AUTH, the ADD-IP spec states
2361 * that we MUST ABORT the association. Section 6. The section
2362 * also give us an option to silently ignore the packet, which
2363 * is what we'll do here.
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002364 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002365 if (!net->sctp.addip_noauth &&
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -04002366 (asoc->peer.asconf_capable && !asoc->peer.auth_capable)) {
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002367 asoc->peer.addip_disabled_mask |= (SCTP_PARAM_ADD_IP |
2368 SCTP_PARAM_DEL_IP |
2369 SCTP_PARAM_SET_PRIMARY);
Vlad Yasevich88799fe2007-10-24 17:24:23 -04002370 asoc->peer.asconf_capable = 0;
Vlad Yasevichd6701192007-12-20 14:13:31 -08002371 goto clean_up;
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002372 }
2373
Frank Filz3f7a87d2005-06-20 13:14:57 -07002374 /* Walk list of transports, removing transports in the UNKNOWN state. */
2375 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2376 transport = list_entry(pos, struct sctp_transport, transports);
2377 if (transport->state == SCTP_UNKNOWN) {
2378 sctp_assoc_rm_peer(asoc, transport);
2379 }
2380 }
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 /* The fixed INIT headers are always in network byte
2383 * order.
2384 */
2385 asoc->peer.i.init_tag =
2386 ntohl(peer_init->init_hdr.init_tag);
2387 asoc->peer.i.a_rwnd =
2388 ntohl(peer_init->init_hdr.a_rwnd);
2389 asoc->peer.i.num_outbound_streams =
2390 ntohs(peer_init->init_hdr.num_outbound_streams);
2391 asoc->peer.i.num_inbound_streams =
2392 ntohs(peer_init->init_hdr.num_inbound_streams);
2393 asoc->peer.i.initial_tsn =
2394 ntohl(peer_init->init_hdr.initial_tsn);
2395
Xin Longcc16f002017-01-18 00:44:42 +08002396 asoc->strreset_inseq = asoc->peer.i.initial_tsn;
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* Apply the upper bounds for output streams based on peer's
2399 * number of inbound streams.
2400 */
2401 if (asoc->c.sinit_num_ostreams >
2402 ntohs(peer_init->init_hdr.num_inbound_streams)) {
2403 asoc->c.sinit_num_ostreams =
2404 ntohs(peer_init->init_hdr.num_inbound_streams);
2405 }
2406
2407 if (asoc->c.sinit_max_instreams >
2408 ntohs(peer_init->init_hdr.num_outbound_streams)) {
2409 asoc->c.sinit_max_instreams =
2410 ntohs(peer_init->init_hdr.num_outbound_streams);
2411 }
2412
2413 /* Copy Initiation tag from INIT to VT_peer in cookie. */
2414 asoc->c.peer_vtag = asoc->peer.i.init_tag;
2415
2416 /* Peer Rwnd : Current calculated value of the peer's rwnd. */
2417 asoc->peer.rwnd = asoc->peer.i.a_rwnd;
2418
2419 /* Copy cookie in case we need to resend COOKIE-ECHO. */
2420 cookie = asoc->peer.cookie;
2421 if (cookie) {
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02002422 asoc->peer.cookie = kmemdup(cookie, asoc->peer.cookie_len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 if (!asoc->peer.cookie)
2424 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426
2427 /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
2428 * high (for example, implementations MAY use the size of the receiver
2429 * advertised window).
2430 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002431 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
2432 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 transport->ssthresh = asoc->peer.i.a_rwnd;
2434 }
2435
2436 /* Set up the TSN tracking pieces. */
Vlad Yasevich8e1ee182008-10-08 14:18:39 -07002437 if (!sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
2438 asoc->peer.i.initial_tsn, gfp))
2439 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
2442 *
2443 * The stream sequence number in all the streams shall start
2444 * from 0 when the association is established. Also, when the
2445 * stream sequence number reaches the value 65535 the next
2446 * stream sequence number shall be set to 0.
2447 */
2448
Xin Longff356412017-05-31 16:36:32 +08002449 if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams,
2450 asoc->c.sinit_max_instreams, gfp))
Xin Long7e062972017-05-23 13:28:55 +08002451 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Xin Long7e062972017-05-23 13:28:55 +08002453 if (!asoc->temp && sctp_assoc_set_id(asoc, gfp))
2454 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 /* ADDIP Section 4.1 ASCONF Chunk Procedures
2457 *
2458 * When an endpoint has an ASCONF signaled change to be sent to the
2459 * remote endpoint it should do the following:
2460 * ...
2461 * A2) A serial number should be assigned to the Chunk. The serial
2462 * number should be a monotonically increasing number. All serial
2463 * numbers are defined to be initialized at the start of the
2464 * association to the same value as the Initial TSN.
2465 */
2466 asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
2467 return 1;
2468
2469clean_up:
2470 /* Release the transport structures. */
2471 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2472 transport = list_entry(pos, struct sctp_transport, transports);
Vlad Yasevichadd52372008-09-18 16:28:27 -07002473 if (transport->state != SCTP_ACTIVE)
2474 sctp_assoc_rm_peer(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07002476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477nomem:
2478 return 0;
2479}
2480
2481
2482/* Update asoc with the option described in param.
2483 *
2484 * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
2485 *
2486 * asoc is the association to update.
2487 * param is the variable length parameter to use for update.
2488 * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
2489 * If the current packet is an INIT we want to minimize the amount of
2490 * work we do. In particular, we should not build transport
2491 * structures for the addresses.
2492 */
2493static int sctp_process_param(struct sctp_association *asoc,
2494 union sctp_params param,
2495 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +01002496 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002498 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 union sctp_addr addr;
2500 int i;
2501 __u16 sat;
2502 int retval = 1;
2503 sctp_scope_t scope;
Arnd Bergmann3ef0a252015-09-30 13:26:40 +02002504 u32 stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 struct sctp_af *af;
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002506 union sctp_addr_param *addr_param;
2507 struct sctp_transport *t;
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002508 struct sctp_endpoint *ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 /* We maintain all INIT parameters in network byte order all the
2511 * time. This allows us to not worry about whether the parameters
2512 * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
2513 */
2514 switch (param.p->type) {
2515 case SCTP_PARAM_IPV6_ADDRESS:
2516 if (PF_INET6 != asoc->base.sk->sk_family)
2517 break;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002518 goto do_addr_param;
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 case SCTP_PARAM_IPV4_ADDRESS:
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002521 /* v4 addresses are not allowed on v6-only socket */
2522 if (ipv6_only_sock(asoc->base.sk))
2523 break;
2524do_addr_param:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 af = sctp_get_af_specific(param_type2af(param.p->type));
Al Virodd86d132006-11-20 17:11:13 -08002526 af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 scope = sctp_scope(peer_addr);
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002528 if (sctp_in_scope(net, &addr, scope))
Al Virodd86d132006-11-20 17:11:13 -08002529 if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return 0;
2531 break;
2532
2533 case SCTP_PARAM_COOKIE_PRESERVATIVE:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002534 if (!net->sctp.cookie_preserve_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 break;
2536
2537 stale = ntohl(param.life->lifespan_increment);
2538
2539 /* Suggested Cookie Life span increment's unit is msec,
2540 * (1/1000sec).
2541 */
Daniel Borkmann52db8822013-06-25 18:17:27 +02002542 asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 break;
2544
2545 case SCTP_PARAM_HOST_NAME_ADDRESS:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002546 pr_debug("%s: unimplemented SCTP_HOST_NAME_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 break;
2548
2549 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2550 /* Turn off the default values first so we'll know which
2551 * ones are really set by the peer.
2552 */
2553 asoc->peer.ipv4_address = 0;
2554 asoc->peer.ipv6_address = 0;
2555
Gui Jianfeng140ee962008-03-05 13:43:32 -08002556 /* Assume that peer supports the address family
2557 * by which it sends a packet.
2558 */
2559 if (peer_addr->sa.sa_family == AF_INET6)
2560 asoc->peer.ipv6_address = 1;
2561 else if (peer_addr->sa.sa_family == AF_INET)
2562 asoc->peer.ipv4_address = 1;
2563
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 /* Cycle through address types; avoid divide by 0. */
Xin Long3c918702017-06-30 11:52:16 +08002565 sat = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 if (sat)
2567 sat /= sizeof(__u16);
2568
2569 for (i = 0; i < sat; ++i) {
2570 switch (param.sat->types[i]) {
2571 case SCTP_PARAM_IPV4_ADDRESS:
2572 asoc->peer.ipv4_address = 1;
2573 break;
2574
2575 case SCTP_PARAM_IPV6_ADDRESS:
Wei Yongjun6e40a912008-05-09 15:11:17 -07002576 if (PF_INET6 == asoc->base.sk->sk_family)
2577 asoc->peer.ipv6_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 break;
2579
2580 case SCTP_PARAM_HOST_NAME_ADDRESS:
2581 asoc->peer.hostname_address = 1;
2582 break;
2583
2584 default: /* Just ignore anything else. */
2585 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 }
2588 break;
2589
2590 case SCTP_PARAM_STATE_COOKIE:
2591 asoc->peer.cookie_len =
Xin Long3c918702017-06-30 11:52:16 +08002592 ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 asoc->peer.cookie = param.cookie->body;
2594 break;
2595
2596 case SCTP_PARAM_HEARTBEAT_INFO:
2597 /* Would be odd to receive, but it causes no problems. */
2598 break;
2599
2600 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2601 /* Rejected during verify stage. */
2602 break;
2603
2604 case SCTP_PARAM_ECN_CAPABLE:
2605 asoc->peer.ecn_capable = 1;
2606 break;
2607
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002608 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yaseviche69c4e02008-09-15 16:29:49 -04002609 asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 break;
2611
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002612 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002613 if (!net->sctp.addip_enable)
Vlad Yasevich0ef46e22008-09-18 16:27:38 -07002614 goto fall_through;
2615
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002616 addr_param = param.v + sizeof(sctp_addip_param_t);
2617
Saran Maruti Ramanaracfbf6542015-01-29 11:05:58 +01002618 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Daniel Borkmanne40607c2014-11-10 17:54:26 +01002619 if (af == NULL)
2620 break;
2621
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002622 af->from_addr_param(&addr, addr_param,
2623 htons(asoc->peer.port), 0);
2624
2625 /* if the address is invalid, we can't process it.
2626 * XXX: see spec for what to do.
2627 */
2628 if (!af->addr_valid(&addr, NULL, NULL))
2629 break;
2630
2631 t = sctp_assoc_lookup_paddr(asoc, &addr);
2632 if (!t)
2633 break;
2634
2635 sctp_assoc_set_primary(asoc, t);
2636 break;
2637
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002638 case SCTP_PARAM_SUPPORTED_EXT:
2639 sctp_process_ext_param(asoc, param);
2640 break;
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002643 if (asoc->prsctp_enable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 asoc->peer.prsctp_capable = 1;
2645 break;
2646 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002647 /* Fall Through */
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002648 goto fall_through;
2649
2650 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002651 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002652 goto fall_through;
2653
2654 /* Save peer's random parameter */
2655 asoc->peer.peer_random = kmemdup(param.p,
2656 ntohs(param.p->length), gfp);
2657 if (!asoc->peer.peer_random) {
2658 retval = 0;
2659 break;
2660 }
2661 break;
2662
2663 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002664 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002665 goto fall_through;
2666
2667 /* Save peer's HMAC list */
2668 asoc->peer.peer_hmacs = kmemdup(param.p,
2669 ntohs(param.p->length), gfp);
2670 if (!asoc->peer.peer_hmacs) {
2671 retval = 0;
2672 break;
2673 }
2674
2675 /* Set the default HMAC the peer requested*/
2676 sctp_auth_asoc_set_default_hmac(asoc, param.hmac_algo);
2677 break;
2678
2679 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002680 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002681 goto fall_through;
2682
2683 asoc->peer.peer_chunks = kmemdup(param.p,
2684 ntohs(param.p->length), gfp);
2685 if (!asoc->peer.peer_chunks)
2686 retval = 0;
2687 break;
2688fall_through:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 default:
2690 /* Any unrecognized parameters should have been caught
2691 * and handled by sctp_verify_param() which should be
2692 * called prior to this routine. Simply log the error
2693 * here.
2694 */
Daniel Borkmannbb333812013-06-28 19:49:40 +02002695 pr_debug("%s: ignoring param:%d for association:%p.\n",
2696 __func__, ntohs(param.p->type), asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 return retval;
2701}
2702
2703/* Select a new verification tag. */
2704__u32 sctp_generate_tag(const struct sctp_endpoint *ep)
2705{
2706 /* I believe that this random number generator complies with RFC1750.
2707 * A tag of 0 is reserved for special cases (e.g. INIT).
2708 */
2709 __u32 x;
2710
2711 do {
2712 get_random_bytes(&x, sizeof(__u32));
2713 } while (x == 0);
2714
2715 return x;
2716}
2717
2718/* Select an initial TSN to send during startup. */
2719__u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
2720{
2721 __u32 retval;
2722
2723 get_random_bytes(&retval, sizeof(__u32));
2724 return retval;
2725}
2726
2727/*
2728 * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
2729 * 0 1 2 3
2730 * 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
2731 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2732 * | Type = 0xC1 | Chunk Flags | Chunk Length |
2733 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2734 * | Serial Number |
2735 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2736 * | Address Parameter |
2737 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2738 * | ASCONF Parameter #1 |
2739 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2740 * \ \
2741 * / .... /
2742 * \ \
2743 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2744 * | ASCONF Parameter #N |
2745 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2746 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002747 * Address Parameter and other parameter will not be wrapped in this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 */
2749static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
2750 union sctp_addr *addr,
2751 int vparam_len)
2752{
2753 sctp_addiphdr_t asconf;
2754 struct sctp_chunk *retval;
2755 int length = sizeof(asconf) + vparam_len;
2756 union sctp_addr_param addrparam;
2757 int addrlen;
2758 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2759
2760 addrlen = af->to_addr_param(addr, &addrparam);
2761 if (!addrlen)
2762 return NULL;
2763 length += addrlen;
2764
2765 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002766 retval = sctp_make_control(asoc, SCTP_CID_ASCONF, 0, length,
2767 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (!retval)
2769 return NULL;
2770
2771 asconf.serial = htonl(asoc->addip_serial++);
2772
2773 retval->subh.addip_hdr =
2774 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2775 retval->param_hdr.v =
2776 sctp_addto_chunk(retval, addrlen, &addrparam);
2777
2778 return retval;
2779}
2780
2781/* ADDIP
2782 * 3.2.1 Add IP Address
2783 * 0 1 2 3
2784 * 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
2785 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2786 * | Type = 0xC001 | Length = Variable |
2787 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2788 * | ASCONF-Request Correlation ID |
2789 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2790 * | Address Parameter |
2791 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2792 *
2793 * 3.2.2 Delete IP Address
2794 * 0 1 2 3
2795 * 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
2796 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2797 * | Type = 0xC002 | Length = Variable |
2798 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2799 * | ASCONF-Request Correlation ID |
2800 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2801 * | Address Parameter |
2802 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2803 *
2804 */
2805struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
2806 union sctp_addr *laddr,
2807 struct sockaddr *addrs,
2808 int addrcnt,
Al Virodbc16db2006-11-20 17:01:42 -08002809 __be16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810{
2811 sctp_addip_param_t param;
2812 struct sctp_chunk *retval;
2813 union sctp_addr_param addr_param;
2814 union sctp_addr *addr;
2815 void *addr_buf;
2816 struct sctp_af *af;
2817 int paramlen = sizeof(param);
2818 int addr_param_len = 0;
2819 int totallen = 0;
2820 int i;
Michio Honda8a07eb02011-04-26 20:19:36 +09002821 int del_pickup = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 /* Get total length of all the address parameters. */
2824 addr_buf = addrs;
2825 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002826 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 af = sctp_get_af_specific(addr->v4.sin_family);
2828 addr_param_len = af->to_addr_param(addr, &addr_param);
2829
2830 totallen += paramlen;
2831 totallen += addr_param_len;
2832
2833 addr_buf += af->sockaddr_len;
Michio Honda8a07eb02011-04-26 20:19:36 +09002834 if (asoc->asconf_addr_del_pending && !del_pickup) {
2835 /* reuse the parameter length from the same scope one */
2836 totallen += paramlen;
2837 totallen += addr_param_len;
2838 del_pickup = 1;
Daniel Borkmannbb333812013-06-28 19:49:40 +02002839
2840 pr_debug("%s: picked same-scope del_pending addr, "
2841 "totallen for all addresses is %d\n",
2842 __func__, totallen);
Michio Honda8a07eb02011-04-26 20:19:36 +09002843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
2845
2846 /* Create an asconf chunk with the required length. */
2847 retval = sctp_make_asconf(asoc, laddr, totallen);
2848 if (!retval)
2849 return NULL;
2850
2851 /* Add the address parameters to the asconf chunk. */
2852 addr_buf = addrs;
2853 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002854 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 af = sctp_get_af_specific(addr->v4.sin_family);
2856 addr_param_len = af->to_addr_param(addr, &addr_param);
2857 param.param_hdr.type = flags;
2858 param.param_hdr.length = htons(paramlen + addr_param_len);
2859 param.crr_id = i;
2860
2861 sctp_addto_chunk(retval, paramlen, &param);
2862 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2863
2864 addr_buf += af->sockaddr_len;
2865 }
Michio Honda8a07eb02011-04-26 20:19:36 +09002866 if (flags == SCTP_PARAM_ADD_IP && del_pickup) {
2867 addr = asoc->asconf_addr_del_pending;
2868 af = sctp_get_af_specific(addr->v4.sin_family);
2869 addr_param_len = af->to_addr_param(addr, &addr_param);
2870 param.param_hdr.type = SCTP_PARAM_DEL_IP;
2871 param.param_hdr.length = htons(paramlen + addr_param_len);
2872 param.crr_id = i;
2873
2874 sctp_addto_chunk(retval, paramlen, &param);
2875 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return retval;
2878}
2879
2880/* ADDIP
2881 * 3.2.4 Set Primary IP Address
2882 * 0 1 2 3
2883 * 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
2884 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2885 * | Type =0xC004 | Length = Variable |
2886 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2887 * | ASCONF-Request Correlation ID |
2888 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2889 * | Address Parameter |
2890 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2891 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002892 * Create an ASCONF chunk with Set Primary IP address parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 */
2894struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
2895 union sctp_addr *addr)
2896{
2897 sctp_addip_param_t param;
2898 struct sctp_chunk *retval;
2899 int len = sizeof(param);
2900 union sctp_addr_param addrparam;
2901 int addrlen;
2902 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2903
2904 addrlen = af->to_addr_param(addr, &addrparam);
2905 if (!addrlen)
2906 return NULL;
2907 len += addrlen;
2908
2909 /* Create the chunk and make asconf header. */
2910 retval = sctp_make_asconf(asoc, addr, len);
2911 if (!retval)
2912 return NULL;
2913
2914 param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
2915 param.param_hdr.length = htons(len);
2916 param.crr_id = 0;
2917
2918 sctp_addto_chunk(retval, sizeof(param), &param);
2919 sctp_addto_chunk(retval, addrlen, &addrparam);
2920
2921 return retval;
2922}
2923
2924/* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
2925 * 0 1 2 3
2926 * 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
2927 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2928 * | Type = 0x80 | Chunk Flags | Chunk Length |
2929 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2930 * | Serial Number |
2931 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2932 * | ASCONF Parameter Response#1 |
2933 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2934 * \ \
2935 * / .... /
2936 * \ \
2937 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2938 * | ASCONF Parameter Response#N |
2939 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2940 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002941 * Create an ASCONF_ACK chunk with enough space for the parameter responses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 */
2943static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
2944 __u32 serial, int vparam_len)
2945{
2946 sctp_addiphdr_t asconf;
2947 struct sctp_chunk *retval;
2948 int length = sizeof(asconf) + vparam_len;
2949
2950 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002951 retval = sctp_make_control(asoc, SCTP_CID_ASCONF_ACK, 0, length,
2952 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (!retval)
2954 return NULL;
2955
2956 asconf.serial = htonl(serial);
2957
2958 retval->subh.addip_hdr =
2959 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2960
2961 return retval;
2962}
2963
2964/* Add response parameters to an ASCONF_ACK chunk. */
Al Viro9f81bcd2006-11-20 17:26:34 -08002965static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
Al Virodbc16db2006-11-20 17:01:42 -08002966 __be16 err_code, sctp_addip_param_t *asconf_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
2968 sctp_addip_param_t ack_param;
2969 sctp_errhdr_t err_param;
2970 int asconf_param_len = 0;
2971 int err_param_len = 0;
Al Virodbc16db2006-11-20 17:01:42 -08002972 __be16 response_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
2974 if (SCTP_ERROR_NO_ERROR == err_code) {
2975 response_type = SCTP_PARAM_SUCCESS_REPORT;
2976 } else {
2977 response_type = SCTP_PARAM_ERR_CAUSE;
2978 err_param_len = sizeof(err_param);
2979 if (asconf_param)
2980 asconf_param_len =
2981 ntohs(asconf_param->param_hdr.length);
2982 }
2983
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002984 /* Add Success Indication or Error Cause Indication parameter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 ack_param.param_hdr.type = response_type;
2986 ack_param.param_hdr.length = htons(sizeof(ack_param) +
2987 err_param_len +
2988 asconf_param_len);
2989 ack_param.crr_id = crr_id;
2990 sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
2991
2992 if (SCTP_ERROR_NO_ERROR == err_code)
2993 return;
2994
2995 /* Add Error Cause parameter. */
2996 err_param.cause = err_code;
2997 err_param.length = htons(err_param_len + asconf_param_len);
2998 sctp_addto_chunk(chunk, err_param_len, &err_param);
2999
3000 /* Add the failed TLV copied from ASCONF chunk. */
3001 if (asconf_param)
3002 sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
3003}
3004
3005/* Process a asconf parameter. */
Al Virodbc16db2006-11-20 17:01:42 -08003006static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 struct sctp_chunk *asconf,
3008 sctp_addip_param_t *asconf_param)
3009{
3010 struct sctp_transport *peer;
3011 struct sctp_af *af;
3012 union sctp_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 union sctp_addr_param *addr_param;
Al Viro5f242a132006-11-20 17:05:23 -08003014
Joe Perchesea110732011-06-13 16:21:26 +00003015 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
Patrick McHardyc1cc6782008-05-13 23:25:00 -07003016
Wei Yongjun44e65c12009-06-16 14:48:24 +08003017 if (asconf_param->param_hdr.type != SCTP_PARAM_ADD_IP &&
3018 asconf_param->param_hdr.type != SCTP_PARAM_DEL_IP &&
3019 asconf_param->param_hdr.type != SCTP_PARAM_SET_PRIMARY)
3020 return SCTP_ERROR_UNKNOWN_PARAM;
3021
Shan Wei6a435732011-04-18 19:11:47 +00003022 switch (addr_param->p.type) {
Wei Yongjunc4492582008-05-09 15:11:53 -07003023 case SCTP_PARAM_IPV6_ADDRESS:
3024 if (!asoc->peer.ipv6_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003025 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003026 break;
3027 case SCTP_PARAM_IPV4_ADDRESS:
3028 if (!asoc->peer.ipv4_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003029 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003030 break;
3031 default:
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003032 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003033 }
3034
Shan Wei6a435732011-04-18 19:11:47 +00003035 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 if (unlikely(!af))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003037 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Al Virodd86d132006-11-20 17:11:13 -08003039 af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003040
3041 /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast
3042 * or multicast address.
3043 * (note: wildcard is permitted and requires special handling so
3044 * make sure we check for that)
3045 */
3046 if (!af->is_any(&addr) && !af->addr_valid(&addr, NULL, asconf->skb))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003047 return SCTP_ERROR_DNS_FAILED;
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003048
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 switch (asconf_param->param_hdr.type) {
3050 case SCTP_PARAM_ADD_IP:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003051 /* Section 4.2.1:
3052 * If the address 0.0.0.0 or ::0 is provided, the source
3053 * address of the packet MUST be added.
3054 */
3055 if (af->is_any(&addr))
3056 memcpy(&addr, &asconf->source, sizeof(addr));
3057
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003059 * request and does not have the local resources to add this
3060 * new address to the association, it MUST return an Error
3061 * Cause TLV set to the new error code 'Operation Refused
3062 * Due to Resource Shortage'.
3063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Al Virodd86d132006-11-20 17:11:13 -08003065 peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (!peer)
3067 return SCTP_ERROR_RSRC_LOW;
3068
3069 /* Start the heartbeat timer. */
Marcelo Ricardo Leitnerba6f5e32016-04-06 15:15:19 -03003070 sctp_transport_reset_hb_timer(peer);
Michio Honda6af29cc2011-06-16 17:14:34 +09003071 asoc->new_transport = peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 break;
3073 case SCTP_PARAM_DEL_IP:
3074 /* ADDIP 4.3 D7) If a request is received to delete the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003075 * last remaining IP address of a peer endpoint, the receiver
3076 * MUST send an Error Cause TLV with the error cause set to the
3077 * new error code 'Request to Delete Last Remaining IP Address'.
3078 */
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003079 if (asoc->peer.transport_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return SCTP_ERROR_DEL_LAST_IP;
3081
3082 /* ADDIP 4.3 D8) If a request is received to delete an IP
3083 * address which is also the source address of the IP packet
3084 * which contained the ASCONF chunk, the receiver MUST reject
3085 * this request. To reject the request the receiver MUST send
3086 * an Error Cause TLV set to the new error code 'Request to
3087 * Delete Source IP Address'
3088 */
Michio Hondab1364102011-04-26 17:37:02 +09003089 if (sctp_cmp_addr_exact(&asconf->source, &addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return SCTP_ERROR_DEL_SRC_IP;
3091
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003092 /* Section 4.2.2
3093 * If the address 0.0.0.0 or ::0 is provided, all
3094 * addresses of the peer except the source address of the
3095 * packet MUST be deleted.
3096 */
3097 if (af->is_any(&addr)) {
3098 sctp_assoc_set_primary(asoc, asconf->transport);
3099 sctp_assoc_del_nonprimary_peers(asoc,
3100 asconf->transport);
lucien7c5a9462015-08-28 17:45:58 +08003101 return SCTP_ERROR_NO_ERROR;
3102 }
3103
3104 /* If the address is not part of the association, the
3105 * ASCONF-ACK with Error Cause Indication Parameter
3106 * which including cause of Unresolvable Address should
3107 * be sent.
3108 */
3109 peer = sctp_assoc_lookup_paddr(asoc, &addr);
3110 if (!peer)
3111 return SCTP_ERROR_DNS_FAILED;
3112
3113 sctp_assoc_rm_peer(asoc, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 break;
3115 case SCTP_PARAM_SET_PRIMARY:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003116 /* ADDIP Section 4.2.4
3117 * If the address 0.0.0.0 or ::0 is provided, the receiver
3118 * MAY mark the source address of the packet as its
3119 * primary.
3120 */
3121 if (af->is_any(&addr))
3122 memcpy(&addr.v4, sctp_source(asconf), sizeof(addr));
3123
Al Virodd86d132006-11-20 17:11:13 -08003124 peer = sctp_assoc_lookup_paddr(asoc, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 if (!peer)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003126 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 sctp_assoc_set_primary(asoc, peer);
3129 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 }
3131
3132 return SCTP_ERROR_NO_ERROR;
3133}
3134
Daniel Borkmann9de79222014-10-09 22:55:31 +02003135/* Verify the ASCONF packet before we process it. */
3136bool sctp_verify_asconf(const struct sctp_association *asoc,
3137 struct sctp_chunk *chunk, bool addr_param_needed,
3138 struct sctp_paramhdr **errp)
3139{
3140 sctp_addip_chunk_t *addip = (sctp_addip_chunk_t *) chunk->chunk_hdr;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003141 union sctp_params param;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003142 bool addr_param_seen = false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003143
Daniel Borkmann9de79222014-10-09 22:55:31 +02003144 sctp_walk_params(param, addip, addip_hdr.params) {
3145 size_t length = ntohs(param.p->length);
3146
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003147 *errp = param.p;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003148 switch (param.p->type) {
Daniel Borkmann9de79222014-10-09 22:55:31 +02003149 case SCTP_PARAM_ERR_CAUSE:
3150 break;
3151 case SCTP_PARAM_IPV4_ADDRESS:
Xin Longa38905e2017-07-17 11:29:49 +08003152 if (length != sizeof(struct sctp_ipv4addr_param))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003153 return false;
lucience7b4cc2015-08-27 16:26:34 +08003154 /* ensure there is only one addr param and it's in the
3155 * beginning of addip_hdr params, or we reject it.
3156 */
3157 if (param.v != addip->addip_hdr.params)
3158 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003159 addr_param_seen = true;
3160 break;
3161 case SCTP_PARAM_IPV6_ADDRESS:
Xin Long00987cc2017-07-17 11:29:50 +08003162 if (length != sizeof(struct sctp_ipv6addr_param))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003163 return false;
lucience7b4cc2015-08-27 16:26:34 +08003164 if (param.v != addip->addip_hdr.params)
3165 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003166 addr_param_seen = true;
3167 break;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003168 case SCTP_PARAM_ADD_IP:
3169 case SCTP_PARAM_DEL_IP:
3170 case SCTP_PARAM_SET_PRIMARY:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003171 /* In ASCONF chunks, these need to be first. */
3172 if (addr_param_needed && !addr_param_seen)
3173 return false;
3174 length = ntohs(param.addip->param_hdr.length);
3175 if (length < sizeof(sctp_addip_param_t) +
Xin Long3c918702017-06-30 11:52:16 +08003176 sizeof(**errp))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003177 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003178 break;
3179 case SCTP_PARAM_SUCCESS_REPORT:
3180 case SCTP_PARAM_ADAPTATION_LAYER_IND:
3181 if (length != sizeof(sctp_addip_param_t))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003182 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003183 break;
3184 default:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003185 /* This is unkown to us, reject! */
3186 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003187 }
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003188 }
3189
Daniel Borkmann9de79222014-10-09 22:55:31 +02003190 /* Remaining sanity checks. */
3191 if (addr_param_needed && !addr_param_seen)
3192 return false;
3193 if (!addr_param_needed && addr_param_seen)
3194 return false;
3195 if (param.v != chunk->chunk_end)
3196 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003197
Daniel Borkmann9de79222014-10-09 22:55:31 +02003198 return true;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003199}
3200
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003201/* Process an incoming ASCONF chunk with the next expected serial no. and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 * return an ASCONF_ACK chunk to be sent in response.
3203 */
3204struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
3205 struct sctp_chunk *asconf)
3206{
Daniel Borkmann9de79222014-10-09 22:55:31 +02003207 sctp_addip_chunk_t *addip = (sctp_addip_chunk_t *) asconf->chunk_hdr;
3208 bool all_param_pass = true;
3209 union sctp_params param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 sctp_addiphdr_t *hdr;
3211 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 struct sctp_chunk *asconf_ack;
Al Virodbc16db2006-11-20 17:01:42 -08003213 __be16 err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 int length = 0;
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003215 int chunk_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 __u32 serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
Xin Long922dbc52017-06-30 11:52:13 +08003218 chunk_len = ntohs(asconf->chunk_hdr->length) -
3219 sizeof(struct sctp_chunkhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 hdr = (sctp_addiphdr_t *)asconf->skb->data;
3221 serial = ntohl(hdr->serial);
3222
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003223 /* Skip the addiphdr and store a pointer to address parameter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 length = sizeof(sctp_addiphdr_t);
3225 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3226 chunk_len -= length;
3227
3228 /* Skip the address parameter and store a pointer to the first
Joe Perches7aa1b542007-12-20 14:03:52 -08003229 * asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003230 */
Shan Wei6a435732011-04-18 19:11:47 +00003231 length = ntohs(addr_param->p.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 chunk_len -= length;
3233
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003234 /* create an ASCONF_ACK chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 * Based on the definitions of parameters, we know that the size of
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003236 * ASCONF_ACK parameters are less than or equal to the fourfold of ASCONF
Joe Perches7aa1b542007-12-20 14:03:52 -08003237 * parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 */
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003239 asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 if (!asconf_ack)
3241 goto done;
3242
3243 /* Process the TLVs contained within the ASCONF chunk. */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003244 sctp_walk_params(param, addip, addip_hdr.params) {
3245 /* Skip preceeding address parameters. */
3246 if (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
3247 param.p->type == SCTP_PARAM_IPV6_ADDRESS)
3248 continue;
3249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 err_code = sctp_process_asconf_param(asoc, asconf,
Daniel Borkmann9de79222014-10-09 22:55:31 +02003251 param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 /* ADDIP 4.1 A7)
3253 * If an error response is received for a TLV parameter,
3254 * all TLVs with no response before the failed TLV are
3255 * considered successful if not reported. All TLVs after
3256 * the failed response are considered unsuccessful unless
3257 * a specific success indication is present for the parameter.
3258 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003259 if (err_code != SCTP_ERROR_NO_ERROR)
3260 all_param_pass = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 if (!all_param_pass)
Daniel Borkmann9de79222014-10-09 22:55:31 +02003262 sctp_add_asconf_response(asconf_ack, param.addip->crr_id,
3263 err_code, param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
3265 /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
3266 * an IP address sends an 'Out of Resource' in its response, it
3267 * MUST also fail any subsequent add or delete requests bundled
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003268 * in the ASCONF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003270 if (err_code == SCTP_ERROR_RSRC_LOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273done:
3274 asoc->peer.addip_serial++;
3275
3276 /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003277 * after freeing the reference to old asconf ack if any.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 */
3279 if (asconf_ack) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 sctp_chunk_hold(asconf_ack);
Vlad Yasevicha08de642007-12-20 14:11:47 -08003281 list_add_tail(&asconf_ack->transmitted_list,
3282 &asoc->asconf_ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 }
3284
3285 return asconf_ack;
3286}
3287
3288/* Process a asconf parameter that is successfully acked. */
Wei Yongjun425e0f62009-06-16 14:47:30 +08003289static void sctp_asconf_param_success(struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 sctp_addip_param_t *asconf_param)
3291{
3292 struct sctp_af *af;
3293 union sctp_addr addr;
3294 struct sctp_bind_addr *bp = &asoc->base.bind_addr;
3295 union sctp_addr_param *addr_param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 struct sctp_transport *transport;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003297 struct sctp_sockaddr_entry *saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Joe Perchesea110732011-06-13 16:21:26 +00003299 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 /* We have checked the packet before, so we do not check again. */
Shan Wei6a435732011-04-18 19:11:47 +00003302 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Al Virodd86d132006-11-20 17:11:13 -08003303 af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
3305 switch (asconf_param->param_hdr.type) {
3306 case SCTP_PARAM_ADD_IP:
Vlad Yasevich559cf712007-09-16 16:03:28 -07003307 /* This is always done in BH context with a socket lock
3308 * held, so the list can not change.
3309 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003310 local_bh_disable();
Vlad Yasevich559cf712007-09-16 16:03:28 -07003311 list_for_each_entry(saddr, &bp->address_list, list) {
Al Virodd86d132006-11-20 17:11:13 -08003312 if (sctp_cmp_addr_exact(&saddr->a, &addr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08003313 saddr->state = SCTP_ADDR_SRC;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003314 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003315 local_bh_enable();
Wei Yongjun3cd97492009-06-16 10:07:23 +08003316 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3317 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +02003318 sctp_transport_dst_release(transport);
Wei Yongjun3cd97492009-06-16 10:07:23 +08003319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 break;
3321 case SCTP_PARAM_DEL_IP:
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003322 local_bh_disable();
Wei Yongjun425e0f62009-06-16 14:47:30 +08003323 sctp_del_bind_addr(bp, &addr);
Michio Honda8a07eb02011-04-26 20:19:36 +09003324 if (asoc->asconf_addr_del_pending != NULL &&
3325 sctp_cmp_addr_exact(asoc->asconf_addr_del_pending, &addr)) {
3326 kfree(asoc->asconf_addr_del_pending);
3327 asoc->asconf_addr_del_pending = NULL;
3328 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003329 local_bh_enable();
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003330 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3331 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +02003332 sctp_transport_dst_release(transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
3334 break;
3335 default:
3336 break;
3337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
3340/* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
3341 * for the given asconf parameter. If there is no response for this parameter,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003342 * return the error code based on the third argument 'no_err'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 * ADDIP 4.1
3344 * A7) If an error response is received for a TLV parameter, all TLVs with no
3345 * response before the failed TLV are considered successful if not reported.
3346 * All TLVs after the failed response are considered unsuccessful unless a
3347 * specific success indication is present for the parameter.
3348 */
Al Virodbc16db2006-11-20 17:01:42 -08003349static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 sctp_addip_param_t *asconf_param,
3351 int no_err)
3352{
3353 sctp_addip_param_t *asconf_ack_param;
3354 sctp_errhdr_t *err_param;
3355 int length;
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003356 int asconf_ack_len;
Al Virodbc16db2006-11-20 17:01:42 -08003357 __be16 err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
3359 if (no_err)
3360 err_code = SCTP_ERROR_NO_ERROR;
3361 else
3362 err_code = SCTP_ERROR_REQ_REFUSED;
3363
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003364 asconf_ack_len = ntohs(asconf_ack->chunk_hdr->length) -
Xin Long922dbc52017-06-30 11:52:13 +08003365 sizeof(struct sctp_chunkhdr);
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
3368 * the first asconf_ack parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 length = sizeof(sctp_addiphdr_t);
3371 asconf_ack_param = (sctp_addip_param_t *)(asconf_ack->skb->data +
3372 length);
3373 asconf_ack_len -= length;
3374
3375 while (asconf_ack_len > 0) {
3376 if (asconf_ack_param->crr_id == asconf_param->crr_id) {
wangweidongcb3f8372013-12-23 12:16:50 +08003377 switch (asconf_ack_param->param_hdr.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 case SCTP_PARAM_SUCCESS_REPORT:
3379 return SCTP_ERROR_NO_ERROR;
3380 case SCTP_PARAM_ERR_CAUSE:
3381 length = sizeof(sctp_addip_param_t);
Joe Perchesea110732011-06-13 16:21:26 +00003382 err_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 asconf_ack_len -= length;
3384 if (asconf_ack_len > 0)
3385 return err_param->cause;
3386 else
3387 return SCTP_ERROR_INV_PARAM;
3388 break;
3389 default:
3390 return SCTP_ERROR_INV_PARAM;
3391 }
3392 }
3393
3394 length = ntohs(asconf_ack_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003395 asconf_ack_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 asconf_ack_len -= length;
3397 }
3398
3399 return err_code;
3400}
3401
3402/* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
3403int sctp_process_asconf_ack(struct sctp_association *asoc,
3404 struct sctp_chunk *asconf_ack)
3405{
3406 struct sctp_chunk *asconf = asoc->addip_last_asconf;
3407 union sctp_addr_param *addr_param;
3408 sctp_addip_param_t *asconf_param;
3409 int length = 0;
3410 int asconf_len = asconf->skb->len;
3411 int all_param_pass = 0;
3412 int no_err = 1;
3413 int retval = 0;
Al Virodbc16db2006-11-20 17:01:42 -08003414 __be16 err_code = SCTP_ERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
3416 /* Skip the chunkhdr and addiphdr from the last asconf sent and store
3417 * a pointer to address parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 length = sizeof(sctp_addip_chunk_t);
3420 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3421 asconf_len -= length;
3422
3423 /* Skip the address parameter in the last asconf sent and store a
Joe Perches7aa1b542007-12-20 14:03:52 -08003424 * pointer to the first asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003425 */
Shan Wei6a435732011-04-18 19:11:47 +00003426 length = ntohs(addr_param->p.length);
Joe Perchesea110732011-06-13 16:21:26 +00003427 asconf_param = (void *)addr_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 asconf_len -= length;
3429
3430 /* ADDIP 4.1
3431 * A8) If there is no response(s) to specific TLV parameter(s), and no
3432 * failures are indicated, then all request(s) are considered
3433 * successful.
3434 */
3435 if (asconf_ack->skb->len == sizeof(sctp_addiphdr_t))
3436 all_param_pass = 1;
3437
3438 /* Process the TLVs contained in the last sent ASCONF chunk. */
3439 while (asconf_len > 0) {
3440 if (all_param_pass)
3441 err_code = SCTP_ERROR_NO_ERROR;
3442 else {
3443 err_code = sctp_get_asconf_response(asconf_ack,
3444 asconf_param,
3445 no_err);
3446 if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
3447 no_err = 0;
3448 }
3449
3450 switch (err_code) {
3451 case SCTP_ERROR_NO_ERROR:
Wei Yongjun425e0f62009-06-16 14:47:30 +08003452 sctp_asconf_param_success(asoc, asconf_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 break;
3454
3455 case SCTP_ERROR_RSRC_LOW:
3456 retval = 1;
3457 break;
3458
Wei Yongjuna987f762009-04-07 15:44:29 +08003459 case SCTP_ERROR_UNKNOWN_PARAM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 /* Disable sending this type of asconf parameter in
3461 * future.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 asoc->peer.addip_disabled_mask |=
3464 asconf_param->param_hdr.type;
3465 break;
3466
3467 case SCTP_ERROR_REQ_REFUSED:
3468 case SCTP_ERROR_DEL_LAST_IP:
3469 case SCTP_ERROR_DEL_SRC_IP:
3470 default:
3471 break;
3472 }
3473
3474 /* Skip the processed asconf parameter and move to the next
3475 * one.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003476 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 length = ntohs(asconf_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003478 asconf_param = (void *)asconf_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 asconf_len -= length;
3480 }
3481
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003482 if (no_err && asoc->src_out_of_asoc_ok) {
Michio Honda8a07eb02011-04-26 20:19:36 +09003483 asoc->src_out_of_asoc_ok = 0;
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003484 sctp_transport_immediate_rtx(asoc->peer.primary_path);
3485 }
Michio Honda8a07eb02011-04-26 20:19:36 +09003486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 /* Free the cached last sent asconf chunk. */
Vlad Yasevich5f9646c2008-02-05 14:23:44 -05003488 list_del_init(&asconf->transmitted_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 sctp_chunk_free(asconf);
3490 asoc->addip_last_asconf = NULL;
3491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 return retval;
3493}
3494
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003495/* Make a FWD TSN chunk. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
3497 __u32 new_cum_tsn, size_t nstreams,
3498 struct sctp_fwdtsn_skip *skiplist)
3499{
3500 struct sctp_chunk *retval = NULL;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003501 struct sctp_fwdtsn_hdr ftsn_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 struct sctp_fwdtsn_skip skip;
3503 size_t hint;
3504 int i;
3505
3506 hint = (nstreams + 1) * sizeof(__u32);
3507
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03003508 retval = sctp_make_control(asoc, SCTP_CID_FWD_TSN, 0, hint, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 if (!retval)
3511 return NULL;
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
3514 retval->subh.fwdtsn_hdr =
3515 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
3516
3517 for (i = 0; i < nstreams; i++) {
3518 skip.stream = skiplist[i].stream;
3519 skip.ssn = skiplist[i].ssn;
3520 sctp_addto_chunk(retval, sizeof(skip), &skip);
3521 }
3522
3523 return retval;
3524}
Xin Longcc16f002017-01-18 00:44:42 +08003525
3526/* RE-CONFIG 3.1 (RE-CONFIG chunk)
3527 * 0 1 2 3
3528 * 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
3529 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3530 * | Type = 130 | Chunk Flags | Chunk Length |
3531 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3532 * \ \
3533 * / Re-configuration Parameter /
3534 * \ \
3535 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3536 * \ \
3537 * / Re-configuration Parameter (optional) /
3538 * \ \
3539 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3540 */
3541static struct sctp_chunk *sctp_make_reconf(
3542 const struct sctp_association *asoc,
3543 int length)
3544{
3545 struct sctp_reconf_chunk *reconf;
3546 struct sctp_chunk *retval;
3547
3548 retval = sctp_make_control(asoc, SCTP_CID_RECONF, 0, length,
3549 GFP_ATOMIC);
3550 if (!retval)
3551 return NULL;
3552
3553 reconf = (struct sctp_reconf_chunk *)retval->chunk_hdr;
3554 retval->param_hdr.v = reconf->params;
3555
3556 return retval;
3557}
3558
3559/* RE-CONFIG 4.1 (STREAM OUT RESET)
3560 * 0 1 2 3
3561 * 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
3562 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3563 * | Parameter Type = 13 | Parameter Length = 16 + 2 * N |
3564 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3565 * | Re-configuration Request Sequence Number |
3566 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3567 * | Re-configuration Response Sequence Number |
3568 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3569 * | Sender's Last Assigned TSN |
3570 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3571 * | Stream Number 1 (optional) | Stream Number 2 (optional) |
3572 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3573 * / ...... /
3574 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3575 * | Stream Number N-1 (optional) | Stream Number N (optional) |
3576 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3577 *
3578 * RE-CONFIG 4.2 (STREAM IN RESET)
3579 * 0 1 2 3
3580 * 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
3581 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3582 * | Parameter Type = 14 | Parameter Length = 8 + 2 * N |
3583 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3584 * | Re-configuration Request Sequence Number |
3585 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3586 * | Stream Number 1 (optional) | Stream Number 2 (optional) |
3587 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3588 * / ...... /
3589 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3590 * | Stream Number N-1 (optional) | Stream Number N (optional) |
3591 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3592 */
3593struct sctp_chunk *sctp_make_strreset_req(
3594 const struct sctp_association *asoc,
3595 __u16 stream_num, __u16 *stream_list,
3596 bool out, bool in)
3597{
3598 struct sctp_strreset_outreq outreq;
3599 __u16 stream_len = stream_num * 2;
3600 struct sctp_strreset_inreq inreq;
3601 struct sctp_chunk *retval;
Xin Long16e1a912017-02-17 12:45:40 +08003602 __u16 outlen, inlen;
Xin Longcc16f002017-01-18 00:44:42 +08003603
3604 outlen = (sizeof(outreq) + stream_len) * out;
3605 inlen = (sizeof(inreq) + stream_len) * in;
3606
3607 retval = sctp_make_reconf(asoc, outlen + inlen);
3608 if (!retval)
3609 return NULL;
3610
Xin Longcc16f002017-01-18 00:44:42 +08003611 if (outlen) {
3612 outreq.param_hdr.type = SCTP_PARAM_RESET_OUT_REQUEST;
3613 outreq.param_hdr.length = htons(outlen);
3614 outreq.request_seq = htonl(asoc->strreset_outseq);
3615 outreq.response_seq = htonl(asoc->strreset_inseq - 1);
3616 outreq.send_reset_at_tsn = htonl(asoc->next_tsn - 1);
3617
3618 sctp_addto_chunk(retval, sizeof(outreq), &outreq);
3619
3620 if (stream_len)
3621 sctp_addto_chunk(retval, stream_len, stream_list);
3622 }
3623
3624 if (inlen) {
3625 inreq.param_hdr.type = SCTP_PARAM_RESET_IN_REQUEST;
3626 inreq.param_hdr.length = htons(inlen);
3627 inreq.request_seq = htonl(asoc->strreset_outseq + out);
3628
3629 sctp_addto_chunk(retval, sizeof(inreq), &inreq);
3630
3631 if (stream_len)
3632 sctp_addto_chunk(retval, stream_len, stream_list);
3633 }
3634
Xin Longcc16f002017-01-18 00:44:42 +08003635 return retval;
3636}
Xin Longc56480a2017-02-09 01:18:17 +08003637
3638/* RE-CONFIG 4.3 (SSN/TSN RESET ALL)
3639 * 0 1 2 3
3640 * 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
3641 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3642 * | Parameter Type = 15 | Parameter Length = 8 |
3643 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3644 * | Re-configuration Request Sequence Number |
3645 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3646 */
3647struct sctp_chunk *sctp_make_strreset_tsnreq(
3648 const struct sctp_association *asoc)
3649{
3650 struct sctp_strreset_tsnreq tsnreq;
3651 __u16 length = sizeof(tsnreq);
3652 struct sctp_chunk *retval;
3653
3654 retval = sctp_make_reconf(asoc, length);
3655 if (!retval)
3656 return NULL;
3657
3658 tsnreq.param_hdr.type = SCTP_PARAM_RESET_TSN_REQUEST;
3659 tsnreq.param_hdr.length = htons(length);
3660 tsnreq.request_seq = htonl(asoc->strreset_outseq);
3661
3662 sctp_addto_chunk(retval, sizeof(tsnreq), &tsnreq);
3663
3664 return retval;
3665}
Xin Long78098112017-02-09 01:18:19 +08003666
3667/* RE-CONFIG 4.5/4.6 (ADD STREAM)
3668 * 0 1 2 3
3669 * 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
3670 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3671 * | Parameter Type = 17 | Parameter Length = 12 |
3672 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3673 * | Re-configuration Request Sequence Number |
3674 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3675 * | Number of new streams | Reserved |
3676 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3677 */
3678struct sctp_chunk *sctp_make_strreset_addstrm(
3679 const struct sctp_association *asoc,
3680 __u16 out, __u16 in)
3681{
3682 struct sctp_strreset_addstrm addstrm;
3683 __u16 size = sizeof(addstrm);
3684 struct sctp_chunk *retval;
3685
3686 retval = sctp_make_reconf(asoc, (!!out + !!in) * size);
3687 if (!retval)
3688 return NULL;
3689
3690 if (out) {
3691 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS;
3692 addstrm.param_hdr.length = htons(size);
3693 addstrm.number_of_streams = htons(out);
3694 addstrm.request_seq = htonl(asoc->strreset_outseq);
3695 addstrm.reserved = 0;
3696
3697 sctp_addto_chunk(retval, size, &addstrm);
3698 }
3699
3700 if (in) {
3701 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS;
3702 addstrm.param_hdr.length = htons(size);
3703 addstrm.number_of_streams = htons(in);
3704 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out);
3705 addstrm.reserved = 0;
3706
3707 sctp_addto_chunk(retval, size, &addstrm);
3708 }
3709
3710 return retval;
3711}
Xin Longbd4b9f82017-02-17 12:45:37 +08003712
3713/* RE-CONFIG 4.4 (RESP)
3714 * 0 1 2 3
3715 * 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
3716 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3717 * | Parameter Type = 16 | Parameter Length |
3718 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3719 * | Re-configuration Response Sequence Number |
3720 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3721 * | Result |
3722 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3723 */
3724struct sctp_chunk *sctp_make_strreset_resp(
3725 const struct sctp_association *asoc,
3726 __u32 result, __u32 sn)
3727{
3728 struct sctp_strreset_resp resp;
3729 __u16 length = sizeof(resp);
3730 struct sctp_chunk *retval;
3731
3732 retval = sctp_make_reconf(asoc, length);
3733 if (!retval)
3734 return NULL;
3735
3736 resp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
3737 resp.param_hdr.length = htons(length);
3738 resp.response_seq = htonl(sn);
3739 resp.result = htonl(result);
3740
3741 sctp_addto_chunk(retval, sizeof(resp), &resp);
3742
3743 return retval;
3744}
3745
3746/* RE-CONFIG 4.4 OPTIONAL (TSNRESP)
3747 * 0 1 2 3
3748 * 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
3749 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3750 * | Parameter Type = 16 | Parameter Length |
3751 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3752 * | Re-configuration Response Sequence Number |
3753 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3754 * | Result |
3755 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3756 * | Sender's Next TSN (optional) |
3757 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3758 * | Receiver's Next TSN (optional) |
3759 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3760 */
3761struct sctp_chunk *sctp_make_strreset_tsnresp(
3762 struct sctp_association *asoc,
3763 __u32 result, __u32 sn,
3764 __u32 sender_tsn, __u32 receiver_tsn)
3765{
3766 struct sctp_strreset_resptsn tsnresp;
3767 __u16 length = sizeof(tsnresp);
3768 struct sctp_chunk *retval;
3769
3770 retval = sctp_make_reconf(asoc, length);
3771 if (!retval)
3772 return NULL;
3773
3774 tsnresp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
3775 tsnresp.param_hdr.length = htons(length);
3776
3777 tsnresp.response_seq = htonl(sn);
3778 tsnresp.result = htonl(result);
3779 tsnresp.senders_next_tsn = htonl(sender_tsn);
3780 tsnresp.receivers_next_tsn = htonl(receiver_tsn);
3781
3782 sctp_addto_chunk(retval, sizeof(tsnresp), &tsnresp);
3783
3784 return retval;
3785}
Xin Longea625042017-02-17 12:45:41 +08003786
3787bool sctp_verify_reconf(const struct sctp_association *asoc,
3788 struct sctp_chunk *chunk,
3789 struct sctp_paramhdr **errp)
3790{
3791 struct sctp_reconf_chunk *hdr;
3792 union sctp_params param;
3793 __u16 last = 0, cnt = 0;
3794
3795 hdr = (struct sctp_reconf_chunk *)chunk->chunk_hdr;
3796 sctp_walk_params(param, hdr, params) {
3797 __u16 length = ntohs(param.p->length);
3798
3799 *errp = param.p;
3800 if (cnt++ > 2)
3801 return false;
3802 switch (param.p->type) {
3803 case SCTP_PARAM_RESET_OUT_REQUEST:
3804 if (length < sizeof(struct sctp_strreset_outreq) ||
3805 (last && last != SCTP_PARAM_RESET_RESPONSE &&
3806 last != SCTP_PARAM_RESET_IN_REQUEST))
3807 return false;
3808 break;
3809 case SCTP_PARAM_RESET_IN_REQUEST:
3810 if (length < sizeof(struct sctp_strreset_inreq) ||
3811 (last && last != SCTP_PARAM_RESET_OUT_REQUEST))
3812 return false;
3813 break;
3814 case SCTP_PARAM_RESET_RESPONSE:
3815 if ((length != sizeof(struct sctp_strreset_resp) &&
3816 length != sizeof(struct sctp_strreset_resptsn)) ||
3817 (last && last != SCTP_PARAM_RESET_RESPONSE &&
3818 last != SCTP_PARAM_RESET_OUT_REQUEST))
3819 return false;
3820 break;
3821 case SCTP_PARAM_RESET_TSN_REQUEST:
3822 if (length !=
3823 sizeof(struct sctp_strreset_tsnreq) || last)
3824 return false;
3825 break;
3826 case SCTP_PARAM_RESET_ADD_IN_STREAMS:
3827 if (length != sizeof(struct sctp_strreset_addstrm) ||
3828 (last && last != SCTP_PARAM_RESET_ADD_OUT_STREAMS))
3829 return false;
3830 break;
3831 case SCTP_PARAM_RESET_ADD_OUT_STREAMS:
3832 if (length != sizeof(struct sctp_strreset_addstrm) ||
3833 (last && last != SCTP_PARAM_RESET_ADD_IN_STREAMS))
3834 return false;
3835 break;
3836 default:
3837 return false;
3838 }
3839
3840 last = param.p->type;
3841 }
3842
3843 return true;
3844}