blob: 4a4fd19712552b9ac3429897cf9f78e65db6214d [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Vlad Yasevich072017b2013-08-09 22:05:36 -040085/* Control chunk destructor */
86static void sctp_control_release_owner(struct sk_buff *skb)
87{
Xin Long1b1e0bc2018-03-14 19:05:30 +080088 struct sctp_chunk *chunk = skb_shinfo(skb)->destructor_arg;
89
Xin Longec2e5062018-03-14 19:05:33 +080090 if (chunk->shkey) {
91 struct sctp_shared_key *shkey = chunk->shkey;
92 struct sctp_association *asoc = chunk->asoc;
93
94 /* refcnt == 2 and !list_empty mean after this release, it's
95 * not being used anywhere, and it's time to notify userland
96 * that this shkey can be freed if it's been deactivated.
97 */
98 if (shkey->deactivated && !list_empty(&shkey->key_list) &&
99 refcount_read(&shkey->refcnt) == 2) {
100 struct sctp_ulpevent *ev;
101
102 ev = sctp_ulpevent_make_authkey(asoc, shkey->key_id,
103 SCTP_AUTH_FREE_KEY,
104 GFP_KERNEL);
105 if (ev)
106 asoc->stream.si->enqueue_event(&asoc->ulpq, ev);
107 }
Xin Long1b1e0bc2018-03-14 19:05:30 +0800108 sctp_auth_shkey_release(chunk->shkey);
Xin Longec2e5062018-03-14 19:05:33 +0800109 }
Vlad Yasevich072017b2013-08-09 22:05:36 -0400110}
111
112static void sctp_control_set_owner_w(struct sctp_chunk *chunk)
113{
114 struct sctp_association *asoc = chunk->asoc;
115 struct sk_buff *skb = chunk->skb;
116
117 /* TODO: properly account for control chunks.
118 * To do it right we'll need:
119 * 1) endpoint if association isn't known.
120 * 2) proper memory accounting.
121 *
122 * For now don't do anything for now.
123 */
Xin Long1b1e0bc2018-03-14 19:05:30 +0800124 if (chunk->auth) {
125 chunk->shkey = asoc->shkey;
126 sctp_auth_shkey_hold(chunk->shkey);
127 }
Vlad Yasevich072017b2013-08-09 22:05:36 -0400128 skb->sk = asoc ? asoc->base.sk : NULL;
Xin Long1b1e0bc2018-03-14 19:05:30 +0800129 skb_shinfo(skb)->destructor_arg = chunk;
Vlad Yasevich072017b2013-08-09 22:05:36 -0400130 skb->destructor = sctp_control_release_owner;
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* What was the inbound interface for this chunk? */
134int sctp_chunk_iif(const struct sctp_chunk *chunk)
135{
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -0300136 struct sk_buff *skb = chunk->skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -0300138 return SCTP_INPUT_CB(skb)->af->skb_iif(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141/* RFC 2960 3.3.2 Initiation (INIT) (1)
142 *
143 * Note 2: The ECN capable field is reserved for future use of
144 * Explicit Congestion Notification.
145 */
146static const struct sctp_paramhdr ecap_param = {
147 SCTP_PARAM_ECN_CAPABLE,
Harvey Harrison09640e632009-02-01 00:45:17 -0800148 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150static const struct sctp_paramhdr prsctp_param = {
151 SCTP_PARAM_FWD_TSN_SUPPORT,
Harvey Harrison09640e632009-02-01 00:45:17 -0800152 cpu_to_be16(sizeof(struct sctp_paramhdr)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -0300155/* A helper to initialize an op error inside a provided chunk, as most
156 * cause codes will be embedded inside an abort chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
Marcelo Ricardo Leitner6d3e8aa2018-04-29 12:56:31 -0300158int sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
159 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Xin Longd8238d92017-08-03 15:42:11 +0800161 struct sctp_errhdr err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 __u16 len;
163
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900164 /* Cause code constants are now defined in network order. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 err.cause = cause_code;
Xin Longd8238d92017-08-03 15:42:11 +0800166 len = sizeof(err) + paylen;
Marcelo Ricardo Leitner6d3e8aa2018-04-29 12:56:31 -0300167 err.length = htons(len);
168
169 if (skb_tailroom(chunk->skb) < len)
170 return -ENOSPC;
171
Xin Longd8238d92017-08-03 15:42:11 +0800172 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(err), &err);
Marcelo Ricardo Leitner6d3e8aa2018-04-29 12:56:31 -0300173
174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/* 3.3.2 Initiation (INIT) (1)
178 *
179 * This chunk is used to initiate a SCTP association between two
180 * endpoints. The format of the INIT chunk is shown below:
181 *
182 * 0 1 2 3
183 * 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
184 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
185 * | Type = 1 | Chunk Flags | Chunk Length |
186 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
187 * | Initiate Tag |
188 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
189 * | Advertised Receiver Window Credit (a_rwnd) |
190 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
191 * | Number of Outbound Streams | Number of Inbound Streams |
192 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
193 * | Initial TSN |
194 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
195 * \ \
196 * / Optional/Variable-Length Parameters /
197 * \ \
198 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
199 *
200 *
201 * The INIT chunk contains the following parameters. Unless otherwise
202 * noted, each parameter MUST only be included once in the INIT chunk.
203 *
204 * Fixed Parameters Status
205 * ----------------------------------------------
206 * Initiate Tag Mandatory
207 * Advertised Receiver Window Credit Mandatory
208 * Number of Outbound Streams Mandatory
209 * Number of Inbound Streams Mandatory
210 * Initial TSN Mandatory
211 *
212 * Variable Parameters Status Type Value
213 * -------------------------------------------------------------
214 * IPv4 Address (Note 1) Optional 5
215 * IPv6 Address (Note 1) Optional 6
216 * Cookie Preservative Optional 9
217 * Reserved for ECN Capable (Note 2) Optional 32768 (0x8000)
218 * Host Name Address (Note 3) Optional 11
219 * Supported Address Types (Note 4) Optional 12
220 */
221struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800222 const struct sctp_bind_addr *bp,
223 gfp_t gfp, int vparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000225 struct net *net = sock_net(asoc->base.sk);
Xin Long327c0da2017-08-11 10:23:58 +0800226 struct sctp_supported_ext_param ext_param;
227 struct sctp_adaptation_ind_param aiparam;
228 struct sctp_paramhdr *auth_chunks = NULL;
229 struct sctp_paramhdr *auth_hmacs = NULL;
230 struct sctp_supported_addrs_param sat;
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200231 struct sctp_endpoint *ep = asoc->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct sctp_chunk *retval = NULL;
233 int num_types, addrs_len = 0;
Xin Long327c0da2017-08-11 10:23:58 +0800234 struct sctp_inithdr init;
235 union sctp_params addrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct sctp_sock *sp;
Xin Long96b120b2017-12-08 21:03:59 +0800237 __u8 extensions[5];
Xin Long327c0da2017-08-11 10:23:58 +0800238 size_t chunksize;
239 __be16 types[2];
240 int num_ext = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* RFC 2960 3.3.2 Initiation (INIT) (1)
243 *
244 * Note 1: The INIT chunks can contain multiple addresses that
245 * can be IPv4 and/or IPv6 in any combination.
246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /* Convert the provided bind address list to raw format. */
249 addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
250
251 init.init_tag = htonl(asoc->c.my_vtag);
252 init.a_rwnd = htonl(asoc->rwnd);
253 init.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
254 init.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
255 init.initial_tsn = htonl(asoc->c.initial_tsn);
256
257 /* How many address types are needed? */
258 sp = sctp_sk(asoc->base.sk);
259 num_types = sp->pf->supported_addrs(sp, types);
260
Wei Yongjuna8170c32010-04-28 08:47:21 +0000261 chunksize = sizeof(init) + addrs_len;
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300262 chunksize += SCTP_PAD4(SCTP_SAT_LEN(num_types));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 chunksize += sizeof(ecap_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500264
Xin Long28aa4c22016-07-09 19:47:40 +0800265 if (asoc->prsctp_enable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800266 chunksize += sizeof(prsctp_param);
267
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700268 /* ADDIP: Section 4.2.7:
269 * An implementation supporting this extension [ADDIP] MUST list
270 * the ASCONF,the ASCONF-ACK, and the AUTH chunks in its INIT and
271 * INIT-ACK parameters.
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700272 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +0000273 if (net->sctp.addip_enable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700274 extensions[num_ext] = SCTP_CID_ASCONF;
275 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
276 num_ext += 2;
277 }
278
Xin Longc28445c2017-01-18 00:44:45 +0800279 if (asoc->reconf_enable) {
280 extensions[num_ext] = SCTP_CID_RECONF;
281 num_ext += 1;
282 }
283
malc6fc791e2009-03-12 09:49:20 +0000284 if (sp->adaptation_ind)
285 chunksize += sizeof(aiparam);
286
Xin Long96b120b2017-12-08 21:03:59 +0800287 if (sp->strm_interleave) {
288 extensions[num_ext] = SCTP_CID_I_DATA;
289 num_ext += 1;
290 }
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 chunksize += vparam_len;
293
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700294 /* Account for AUTH related parameters */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200295 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700296 /* Add random parameter length*/
297 chunksize += sizeof(asoc->c.auth_random);
298
299 /* Add HMACS parameter length if any were defined */
Xin Long3c918702017-06-30 11:52:16 +0800300 auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700301 if (auth_hmacs->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300302 chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700303 else
304 auth_hmacs = NULL;
305
306 /* Add CHUNKS parameter length */
Xin Long3c918702017-06-30 11:52:16 +0800307 auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700308 if (auth_chunks->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300309 chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700310 else
Vlad Yasevich9baffaa2007-11-29 08:44:34 -0500311 auth_chunks = NULL;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700312
313 extensions[num_ext] = SCTP_CID_AUTH;
314 num_ext += 1;
315 }
316
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700317 /* If we have any extensions to report, account for that */
318 if (num_ext)
Xin Long15328d92017-07-17 11:29:56 +0800319 chunksize += SCTP_PAD4(sizeof(ext_param) + num_ext);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* RFC 2960 3.3.2 Initiation (INIT) (1)
322 *
323 * Note 3: An INIT chunk MUST NOT contain more than one Host
324 * Name address parameter. Moreover, the sender of the INIT
325 * MUST NOT combine any other address types with the Host Name
326 * address in the INIT. The receiver of INIT MUST ignore any
327 * other address types if the Host Name address parameter is
328 * present in the received INIT chunk.
329 *
330 * PLEASE DO NOT FIXME [This version does not support Host Name.]
331 */
332
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300333 retval = sctp_make_control(asoc, SCTP_CID_INIT, 0, chunksize, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (!retval)
335 goto nodata;
336
337 retval->subh.init_hdr =
338 sctp_addto_chunk(retval, sizeof(init), &init);
339 retval->param_hdr.v =
340 sctp_addto_chunk(retval, addrs_len, addrs.v);
341
342 /* RFC 2960 3.3.2 Initiation (INIT) (1)
343 *
344 * Note 4: This parameter, when present, specifies all the
345 * address types the sending endpoint can support. The absence
346 * of this parameter indicates that the sending endpoint can
347 * support any address type.
348 */
349 sat.param_hdr.type = SCTP_PARAM_SUPPORTED_ADDRESS_TYPES;
350 sat.param_hdr.length = htons(SCTP_SAT_LEN(num_types));
351 sctp_addto_chunk(retval, sizeof(sat), &sat);
352 sctp_addto_chunk(retval, num_types * sizeof(__u16), &types);
353
354 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700355
Joe Perches7aa1b542007-12-20 14:03:52 -0800356 /* Add the supported extensions parameter. Be nice and add this
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700357 * fist before addiding the parameters for the extensions themselves
358 */
359 if (num_ext) {
360 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
Xin Long15328d92017-07-17 11:29:56 +0800361 ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
362 sctp_addto_chunk(retval, sizeof(ext_param), &ext_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500363 sctp_addto_param(retval, num_ext, extensions);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700364 }
365
Xin Long28aa4c22016-07-09 19:47:40 +0800366 if (asoc->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700368
malc6fc791e2009-03-12 09:49:20 +0000369 if (sp->adaptation_ind) {
370 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
371 aiparam.param_hdr.length = htons(sizeof(aiparam));
372 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
373 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
374 }
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700375
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700376 /* Add SCTP-AUTH chunks to the parameter list */
Vlad Yasevichb14878c2014-04-17 17:26:50 +0200377 if (ep->auth_enable) {
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700378 sctp_addto_chunk(retval, sizeof(asoc->c.auth_random),
379 asoc->c.auth_random);
380 if (auth_hmacs)
381 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
382 auth_hmacs);
383 if (auth_chunks)
384 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
385 auth_chunks);
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387nodata:
Jesper Juhla51482b2005-11-08 09:41:34 -0800388 kfree(addrs.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return retval;
390}
391
392struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800393 const struct sctp_chunk *chunk,
394 gfp_t gfp, int unkparam_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Xin Long327c0da2017-08-11 10:23:58 +0800396 struct sctp_supported_ext_param ext_param;
397 struct sctp_adaptation_ind_param aiparam;
398 struct sctp_paramhdr *auth_chunks = NULL;
399 struct sctp_paramhdr *auth_random = NULL;
400 struct sctp_paramhdr *auth_hmacs = NULL;
401 struct sctp_chunk *retval = NULL;
402 struct sctp_cookie_param *cookie;
Xin Long4ae70c02017-06-30 11:52:21 +0800403 struct sctp_inithdr initack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 union sctp_params addrs;
malc6fc791e2009-03-12 09:49:20 +0000405 struct sctp_sock *sp;
Xin Long96b120b2017-12-08 21:03:59 +0800406 __u8 extensions[5];
Xin Long327c0da2017-08-11 10:23:58 +0800407 size_t chunksize;
408 int num_ext = 0;
409 int cookie_len;
410 int addrs_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* Note: there may be no addresses to embed. */
413 addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
414
415 initack.init_tag = htonl(asoc->c.my_vtag);
416 initack.a_rwnd = htonl(asoc->rwnd);
417 initack.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
418 initack.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
419 initack.initial_tsn = htonl(asoc->c.initial_tsn);
420
421 /* FIXME: We really ought to build the cookie right
422 * into the packet instead of allocating more fresh memory.
423 */
424 cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
425 addrs.v, addrs_len);
426 if (!cookie)
427 goto nomem_cookie;
428
429 /* Calculate the total size of allocation, include the reserved
430 * space for reporting unknown parameters if it is specified.
431 */
malc6fc791e2009-03-12 09:49:20 +0000432 sp = sctp_sk(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
434
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900435 /* Tell peer that we'll do ECN only if peer advertised such cap. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (asoc->peer.ecn_capable)
437 chunksize += sizeof(ecap_param);
438
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000439 if (asoc->peer.prsctp_capable)
Vlad Yasevich036b5792008-01-07 00:28:16 -0800440 chunksize += sizeof(prsctp_param);
441
Wei Yongjun5ffad5a2009-03-12 09:49:18 +0000442 if (asoc->peer.asconf_capable) {
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700443 extensions[num_ext] = SCTP_CID_ASCONF;
444 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
445 num_ext += 2;
446 }
447
Xin Longc28445c2017-01-18 00:44:45 +0800448 if (asoc->peer.reconf_capable) {
449 extensions[num_ext] = SCTP_CID_RECONF;
450 num_ext += 1;
451 }
452
malc6fc791e2009-03-12 09:49:20 +0000453 if (sp->adaptation_ind)
454 chunksize += sizeof(aiparam);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Xin Long96b120b2017-12-08 21:03:59 +0800456 if (asoc->intl_enable) {
457 extensions[num_ext] = SCTP_CID_I_DATA;
458 num_ext += 1;
459 }
460
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700461 if (asoc->peer.auth_capable) {
Xin Long3c918702017-06-30 11:52:16 +0800462 auth_random = (struct sctp_paramhdr *)asoc->c.auth_random;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700463 chunksize += ntohs(auth_random->length);
464
Xin Long3c918702017-06-30 11:52:16 +0800465 auth_hmacs = (struct sctp_paramhdr *)asoc->c.auth_hmacs;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700466 if (auth_hmacs->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300467 chunksize += SCTP_PAD4(ntohs(auth_hmacs->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700468 else
469 auth_hmacs = NULL;
470
Xin Long3c918702017-06-30 11:52:16 +0800471 auth_chunks = (struct sctp_paramhdr *)asoc->c.auth_chunks;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700472 if (auth_chunks->length)
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -0300473 chunksize += SCTP_PAD4(ntohs(auth_chunks->length));
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700474 else
475 auth_chunks = NULL;
476
477 extensions[num_ext] = SCTP_CID_AUTH;
478 num_ext += 1;
479 }
480
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500481 if (num_ext)
Xin Long15328d92017-07-17 11:29:56 +0800482 chunksize += SCTP_PAD4(sizeof(ext_param) + num_ext);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* Now allocate and fill out the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300485 retval = sctp_make_control(asoc, SCTP_CID_INIT_ACK, 0, chunksize, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (!retval)
487 goto nomem_chunk;
488
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400489 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
490 *
491 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
492 * HEARTBEAT ACK, * etc.) to the same destination transport
493 * address from which it received the DATA or control chunk
494 * to which it is replying.
495 *
496 * [INIT ACK back to where the INIT came from.]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 */
498 retval->transport = chunk->transport;
Dan Carpenterb99a4d52010-04-30 22:41:09 -0400499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 retval->subh.init_hdr =
501 sctp_addto_chunk(retval, sizeof(initack), &initack);
502 retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
503 sctp_addto_chunk(retval, cookie_len, cookie);
504 if (asoc->peer.ecn_capable)
505 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700506 if (num_ext) {
507 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
Xin Long15328d92017-07-17 11:29:56 +0800508 ext_param.param_hdr.length = htons(sizeof(ext_param) + num_ext);
509 sctp_addto_chunk(retval, sizeof(ext_param), &ext_param);
Vlad Yasevich8ee4be32007-11-29 08:50:35 -0500510 sctp_addto_param(retval, num_ext, extensions);
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (asoc->peer.prsctp_capable)
513 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
514
malc6fc791e2009-03-12 09:49:20 +0000515 if (sp->adaptation_ind) {
516 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
517 aiparam.param_hdr.length = htons(sizeof(aiparam));
518 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
519 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700522 if (asoc->peer.auth_capable) {
523 sctp_addto_chunk(retval, ntohs(auth_random->length),
524 auth_random);
525 if (auth_hmacs)
526 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
527 auth_hmacs);
528 if (auth_chunks)
529 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
530 auth_chunks);
531 }
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* We need to remove the const qualifier at this point. */
534 retval->asoc = (struct sctp_association *) asoc;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536nomem_chunk:
537 kfree(cookie);
538nomem_cookie:
Jesper Juhla51482b2005-11-08 09:41:34 -0800539 kfree(addrs.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return retval;
541}
542
543/* 3.3.11 Cookie Echo (COOKIE ECHO) (10):
544 *
545 * This chunk is used only during the initialization of an association.
546 * It is sent by the initiator of an association to its peer to complete
547 * the initialization process. This chunk MUST precede any DATA chunk
548 * sent within the association, but MAY be bundled with one or more DATA
549 * chunks in the same packet.
550 *
551 * 0 1 2 3
552 * 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
553 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
554 * | Type = 10 |Chunk Flags | Length |
555 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
556 * / Cookie /
557 * \ \
558 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
559 *
560 * Chunk Flags: 8 bit
561 *
562 * Set to zero on transmit and ignored on receipt.
563 *
564 * Length: 16 bits (unsigned integer)
565 *
566 * Set to the size of the chunk in bytes, including the 4 bytes of
567 * the chunk header and the size of the Cookie.
568 *
569 * Cookie: variable size
570 *
571 * This field must contain the exact cookie received in the
572 * State Cookie parameter from the previous INIT ACK.
573 *
574 * An implementation SHOULD make the cookie as small as possible
575 * to insure interoperability.
576 */
577struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800578 const struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct sctp_chunk *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int cookie_len;
Xin Long327c0da2017-08-11 10:23:58 +0800582 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 cookie = asoc->peer.cookie;
585 cookie_len = asoc->peer.cookie_len;
586
587 /* Build a cookie echo chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300588 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ECHO, 0,
589 cookie_len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (!retval)
591 goto nodata;
592 retval->subh.cookie_hdr =
593 sctp_addto_chunk(retval, cookie_len, cookie);
594
595 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
596 *
597 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
598 * HEARTBEAT ACK, * etc.) to the same destination transport
599 * address from which it * received the DATA or control chunk
600 * to which it is replying.
601 *
602 * [COOKIE ECHO back to where the INIT ACK came from.]
603 */
604 if (chunk)
605 retval->transport = chunk->transport;
606
607nodata:
608 return retval;
609}
610
611/* 3.3.12 Cookie Acknowledgement (COOKIE ACK) (11):
612 *
613 * This chunk is used only during the initialization of an
614 * association. It is used to acknowledge the receipt of a COOKIE
615 * ECHO chunk. This chunk MUST precede any DATA or SACK chunk sent
616 * within the association, but MAY be bundled with one or more DATA
617 * chunks or SACK chunk in the same SCTP packet.
618 *
619 * 0 1 2 3
620 * 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
621 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
622 * | Type = 11 |Chunk Flags | Length = 4 |
623 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
624 *
625 * Chunk Flags: 8 bits
626 *
627 * Set to zero on transmit and ignored on receipt.
628 */
629struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800630 const struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 struct sctp_chunk *retval;
633
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300634 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ACK, 0, 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
637 *
638 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
639 * HEARTBEAT ACK, * etc.) to the same destination transport
640 * address from which it * received the DATA or control chunk
641 * to which it is replying.
642 *
643 * [COOKIE ACK back to where the COOKIE ECHO came from.]
644 */
645 if (retval && chunk)
646 retval->transport = chunk->transport;
647
648 return retval;
649}
650
651/*
652 * Appendix A: Explicit Congestion Notification:
653 * CWR:
654 *
655 * RFC 2481 details a specific bit for a sender to send in the header of
656 * its next outbound TCP segment to indicate to its peer that it has
657 * reduced its congestion window. This is termed the CWR bit. For
658 * SCTP the same indication is made by including the CWR chunk.
659 * This chunk contains one data element, i.e. the TSN number that
660 * was sent in the ECNE chunk. This element represents the lowest
661 * TSN number in the datagram that was originally marked with the
662 * CE bit.
663 *
664 * 0 1 2 3
665 * 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
666 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
667 * | Chunk Type=13 | Flags=00000000| Chunk Length = 8 |
668 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
669 * | Lowest TSN Number |
670 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
671 *
672 * Note: The CWR is considered a Control chunk.
673 */
674struct sctp_chunk *sctp_make_cwr(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800675 const __u32 lowest_tsn,
676 const struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 struct sctp_chunk *retval;
Xin Long65f77102017-08-03 15:42:16 +0800679 struct sctp_cwrhdr cwr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 cwr.lowest_tsn = htonl(lowest_tsn);
Vlad Yasevich072017b2013-08-09 22:05:36 -0400682 retval = sctp_make_control(asoc, SCTP_CID_ECN_CWR, 0,
Xin Long65f77102017-08-03 15:42:16 +0800683 sizeof(cwr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (!retval)
686 goto nodata;
687
688 retval->subh.ecn_cwr_hdr =
689 sctp_addto_chunk(retval, sizeof(cwr), &cwr);
690
691 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
692 *
693 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
694 * HEARTBEAT ACK, * etc.) to the same destination transport
695 * address from which it * received the DATA or control chunk
696 * to which it is replying.
697 *
698 * [Report a reduced congestion window back to where the ECNE
699 * came from.]
700 */
701 if (chunk)
702 retval->transport = chunk->transport;
703
704nodata:
705 return retval;
706}
707
708/* Make an ECNE chunk. This is a congestion experienced report. */
709struct sctp_chunk *sctp_make_ecne(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800710 const __u32 lowest_tsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 struct sctp_chunk *retval;
Xin Long1fb6d832017-08-03 15:42:14 +0800713 struct sctp_ecnehdr ecne;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 ecne.lowest_tsn = htonl(lowest_tsn);
Vlad Yasevich072017b2013-08-09 22:05:36 -0400716 retval = sctp_make_control(asoc, SCTP_CID_ECN_ECNE, 0,
Xin Long1fb6d832017-08-03 15:42:14 +0800717 sizeof(ecne), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (!retval)
719 goto nodata;
720 retval->subh.ecne_hdr =
721 sctp_addto_chunk(retval, sizeof(ecne), &ecne);
722
723nodata:
724 return retval;
725}
726
727/* Make a DATA chunk for the given association from the provided
728 * parameters. However, do not populate the data payload.
729 */
Xin Long0c3f6f62017-12-08 21:04:01 +0800730struct sctp_chunk *sctp_make_datafrag_empty(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800731 const struct sctp_sndrcvinfo *sinfo,
Xin Long0c3f6f62017-12-08 21:04:01 +0800732 int len, __u8 flags, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 struct sctp_chunk *retval;
735 struct sctp_datahdr dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /* We assign the TSN as LATE as possible, not here when
738 * creating the chunk.
739 */
Xin Long0c3f6f62017-12-08 21:04:01 +0800740 memset(&dp, 0, sizeof(dp));
741 dp.ppid = sinfo->sinfo_ppid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 dp.stream = htons(sinfo->sinfo_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /* Set the flags for an unordered send. */
Xin Long0c3f6f62017-12-08 21:04:01 +0800745 if (sinfo->sinfo_flags & SCTP_UNORDERED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 flags |= SCTP_DATA_UNORDERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Xin Long0c3f6f62017-12-08 21:04:01 +0800748 retval = sctp_make_data(asoc, flags, sizeof(dp) + len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (!retval)
Xin Long0c3f6f62017-12-08 21:04:01 +0800750 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
753 memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return retval;
756}
757
758/* Create a selective ackowledgement (SACK) for the given
759 * association. This reports on which TSN's we've seen to date,
760 * including duplicates and gaps.
761 */
Marcelo Ricardo Leitner47b3ba52018-04-24 18:17:34 -0300762struct sctp_chunk *sctp_make_sack(struct sctp_association *asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Xin Long327c0da2017-08-11 10:23:58 +0800764 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
Xin Long327c0da2017-08-11 10:23:58 +0800765 struct sctp_gap_ack_block gabs[SCTP_MAX_GABS];
766 __u16 num_gabs, num_dup_tsns;
767 struct sctp_transport *trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct sctp_chunk *retval;
769 struct sctp_sackhdr sack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 __u32 ctsn;
Xin Long327c0da2017-08-11 10:23:58 +0800771 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Vlad Yasevich02015182008-10-08 14:19:01 -0700773 memset(gabs, 0, sizeof(gabs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 ctsn = sctp_tsnmap_get_ctsn(map);
Daniel Borkmannbb333812013-06-28 19:49:40 +0200775
776 pr_debug("%s: sackCTSNAck sent:0x%x\n", __func__, ctsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* How much room is needed in the chunk? */
Vlad Yasevich02015182008-10-08 14:19:01 -0700779 num_gabs = sctp_tsnmap_num_gabs(map, gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 num_dup_tsns = sctp_tsnmap_num_dups(map);
781
782 /* Initialize the SACK header. */
783 sack.cum_tsn_ack = htonl(ctsn);
784 sack.a_rwnd = htonl(asoc->a_rwnd);
785 sack.num_gap_ack_blocks = htons(num_gabs);
786 sack.num_dup_tsns = htons(num_dup_tsns);
787
788 len = sizeof(sack)
789 + sizeof(struct sctp_gap_ack_block) * num_gabs
790 + sizeof(__u32) * num_dup_tsns;
791
792 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300793 retval = sctp_make_control(asoc, SCTP_CID_SACK, 0, len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (!retval)
795 goto nodata;
796
797 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
798 *
799 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
800 * HEARTBEAT ACK, etc.) to the same destination transport
801 * address from which it received the DATA or control chunk to
802 * which it is replying. This rule should also be followed if
803 * the endpoint is bundling DATA chunks together with the
804 * reply chunk.
805 *
806 * However, when acknowledging multiple DATA chunks received
807 * in packets from different source addresses in a single
808 * SACK, the SACK chunk may be transmitted to one of the
809 * destination transport addresses from which the DATA or
810 * control chunks being acknowledged were received.
811 *
812 * [BUG: We do not implement the following paragraph.
813 * Perhaps we should remember the last transport we used for a
814 * SACK and avoid that (if possible) if we have seen any
815 * duplicates. --piggy]
816 *
817 * When a receiver of a duplicate DATA chunk sends a SACK to a
818 * multi- homed endpoint it MAY be beneficial to vary the
819 * destination address and not use the source address of the
820 * DATA chunk. The reason being that receiving a duplicate
821 * from a multi-homed endpoint might indicate that the return
822 * path (as specified in the source address of the DATA chunk)
823 * for the SACK is broken.
824 *
825 * [Send to the address from which we last received a DATA chunk.]
826 */
827 retval->transport = asoc->peer.last_data_from;
828
829 retval->subh.sack_hdr =
830 sctp_addto_chunk(retval, sizeof(sack), &sack);
831
832 /* Add the gap ack block information. */
833 if (num_gabs)
834 sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
Vlad Yasevich02015182008-10-08 14:19:01 -0700835 gabs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 /* Add the duplicate TSN information. */
Michele Baldessari196d6752012-12-01 04:49:42 +0000838 if (num_dup_tsns) {
Marcelo Ricardo Leitner47b3ba52018-04-24 18:17:34 -0300839 asoc->stats.idupchunks += num_dup_tsns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
841 sctp_tsnmap_get_dups(map));
Michele Baldessari196d6752012-12-01 04:49:42 +0000842 }
Neil Horman42448542012-06-30 03:04:26 +0000843 /* Once we have a sack generated, check to see what our sack
844 * generation is, if its 0, reset the transports to 0, and reset
845 * the association generation to 1
846 *
847 * The idea is that zero is never used as a valid generation for the
848 * association so no transport will match after a wrap event like this,
849 * Until the next sack
850 */
Marcelo Ricardo Leitner47b3ba52018-04-24 18:17:34 -0300851 if (++asoc->peer.sack_generation == 0) {
Neil Horman42448542012-06-30 03:04:26 +0000852 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
853 transports)
854 trans->sack_generation = 0;
Marcelo Ricardo Leitner47b3ba52018-04-24 18:17:34 -0300855 asoc->peer.sack_generation = 1;
Neil Horman42448542012-06-30 03:04:26 +0000856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857nodata:
858 return retval;
859}
860
861/* Make a SHUTDOWN chunk. */
862struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
863 const struct sctp_chunk *chunk)
864{
Xin Longe61e4052017-08-03 15:42:09 +0800865 struct sctp_shutdownhdr shut;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 struct sctp_chunk *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 __u32 ctsn;
868
869 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
870 shut.cum_tsn_ack = htonl(ctsn);
871
Vlad Yasevich072017b2013-08-09 22:05:36 -0400872 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN, 0,
Xin Longe61e4052017-08-03 15:42:09 +0800873 sizeof(shut), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!retval)
875 goto nodata;
876
877 retval->subh.shutdown_hdr =
878 sctp_addto_chunk(retval, sizeof(shut), &shut);
879
880 if (chunk)
881 retval->transport = chunk->transport;
882nodata:
883 return retval;
884}
885
886struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800887 const struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 struct sctp_chunk *retval;
890
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300891 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0,
892 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
895 *
896 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
897 * HEARTBEAT ACK, * etc.) to the same destination transport
898 * address from which it * received the DATA or control chunk
899 * to which it is replying.
900 *
901 * [ACK back to where the SHUTDOWN came from.]
902 */
903 if (retval && chunk)
904 retval->transport = chunk->transport;
905
906 return retval;
907}
908
909struct sctp_chunk *sctp_make_shutdown_complete(
Xin Long327c0da2017-08-11 10:23:58 +0800910 const struct sctp_association *asoc,
911 const struct sctp_chunk *chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct sctp_chunk *retval;
914 __u8 flags = 0;
915
Jerome Forissier047a2422005-04-28 11:58:43 -0700916 /* Set the T-bit if we have no association (vtag will be
917 * reflected)
918 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
920
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300921 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags,
922 0, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
925 *
926 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
927 * HEARTBEAT ACK, * etc.) to the same destination transport
928 * address from which it * received the DATA or control chunk
929 * to which it is replying.
930 *
931 * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
932 * came from.]
933 */
934 if (retval && chunk)
935 retval->transport = chunk->transport;
936
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900937 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
940/* Create an ABORT. Note that we set the T bit if we have no
Jerome Forissier047a2422005-04-28 11:58:43 -0700941 * association, except when responding to an INIT (sctpimpguide 2.41).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
943struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +0800944 const struct sctp_chunk *chunk,
945 const size_t hint)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 struct sctp_chunk *retval;
948 __u8 flags = 0;
949
Jerome Forissier047a2422005-04-28 11:58:43 -0700950 /* Set the T-bit if we have no association and 'chunk' is not
951 * an INIT (vtag will be reflected).
952 */
953 if (!asoc) {
954 if (chunk && chunk->chunk_hdr &&
955 chunk->chunk_hdr->type == SCTP_CID_INIT)
956 flags = 0;
957 else
958 flags = SCTP_CHUNK_FLAG_T;
959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -0300961 retval = sctp_make_control(asoc, SCTP_CID_ABORT, flags, hint,
962 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
965 *
966 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
967 * HEARTBEAT ACK, * etc.) to the same destination transport
968 * address from which it * received the DATA or control chunk
969 * to which it is replying.
970 *
971 * [ABORT back to where the offender came from.]
972 */
973 if (retval && chunk)
974 retval->transport = chunk->transport;
975
976 return retval;
977}
978
979/* Helper to create ABORT with a NO_USER_DATA error. */
980struct sctp_chunk *sctp_make_abort_no_data(
Xin Long327c0da2017-08-11 10:23:58 +0800981 const struct sctp_association *asoc,
982 const struct sctp_chunk *chunk,
983 __u32 tsn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct sctp_chunk *retval;
Al Viro9f81bcd2006-11-20 17:26:34 -0800986 __be32 payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Xin Longd8238d92017-08-03 15:42:11 +0800988 retval = sctp_make_abort(asoc, chunk,
989 sizeof(struct sctp_errhdr) + sizeof(tsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (!retval)
992 goto no_mem;
993
994 /* Put the tsn back into network byte order. */
995 payload = htonl(tsn);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +0800996 sctp_init_cause(retval, SCTP_ERROR_NO_DATA, sizeof(payload));
997 sctp_addto_chunk(retval, sizeof(payload), (const void *)&payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1000 *
1001 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1002 * HEARTBEAT ACK, * etc.) to the same destination transport
1003 * address from which it * received the DATA or control chunk
1004 * to which it is replying.
1005 *
1006 * [ABORT back to where the offender came from.]
1007 */
1008 if (chunk)
1009 retval->transport = chunk->transport;
1010
1011no_mem:
1012 return retval;
1013}
1014
1015/* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error. */
1016struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
Al Viro6ce8e9c2014-04-06 21:25:44 -04001017 struct msghdr *msg,
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001018 size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 struct sctp_chunk *retval;
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001021 void *payload = NULL;
1022 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Xin Longd8238d92017-08-03 15:42:11 +08001024 retval = sctp_make_abort(asoc, NULL,
1025 sizeof(struct sctp_errhdr) + paylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (!retval)
1027 goto err_chunk;
1028
1029 if (paylen) {
1030 /* Put the msg_iov together into payload. */
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001031 payload = kmalloc(paylen, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!payload)
1033 goto err_payload;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Al Viro6ce8e9c2014-04-06 21:25:44 -04001035 err = memcpy_from_msg(payload, msg, paylen);
Sridhar Samudralac164a9b2006-08-22 11:50:39 -07001036 if (err < 0)
1037 goto err_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001040 sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, paylen);
1041 sctp_addto_chunk(retval, paylen, payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 if (paylen)
1044 kfree(payload);
1045
1046 return retval;
1047
1048err_copy:
1049 kfree(payload);
1050err_payload:
1051 sctp_chunk_free(retval);
1052 retval = NULL;
1053err_chunk:
1054 return retval;
1055}
1056
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001057/* Append bytes to the end of a parameter. Will panic if chunk is not big
1058 * enough.
1059 */
1060static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
1061 const void *data)
1062{
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001063 int chunklen = ntohs(chunk->chunk_hdr->length);
Xin Long327c0da2017-08-11 10:23:58 +08001064 void *target;
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001065
1066 target = skb_put(chunk->skb, len);
1067
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001068 if (data)
1069 memcpy(target, data, len);
1070 else
1071 memset(target, 0, len);
Adrian Bunk5c94bf82007-09-12 15:16:21 +02001072
1073 /* Adjust the chunk length field. */
1074 chunk->chunk_hdr->length = htons(chunklen + len);
1075 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1076
1077 return target;
1078}
1079
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001080/* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081struct sctp_chunk *sctp_make_abort_violation(
Xin Long327c0da2017-08-11 10:23:58 +08001082 const struct sctp_association *asoc,
1083 const struct sctp_chunk *chunk,
1084 const __u8 *payload,
1085 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 struct sctp_chunk *retval;
1088 struct sctp_paramhdr phdr;
1089
Xin Longd8238d92017-08-03 15:42:11 +08001090 retval = sctp_make_abort(asoc, chunk, sizeof(struct sctp_errhdr) +
1091 paylen + sizeof(phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (!retval)
1093 goto end;
1094
Xin Long3c918702017-06-30 11:52:16 +08001095 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, paylen +
1096 sizeof(phdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 phdr.type = htons(chunk->chunk_hdr->type);
1099 phdr.length = chunk->chunk_hdr->length;
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001100 sctp_addto_chunk(retval, paylen, payload);
Xin Long3c918702017-06-30 11:52:16 +08001101 sctp_addto_param(retval, sizeof(phdr), &phdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103end:
1104 return retval;
1105}
1106
Wei Yongjunba016672008-09-30 05:32:24 -07001107struct sctp_chunk *sctp_make_violation_paramlen(
Xin Long327c0da2017-08-11 10:23:58 +08001108 const struct sctp_association *asoc,
1109 const struct sctp_chunk *chunk,
1110 struct sctp_paramhdr *param)
Wei Yongjunba016672008-09-30 05:32:24 -07001111{
Wei Yongjunba016672008-09-30 05:32:24 -07001112 static const char error[] = "The following parameter had invalid length:";
Xin Longd8238d92017-08-03 15:42:11 +08001113 size_t payload_len = sizeof(error) + sizeof(struct sctp_errhdr) +
Xin Long3c918702017-06-30 11:52:16 +08001114 sizeof(*param);
Xin Long327c0da2017-08-11 10:23:58 +08001115 struct sctp_chunk *retval;
Wei Yongjunba016672008-09-30 05:32:24 -07001116
1117 retval = sctp_make_abort(asoc, chunk, payload_len);
1118 if (!retval)
1119 goto nodata;
1120
1121 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION,
Xin Long3c918702017-06-30 11:52:16 +08001122 sizeof(error) + sizeof(*param));
Wei Yongjunba016672008-09-30 05:32:24 -07001123 sctp_addto_chunk(retval, sizeof(error), error);
Xin Long3c918702017-06-30 11:52:16 +08001124 sctp_addto_param(retval, sizeof(*param), param);
Wei Yongjunba016672008-09-30 05:32:24 -07001125
1126nodata:
1127 return retval;
1128}
1129
Neil Hormande4594a2012-11-20 10:14:30 +00001130struct sctp_chunk *sctp_make_violation_max_retrans(
Xin Long327c0da2017-08-11 10:23:58 +08001131 const struct sctp_association *asoc,
1132 const struct sctp_chunk *chunk)
Neil Hormande4594a2012-11-20 10:14:30 +00001133{
Colin Ian King39a2d5c2018-05-08 23:24:28 +01001134 static const char error[] = "Association exceeded its max_retrans count";
Xin Longd8238d92017-08-03 15:42:11 +08001135 size_t payload_len = sizeof(error) + sizeof(struct sctp_errhdr);
Xin Long327c0da2017-08-11 10:23:58 +08001136 struct sctp_chunk *retval;
Neil Hormande4594a2012-11-20 10:14:30 +00001137
1138 retval = sctp_make_abort(asoc, chunk, payload_len);
1139 if (!retval)
1140 goto nodata;
1141
1142 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, sizeof(error));
1143 sctp_addto_chunk(retval, sizeof(error), error);
1144
1145nodata:
1146 return retval;
1147}
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149/* Make a HEARTBEAT chunk. */
1150struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
Xin Longedf903f2017-08-11 10:23:46 +08001151 const struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Xin Longedf903f2017-08-11 10:23:46 +08001153 struct sctp_sender_hb_info hbinfo;
Wei Yongjun92c73af2011-04-19 21:31:47 +00001154 struct sctp_chunk *retval;
Wei Yongjun92c73af2011-04-19 21:31:47 +00001155
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001156 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT, 0,
1157 sizeof(hbinfo), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 if (!retval)
1160 goto nodata;
1161
Wei Yongjun92c73af2011-04-19 21:31:47 +00001162 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
Xin Longedf903f2017-08-11 10:23:46 +08001163 hbinfo.param_hdr.length = htons(sizeof(hbinfo));
Wei Yongjun92c73af2011-04-19 21:31:47 +00001164 hbinfo.daddr = transport->ipaddr;
1165 hbinfo.sent_at = jiffies;
1166 hbinfo.hb_nonce = transport->hb_nonce;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 /* Cast away the 'const', as this is just telling the chunk
1169 * what transport it belongs to.
1170 */
1171 retval->transport = (struct sctp_transport *) transport;
Wei Yongjun92c73af2011-04-19 21:31:47 +00001172 retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
1173 &hbinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175nodata:
1176 return retval;
1177}
1178
1179struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +08001180 const struct sctp_chunk *chunk,
1181 const void *payload,
1182 const size_t paylen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 struct sctp_chunk *retval;
1185
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001186 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen,
1187 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (!retval)
1189 goto nodata;
1190
1191 retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
1192
1193 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1194 *
1195 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1196 * HEARTBEAT ACK, * etc.) to the same destination transport
1197 * address from which it * received the DATA or control chunk
1198 * to which it is replying.
1199 *
1200 * [HBACK back to where the HEARTBEAT came from.]
1201 */
1202 if (chunk)
1203 retval->transport = chunk->transport;
1204
1205nodata:
1206 return retval;
1207}
1208
1209/* Create an Operation Error chunk with the specified space reserved.
1210 * This routine can be used for containing multiple causes in the chunk.
1211 */
1212static struct sctp_chunk *sctp_make_op_error_space(
Xin Long327c0da2017-08-11 10:23:58 +08001213 const struct sctp_association *asoc,
1214 const struct sctp_chunk *chunk,
1215 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 struct sctp_chunk *retval;
1218
Vlad Yasevich072017b2013-08-09 22:05:36 -04001219 retval = sctp_make_control(asoc, SCTP_CID_ERROR, 0,
Xin Longd8238d92017-08-03 15:42:11 +08001220 sizeof(struct sctp_errhdr) + size,
1221 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (!retval)
1223 goto nodata;
1224
1225 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1226 *
1227 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1228 * HEARTBEAT ACK, etc.) to the same destination transport
1229 * address from which it received the DATA or control chunk
1230 * to which it is replying.
1231 *
1232 */
1233 if (chunk)
1234 retval->transport = chunk->transport;
1235
1236nodata:
1237 return retval;
1238}
1239
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001240/* Create an Operation Error chunk of a fixed size, specifically,
1241 * min(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT) - overheads.
1242 * This is a helper function to allocate an error chunk for for those
1243 * invalid parameter codes in which we may not want to report all the
1244 * errors, if the incoming chunk is large. If it can't fit in a single
1245 * packet, we ignore it.
Neil Horman5fa782c2010-04-28 10:30:59 +00001246 */
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001247static inline struct sctp_chunk *sctp_make_op_error_limited(
Xin Long327c0da2017-08-11 10:23:58 +08001248 const struct sctp_association *asoc,
1249 const struct sctp_chunk *chunk)
Neil Horman5fa782c2010-04-28 10:30:59 +00001250{
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001251 size_t size = SCTP_DEFAULT_MAXSEGMENT;
1252 struct sctp_sock *sp = NULL;
Neil Horman5fa782c2010-04-28 10:30:59 +00001253
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001254 if (asoc) {
1255 size = min_t(size_t, size, asoc->pathmtu);
1256 sp = sctp_sk(asoc->base.sk);
1257 }
1258
1259 size = sctp_mtu_payload(sp, size, sizeof(struct sctp_errhdr));
Neil Horman5fa782c2010-04-28 10:30:59 +00001260
1261 return sctp_make_op_error_space(asoc, chunk, size);
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264/* Create an Operation Error chunk. */
1265struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +08001266 const struct sctp_chunk *chunk,
1267 __be16 cause_code, const void *payload,
1268 size_t paylen, size_t reserve_tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 struct sctp_chunk *retval;
1271
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001272 retval = sctp_make_op_error_space(asoc, chunk, paylen + reserve_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!retval)
1274 goto nodata;
1275
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001276 sctp_init_cause(retval, cause_code, paylen + reserve_tail);
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001277 sctp_addto_chunk(retval, paylen, payload);
Vlad Yasevich6383cfb2009-11-23 15:53:56 -05001278 if (reserve_tail)
1279 sctp_addto_param(retval, reserve_tail, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281nodata:
1282 return retval;
1283}
1284
Xin Long1b1e0bc2018-03-14 19:05:30 +08001285struct sctp_chunk *sctp_make_auth(const struct sctp_association *asoc,
1286 __u16 key_id)
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001287{
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001288 struct sctp_authhdr auth_hdr;
Xin Long327c0da2017-08-11 10:23:58 +08001289 struct sctp_hmac *hmac_desc;
1290 struct sctp_chunk *retval;
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001291
1292 /* Get the first hmac that the peer told us to use */
1293 hmac_desc = sctp_auth_asoc_get_hmac(asoc);
1294 if (unlikely(!hmac_desc))
1295 return NULL;
1296
Vlad Yasevich072017b2013-08-09 22:05:36 -04001297 retval = sctp_make_control(asoc, SCTP_CID_AUTH, 0,
Xin Long96f7ef42017-08-03 15:42:21 +08001298 hmac_desc->hmac_len + sizeof(auth_hdr),
1299 GFP_ATOMIC);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001300 if (!retval)
1301 return NULL;
1302
1303 auth_hdr.hmac_id = htons(hmac_desc->hmac_id);
Xin Long1b1e0bc2018-03-14 19:05:30 +08001304 auth_hdr.shkey_id = htons(key_id);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001305
Xin Long96f7ef42017-08-03 15:42:21 +08001306 retval->subh.auth_hdr = sctp_addto_chunk(retval, sizeof(auth_hdr),
1307 &auth_hdr);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001308
Marcelo Ricardo Leitner594831a2018-01-11 14:22:07 -02001309 skb_put_zero(retval->skb, hmac_desc->hmac_len);
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001310
1311 /* Adjust the chunk header to include the empty MAC */
1312 retval->chunk_hdr->length =
1313 htons(ntohs(retval->chunk_hdr->length) + hmac_desc->hmac_len);
1314 retval->chunk_end = skb_tail_pointer(retval->skb);
1315
1316 return retval;
1317}
1318
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320/********************************************************************
1321 * 2nd Level Abstractions
1322 ********************************************************************/
1323
1324/* Turn an skb into a chunk.
1325 * FIXME: Eventually move the structure directly inside the skb->cb[].
wangweidong3dc0a542013-10-26 16:06:31 +08001326 *
1327 * sctpimpguide-05.txt Section 2.8.2
1328 * M1) Each time a new DATA chunk is transmitted
1329 * set the 'TSN.Missing.Report' count for that TSN to 0. The
1330 * 'TSN.Missing.Report' count will be used to determine missing chunks
1331 * and when to fast retransmit.
1332 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
1334struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
Xin Long327c0da2017-08-11 10:23:58 +08001335 const struct sctp_association *asoc,
1336 struct sock *sk, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 struct sctp_chunk *retval;
1339
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001340 retval = kmem_cache_zalloc(sctp_chunk_cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 if (!retval)
1343 goto nodata;
Daniel Borkmannbb333812013-06-28 19:49:40 +02001344 if (!sk)
1345 pr_debug("%s: chunkifying skb:%p w/o an sk\n", __func__, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
David S. Miller79af02c2005-07-08 21:47:49 -07001347 INIT_LIST_HEAD(&retval->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 retval->skb = skb;
1349 retval->asoc = (struct sctp_association *)asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 retval->singleton = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Neil Hormanc226ef92008-07-25 12:44:09 -04001352 retval->fast_retransmit = SCTP_CAN_FRTX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* Polish the bead hole. */
1355 INIT_LIST_HEAD(&retval->transmitted_list);
1356 INIT_LIST_HEAD(&retval->frag_list);
1357 SCTP_DBG_OBJCNT_INC(chunk);
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001358 refcount_set(&retval->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360nodata:
1361 return retval;
1362}
1363
1364/* Set chunk->source and dest based on the IP header in chunk->skb. */
1365void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
1366 union sctp_addr *dest)
1367{
Al Virof235fca2006-11-20 17:09:01 -08001368 memcpy(&chunk->source, src, sizeof(union sctp_addr));
Al Viro16b0a032006-11-20 17:13:38 -08001369 memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/* Extract the source address from a chunk. */
1373const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
1374{
1375 /* If we have a known transport, use that. */
1376 if (chunk->transport) {
Al Viro6a1e5f32006-11-20 17:12:25 -08001377 return &chunk->transport->ipaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 } else {
1379 /* Otherwise, extract it from the IP header. */
Al Viro6a1e5f32006-11-20 17:12:25 -08001380 return &chunk->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382}
1383
1384/* Create a new chunk, setting the type and flags headers from the
1385 * arguments, reserving enough space for a 'paylen' byte payload.
1386 */
Vlad Yasevich072017b2013-08-09 22:05:36 -04001387static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +08001388 __u8 type, __u8 flags, int paylen,
1389 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Xin Long922dbc52017-06-30 11:52:13 +08001391 struct sctp_chunkhdr *chunk_hdr;
Xin Long327c0da2017-08-11 10:23:58 +08001392 struct sctp_chunk *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 struct sk_buff *skb;
1394 struct sock *sk;
Alexey Kodanev07f2c7a2018-02-09 17:35:23 +03001395 int chunklen;
1396
1397 chunklen = SCTP_PAD4(sizeof(*chunk_hdr) + paylen);
1398 if (chunklen > SCTP_MAX_CHUNK_LEN)
1399 goto nodata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /* No need to allocate LL here, as this is only a chunk. */
Alexey Kodanev07f2c7a2018-02-09 17:35:23 +03001402 skb = alloc_skb(chunklen, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (!skb)
1404 goto nodata;
1405
1406 /* Make room for the chunk header. */
Xin Long922dbc52017-06-30 11:52:13 +08001407 chunk_hdr = (struct sctp_chunkhdr *)skb_put(skb, sizeof(*chunk_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 chunk_hdr->type = type;
1409 chunk_hdr->flags = flags;
Xin Long922dbc52017-06-30 11:52:13 +08001410 chunk_hdr->length = htons(sizeof(*chunk_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 sk = asoc ? asoc->base.sk : NULL;
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001413 retval = sctp_chunkify(skb, asoc, sk, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (!retval) {
1415 kfree_skb(skb);
1416 goto nodata;
1417 }
1418
1419 retval->chunk_hdr = chunk_hdr;
Xin Long922dbc52017-06-30 11:52:13 +08001420 retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(*chunk_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Vlad Yasevich4cd57c82007-09-16 19:32:45 -07001422 /* Determine if the chunk needs to be authenticated */
1423 if (sctp_auth_send_cid(type, asoc))
1424 retval->auth = 1;
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return retval;
1427nodata:
1428 return NULL;
1429}
1430
Vlad Yasevich072017b2013-08-09 22:05:36 -04001431static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001432 __u8 flags, int paylen, gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001433{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001434 return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001435}
1436
Xin Longad05a7a2017-12-08 21:04:00 +08001437struct sctp_chunk *sctp_make_idata(const struct sctp_association *asoc,
1438 __u8 flags, int paylen, gfp_t gfp)
1439{
1440 return _sctp_make_chunk(asoc, SCTP_CID_I_DATA, flags, paylen, gfp);
1441}
1442
Vlad Yasevich072017b2013-08-09 22:05:36 -04001443static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001444 __u8 type, __u8 flags, int paylen,
1445 gfp_t gfp)
Vlad Yasevich072017b2013-08-09 22:05:36 -04001446{
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001447 struct sctp_chunk *chunk;
Vlad Yasevich072017b2013-08-09 22:05:36 -04001448
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03001449 chunk = _sctp_make_chunk(asoc, type, flags, paylen, gfp);
Vlad Yasevich072017b2013-08-09 22:05:36 -04001450 if (chunk)
1451 sctp_control_set_owner_w(chunk);
1452
1453 return chunk;
1454}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456/* Release the memory occupied by a chunk. */
1457static void sctp_chunk_destroy(struct sctp_chunk *chunk)
1458{
Vlad Yasevicha08de642007-12-20 14:11:47 -08001459 BUG_ON(!list_empty(&chunk->list));
1460 list_del_init(&chunk->transmitted_list);
1461
Daniel Borkmannc4856582014-03-04 16:35:51 +01001462 consume_skb(chunk->skb);
1463 consume_skb(chunk->auth_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 SCTP_DBG_OBJCNT_DEC(chunk);
1466 kmem_cache_free(sctp_chunk_cachep, chunk);
1467}
1468
1469/* Possibly, free the chunk. */
1470void sctp_chunk_free(struct sctp_chunk *chunk)
1471{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* Release our reference on the message tracker. */
1473 if (chunk->msg)
1474 sctp_datamsg_put(chunk->msg);
1475
1476 sctp_chunk_put(chunk);
1477}
1478
1479/* Grab a reference to the chunk. */
1480void sctp_chunk_hold(struct sctp_chunk *ch)
1481{
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001482 refcount_inc(&ch->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
1485/* Release a reference to the chunk. */
1486void sctp_chunk_put(struct sctp_chunk *ch)
1487{
Reshetova, Elenae7f02792017-07-04 15:53:26 +03001488 if (refcount_dec_and_test(&ch->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 sctp_chunk_destroy(ch);
1490}
1491
1492/* Append bytes to the end of a chunk. Will panic if chunk is not big
1493 * enough.
1494 */
1495void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
1496{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 int chunklen = ntohs(chunk->chunk_hdr->length);
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03001498 int padlen = SCTP_PAD4(chunklen) - chunklen;
Xin Long327c0da2017-08-11 10:23:58 +08001499 void *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
yuan linyub952f4d2017-06-18 22:52:04 +08001501 skb_put_zero(chunk->skb, padlen);
Johannes Berg59ae1d12017-06-16 14:29:20 +02001502 target = skb_put_data(chunk->skb, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 /* Adjust the chunk length field. */
1505 chunk->chunk_hdr->length = htons(chunklen + padlen + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001506 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 return target;
1509}
1510
1511/* Append bytes from user space to the end of a chunk. Will panic if
1512 * chunk is not big enough.
1513 * Returns a kernel err value.
1514 */
Al Viroe0eb0932014-11-15 01:11:23 -05001515int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len,
1516 struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Al Viroe0eb0932014-11-15 01:11:23 -05001518 void *target;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 /* Make room in chunk for data. */
1521 target = skb_put(chunk->skb, len);
1522
1523 /* Copy data (whole iovec) into chunk */
Al Viro3b6d4db2017-02-17 23:17:41 -05001524 if (!copy_from_iter_full(target, len, from))
Al Viroe0eb0932014-11-15 01:11:23 -05001525 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 /* Adjust the chunk length field. */
1528 chunk->chunk_hdr->length =
1529 htons(ntohs(chunk->chunk_hdr->length) + len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001530 chunk->chunk_end = skb_tail_pointer(chunk->skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Al Viroe0eb0932014-11-15 01:11:23 -05001532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535/* Helper function to assign a TSN if needed. This assumes that both
1536 * the data_hdr and association have already been assigned.
1537 */
1538void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
1539{
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001540 struct sctp_stream *stream;
Xin Long327c0da2017-08-11 10:23:58 +08001541 struct sctp_chunk *lchunk;
1542 struct sctp_datamsg *msg;
1543 __u16 ssn, sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 if (chunk->has_ssn)
1546 return;
1547
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001548 /* All fragments will be on the same stream */
1549 sid = ntohs(chunk->subh.data_hdr->stream);
Xin Longcee360a2017-05-31 16:36:31 +08001550 stream = &chunk->asoc->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001552 /* Now assign the sequence number to the entire message.
1553 * All fragments must have the same stream sequence number.
1554 */
1555 msg = chunk->msg;
1556 list_for_each_entry(lchunk, &msg->chunks, frag_list) {
1557 if (lchunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
1558 ssn = 0;
1559 } else {
1560 if (lchunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
Xin Longa8386312017-01-06 22:18:33 +08001561 ssn = sctp_ssn_next(stream, out, sid);
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001562 else
Xin Longa8386312017-01-06 22:18:33 +08001563 ssn = sctp_ssn_peek(stream, out, sid);
Vlad Yasevichab3e5e72007-08-02 16:51:42 -04001564 }
1565
1566 lchunk->subh.data_hdr->ssn = htons(ssn);
1567 lchunk->has_ssn = 1;
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
1571/* Helper function to assign a TSN if needed. This assumes that both
1572 * the data_hdr and association have already been assigned.
1573 */
1574void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
1575{
1576 if (!chunk->has_tsn) {
1577 /* This is the last possible instant to
1578 * assign a TSN.
1579 */
1580 chunk->subh.data_hdr->tsn =
1581 htonl(sctp_association_get_next_tsn(chunk->asoc));
1582 chunk->has_tsn = 1;
1583 }
1584}
1585
1586/* Create a CLOSED association to use with an incoming packet. */
1587struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
Xin Long327c0da2017-08-11 10:23:58 +08001588 struct sctp_chunk *chunk,
1589 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 struct sctp_association *asoc;
Xin Long1c662012017-08-05 19:59:54 +08001592 enum sctp_scope scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 /* Create the bare association. */
1596 scope = sctp_scope(sctp_source(chunk));
1597 asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
1598 if (!asoc)
1599 goto nodata;
1600 asoc->temp = 1;
1601 skb = chunk->skb;
1602 /* Create an entry for the source address of the packet. */
Marcelo Ricardo Leitnere7487c82016-07-13 15:08:58 -03001603 SCTP_INPUT_CB(skb)->af->from_skb(&asoc->c.peer_addr, skb, 1);
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605nodata:
1606 return asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
1609/* Build a cookie representing asoc.
1610 * This INCLUDES the param header needed to put the cookie in the INIT ACK.
1611 */
Xin Longf48ef4c2017-07-23 09:34:27 +08001612static struct sctp_cookie_param *sctp_pack_cookie(
1613 const struct sctp_endpoint *ep,
1614 const struct sctp_association *asoc,
1615 const struct sctp_chunk *init_chunk,
Xin Long327c0da2017-08-11 10:23:58 +08001616 int *cookie_len, const __u8 *raw_addrs,
1617 int addrs_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 struct sctp_signed_cookie *cookie;
Xin Longf48ef4c2017-07-23 09:34:27 +08001620 struct sctp_cookie_param *retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int headersize, bodysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001623 /* Header size is static data prior to the actual cookie, including
1624 * any padding.
1625 */
Xin Long3c918702017-06-30 11:52:16 +08001626 headersize = sizeof(struct sctp_paramhdr) +
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001627 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001628 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 bodysize = sizeof(struct sctp_cookie)
1630 + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
1631
1632 /* Pad out the cookie to a multiple to make the signature
1633 * functions simpler to write.
1634 */
1635 if (bodysize % SCTP_COOKIE_MULTIPLE)
1636 bodysize += SCTP_COOKIE_MULTIPLE
1637 - (bodysize % SCTP_COOKIE_MULTIPLE);
1638 *cookie_len = headersize + bodysize;
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 /* Clear this memory since we are sending this data structure
1641 * out on the network.
1642 */
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02001643 retval = kzalloc(*cookie_len, GFP_ATOMIC);
1644 if (!retval)
1645 goto nodata;
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 cookie = (struct sctp_signed_cookie *) retval->body;
1648
1649 /* Set up the parameter header. */
1650 retval->p.type = SCTP_PARAM_STATE_COOKIE;
1651 retval->p.length = htons(*cookie_len);
1652
1653 /* Copy the cookie part of the association itself. */
1654 cookie->c = asoc->c;
1655 /* Save the raw address list length in the cookie. */
1656 cookie->c.raw_addr_list_len = addrs_len;
1657
1658 /* Remember PR-SCTP capability. */
1659 cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
1660
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001661 /* Save adaptation indication in the cookie. */
1662 cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 /* Set an expiration time for the cookie. */
Daniel Borkmann52db8822013-06-25 18:17:27 +02001665 cookie->c.expiration = ktime_add(asoc->cookie_life,
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001666 ktime_get_real());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /* Copy the peer's init packet. */
1669 memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
1670 ntohs(init_chunk->chunk_hdr->length));
1671
1672 /* Copy the raw local address list of the association. */
1673 memcpy((__u8 *)&cookie->c.peer_init[0] +
1674 ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
1675
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001676 if (sctp_sk(ep->base.sk)->hmac) {
Herbert Xu5821c762016-01-24 21:20:12 +08001677 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1678 int err;
Herbert Xu1b489e12006-08-20 15:07:14 +10001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 /* Sign the message. */
Herbert Xu5821c762016-01-24 21:20:12 +08001681 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1682 desc->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Herbert Xu5821c762016-01-24 21:20:12 +08001684 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1685 sizeof(ep->secret_key)) ?:
1686 crypto_shash_digest(desc, (u8 *)&cookie->c, bodysize,
1687 cookie->signature);
1688 shash_desc_zero(desc);
1689 if (err)
Herbert Xu1b489e12006-08-20 15:07:14 +10001690 goto free_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return retval;
Herbert Xu1b489e12006-08-20 15:07:14 +10001694
1695free_cookie:
1696 kfree(retval);
1697nodata:
1698 *cookie_len = 0;
1699 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
1701
1702/* Unpack the cookie from COOKIE ECHO chunk, recreating the association. */
1703struct sctp_association *sctp_unpack_cookie(
Xin Long327c0da2017-08-11 10:23:58 +08001704 const struct sctp_endpoint *ep,
1705 const struct sctp_association *asoc,
1706 struct sctp_chunk *chunk, gfp_t gfp,
1707 int *error, struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708{
1709 struct sctp_association *retval = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 int headersize, bodysize, fixed_size;
Xin Long327c0da2017-08-11 10:23:58 +08001711 struct sctp_signed_cookie *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct sk_buff *skb = chunk->skb;
Xin Long327c0da2017-08-11 10:23:58 +08001713 struct sctp_cookie *bear_cookie;
1714 __u8 *digest = ep->digest;
1715 enum sctp_scope scope;
1716 unsigned int len;
Daniel Borkmann52db8822013-06-25 18:17:27 +02001717 ktime_t kt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001719 /* Header size is static data prior to the actual cookie, including
1720 * any padding.
1721 */
Xin Long922dbc52017-06-30 11:52:13 +08001722 headersize = sizeof(struct sctp_chunkhdr) +
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09001723 (sizeof(struct sctp_signed_cookie) -
Vlad Yasevich9834a2b2006-01-17 11:52:12 -08001724 sizeof(struct sctp_cookie));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
1726 fixed_size = headersize + sizeof(struct sctp_cookie);
1727
1728 /* Verify that the chunk looks like it even has a cookie.
1729 * There must be enough room for our cookie and our peer's
1730 * INIT chunk.
1731 */
1732 len = ntohs(chunk->chunk_hdr->length);
1733 if (len < fixed_size + sizeof(struct sctp_chunkhdr))
1734 goto malformed;
1735
1736 /* Verify that the cookie has been padded out. */
1737 if (bodysize % SCTP_COOKIE_MULTIPLE)
1738 goto malformed;
1739
1740 /* Process the cookie. */
1741 cookie = chunk->subh.cookie_hdr;
1742 bear_cookie = &cookie->c;
1743
1744 if (!sctp_sk(ep->base.sk)->hmac)
1745 goto no_hmac;
1746
1747 /* Check the signature. */
Herbert Xu5821c762016-01-24 21:20:12 +08001748 {
1749 SHASH_DESC_ON_STACK(desc, sctp_sk(ep->base.sk)->hmac);
1750 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Herbert Xu5821c762016-01-24 21:20:12 +08001752 desc->tfm = sctp_sk(ep->base.sk)->hmac;
1753 desc->flags = 0;
1754
1755 err = crypto_shash_setkey(desc->tfm, ep->secret_key,
1756 sizeof(ep->secret_key)) ?:
1757 crypto_shash_digest(desc, (u8 *)bear_cookie, bodysize,
1758 digest);
1759 shash_desc_zero(desc);
1760
1761 if (err) {
1762 *error = -SCTP_IERROR_NOMEM;
1763 goto fail;
1764 }
Herbert Xu1b489e12006-08-20 15:07:14 +10001765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
Daniel Borkmann570617e2013-02-12 05:15:33 +00001768 *error = -SCTP_IERROR_BAD_SIG;
1769 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
1772no_hmac:
1773 /* IG Section 2.35.2:
1774 * 3) Compare the port numbers and the verification tag contained
1775 * within the COOKIE ECHO chunk to the actual port numbers and the
1776 * verification tag within the SCTP common header of the received
1777 * packet. If these values do not match the packet MUST be silently
1778 * discarded,
1779 */
1780 if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
1781 *error = -SCTP_IERROR_BAD_TAG;
1782 goto fail;
1783 }
1784
Al Viro9b1dfad2006-11-20 17:09:17 -08001785 if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
1787 *error = -SCTP_IERROR_BAD_PORTS;
1788 goto fail;
1789 }
1790
1791 /* Check to see if the cookie is stale. If there is already
1792 * an association, there is no need to check cookie's expiration
1793 * for init collision case of lost COOKIE ACK.
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001794 * If skb has been timestamped, then use the stamp, otherwise
1795 * use current time. This introduces a small possibility that
1796 * that a cookie may be considered expired, but his would only slow
1797 * down the new association establishment instead of every packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001799 if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
Daniel Borkmann52db8822013-06-25 18:17:27 +02001800 kt = skb_get_ktime(skb);
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001801 else
Marcelo Ricardo Leitnercb5e1732015-12-04 15:14:03 -02001802 kt = ktime_get_real();
Vlad Yasevichf236218b2006-09-29 17:10:03 -07001803
Daniel Borkmann67cb9362014-06-11 18:19:28 +02001804 if (!asoc && ktime_before(bear_cookie->expiration, kt)) {
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001805 suseconds_t usecs = ktime_to_us(ktime_sub(kt, bear_cookie->expiration));
1806 __be32 n = htonl(usecs);
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 /*
1809 * Section 3.3.10.3 Stale Cookie Error (3)
1810 *
1811 * Cause of error
1812 * ---------------
1813 * Stale Cookie Error: Indicates the receipt of a valid State
1814 * Cookie that has expired.
1815 */
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001816 *errp = sctp_make_op_error(asoc, chunk,
1817 SCTP_ERROR_STALE_COOKIE, &n,
1818 sizeof(n), 0);
1819 if (*errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 *error = -SCTP_IERROR_STALE_COOKIE;
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001821 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 *error = -SCTP_IERROR_NOMEM;
1823
1824 goto fail;
1825 }
1826
1827 /* Make a new base association. */
1828 scope = sctp_scope(sctp_source(chunk));
1829 retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
1830 if (!retval) {
1831 *error = -SCTP_IERROR_NOMEM;
1832 goto fail;
1833 }
1834
1835 /* Set up our peer's port number. */
1836 retval->peer.port = ntohs(chunk->sctp_hdr->source);
1837
1838 /* Populate the association from the cookie. */
1839 memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
1840
1841 if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
1842 GFP_ATOMIC) < 0) {
1843 *error = -SCTP_IERROR_NOMEM;
1844 goto fail;
1845 }
1846
1847 /* Also, add the destination address. */
1848 if (list_empty(&retval->base.bind_addr.address_list)) {
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08001849 sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest,
Marcelo Ricardo Leitner133800d2016-03-08 10:34:28 -03001850 sizeof(chunk->dest), SCTP_ADDR_SRC,
1851 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853
1854 retval->next_tsn = retval->c.initial_tsn;
1855 retval->ctsn_ack_point = retval->next_tsn - 1;
1856 retval->addip_serial = retval->c.initial_tsn;
Xin Longcc16f002017-01-18 00:44:42 +08001857 retval->strreset_outseq = retval->c.initial_tsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 retval->adv_peer_ack_point = retval->ctsn_ack_point;
1859 retval->peer.prsctp_capable = retval->c.prsctp_capable;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001860 retval->peer.adaptation_ind = retval->c.adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 /* The INIT stuff will be done by the side effects. */
1863 return retval;
1864
1865fail:
1866 if (retval)
1867 sctp_association_free(retval);
1868
1869 return NULL;
1870
1871malformed:
1872 /* Yikes! The packet is either corrupt or deliberately
1873 * malformed.
1874 */
1875 *error = -SCTP_IERROR_MALFORMED;
1876 goto fail;
1877}
1878
1879/********************************************************************
1880 * 3rd Level Abstractions
1881 ********************************************************************/
1882
1883struct __sctp_missing {
Al Viro9f81bcd2006-11-20 17:26:34 -08001884 __be32 num_missing;
1885 __be16 type;
Eric Dumazetbc105022010-06-03 03:21:52 -07001886} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888/*
1889 * Report a missing mandatory parameter.
1890 */
1891static int sctp_process_missing_param(const struct sctp_association *asoc,
Xin Long34b4e292017-06-30 11:52:17 +08001892 enum sctp_param paramtype,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 struct sctp_chunk *chunk,
1894 struct sctp_chunk **errp)
1895{
1896 struct __sctp_missing report;
1897 __u16 len;
1898
Marcelo Ricardo Leitnere2f036a2016-09-21 08:45:55 -03001899 len = SCTP_PAD4(sizeof(report));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* Make an ERROR chunk, preparing enough room for
1902 * returning multiple unknown parameters.
1903 */
1904 if (!*errp)
1905 *errp = sctp_make_op_error_space(asoc, chunk, len);
1906
1907 if (*errp) {
1908 report.num_missing = htonl(1);
1909 report.type = paramtype;
Vlad Yasevichebdfcad2007-01-15 19:12:31 -08001910 sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001911 sizeof(report));
1912 sctp_addto_chunk(*errp, sizeof(report), &report);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914
1915 /* Stop processing this chunk. */
1916 return 0;
1917}
1918
1919/* Report an Invalid Mandatory Parameter. */
1920static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
1921 struct sctp_chunk *chunk,
1922 struct sctp_chunk **errp)
1923{
1924 /* Invalid Mandatory Parameter Error has no payload. */
1925
1926 if (!*errp)
1927 *errp = sctp_make_op_error_space(asoc, chunk, 0);
1928
1929 if (*errp)
Wei Yongjun00f1c2d2007-08-21 15:50:01 +08001930 sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* Stop processing this chunk. */
1933 return 0;
1934}
1935
1936static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
1937 struct sctp_paramhdr *param,
1938 const struct sctp_chunk *chunk,
1939 struct sctp_chunk **errp)
1940{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001941 /* This is a fatal error. Any accumulated non-fatal errors are
1942 * not reported.
1943 */
1944 if (*errp)
1945 sctp_chunk_free(*errp);
1946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /* Create an error chunk and fill it in with our payload. */
Wei Yongjunba016672008-09-30 05:32:24 -07001948 *errp = sctp_make_violation_paramlen(asoc, chunk, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 return 0;
1951}
1952
1953
1954/* Do not attempt to handle the HOST_NAME parm. However, do
1955 * send back an indicator to the peer.
1956 */
1957static int sctp_process_hn_param(const struct sctp_association *asoc,
1958 union sctp_params param,
1959 struct sctp_chunk *chunk,
1960 struct sctp_chunk **errp)
1961{
1962 __u16 len = ntohs(param.p->length);
1963
Vlad Yasevich7ab90802007-11-09 11:43:41 -05001964 /* Processing of the HOST_NAME parameter will generate an
1965 * ABORT. If we've accumulated any non-fatal errors, they
1966 * would be unrecognized parameters and we should not include
1967 * them in the ABORT.
1968 */
1969 if (*errp)
1970 sctp_chunk_free(*errp);
1971
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03001972 *errp = sctp_make_op_error(asoc, chunk, SCTP_ERROR_DNS_FAILED,
1973 param.v, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 /* Stop processing this chunk. */
1976 return 0;
1977}
1978
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00001979static int sctp_verify_ext_param(struct net *net, union sctp_params param)
Vlad Yasevichd6701192007-12-20 14:13:31 -08001980{
Xin Long3c918702017-06-30 11:52:16 +08001981 __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Vlad Yasevichd6701192007-12-20 14:13:31 -08001982 int have_asconf = 0;
Xin Long327c0da2017-08-11 10:23:58 +08001983 int have_auth = 0;
Vlad Yasevichd6701192007-12-20 14:13:31 -08001984 int i;
1985
1986 for (i = 0; i < num_ext; i++) {
1987 switch (param.ext->chunks[i]) {
wangweidongf7010e62013-12-23 12:16:52 +08001988 case SCTP_CID_AUTH:
1989 have_auth = 1;
1990 break;
1991 case SCTP_CID_ASCONF:
1992 case SCTP_CID_ASCONF_ACK:
1993 have_asconf = 1;
1994 break;
Vlad Yasevichd6701192007-12-20 14:13:31 -08001995 }
1996 }
1997
1998 /* ADD-IP Security: The draft requires us to ABORT or ignore the
1999 * INIT/INIT-ACK if ADD-IP is listed, but AUTH is not. Do this
2000 * only if ADD-IP is turned on and we are not backward-compatible
2001 * mode.
2002 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002003 if (net->sctp.addip_noauth)
Vlad Yasevichd6701192007-12-20 14:13:31 -08002004 return 1;
2005
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002006 if (net->sctp.addip_enable && !have_auth && have_asconf)
Vlad Yasevichd6701192007-12-20 14:13:31 -08002007 return 0;
2008
2009 return 1;
2010}
2011
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002012static void sctp_process_ext_param(struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +08002013 union sctp_params param)
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002014{
Xin Long3c918702017-06-30 11:52:16 +08002015 __u16 num_ext = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Xin Long327c0da2017-08-11 10:23:58 +08002016 struct net *net = sock_net(asoc->base.sk);
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002017 int i;
2018
2019 for (i = 0; i < num_ext; i++) {
2020 switch (param.ext->chunks[i]) {
Xin Longc28445c2017-01-18 00:44:45 +08002021 case SCTP_CID_RECONF:
2022 if (asoc->reconf_enable &&
2023 !asoc->peer.reconf_capable)
2024 asoc->peer.reconf_capable = 1;
2025 break;
wangweidongf7010e62013-12-23 12:16:52 +08002026 case SCTP_CID_FWD_TSN:
Xin Long28aa4c22016-07-09 19:47:40 +08002027 if (asoc->prsctp_enable && !asoc->peer.prsctp_capable)
2028 asoc->peer.prsctp_capable = 1;
wangweidongf7010e62013-12-23 12:16:52 +08002029 break;
2030 case SCTP_CID_AUTH:
2031 /* if the peer reports AUTH, assume that he
2032 * supports AUTH.
2033 */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002034 if (asoc->ep->auth_enable)
wangweidongf7010e62013-12-23 12:16:52 +08002035 asoc->peer.auth_capable = 1;
2036 break;
2037 case SCTP_CID_ASCONF:
2038 case SCTP_CID_ASCONF_ACK:
2039 if (net->sctp.addip_enable)
2040 asoc->peer.asconf_capable = 1;
2041 break;
Xin Long96b120b2017-12-08 21:03:59 +08002042 case SCTP_CID_I_DATA:
2043 if (sctp_sk(asoc->base.sk)->strm_interleave)
2044 asoc->intl_enable = 1;
2045 break;
wangweidongf7010e62013-12-23 12:16:52 +08002046 default:
2047 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002048 }
2049 }
2050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052/* RFC 3.2.1 & the Implementers Guide 2.2.
2053 *
2054 * The Parameter Types are encoded such that the
2055 * highest-order two bits specify the action that must be
2056 * taken if the processing endpoint does not recognize the
2057 * Parameter Type.
2058 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002059 * 00 - Stop processing this parameter; do not process any further
2060 * parameters within this chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 *
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002062 * 01 - Stop processing this parameter, do not process any further
2063 * parameters within this chunk, and report the unrecognized
2064 * parameter in an 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 *
2066 * 10 - Skip this parameter and continue processing.
2067 *
2068 * 11 - Skip this parameter and continue processing but
2069 * report the unrecognized parameter in an
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002070 * 'Unrecognized Parameter' ERROR chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 *
2072 * Return value:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002073 * SCTP_IERROR_NO_ERROR - continue with the chunk
2074 * SCTP_IERROR_ERROR - stop and report an error.
2075 * SCTP_IERROR_NOMEME - out of memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 */
Xin Long4785c7a2017-08-05 19:59:58 +08002077static enum sctp_ierror sctp_process_unk_param(
2078 const struct sctp_association *asoc,
2079 union sctp_params param,
2080 struct sctp_chunk *chunk,
2081 struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002083 int retval = SCTP_IERROR_NO_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
2086 case SCTP_PARAM_ACTION_DISCARD:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002087 retval = SCTP_IERROR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 break;
2089 case SCTP_PARAM_ACTION_SKIP:
2090 break;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002091 case SCTP_PARAM_ACTION_DISCARD_ERR:
2092 retval = SCTP_IERROR_ERROR;
2093 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 case SCTP_PARAM_ACTION_SKIP_ERR:
2095 /* Make an ERROR chunk, preparing enough room for
2096 * returning multiple unknown parameters.
2097 */
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03002098 if (!*errp) {
2099 *errp = sctp_make_op_error_limited(asoc, chunk);
2100 if (!*errp) {
2101 /* If there is no memory for generating the
2102 * ERROR report as specified, an ABORT will be
2103 * triggered to the peer and the association
2104 * won't be established.
2105 */
2106 retval = SCTP_IERROR_NOMEM;
2107 break;
2108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03002110
2111 if (!sctp_init_cause(*errp, SCTP_ERROR_UNKNOWN_PARAM,
2112 ntohs(param.p->length)))
2113 sctp_addto_chunk(*errp, ntohs(param.p->length),
2114 param.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 break;
2116 default:
2117 break;
2118 }
2119
2120 return retval;
2121}
2122
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002123/* Verify variable length parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * Return values:
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002125 * SCTP_IERROR_ABORT - trigger an ABORT
2126 * SCTP_IERROR_NOMEM - out of memory (abort)
2127 * SCTP_IERROR_ERROR - stop processing, trigger an ERROR
2128 * SCTP_IERROR_NO_ERROR - continue with the chunk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 */
Xin Long4785c7a2017-08-05 19:59:58 +08002130static enum sctp_ierror sctp_verify_param(struct net *net,
2131 const struct sctp_endpoint *ep,
2132 const struct sctp_association *asoc,
2133 union sctp_params param,
2134 enum sctp_cid cid,
2135 struct sctp_chunk *chunk,
2136 struct sctp_chunk **err_chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Wei Yongjun72da7b32008-04-12 18:39:19 -07002138 struct sctp_hmac_algo_param *hmacs;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002139 int retval = SCTP_IERROR_NO_ERROR;
Wei Yongjun72da7b32008-04-12 18:39:19 -07002140 __u16 n_elt, id = 0;
2141 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* FIXME - This routine is not looking at each parameter per the
2144 * chunk type, i.e., unrecognized parameters should be further
2145 * identified based on the chunk id.
2146 */
2147
2148 switch (param.p->type) {
2149 case SCTP_PARAM_IPV4_ADDRESS:
2150 case SCTP_PARAM_IPV6_ADDRESS:
2151 case SCTP_PARAM_COOKIE_PRESERVATIVE:
2152 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2153 case SCTP_PARAM_STATE_COOKIE:
2154 case SCTP_PARAM_HEARTBEAT_INFO:
2155 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2156 case SCTP_PARAM_ECN_CAPABLE:
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002157 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yasevichd6701192007-12-20 14:13:31 -08002158 break;
2159
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002160 case SCTP_PARAM_SUPPORTED_EXT:
Eric W. Biedermanf53b5b02012-08-07 07:29:08 +00002161 if (!sctp_verify_ext_param(net, param))
Vlad Yasevichd6701192007-12-20 14:13:31 -08002162 return SCTP_IERROR_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002165 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002166 if (net->sctp.addip_enable)
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002167 break;
2168 goto fallthrough;
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 case SCTP_PARAM_HOST_NAME_ADDRESS:
2171 /* Tell the peer, we won't support this param. */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002172 sctp_process_hn_param(asoc, param, chunk, err_chunk);
2173 retval = SCTP_IERROR_ABORT;
2174 break;
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002177 if (ep->prsctp_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002179 goto fallthrough;
2180
2181 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002182 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002183 goto fallthrough;
2184
2185 /* SCTP-AUTH: Secion 6.1
2186 * If the random number is not 32 byte long the association
2187 * MUST be aborted. The ABORT chunk SHOULD contain the error
2188 * cause 'Protocol Violation'.
2189 */
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03002190 if (SCTP_AUTH_RANDOM_LENGTH != ntohs(param.p->length) -
2191 sizeof(struct sctp_paramhdr)) {
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002192 sctp_process_inv_paramlength(asoc, param.p,
Marcelo Ricardo Leitner8914f4b2018-04-29 12:56:32 -03002193 chunk, err_chunk);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002194 retval = SCTP_IERROR_ABORT;
2195 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002196 break;
2197
2198 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002199 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002200 goto fallthrough;
2201
2202 /* SCTP-AUTH: Section 3.2
2203 * The CHUNKS parameter MUST be included once in the INIT or
2204 * INIT-ACK chunk if the sender wants to receive authenticated
2205 * chunks. Its maximum length is 260 bytes.
2206 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002207 if (260 < ntohs(param.p->length)) {
2208 sctp_process_inv_paramlength(asoc, param.p,
2209 chunk, err_chunk);
2210 retval = SCTP_IERROR_ABORT;
2211 }
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002212 break;
2213
2214 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002215 if (!ep->auth_enable)
Wei Yongjun72da7b32008-04-12 18:39:19 -07002216 goto fallthrough;
2217
2218 hmacs = (struct sctp_hmac_algo_param *)param.p;
Xin Long3c918702017-06-30 11:52:16 +08002219 n_elt = (ntohs(param.p->length) -
2220 sizeof(struct sctp_paramhdr)) >> 1;
Wei Yongjun72da7b32008-04-12 18:39:19 -07002221
2222 /* SCTP-AUTH: Section 6.1
2223 * The HMAC algorithm based on SHA-1 MUST be supported and
2224 * included in the HMAC-ALGO parameter.
2225 */
2226 for (i = 0; i < n_elt; i++) {
2227 id = ntohs(hmacs->hmac_ids[i]);
2228
2229 if (id == SCTP_AUTH_HMAC_ID_SHA1)
2230 break;
2231 }
2232
2233 if (id != SCTP_AUTH_HMAC_ID_SHA1) {
2234 sctp_process_inv_paramlength(asoc, param.p, chunk,
2235 err_chunk);
2236 retval = SCTP_IERROR_ABORT;
2237 }
2238 break;
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002239fallthrough:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 default:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002241 pr_debug("%s: unrecognized param:%d for chunk:%d\n",
2242 __func__, ntohs(param.p->type), cid);
2243
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002244 retval = sctp_process_unk_param(asoc, param, chunk, err_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 break;
2246 }
2247 return retval;
2248}
2249
2250/* Verify the INIT packet before we process it. */
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002251int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep,
Xin Long6d85e682017-06-30 11:52:14 +08002252 const struct sctp_association *asoc, enum sctp_cid cid,
Xin Long01a992b2017-06-30 11:52:22 +08002253 struct sctp_init_chunk *peer_init,
2254 struct sctp_chunk *chunk, struct sctp_chunk **errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 union sctp_params param;
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002257 bool has_cookie = false;
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002258 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002260 /* Check for missing mandatory parameters. Note: Initial TSN is
2261 * also mandatory, but is not checked here since the valid range
2262 * is 0..2**32-1. RFC4960, section 3.3.3.
2263 */
2264 if (peer_init->init_hdr.num_outbound_streams == 0 ||
2265 peer_init->init_hdr.num_inbound_streams == 0 ||
2266 peer_init->init_hdr.init_tag == 0 ||
2267 ntohl(peer_init->init_hdr.a_rwnd) < SCTP_DEFAULT_MINWINDOW)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002268 return sctp_process_inv_mandatory(asoc, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 sctp_walk_params(param, peer_init, init_hdr.params) {
Daniel Borkmann7613f5f2013-08-27 16:53:52 +02002271 if (param.p->type == SCTP_PARAM_STATE_COOKIE)
2272 has_cookie = true;
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 /* There is a possibility that a parameter length was bad and
2276 * in that case we would have stoped walking the parameters.
2277 * The current param.p would point at the bad one.
2278 * Current consensus on the mailing list is to generate a PROTOCOL
2279 * VIOLATION error. We build the ERROR chunk here and let the normal
2280 * error handling code build and send the packet.
2281 */
wangweidong26ac8e52013-12-23 12:16:51 +08002282 if (param.v != (void *)chunk->chunk_end)
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002283 return sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 /* The only missing mandatory param possible today is
2286 * the state cookie for an INIT-ACK chunk.
2287 */
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002288 if ((SCTP_CID_INIT_ACK == cid) && !has_cookie)
2289 return sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
2290 chunk, errp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002292 /* Verify all the variable length parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 sctp_walk_params(param, peer_init, init_hdr.params) {
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002294 result = sctp_verify_param(net, ep, asoc, param, cid,
2295 chunk, errp);
Vlad Yasevich7ab90802007-11-09 11:43:41 -05002296 switch (result) {
wangweidongf7010e62013-12-23 12:16:52 +08002297 case SCTP_IERROR_ABORT:
2298 case SCTP_IERROR_NOMEM:
2299 return 0;
2300 case SCTP_IERROR_ERROR:
2301 return 1;
2302 case SCTP_IERROR_NO_ERROR:
2303 default:
2304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
2306
2307 } /* for (loop through all parameters) */
2308
2309 return 1;
2310}
2311
2312/* Unpack the parameters in an INIT packet into an association.
2313 * Returns 0 on failure, else success.
2314 * FIXME: This is an association method.
2315 */
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002316int sctp_process_init(struct sctp_association *asoc, struct sctp_chunk *chunk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 const union sctp_addr *peer_addr,
Xin Long01a992b2017-06-30 11:52:22 +08002318 struct sctp_init_chunk *peer_init, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002320 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 struct sctp_transport *transport;
2322 struct list_head *pos, *temp;
Xin Long327c0da2017-08-11 10:23:58 +08002323 union sctp_params param;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002324 union sctp_addr addr;
Xin Long327c0da2017-08-11 10:23:58 +08002325 struct sctp_af *af;
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002326 int src_match = 0;
Xin Long327c0da2017-08-11 10:23:58 +08002327 char *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 /* We must include the address that the INIT packet came from.
2330 * This is the only address that matters for an INIT packet.
2331 * When processing a COOKIE ECHO, we retrieve the from address
2332 * of the INIT from the cookie.
2333 */
2334
2335 /* This implementation defaults to making the first transport
2336 * added as the primary transport. The source address seems to
2337 * be a a better choice than any of the embedded addresses.
2338 */
wangweidongcb3f8372013-12-23 12:16:50 +08002339 if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002340 goto nomem;
2341
2342 if (sctp_cmp_addr_exact(sctp_source(chunk), peer_addr))
2343 src_match = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 /* Process the initialization parameters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 sctp_walk_params(param, peer_init, init_hdr.params) {
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002347 if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
2348 param.p->type == SCTP_PARAM_IPV6_ADDRESS)) {
2349 af = sctp_get_af_specific(param_type2af(param.p->type));
2350 af->from_addr_param(&addr, param.addr,
2351 chunk->sctp_hdr->source, 0);
2352 if (sctp_cmp_addr_exact(sctp_source(chunk), &addr))
2353 src_match = 1;
2354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (!sctp_process_param(asoc, param, peer_addr, gfp))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002357 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359
Wei Yongjunde6becdc02011-04-19 21:30:51 +00002360 /* source address of chunk may not match any valid address */
2361 if (!src_match)
2362 goto clean_up;
2363
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002364 /* AUTH: After processing the parameters, make sure that we
2365 * have all the required info to potentially do authentications.
2366 */
2367 if (asoc->peer.auth_capable && (!asoc->peer.peer_random ||
2368 !asoc->peer.peer_hmacs))
2369 asoc->peer.auth_capable = 0;
2370
Vlad Yasevichd6701192007-12-20 14:13:31 -08002371 /* In a non-backward compatible mode, if the peer claims
2372 * support for ADD-IP but not AUTH, the ADD-IP spec states
2373 * that we MUST ABORT the association. Section 6. The section
2374 * also give us an option to silently ignore the packet, which
2375 * is what we'll do here.
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002376 */
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002377 if (!net->sctp.addip_noauth &&
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -04002378 (asoc->peer.asconf_capable && !asoc->peer.auth_capable)) {
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002379 asoc->peer.addip_disabled_mask |= (SCTP_PARAM_ADD_IP |
2380 SCTP_PARAM_DEL_IP |
2381 SCTP_PARAM_SET_PRIMARY);
Vlad Yasevich88799fe2007-10-24 17:24:23 -04002382 asoc->peer.asconf_capable = 0;
Vlad Yasevichd6701192007-12-20 14:13:31 -08002383 goto clean_up;
Vlad Yasevich6b2f9cb2007-09-16 19:35:39 -07002384 }
2385
Frank Filz3f7a87d2005-06-20 13:14:57 -07002386 /* Walk list of transports, removing transports in the UNKNOWN state. */
2387 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2388 transport = list_entry(pos, struct sctp_transport, transports);
2389 if (transport->state == SCTP_UNKNOWN) {
2390 sctp_assoc_rm_peer(asoc, transport);
2391 }
2392 }
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 /* The fixed INIT headers are always in network byte
2395 * order.
2396 */
2397 asoc->peer.i.init_tag =
2398 ntohl(peer_init->init_hdr.init_tag);
2399 asoc->peer.i.a_rwnd =
2400 ntohl(peer_init->init_hdr.a_rwnd);
2401 asoc->peer.i.num_outbound_streams =
2402 ntohs(peer_init->init_hdr.num_outbound_streams);
2403 asoc->peer.i.num_inbound_streams =
2404 ntohs(peer_init->init_hdr.num_inbound_streams);
2405 asoc->peer.i.initial_tsn =
2406 ntohl(peer_init->init_hdr.initial_tsn);
2407
Xin Longcc16f002017-01-18 00:44:42 +08002408 asoc->strreset_inseq = asoc->peer.i.initial_tsn;
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 /* Apply the upper bounds for output streams based on peer's
2411 * number of inbound streams.
2412 */
2413 if (asoc->c.sinit_num_ostreams >
2414 ntohs(peer_init->init_hdr.num_inbound_streams)) {
2415 asoc->c.sinit_num_ostreams =
2416 ntohs(peer_init->init_hdr.num_inbound_streams);
2417 }
2418
2419 if (asoc->c.sinit_max_instreams >
2420 ntohs(peer_init->init_hdr.num_outbound_streams)) {
2421 asoc->c.sinit_max_instreams =
2422 ntohs(peer_init->init_hdr.num_outbound_streams);
2423 }
2424
2425 /* Copy Initiation tag from INIT to VT_peer in cookie. */
2426 asoc->c.peer_vtag = asoc->peer.i.init_tag;
2427
2428 /* Peer Rwnd : Current calculated value of the peer's rwnd. */
2429 asoc->peer.rwnd = asoc->peer.i.a_rwnd;
2430
2431 /* Copy cookie in case we need to resend COOKIE-ECHO. */
2432 cookie = asoc->peer.cookie;
2433 if (cookie) {
Arnaldo Carvalho de Meloaf997d82006-11-21 01:20:33 -02002434 asoc->peer.cookie = kmemdup(cookie, asoc->peer.cookie_len, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (!asoc->peer.cookie)
2436 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
2438
2439 /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
2440 * high (for example, implementations MAY use the size of the receiver
2441 * advertised window).
2442 */
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07002443 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
2444 transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 transport->ssthresh = asoc->peer.i.a_rwnd;
2446 }
2447
2448 /* Set up the TSN tracking pieces. */
Vlad Yasevich8e1ee182008-10-08 14:18:39 -07002449 if (!sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
2450 asoc->peer.i.initial_tsn, gfp))
2451 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
2454 *
2455 * The stream sequence number in all the streams shall start
2456 * from 0 when the association is established. Also, when the
2457 * stream sequence number reaches the value 65535 the next
2458 * stream sequence number shall be set to 0.
2459 */
2460
Xin Longff356412017-05-31 16:36:32 +08002461 if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams,
2462 asoc->c.sinit_max_instreams, gfp))
Xin Long7e062972017-05-23 13:28:55 +08002463 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Xin Long7e062972017-05-23 13:28:55 +08002465 if (!asoc->temp && sctp_assoc_set_id(asoc, gfp))
2466 goto clean_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 /* ADDIP Section 4.1 ASCONF Chunk Procedures
2469 *
2470 * When an endpoint has an ASCONF signaled change to be sent to the
2471 * remote endpoint it should do the following:
2472 * ...
2473 * A2) A serial number should be assigned to the Chunk. The serial
2474 * number should be a monotonically increasing number. All serial
2475 * numbers are defined to be initialized at the start of the
2476 * association to the same value as the Initial TSN.
2477 */
2478 asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
2479 return 1;
2480
2481clean_up:
2482 /* Release the transport structures. */
2483 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2484 transport = list_entry(pos, struct sctp_transport, transports);
Vlad Yasevichadd52372008-09-18 16:28:27 -07002485 if (transport->state != SCTP_ACTIVE)
2486 sctp_assoc_rm_peer(asoc, transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 }
Frank Filz3f7a87d2005-06-20 13:14:57 -07002488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489nomem:
2490 return 0;
2491}
2492
2493
2494/* Update asoc with the option described in param.
2495 *
2496 * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
2497 *
2498 * asoc is the association to update.
2499 * param is the variable length parameter to use for update.
2500 * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
2501 * If the current packet is an INIT we want to minimize the amount of
2502 * work we do. In particular, we should not build transport
2503 * structures for the addresses.
2504 */
2505static int sctp_process_param(struct sctp_association *asoc,
2506 union sctp_params param,
2507 const union sctp_addr *peer_addr,
Al Virodd0fc662005-10-07 07:46:04 +01002508 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002510 struct net *net = sock_net(asoc->base.sk);
Xin Long327c0da2017-08-11 10:23:58 +08002511 struct sctp_endpoint *ep = asoc->ep;
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002512 union sctp_addr_param *addr_param;
2513 struct sctp_transport *t;
Xin Long327c0da2017-08-11 10:23:58 +08002514 enum sctp_scope scope;
2515 union sctp_addr addr;
2516 struct sctp_af *af;
2517 int retval = 1, i;
2518 u32 stale;
2519 __u16 sat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 /* We maintain all INIT parameters in network byte order all the
2522 * time. This allows us to not worry about whether the parameters
2523 * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
2524 */
2525 switch (param.p->type) {
2526 case SCTP_PARAM_IPV6_ADDRESS:
2527 if (PF_INET6 != asoc->base.sk->sk_family)
2528 break;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002529 goto do_addr_param;
2530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 case SCTP_PARAM_IPV4_ADDRESS:
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07002532 /* v4 addresses are not allowed on v6-only socket */
2533 if (ipv6_only_sock(asoc->base.sk))
2534 break;
2535do_addr_param:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 af = sctp_get_af_specific(param_type2af(param.p->type));
Al Virodd86d132006-11-20 17:11:13 -08002537 af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 scope = sctp_scope(peer_addr);
Eric W. Biedermane7ff4a72012-08-07 07:27:02 +00002539 if (sctp_in_scope(net, &addr, scope))
Al Virodd86d132006-11-20 17:11:13 -08002540 if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 return 0;
2542 break;
2543
2544 case SCTP_PARAM_COOKIE_PRESERVATIVE:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002545 if (!net->sctp.cookie_preserve_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 break;
2547
2548 stale = ntohl(param.life->lifespan_increment);
2549
2550 /* Suggested Cookie Life span increment's unit is msec,
2551 * (1/1000sec).
2552 */
Daniel Borkmann52db8822013-06-25 18:17:27 +02002553 asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 break;
2555
2556 case SCTP_PARAM_HOST_NAME_ADDRESS:
Daniel Borkmannbb333812013-06-28 19:49:40 +02002557 pr_debug("%s: unimplemented SCTP_HOST_NAME_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 break;
2559
2560 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2561 /* Turn off the default values first so we'll know which
2562 * ones are really set by the peer.
2563 */
2564 asoc->peer.ipv4_address = 0;
2565 asoc->peer.ipv6_address = 0;
2566
Gui Jianfeng140ee962008-03-05 13:43:32 -08002567 /* Assume that peer supports the address family
2568 * by which it sends a packet.
2569 */
2570 if (peer_addr->sa.sa_family == AF_INET6)
2571 asoc->peer.ipv6_address = 1;
2572 else if (peer_addr->sa.sa_family == AF_INET)
2573 asoc->peer.ipv4_address = 1;
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 /* Cycle through address types; avoid divide by 0. */
Xin Long3c918702017-06-30 11:52:16 +08002576 sat = ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (sat)
2578 sat /= sizeof(__u16);
2579
2580 for (i = 0; i < sat; ++i) {
2581 switch (param.sat->types[i]) {
2582 case SCTP_PARAM_IPV4_ADDRESS:
2583 asoc->peer.ipv4_address = 1;
2584 break;
2585
2586 case SCTP_PARAM_IPV6_ADDRESS:
Wei Yongjun6e40a912008-05-09 15:11:17 -07002587 if (PF_INET6 == asoc->base.sk->sk_family)
2588 asoc->peer.ipv6_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 break;
2590
2591 case SCTP_PARAM_HOST_NAME_ADDRESS:
2592 asoc->peer.hostname_address = 1;
2593 break;
2594
2595 default: /* Just ignore anything else. */
2596 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 }
2599 break;
2600
2601 case SCTP_PARAM_STATE_COOKIE:
2602 asoc->peer.cookie_len =
Xin Long3c918702017-06-30 11:52:16 +08002603 ntohs(param.p->length) - sizeof(struct sctp_paramhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 asoc->peer.cookie = param.cookie->body;
2605 break;
2606
2607 case SCTP_PARAM_HEARTBEAT_INFO:
2608 /* Would be odd to receive, but it causes no problems. */
2609 break;
2610
2611 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2612 /* Rejected during verify stage. */
2613 break;
2614
2615 case SCTP_PARAM_ECN_CAPABLE:
2616 asoc->peer.ecn_capable = 1;
2617 break;
2618
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08002619 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Vlad Yaseviche69c4e02008-09-15 16:29:49 -04002620 asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 break;
2622
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002623 case SCTP_PARAM_SET_PRIMARY:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00002624 if (!net->sctp.addip_enable)
Vlad Yasevich0ef46e22008-09-18 16:27:38 -07002625 goto fall_through;
2626
Xin Long8b32f232017-08-03 15:42:18 +08002627 addr_param = param.v + sizeof(struct sctp_addip_param);
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002628
Saran Maruti Ramanaracfbf6542015-01-29 11:05:58 +01002629 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Daniel Borkmanne40607c2014-11-10 17:54:26 +01002630 if (af == NULL)
2631 break;
2632
Vlad Yasevichd6de3092007-12-20 14:10:00 -08002633 af->from_addr_param(&addr, addr_param,
2634 htons(asoc->peer.port), 0);
2635
2636 /* if the address is invalid, we can't process it.
2637 * XXX: see spec for what to do.
2638 */
2639 if (!af->addr_valid(&addr, NULL, NULL))
2640 break;
2641
2642 t = sctp_assoc_lookup_paddr(asoc, &addr);
2643 if (!t)
2644 break;
2645
2646 sctp_assoc_set_primary(asoc, t);
2647 break;
2648
Vlad Yasevich131a47e2007-09-16 15:53:56 -07002649 case SCTP_PARAM_SUPPORTED_EXT:
2650 sctp_process_ext_param(asoc, param);
2651 break;
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 case SCTP_PARAM_FWD_TSN_SUPPORT:
Xin Long28aa4c22016-07-09 19:47:40 +08002654 if (asoc->prsctp_enable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 asoc->peer.prsctp_capable = 1;
2656 break;
2657 }
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002658 /* Fall Through */
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002659 goto fall_through;
2660
2661 case SCTP_PARAM_RANDOM:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002662 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002663 goto fall_through;
2664
2665 /* Save peer's random parameter */
2666 asoc->peer.peer_random = kmemdup(param.p,
2667 ntohs(param.p->length), gfp);
2668 if (!asoc->peer.peer_random) {
2669 retval = 0;
2670 break;
2671 }
2672 break;
2673
2674 case SCTP_PARAM_HMAC_ALGO:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002675 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002676 goto fall_through;
2677
2678 /* Save peer's HMAC list */
2679 asoc->peer.peer_hmacs = kmemdup(param.p,
2680 ntohs(param.p->length), gfp);
2681 if (!asoc->peer.peer_hmacs) {
2682 retval = 0;
2683 break;
2684 }
2685
2686 /* Set the default HMAC the peer requested*/
2687 sctp_auth_asoc_set_default_hmac(asoc, param.hmac_algo);
2688 break;
2689
2690 case SCTP_PARAM_CHUNKS:
Vlad Yasevichb14878c2014-04-17 17:26:50 +02002691 if (!ep->auth_enable)
Vlad Yasevich730fc3d2007-09-16 19:32:11 -07002692 goto fall_through;
2693
2694 asoc->peer.peer_chunks = kmemdup(param.p,
2695 ntohs(param.p->length), gfp);
2696 if (!asoc->peer.peer_chunks)
2697 retval = 0;
2698 break;
2699fall_through:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 default:
2701 /* Any unrecognized parameters should have been caught
2702 * and handled by sctp_verify_param() which should be
2703 * called prior to this routine. Simply log the error
2704 * here.
2705 */
Daniel Borkmannbb333812013-06-28 19:49:40 +02002706 pr_debug("%s: ignoring param:%d for association:%p.\n",
2707 __func__, ntohs(param.p->type), asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 return retval;
2712}
2713
2714/* Select a new verification tag. */
2715__u32 sctp_generate_tag(const struct sctp_endpoint *ep)
2716{
2717 /* I believe that this random number generator complies with RFC1750.
2718 * A tag of 0 is reserved for special cases (e.g. INIT).
2719 */
2720 __u32 x;
2721
2722 do {
2723 get_random_bytes(&x, sizeof(__u32));
2724 } while (x == 0);
2725
2726 return x;
2727}
2728
2729/* Select an initial TSN to send during startup. */
2730__u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
2731{
2732 __u32 retval;
2733
2734 get_random_bytes(&retval, sizeof(__u32));
2735 return retval;
2736}
2737
2738/*
2739 * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
2740 * 0 1 2 3
2741 * 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
2742 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2743 * | Type = 0xC1 | Chunk Flags | Chunk Length |
2744 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2745 * | Serial Number |
2746 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2747 * | Address Parameter |
2748 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2749 * | ASCONF Parameter #1 |
2750 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2751 * \ \
2752 * / .... /
2753 * \ \
2754 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2755 * | ASCONF Parameter #N |
2756 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2757 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002758 * Address Parameter and other parameter will not be wrapped in this function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 */
2760static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
2761 union sctp_addr *addr,
2762 int vparam_len)
2763{
Xin Long65205cc2017-08-03 15:42:19 +08002764 struct sctp_addiphdr asconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 struct sctp_chunk *retval;
2766 int length = sizeof(asconf) + vparam_len;
2767 union sctp_addr_param addrparam;
2768 int addrlen;
2769 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2770
2771 addrlen = af->to_addr_param(addr, &addrparam);
2772 if (!addrlen)
2773 return NULL;
2774 length += addrlen;
2775
2776 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002777 retval = sctp_make_control(asoc, SCTP_CID_ASCONF, 0, length,
2778 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (!retval)
2780 return NULL;
2781
2782 asconf.serial = htonl(asoc->addip_serial++);
2783
2784 retval->subh.addip_hdr =
2785 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2786 retval->param_hdr.v =
2787 sctp_addto_chunk(retval, addrlen, &addrparam);
2788
2789 return retval;
2790}
2791
2792/* ADDIP
2793 * 3.2.1 Add 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 = 0xC001 | Length = Variable |
2798 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2799 * | ASCONF-Request Correlation ID |
2800 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2801 * | Address Parameter |
2802 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2803 *
2804 * 3.2.2 Delete IP Address
2805 * 0 1 2 3
2806 * 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
2807 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2808 * | Type = 0xC002 | Length = Variable |
2809 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2810 * | ASCONF-Request Correlation ID |
2811 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2812 * | Address Parameter |
2813 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2814 *
2815 */
2816struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
Xin Long327c0da2017-08-11 10:23:58 +08002817 union sctp_addr *laddr,
2818 struct sockaddr *addrs,
2819 int addrcnt, __be16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Xin Long327c0da2017-08-11 10:23:58 +08002821 union sctp_addr_param addr_param;
Xin Long8b32f232017-08-03 15:42:18 +08002822 struct sctp_addip_param param;
Xin Long327c0da2017-08-11 10:23:58 +08002823 int paramlen = sizeof(param);
2824 struct sctp_chunk *retval;
2825 int addr_param_len = 0;
2826 union sctp_addr *addr;
2827 int totallen = 0, i;
2828 int del_pickup = 0;
2829 struct sctp_af *af;
2830 void *addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
2832 /* Get total length of all the address parameters. */
2833 addr_buf = addrs;
2834 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002835 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 af = sctp_get_af_specific(addr->v4.sin_family);
2837 addr_param_len = af->to_addr_param(addr, &addr_param);
2838
2839 totallen += paramlen;
2840 totallen += addr_param_len;
2841
2842 addr_buf += af->sockaddr_len;
Michio Honda8a07eb02011-04-26 20:19:36 +09002843 if (asoc->asconf_addr_del_pending && !del_pickup) {
2844 /* reuse the parameter length from the same scope one */
2845 totallen += paramlen;
2846 totallen += addr_param_len;
2847 del_pickup = 1;
Daniel Borkmannbb333812013-06-28 19:49:40 +02002848
2849 pr_debug("%s: picked same-scope del_pending addr, "
2850 "totallen for all addresses is %d\n",
2851 __func__, totallen);
Michio Honda8a07eb02011-04-26 20:19:36 +09002852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 }
2854
2855 /* Create an asconf chunk with the required length. */
2856 retval = sctp_make_asconf(asoc, laddr, totallen);
2857 if (!retval)
2858 return NULL;
2859
2860 /* Add the address parameters to the asconf chunk. */
2861 addr_buf = addrs;
2862 for (i = 0; i < addrcnt; i++) {
Joe Perchesea110732011-06-13 16:21:26 +00002863 addr = addr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 af = sctp_get_af_specific(addr->v4.sin_family);
2865 addr_param_len = af->to_addr_param(addr, &addr_param);
2866 param.param_hdr.type = flags;
2867 param.param_hdr.length = htons(paramlen + addr_param_len);
Xin Long978aa042017-10-28 19:43:57 +08002868 param.crr_id = htonl(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
2870 sctp_addto_chunk(retval, paramlen, &param);
2871 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2872
2873 addr_buf += af->sockaddr_len;
2874 }
Michio Honda8a07eb02011-04-26 20:19:36 +09002875 if (flags == SCTP_PARAM_ADD_IP && del_pickup) {
2876 addr = asoc->asconf_addr_del_pending;
2877 af = sctp_get_af_specific(addr->v4.sin_family);
2878 addr_param_len = af->to_addr_param(addr, &addr_param);
2879 param.param_hdr.type = SCTP_PARAM_DEL_IP;
2880 param.param_hdr.length = htons(paramlen + addr_param_len);
Xin Long978aa042017-10-28 19:43:57 +08002881 param.crr_id = htonl(i);
Michio Honda8a07eb02011-04-26 20:19:36 +09002882
2883 sctp_addto_chunk(retval, paramlen, &param);
2884 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 return retval;
2887}
2888
2889/* ADDIP
2890 * 3.2.4 Set Primary IP Address
2891 * 0 1 2 3
2892 * 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
2893 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2894 * | Type =0xC004 | Length = Variable |
2895 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2896 * | ASCONF-Request Correlation ID |
2897 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2898 * | Address Parameter |
2899 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2900 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002901 * Create an ASCONF chunk with Set Primary IP address parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 */
2903struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
2904 union sctp_addr *addr)
2905{
Xin Long327c0da2017-08-11 10:23:58 +08002906 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2907 union sctp_addr_param addrparam;
Xin Long8b32f232017-08-03 15:42:18 +08002908 struct sctp_addip_param param;
Xin Long327c0da2017-08-11 10:23:58 +08002909 struct sctp_chunk *retval;
2910 int len = sizeof(param);
2911 int addrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
2913 addrlen = af->to_addr_param(addr, &addrparam);
2914 if (!addrlen)
2915 return NULL;
2916 len += addrlen;
2917
2918 /* Create the chunk and make asconf header. */
2919 retval = sctp_make_asconf(asoc, addr, len);
2920 if (!retval)
2921 return NULL;
2922
2923 param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
2924 param.param_hdr.length = htons(len);
2925 param.crr_id = 0;
2926
2927 sctp_addto_chunk(retval, sizeof(param), &param);
2928 sctp_addto_chunk(retval, addrlen, &addrparam);
2929
2930 return retval;
2931}
2932
2933/* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
2934 * 0 1 2 3
2935 * 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
2936 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2937 * | Type = 0x80 | Chunk Flags | Chunk Length |
2938 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2939 * | Serial Number |
2940 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2941 * | ASCONF Parameter Response#1 |
2942 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2943 * \ \
2944 * / .... /
2945 * \ \
2946 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2947 * | ASCONF Parameter Response#N |
2948 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2949 *
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002950 * Create an ASCONF_ACK chunk with enough space for the parameter responses.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 */
2952static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
2953 __u32 serial, int vparam_len)
2954{
Xin Long327c0da2017-08-11 10:23:58 +08002955 struct sctp_addiphdr asconf;
2956 struct sctp_chunk *retval;
2957 int length = sizeof(asconf) + vparam_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 /* Create the chunk. */
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03002960 retval = sctp_make_control(asoc, SCTP_CID_ASCONF_ACK, 0, length,
2961 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (!retval)
2963 return NULL;
2964
2965 asconf.serial = htonl(serial);
2966
2967 retval->subh.addip_hdr =
2968 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2969
2970 return retval;
2971}
2972
2973/* Add response parameters to an ASCONF_ACK chunk. */
Al Viro9f81bcd2006-11-20 17:26:34 -08002974static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
Xin Long8b32f232017-08-03 15:42:18 +08002975 __be16 err_code,
2976 struct sctp_addip_param *asconf_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Xin Long8b32f232017-08-03 15:42:18 +08002978 struct sctp_addip_param ack_param;
Xin Long327c0da2017-08-11 10:23:58 +08002979 struct sctp_errhdr err_param;
2980 int asconf_param_len = 0;
2981 int err_param_len = 0;
2982 __be16 response_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 if (SCTP_ERROR_NO_ERROR == err_code) {
2985 response_type = SCTP_PARAM_SUCCESS_REPORT;
2986 } else {
2987 response_type = SCTP_PARAM_ERR_CAUSE;
2988 err_param_len = sizeof(err_param);
2989 if (asconf_param)
2990 asconf_param_len =
2991 ntohs(asconf_param->param_hdr.length);
2992 }
2993
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09002994 /* Add Success Indication or Error Cause Indication parameter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 ack_param.param_hdr.type = response_type;
2996 ack_param.param_hdr.length = htons(sizeof(ack_param) +
2997 err_param_len +
2998 asconf_param_len);
2999 ack_param.crr_id = crr_id;
3000 sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
3001
3002 if (SCTP_ERROR_NO_ERROR == err_code)
3003 return;
3004
3005 /* Add Error Cause parameter. */
3006 err_param.cause = err_code;
3007 err_param.length = htons(err_param_len + asconf_param_len);
3008 sctp_addto_chunk(chunk, err_param_len, &err_param);
3009
3010 /* Add the failed TLV copied from ASCONF chunk. */
3011 if (asconf_param)
3012 sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
3013}
3014
3015/* Process a asconf parameter. */
Al Virodbc16db2006-11-20 17:01:42 -08003016static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
Xin Long8b32f232017-08-03 15:42:18 +08003017 struct sctp_chunk *asconf,
3018 struct sctp_addip_param *asconf_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 union sctp_addr_param *addr_param;
Xin Long327c0da2017-08-11 10:23:58 +08003021 struct sctp_transport *peer;
3022 union sctp_addr addr;
3023 struct sctp_af *af;
Al Viro5f242a132006-11-20 17:05:23 -08003024
Xin Long8b32f232017-08-03 15:42:18 +08003025 addr_param = (void *)asconf_param + sizeof(*asconf_param);
Patrick McHardyc1cc6782008-05-13 23:25:00 -07003026
Wei Yongjun44e65c12009-06-16 14:48:24 +08003027 if (asconf_param->param_hdr.type != SCTP_PARAM_ADD_IP &&
3028 asconf_param->param_hdr.type != SCTP_PARAM_DEL_IP &&
3029 asconf_param->param_hdr.type != SCTP_PARAM_SET_PRIMARY)
3030 return SCTP_ERROR_UNKNOWN_PARAM;
3031
Shan Wei6a435732011-04-18 19:11:47 +00003032 switch (addr_param->p.type) {
Wei Yongjunc4492582008-05-09 15:11:53 -07003033 case SCTP_PARAM_IPV6_ADDRESS:
3034 if (!asoc->peer.ipv6_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003035 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003036 break;
3037 case SCTP_PARAM_IPV4_ADDRESS:
3038 if (!asoc->peer.ipv4_address)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003039 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003040 break;
3041 default:
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003042 return SCTP_ERROR_DNS_FAILED;
Wei Yongjunc4492582008-05-09 15:11:53 -07003043 }
3044
Shan Wei6a435732011-04-18 19:11:47 +00003045 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 if (unlikely(!af))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003047 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
Al Virodd86d132006-11-20 17:11:13 -08003049 af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003050
3051 /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast
3052 * or multicast address.
3053 * (note: wildcard is permitted and requires special handling so
3054 * make sure we check for that)
3055 */
3056 if (!af->is_any(&addr) && !af->addr_valid(&addr, NULL, asconf->skb))
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003057 return SCTP_ERROR_DNS_FAILED;
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 switch (asconf_param->param_hdr.type) {
3060 case SCTP_PARAM_ADD_IP:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003061 /* Section 4.2.1:
3062 * If the address 0.0.0.0 or ::0 is provided, the source
3063 * address of the packet MUST be added.
3064 */
3065 if (af->is_any(&addr))
3066 memcpy(&addr, &asconf->source, sizeof(addr));
3067
Richard Haines2277c7c2018-02-13 20:56:24 +00003068 if (security_sctp_bind_connect(asoc->ep->base.sk,
3069 SCTP_PARAM_ADD_IP,
3070 (struct sockaddr *)&addr,
3071 af->sockaddr_len))
3072 return SCTP_ERROR_REQ_REFUSED;
3073
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003075 * request and does not have the local resources to add this
3076 * new address to the association, it MUST return an Error
3077 * Cause TLV set to the new error code 'Operation Refused
3078 * Due to Resource Shortage'.
3079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080
Al Virodd86d132006-11-20 17:11:13 -08003081 peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 if (!peer)
3083 return SCTP_ERROR_RSRC_LOW;
3084
3085 /* Start the heartbeat timer. */
Marcelo Ricardo Leitnerba6f5e32016-04-06 15:15:19 -03003086 sctp_transport_reset_hb_timer(peer);
Michio Honda6af29cc2011-06-16 17:14:34 +09003087 asoc->new_transport = peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 break;
3089 case SCTP_PARAM_DEL_IP:
3090 /* ADDIP 4.3 D7) If a request is received to delete the
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003091 * last remaining IP address of a peer endpoint, the receiver
3092 * MUST send an Error Cause TLV with the error cause set to the
3093 * new error code 'Request to Delete Last Remaining IP Address'.
3094 */
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003095 if (asoc->peer.transport_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 return SCTP_ERROR_DEL_LAST_IP;
3097
3098 /* ADDIP 4.3 D8) If a request is received to delete an IP
3099 * address which is also the source address of the IP packet
3100 * which contained the ASCONF chunk, the receiver MUST reject
3101 * this request. To reject the request the receiver MUST send
3102 * an Error Cause TLV set to the new error code 'Request to
3103 * Delete Source IP Address'
3104 */
Michio Hondab1364102011-04-26 17:37:02 +09003105 if (sctp_cmp_addr_exact(&asconf->source, &addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 return SCTP_ERROR_DEL_SRC_IP;
3107
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003108 /* Section 4.2.2
3109 * If the address 0.0.0.0 or ::0 is provided, all
3110 * addresses of the peer except the source address of the
3111 * packet MUST be deleted.
3112 */
3113 if (af->is_any(&addr)) {
3114 sctp_assoc_set_primary(asoc, asconf->transport);
3115 sctp_assoc_del_nonprimary_peers(asoc,
3116 asconf->transport);
lucien7c5a9462015-08-28 17:45:58 +08003117 return SCTP_ERROR_NO_ERROR;
3118 }
3119
3120 /* If the address is not part of the association, the
3121 * ASCONF-ACK with Error Cause Indication Parameter
3122 * which including cause of Unresolvable Address should
3123 * be sent.
3124 */
3125 peer = sctp_assoc_lookup_paddr(asoc, &addr);
3126 if (!peer)
3127 return SCTP_ERROR_DNS_FAILED;
3128
3129 sctp_assoc_rm_peer(asoc, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 break;
3131 case SCTP_PARAM_SET_PRIMARY:
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08003132 /* ADDIP Section 4.2.4
3133 * If the address 0.0.0.0 or ::0 is provided, the receiver
3134 * MAY mark the source address of the packet as its
3135 * primary.
3136 */
3137 if (af->is_any(&addr))
3138 memcpy(&addr.v4, sctp_source(asconf), sizeof(addr));
3139
Richard Haines2277c7c2018-02-13 20:56:24 +00003140 if (security_sctp_bind_connect(asoc->ep->base.sk,
3141 SCTP_PARAM_SET_PRIMARY,
3142 (struct sockaddr *)&addr,
3143 af->sockaddr_len))
3144 return SCTP_ERROR_REQ_REFUSED;
3145
Al Virodd86d132006-11-20 17:11:13 -08003146 peer = sctp_assoc_lookup_paddr(asoc, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 if (!peer)
Wei Yongjun945e5ab2009-04-16 14:21:02 +08003148 return SCTP_ERROR_DNS_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150 sctp_assoc_set_primary(asoc, peer);
3151 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 }
3153
3154 return SCTP_ERROR_NO_ERROR;
3155}
3156
Daniel Borkmann9de79222014-10-09 22:55:31 +02003157/* Verify the ASCONF packet before we process it. */
3158bool sctp_verify_asconf(const struct sctp_association *asoc,
3159 struct sctp_chunk *chunk, bool addr_param_needed,
3160 struct sctp_paramhdr **errp)
3161{
Xin Long68d75462017-08-03 15:42:20 +08003162 struct sctp_addip_chunk *addip;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003163 bool addr_param_seen = false;
Xin Long327c0da2017-08-11 10:23:58 +08003164 union sctp_params param;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003165
Xin Long68d75462017-08-03 15:42:20 +08003166 addip = (struct sctp_addip_chunk *)chunk->chunk_hdr;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003167 sctp_walk_params(param, addip, addip_hdr.params) {
3168 size_t length = ntohs(param.p->length);
3169
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003170 *errp = param.p;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003171 switch (param.p->type) {
Daniel Borkmann9de79222014-10-09 22:55:31 +02003172 case SCTP_PARAM_ERR_CAUSE:
3173 break;
3174 case SCTP_PARAM_IPV4_ADDRESS:
Xin Longa38905e2017-07-17 11:29:49 +08003175 if (length != sizeof(struct sctp_ipv4addr_param))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003176 return false;
lucience7b4cc2015-08-27 16:26:34 +08003177 /* ensure there is only one addr param and it's in the
3178 * beginning of addip_hdr params, or we reject it.
3179 */
3180 if (param.v != addip->addip_hdr.params)
3181 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003182 addr_param_seen = true;
3183 break;
3184 case SCTP_PARAM_IPV6_ADDRESS:
Xin Long00987cc2017-07-17 11:29:50 +08003185 if (length != sizeof(struct sctp_ipv6addr_param))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003186 return false;
lucience7b4cc2015-08-27 16:26:34 +08003187 if (param.v != addip->addip_hdr.params)
3188 return false;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003189 addr_param_seen = true;
3190 break;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003191 case SCTP_PARAM_ADD_IP:
3192 case SCTP_PARAM_DEL_IP:
3193 case SCTP_PARAM_SET_PRIMARY:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003194 /* In ASCONF chunks, these need to be first. */
3195 if (addr_param_needed && !addr_param_seen)
3196 return false;
3197 length = ntohs(param.addip->param_hdr.length);
Xin Long8b32f232017-08-03 15:42:18 +08003198 if (length < sizeof(struct sctp_addip_param) +
Xin Long3c918702017-06-30 11:52:16 +08003199 sizeof(**errp))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003200 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003201 break;
3202 case SCTP_PARAM_SUCCESS_REPORT:
3203 case SCTP_PARAM_ADAPTATION_LAYER_IND:
Xin Long8b32f232017-08-03 15:42:18 +08003204 if (length != sizeof(struct sctp_addip_param))
Daniel Borkmann9de79222014-10-09 22:55:31 +02003205 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003206 break;
3207 default:
Daniel Borkmann9de79222014-10-09 22:55:31 +02003208 /* This is unkown to us, reject! */
3209 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003210 }
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003211 }
3212
Daniel Borkmann9de79222014-10-09 22:55:31 +02003213 /* Remaining sanity checks. */
3214 if (addr_param_needed && !addr_param_seen)
3215 return false;
3216 if (!addr_param_needed && addr_param_seen)
3217 return false;
3218 if (param.v != chunk->chunk_end)
3219 return false;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003220
Daniel Borkmann9de79222014-10-09 22:55:31 +02003221 return true;
Wei Yongjun6f4c6182007-09-19 17:19:52 +08003222}
3223
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003224/* Process an incoming ASCONF chunk with the next expected serial no. and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 * return an ASCONF_ACK chunk to be sent in response.
3226 */
3227struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
3228 struct sctp_chunk *asconf)
3229{
Xin Long327c0da2017-08-11 10:23:58 +08003230 union sctp_addr_param *addr_param;
Xin Long68d75462017-08-03 15:42:20 +08003231 struct sctp_addip_chunk *addip;
Xin Long327c0da2017-08-11 10:23:58 +08003232 struct sctp_chunk *asconf_ack;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003233 bool all_param_pass = true;
Xin Long327c0da2017-08-11 10:23:58 +08003234 struct sctp_addiphdr *hdr;
3235 int length = 0, chunk_len;
Daniel Borkmann9de79222014-10-09 22:55:31 +02003236 union sctp_params param;
Xin Long327c0da2017-08-11 10:23:58 +08003237 __be16 err_code;
3238 __u32 serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Xin Long68d75462017-08-03 15:42:20 +08003240 addip = (struct sctp_addip_chunk *)asconf->chunk_hdr;
Xin Long922dbc52017-06-30 11:52:13 +08003241 chunk_len = ntohs(asconf->chunk_hdr->length) -
3242 sizeof(struct sctp_chunkhdr);
Xin Long65205cc2017-08-03 15:42:19 +08003243 hdr = (struct sctp_addiphdr *)asconf->skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 serial = ntohl(hdr->serial);
3245
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003246 /* Skip the addiphdr and store a pointer to address parameter. */
Xin Long65205cc2017-08-03 15:42:19 +08003247 length = sizeof(*hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3249 chunk_len -= length;
3250
3251 /* Skip the address parameter and store a pointer to the first
Joe Perches7aa1b542007-12-20 14:03:52 -08003252 * asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003253 */
Shan Wei6a435732011-04-18 19:11:47 +00003254 length = ntohs(addr_param->p.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 chunk_len -= length;
3256
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003257 /* create an ASCONF_ACK chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 * Based on the definitions of parameters, we know that the size of
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003259 * ASCONF_ACK parameters are less than or equal to the fourfold of ASCONF
Joe Perches7aa1b542007-12-20 14:03:52 -08003260 * parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 */
Wei Yongjun2cab86b2011-03-31 23:42:55 +00003262 asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 if (!asconf_ack)
3264 goto done;
3265
3266 /* Process the TLVs contained within the ASCONF chunk. */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003267 sctp_walk_params(param, addip, addip_hdr.params) {
3268 /* Skip preceeding address parameters. */
3269 if (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
3270 param.p->type == SCTP_PARAM_IPV6_ADDRESS)
3271 continue;
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 err_code = sctp_process_asconf_param(asoc, asconf,
Daniel Borkmann9de79222014-10-09 22:55:31 +02003274 param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 /* ADDIP 4.1 A7)
3276 * If an error response is received for a TLV parameter,
3277 * all TLVs with no response before the failed TLV are
3278 * considered successful if not reported. All TLVs after
3279 * the failed response are considered unsuccessful unless
3280 * a specific success indication is present for the parameter.
3281 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003282 if (err_code != SCTP_ERROR_NO_ERROR)
3283 all_param_pass = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 if (!all_param_pass)
Daniel Borkmann9de79222014-10-09 22:55:31 +02003285 sctp_add_asconf_response(asconf_ack, param.addip->crr_id,
3286 err_code, param.addip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
3289 * an IP address sends an 'Out of Resource' in its response, it
3290 * MUST also fail any subsequent add or delete requests bundled
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003291 * in the ASCONF.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 */
Daniel Borkmann9de79222014-10-09 22:55:31 +02003293 if (err_code == SCTP_ERROR_RSRC_LOW)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296done:
3297 asoc->peer.addip_serial++;
3298
3299 /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003300 * after freeing the reference to old asconf ack if any.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 */
3302 if (asconf_ack) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 sctp_chunk_hold(asconf_ack);
Vlad Yasevicha08de642007-12-20 14:11:47 -08003304 list_add_tail(&asconf_ack->transmitted_list,
3305 &asoc->asconf_ack_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307
3308 return asconf_ack;
3309}
3310
3311/* Process a asconf parameter that is successfully acked. */
Wei Yongjun425e0f62009-06-16 14:47:30 +08003312static void sctp_asconf_param_success(struct sctp_association *asoc,
Xin Long8b32f232017-08-03 15:42:18 +08003313 struct sctp_addip_param *asconf_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 struct sctp_bind_addr *bp = &asoc->base.bind_addr;
3316 union sctp_addr_param *addr_param;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003317 struct sctp_sockaddr_entry *saddr;
Xin Long327c0da2017-08-11 10:23:58 +08003318 struct sctp_transport *transport;
3319 union sctp_addr addr;
3320 struct sctp_af *af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Xin Long8b32f232017-08-03 15:42:18 +08003322 addr_param = (void *)asconf_param + sizeof(*asconf_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
3324 /* We have checked the packet before, so we do not check again. */
Shan Wei6a435732011-04-18 19:11:47 +00003325 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
Al Virodd86d132006-11-20 17:11:13 -08003326 af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
3328 switch (asconf_param->param_hdr.type) {
3329 case SCTP_PARAM_ADD_IP:
Vlad Yasevich559cf712007-09-16 16:03:28 -07003330 /* This is always done in BH context with a socket lock
3331 * held, so the list can not change.
3332 */
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003333 local_bh_disable();
Vlad Yasevich559cf712007-09-16 16:03:28 -07003334 list_for_each_entry(saddr, &bp->address_list, list) {
Al Virodd86d132006-11-20 17:11:13 -08003335 if (sctp_cmp_addr_exact(&saddr->a, &addr))
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08003336 saddr->state = SCTP_ADDR_SRC;
Sridhar Samudraladc022a92006-07-21 14:49:25 -07003337 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003338 local_bh_enable();
Wei Yongjun3cd97492009-06-16 10:07:23 +08003339 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3340 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +02003341 sctp_transport_dst_release(transport);
Wei Yongjun3cd97492009-06-16 10:07:23 +08003342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 break;
3344 case SCTP_PARAM_DEL_IP:
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003345 local_bh_disable();
Wei Yongjun425e0f62009-06-16 14:47:30 +08003346 sctp_del_bind_addr(bp, &addr);
Michio Honda8a07eb02011-04-26 20:19:36 +09003347 if (asoc->asconf_addr_del_pending != NULL &&
3348 sctp_cmp_addr_exact(asoc->asconf_addr_del_pending, &addr)) {
3349 kfree(asoc->asconf_addr_del_pending);
3350 asoc->asconf_addr_del_pending = NULL;
3351 }
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04003352 local_bh_enable();
Robert P. J. Day9dbc15f2008-04-12 18:54:24 -07003353 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3354 transports) {
Julian Anastasovc86a7732017-02-06 23:14:13 +02003355 sctp_transport_dst_release(transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
3357 break;
3358 default:
3359 break;
3360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361}
3362
3363/* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
3364 * for the given asconf parameter. If there is no response for this parameter,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003365 * return the error code based on the third argument 'no_err'.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 * ADDIP 4.1
3367 * A7) If an error response is received for a TLV parameter, all TLVs with no
3368 * response before the failed TLV are considered successful if not reported.
3369 * All TLVs after the failed response are considered unsuccessful unless a
3370 * specific success indication is present for the parameter.
3371 */
Al Virodbc16db2006-11-20 17:01:42 -08003372static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
Xin Long8b32f232017-08-03 15:42:18 +08003373 struct sctp_addip_param *asconf_param,
3374 int no_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375{
Xin Long8b32f232017-08-03 15:42:18 +08003376 struct sctp_addip_param *asconf_ack_param;
Xin Long327c0da2017-08-11 10:23:58 +08003377 struct sctp_errhdr *err_param;
3378 int asconf_ack_len;
3379 __be16 err_code;
3380 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 if (no_err)
3383 err_code = SCTP_ERROR_NO_ERROR;
3384 else
3385 err_code = SCTP_ERROR_REQ_REFUSED;
3386
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003387 asconf_ack_len = ntohs(asconf_ack->chunk_hdr->length) -
Xin Long922dbc52017-06-30 11:52:13 +08003388 sizeof(struct sctp_chunkhdr);
Wei Yongjunf3830cc2007-10-15 11:51:03 +09003389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
3391 * the first asconf_ack parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003392 */
Xin Long65205cc2017-08-03 15:42:19 +08003393 length = sizeof(struct sctp_addiphdr);
Xin Long8b32f232017-08-03 15:42:18 +08003394 asconf_ack_param = (struct sctp_addip_param *)(asconf_ack->skb->data +
3395 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 asconf_ack_len -= length;
3397
3398 while (asconf_ack_len > 0) {
3399 if (asconf_ack_param->crr_id == asconf_param->crr_id) {
wangweidongcb3f8372013-12-23 12:16:50 +08003400 switch (asconf_ack_param->param_hdr.type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 case SCTP_PARAM_SUCCESS_REPORT:
3402 return SCTP_ERROR_NO_ERROR;
3403 case SCTP_PARAM_ERR_CAUSE:
Xin Long8b32f232017-08-03 15:42:18 +08003404 length = sizeof(*asconf_ack_param);
Joe Perchesea110732011-06-13 16:21:26 +00003405 err_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 asconf_ack_len -= length;
3407 if (asconf_ack_len > 0)
3408 return err_param->cause;
3409 else
3410 return SCTP_ERROR_INV_PARAM;
3411 break;
3412 default:
3413 return SCTP_ERROR_INV_PARAM;
3414 }
3415 }
3416
3417 length = ntohs(asconf_ack_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003418 asconf_ack_param = (void *)asconf_ack_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 asconf_ack_len -= length;
3420 }
3421
3422 return err_code;
3423}
3424
3425/* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
3426int sctp_process_asconf_ack(struct sctp_association *asoc,
3427 struct sctp_chunk *asconf_ack)
3428{
Xin Long327c0da2017-08-11 10:23:58 +08003429 struct sctp_chunk *asconf = asoc->addip_last_asconf;
3430 struct sctp_addip_param *asconf_param;
3431 __be16 err_code = SCTP_ERROR_NO_ERROR;
3432 union sctp_addr_param *addr_param;
3433 int asconf_len = asconf->skb->len;
3434 int all_param_pass = 0;
3435 int length = 0;
3436 int no_err = 1;
3437 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
3439 /* Skip the chunkhdr and addiphdr from the last asconf sent and store
3440 * a pointer to address parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003441 */
Xin Long68d75462017-08-03 15:42:20 +08003442 length = sizeof(struct sctp_addip_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3444 asconf_len -= length;
3445
3446 /* Skip the address parameter in the last asconf sent and store a
Joe Perches7aa1b542007-12-20 14:03:52 -08003447 * pointer to the first asconf parameter.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003448 */
Shan Wei6a435732011-04-18 19:11:47 +00003449 length = ntohs(addr_param->p.length);
Joe Perchesea110732011-06-13 16:21:26 +00003450 asconf_param = (void *)addr_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 asconf_len -= length;
3452
3453 /* ADDIP 4.1
3454 * A8) If there is no response(s) to specific TLV parameter(s), and no
3455 * failures are indicated, then all request(s) are considered
3456 * successful.
3457 */
Xin Long65205cc2017-08-03 15:42:19 +08003458 if (asconf_ack->skb->len == sizeof(struct sctp_addiphdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 all_param_pass = 1;
3460
3461 /* Process the TLVs contained in the last sent ASCONF chunk. */
3462 while (asconf_len > 0) {
3463 if (all_param_pass)
3464 err_code = SCTP_ERROR_NO_ERROR;
3465 else {
3466 err_code = sctp_get_asconf_response(asconf_ack,
3467 asconf_param,
3468 no_err);
3469 if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
3470 no_err = 0;
3471 }
3472
3473 switch (err_code) {
3474 case SCTP_ERROR_NO_ERROR:
Wei Yongjun425e0f62009-06-16 14:47:30 +08003475 sctp_asconf_param_success(asoc, asconf_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 break;
3477
3478 case SCTP_ERROR_RSRC_LOW:
3479 retval = 1;
3480 break;
3481
Wei Yongjuna987f762009-04-07 15:44:29 +08003482 case SCTP_ERROR_UNKNOWN_PARAM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 /* Disable sending this type of asconf parameter in
3484 * future.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003485 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 asoc->peer.addip_disabled_mask |=
3487 asconf_param->param_hdr.type;
3488 break;
3489
3490 case SCTP_ERROR_REQ_REFUSED:
3491 case SCTP_ERROR_DEL_LAST_IP:
3492 case SCTP_ERROR_DEL_SRC_IP:
3493 default:
3494 break;
3495 }
3496
3497 /* Skip the processed asconf parameter and move to the next
3498 * one.
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003499 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 length = ntohs(asconf_param->param_hdr.length);
Joe Perchesea110732011-06-13 16:21:26 +00003501 asconf_param = (void *)asconf_param + length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 asconf_len -= length;
3503 }
3504
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003505 if (no_err && asoc->src_out_of_asoc_ok) {
Michio Honda8a07eb02011-04-26 20:19:36 +09003506 asoc->src_out_of_asoc_ok = 0;
Michio Hondaddc4bbe2011-06-17 11:03:23 +09003507 sctp_transport_immediate_rtx(asoc->peer.primary_path);
3508 }
Michio Honda8a07eb02011-04-26 20:19:36 +09003509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 /* Free the cached last sent asconf chunk. */
Vlad Yasevich5f9646c2008-02-05 14:23:44 -05003511 list_del_init(&asconf->transmitted_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 sctp_chunk_free(asconf);
3513 asoc->addip_last_asconf = NULL;
3514
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 return retval;
3516}
3517
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003518/* Make a FWD TSN chunk. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
3520 __u32 new_cum_tsn, size_t nstreams,
3521 struct sctp_fwdtsn_skip *skiplist)
3522{
3523 struct sctp_chunk *retval = NULL;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +09003524 struct sctp_fwdtsn_hdr ftsn_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 struct sctp_fwdtsn_skip skip;
3526 size_t hint;
3527 int i;
3528
3529 hint = (nstreams + 1) * sizeof(__u32);
3530
Marcelo Ricardo Leitnercea87682016-03-10 18:33:07 -03003531 retval = sctp_make_control(asoc, SCTP_CID_FWD_TSN, 0, hint, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
3533 if (!retval)
3534 return NULL;
3535
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
3537 retval->subh.fwdtsn_hdr =
3538 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
3539
3540 for (i = 0; i < nstreams; i++) {
3541 skip.stream = skiplist[i].stream;
3542 skip.ssn = skiplist[i].ssn;
3543 sctp_addto_chunk(retval, sizeof(skip), &skip);
3544 }
3545
3546 return retval;
3547}
Xin Longcc16f002017-01-18 00:44:42 +08003548
Xin Long2d07a492017-12-15 00:41:25 +08003549struct sctp_chunk *sctp_make_ifwdtsn(const struct sctp_association *asoc,
3550 __u32 new_cum_tsn, size_t nstreams,
3551 struct sctp_ifwdtsn_skip *skiplist)
3552{
3553 struct sctp_chunk *retval = NULL;
3554 struct sctp_ifwdtsn_hdr ftsn_hdr;
3555 size_t hint;
3556
3557 hint = (nstreams + 1) * sizeof(__u32);
3558
3559 retval = sctp_make_control(asoc, SCTP_CID_I_FWD_TSN, 0, hint,
3560 GFP_ATOMIC);
3561 if (!retval)
3562 return NULL;
3563
3564 ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
3565 retval->subh.ifwdtsn_hdr =
3566 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
3567
3568 sctp_addto_chunk(retval, nstreams * sizeof(skiplist[0]), skiplist);
3569
3570 return retval;
3571}
3572
Xin Longcc16f002017-01-18 00:44:42 +08003573/* RE-CONFIG 3.1 (RE-CONFIG chunk)
3574 * 0 1 2 3
3575 * 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
3576 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3577 * | Type = 130 | Chunk Flags | Chunk Length |
3578 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3579 * \ \
3580 * / Re-configuration Parameter /
3581 * \ \
3582 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3583 * \ \
3584 * / Re-configuration Parameter (optional) /
3585 * \ \
3586 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3587 */
Xin Long327c0da2017-08-11 10:23:58 +08003588static struct sctp_chunk *sctp_make_reconf(const struct sctp_association *asoc,
3589 int length)
Xin Longcc16f002017-01-18 00:44:42 +08003590{
3591 struct sctp_reconf_chunk *reconf;
3592 struct sctp_chunk *retval;
3593
3594 retval = sctp_make_control(asoc, SCTP_CID_RECONF, 0, length,
3595 GFP_ATOMIC);
3596 if (!retval)
3597 return NULL;
3598
3599 reconf = (struct sctp_reconf_chunk *)retval->chunk_hdr;
3600 retval->param_hdr.v = reconf->params;
3601
3602 return retval;
3603}
3604
3605/* RE-CONFIG 4.1 (STREAM OUT RESET)
3606 * 0 1 2 3
3607 * 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
3608 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3609 * | Parameter Type = 13 | Parameter Length = 16 + 2 * N |
3610 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3611 * | Re-configuration Request Sequence Number |
3612 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3613 * | Re-configuration Response Sequence Number |
3614 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3615 * | Sender's Last Assigned TSN |
3616 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3617 * | Stream Number 1 (optional) | Stream Number 2 (optional) |
3618 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3619 * / ...... /
3620 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3621 * | Stream Number N-1 (optional) | Stream Number N (optional) |
3622 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3623 *
3624 * RE-CONFIG 4.2 (STREAM IN RESET)
3625 * 0 1 2 3
3626 * 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
3627 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3628 * | Parameter Type = 14 | Parameter Length = 8 + 2 * N |
3629 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3630 * | Re-configuration Request Sequence Number |
3631 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3632 * | Stream Number 1 (optional) | Stream Number 2 (optional) |
3633 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3634 * / ...... /
3635 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3636 * | Stream Number N-1 (optional) | Stream Number N (optional) |
3637 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3638 */
3639struct sctp_chunk *sctp_make_strreset_req(
Xin Long327c0da2017-08-11 10:23:58 +08003640 const struct sctp_association *asoc,
Xin Long1da4fc92017-10-28 19:43:54 +08003641 __u16 stream_num, __be16 *stream_list,
Xin Long327c0da2017-08-11 10:23:58 +08003642 bool out, bool in)
Xin Longcc16f002017-01-18 00:44:42 +08003643{
Xin Long423852f2017-11-15 17:00:11 +08003644 __u16 stream_len = stream_num * sizeof(__u16);
Xin Longcc16f002017-01-18 00:44:42 +08003645 struct sctp_strreset_outreq outreq;
Xin Longcc16f002017-01-18 00:44:42 +08003646 struct sctp_strreset_inreq inreq;
3647 struct sctp_chunk *retval;
Xin Long16e1a912017-02-17 12:45:40 +08003648 __u16 outlen, inlen;
Xin Longcc16f002017-01-18 00:44:42 +08003649
3650 outlen = (sizeof(outreq) + stream_len) * out;
3651 inlen = (sizeof(inreq) + stream_len) * in;
3652
3653 retval = sctp_make_reconf(asoc, outlen + inlen);
3654 if (!retval)
3655 return NULL;
3656
Xin Longcc16f002017-01-18 00:44:42 +08003657 if (outlen) {
3658 outreq.param_hdr.type = SCTP_PARAM_RESET_OUT_REQUEST;
3659 outreq.param_hdr.length = htons(outlen);
3660 outreq.request_seq = htonl(asoc->strreset_outseq);
3661 outreq.response_seq = htonl(asoc->strreset_inseq - 1);
3662 outreq.send_reset_at_tsn = htonl(asoc->next_tsn - 1);
3663
3664 sctp_addto_chunk(retval, sizeof(outreq), &outreq);
3665
3666 if (stream_len)
3667 sctp_addto_chunk(retval, stream_len, stream_list);
3668 }
3669
3670 if (inlen) {
3671 inreq.param_hdr.type = SCTP_PARAM_RESET_IN_REQUEST;
3672 inreq.param_hdr.length = htons(inlen);
3673 inreq.request_seq = htonl(asoc->strreset_outseq + out);
3674
3675 sctp_addto_chunk(retval, sizeof(inreq), &inreq);
3676
3677 if (stream_len)
3678 sctp_addto_chunk(retval, stream_len, stream_list);
3679 }
3680
Xin Longcc16f002017-01-18 00:44:42 +08003681 return retval;
3682}
Xin Longc56480a2017-02-09 01:18:17 +08003683
3684/* RE-CONFIG 4.3 (SSN/TSN RESET ALL)
3685 * 0 1 2 3
3686 * 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
3687 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3688 * | Parameter Type = 15 | Parameter Length = 8 |
3689 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3690 * | Re-configuration Request Sequence Number |
3691 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3692 */
3693struct sctp_chunk *sctp_make_strreset_tsnreq(
Xin Long327c0da2017-08-11 10:23:58 +08003694 const struct sctp_association *asoc)
Xin Longc56480a2017-02-09 01:18:17 +08003695{
3696 struct sctp_strreset_tsnreq tsnreq;
3697 __u16 length = sizeof(tsnreq);
3698 struct sctp_chunk *retval;
3699
3700 retval = sctp_make_reconf(asoc, length);
3701 if (!retval)
3702 return NULL;
3703
3704 tsnreq.param_hdr.type = SCTP_PARAM_RESET_TSN_REQUEST;
3705 tsnreq.param_hdr.length = htons(length);
3706 tsnreq.request_seq = htonl(asoc->strreset_outseq);
3707
3708 sctp_addto_chunk(retval, sizeof(tsnreq), &tsnreq);
3709
3710 return retval;
3711}
Xin Long78098112017-02-09 01:18:19 +08003712
3713/* RE-CONFIG 4.5/4.6 (ADD STREAM)
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 = 17 | Parameter Length = 12 |
3718 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3719 * | Re-configuration Request Sequence Number |
3720 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3721 * | Number of new streams | Reserved |
3722 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3723 */
3724struct sctp_chunk *sctp_make_strreset_addstrm(
Xin Long327c0da2017-08-11 10:23:58 +08003725 const struct sctp_association *asoc,
3726 __u16 out, __u16 in)
Xin Long78098112017-02-09 01:18:19 +08003727{
3728 struct sctp_strreset_addstrm addstrm;
3729 __u16 size = sizeof(addstrm);
3730 struct sctp_chunk *retval;
3731
3732 retval = sctp_make_reconf(asoc, (!!out + !!in) * size);
3733 if (!retval)
3734 return NULL;
3735
3736 if (out) {
3737 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS;
3738 addstrm.param_hdr.length = htons(size);
3739 addstrm.number_of_streams = htons(out);
3740 addstrm.request_seq = htonl(asoc->strreset_outseq);
3741 addstrm.reserved = 0;
3742
3743 sctp_addto_chunk(retval, size, &addstrm);
3744 }
3745
3746 if (in) {
3747 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS;
3748 addstrm.param_hdr.length = htons(size);
3749 addstrm.number_of_streams = htons(in);
3750 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out);
3751 addstrm.reserved = 0;
3752
3753 sctp_addto_chunk(retval, size, &addstrm);
3754 }
3755
3756 return retval;
3757}
Xin Longbd4b9f82017-02-17 12:45:37 +08003758
3759/* RE-CONFIG 4.4 (RESP)
3760 * 0 1 2 3
3761 * 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
3762 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3763 * | Parameter Type = 16 | Parameter Length |
3764 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3765 * | Re-configuration Response Sequence Number |
3766 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3767 * | Result |
3768 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3769 */
Xin Long327c0da2017-08-11 10:23:58 +08003770struct sctp_chunk *sctp_make_strreset_resp(const struct sctp_association *asoc,
3771 __u32 result, __u32 sn)
Xin Longbd4b9f82017-02-17 12:45:37 +08003772{
3773 struct sctp_strreset_resp resp;
3774 __u16 length = sizeof(resp);
3775 struct sctp_chunk *retval;
3776
3777 retval = sctp_make_reconf(asoc, length);
3778 if (!retval)
3779 return NULL;
3780
3781 resp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
3782 resp.param_hdr.length = htons(length);
3783 resp.response_seq = htonl(sn);
3784 resp.result = htonl(result);
3785
3786 sctp_addto_chunk(retval, sizeof(resp), &resp);
3787
3788 return retval;
3789}
3790
3791/* RE-CONFIG 4.4 OPTIONAL (TSNRESP)
3792 * 0 1 2 3
3793 * 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
3794 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3795 * | Parameter Type = 16 | Parameter Length |
3796 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3797 * | Re-configuration Response Sequence Number |
3798 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3799 * | Result |
3800 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3801 * | Sender's Next TSN (optional) |
3802 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3803 * | Receiver's Next TSN (optional) |
3804 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
3805 */
Xin Long327c0da2017-08-11 10:23:58 +08003806struct sctp_chunk *sctp_make_strreset_tsnresp(struct sctp_association *asoc,
3807 __u32 result, __u32 sn,
3808 __u32 sender_tsn,
3809 __u32 receiver_tsn)
Xin Longbd4b9f82017-02-17 12:45:37 +08003810{
3811 struct sctp_strreset_resptsn tsnresp;
3812 __u16 length = sizeof(tsnresp);
3813 struct sctp_chunk *retval;
3814
3815 retval = sctp_make_reconf(asoc, length);
3816 if (!retval)
3817 return NULL;
3818
3819 tsnresp.param_hdr.type = SCTP_PARAM_RESET_RESPONSE;
3820 tsnresp.param_hdr.length = htons(length);
3821
3822 tsnresp.response_seq = htonl(sn);
3823 tsnresp.result = htonl(result);
3824 tsnresp.senders_next_tsn = htonl(sender_tsn);
3825 tsnresp.receivers_next_tsn = htonl(receiver_tsn);
3826
3827 sctp_addto_chunk(retval, sizeof(tsnresp), &tsnresp);
3828
3829 return retval;
3830}
Xin Longea625042017-02-17 12:45:41 +08003831
3832bool sctp_verify_reconf(const struct sctp_association *asoc,
3833 struct sctp_chunk *chunk,
3834 struct sctp_paramhdr **errp)
3835{
3836 struct sctp_reconf_chunk *hdr;
3837 union sctp_params param;
Xin Long1da4fc92017-10-28 19:43:54 +08003838 __be16 last = 0;
3839 __u16 cnt = 0;
Xin Longea625042017-02-17 12:45:41 +08003840
3841 hdr = (struct sctp_reconf_chunk *)chunk->chunk_hdr;
3842 sctp_walk_params(param, hdr, params) {
3843 __u16 length = ntohs(param.p->length);
3844
3845 *errp = param.p;
3846 if (cnt++ > 2)
3847 return false;
3848 switch (param.p->type) {
3849 case SCTP_PARAM_RESET_OUT_REQUEST:
3850 if (length < sizeof(struct sctp_strreset_outreq) ||
3851 (last && last != SCTP_PARAM_RESET_RESPONSE &&
3852 last != SCTP_PARAM_RESET_IN_REQUEST))
3853 return false;
3854 break;
3855 case SCTP_PARAM_RESET_IN_REQUEST:
3856 if (length < sizeof(struct sctp_strreset_inreq) ||
3857 (last && last != SCTP_PARAM_RESET_OUT_REQUEST))
3858 return false;
3859 break;
3860 case SCTP_PARAM_RESET_RESPONSE:
3861 if ((length != sizeof(struct sctp_strreset_resp) &&
3862 length != sizeof(struct sctp_strreset_resptsn)) ||
3863 (last && last != SCTP_PARAM_RESET_RESPONSE &&
3864 last != SCTP_PARAM_RESET_OUT_REQUEST))
3865 return false;
3866 break;
3867 case SCTP_PARAM_RESET_TSN_REQUEST:
3868 if (length !=
3869 sizeof(struct sctp_strreset_tsnreq) || last)
3870 return false;
3871 break;
3872 case SCTP_PARAM_RESET_ADD_IN_STREAMS:
3873 if (length != sizeof(struct sctp_strreset_addstrm) ||
3874 (last && last != SCTP_PARAM_RESET_ADD_OUT_STREAMS))
3875 return false;
3876 break;
3877 case SCTP_PARAM_RESET_ADD_OUT_STREAMS:
3878 if (length != sizeof(struct sctp_strreset_addstrm) ||
3879 (last && last != SCTP_PARAM_RESET_ADD_IN_STREAMS))
3880 return false;
3881 break;
3882 default:
3883 return false;
3884 }
3885
3886 last = param.p->type;
3887 }
3888
3889 return true;
3890}