]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/sctp/sm_make_chunk.c
sctp: fix checkpatch errors with (foo*)|foo * bar|foo* bar
[mirror_ubuntu-zesty-kernel.git] / net / sctp / sm_make_chunk.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (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 *
60c778b2 7 * This file is part of the SCTP kernel implementation
1da177e4
LT
8 *
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 *
60c778b2 13 * This SCTP implementation is free software;
1da177e4
LT
14 * 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 *
60c778b2 19 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
20 * 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
4b2f13a2
JK
26 * along with GNU CC; see the file COPYING. If not, see
27 * <http://www.gnu.org/licenses/>.
1da177e4
LT
28 *
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
91705c61 31 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 32 *
1da177e4
LT
33 * 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>
1da177e4
LT
44 */
45
145ce502
JP
46#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
47
1da177e4
LT
48#include <linux/types.h>
49#include <linux/kernel.h>
50#include <linux/ip.h>
51#include <linux/ipv6.h>
52#include <linux/net.h>
53#include <linux/inet.h>
ebc3bbcf 54#include <linux/scatterlist.h>
1da177e4 55#include <linux/crypto.h>
5a0e3ad6 56#include <linux/slab.h>
1da177e4
LT
57#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
072017b4
VY
64static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
65 __u8 type, __u8 flags, int paylen);
66static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
67 __u8 flags, int paylen);
68static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
69 __u8 type, __u8 flags, int paylen);
1da177e4
LT
70static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
71 const struct sctp_association *asoc,
72 const struct sctp_chunk *init_chunk,
73 int *cookie_len,
74 const __u8 *raw_addrs, int addrs_len);
75static int sctp_process_param(struct sctp_association *asoc,
76 union sctp_params param,
77 const union sctp_addr *peer_addr,
dd0fc66f 78 gfp_t gfp);
8ee4be37
VY
79static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
80 const void *data);
1da177e4 81
072017b4
VY
82/* Control chunk destructor */
83static void sctp_control_release_owner(struct sk_buff *skb)
84{
85 /*TODO: do memory release */
86}
87
88static void sctp_control_set_owner_w(struct sctp_chunk *chunk)
89{
90 struct sctp_association *asoc = chunk->asoc;
91 struct sk_buff *skb = chunk->skb;
92
93 /* TODO: properly account for control chunks.
94 * To do it right we'll need:
95 * 1) endpoint if association isn't known.
96 * 2) proper memory accounting.
97 *
98 * For now don't do anything for now.
99 */
100 skb->sk = asoc ? asoc->base.sk : NULL;
101 skb->destructor = sctp_control_release_owner;
102}
103
1da177e4
LT
104/* What was the inbound interface for this chunk? */
105int sctp_chunk_iif(const struct sctp_chunk *chunk)
106{
107 struct sctp_af *af;
108 int iif = 0;
109
eddc9ec5 110 af = sctp_get_af_specific(ipver2af(ip_hdr(chunk->skb)->version));
1da177e4
LT
111 if (af)
112 iif = af->skb_iif(chunk->skb);
113
114 return iif;
115}
116
117/* RFC 2960 3.3.2 Initiation (INIT) (1)
118 *
119 * Note 2: The ECN capable field is reserved for future use of
120 * Explicit Congestion Notification.
121 */
122static const struct sctp_paramhdr ecap_param = {
123 SCTP_PARAM_ECN_CAPABLE,
09640e63 124 cpu_to_be16(sizeof(struct sctp_paramhdr)),
1da177e4
LT
125};
126static const struct sctp_paramhdr prsctp_param = {
127 SCTP_PARAM_FWD_TSN_SUPPORT,
09640e63 128 cpu_to_be16(sizeof(struct sctp_paramhdr)),
1da177e4
LT
129};
130
5fa782c2 131/* A helper to initialize an op error inside a
1da177e4
LT
132 * provided chunk, as most cause codes will be embedded inside an
133 * abort chunk.
134 */
5bf2db03 135void sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
00f1c2df 136 size_t paylen)
1da177e4
LT
137{
138 sctp_errhdr_t err;
1da177e4
LT
139 __u16 len;
140
d808ad9a 141 /* Cause code constants are now defined in network order. */
1da177e4
LT
142 err.cause = cause_code;
143 len = sizeof(sctp_errhdr_t) + paylen;
1da177e4 144 err.length = htons(len);
4a1c0107 145 chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
1da177e4
LT
146}
147
5fa782c2
NH
148/* A helper to initialize an op error inside a
149 * provided chunk, as most cause codes will be embedded inside an
150 * abort chunk. Differs from sctp_init_cause in that it won't oops
151 * if there isn't enough space in the op error chunk
152 */
db28aafa 153static int sctp_init_cause_fixed(struct sctp_chunk *chunk, __be16 cause_code,
5fa782c2
NH
154 size_t paylen)
155{
156 sctp_errhdr_t err;
157 __u16 len;
158
159 /* Cause code constants are now defined in network order. */
160 err.cause = cause_code;
161 len = sizeof(sctp_errhdr_t) + paylen;
162 err.length = htons(len);
163
2e3219b5 164 if (skb_tailroom(chunk->skb) < len)
5fa782c2
NH
165 return -ENOSPC;
166 chunk->subh.err_hdr = sctp_addto_chunk_fixed(chunk,
167 sizeof(sctp_errhdr_t),
168 &err);
169 return 0;
170}
1da177e4
LT
171/* 3.3.2 Initiation (INIT) (1)
172 *
173 * This chunk is used to initiate a SCTP association between two
174 * endpoints. The format of the INIT chunk is shown below:
175 *
176 * 0 1 2 3
177 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
178 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
179 * | Type = 1 | Chunk Flags | Chunk Length |
180 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
181 * | Initiate Tag |
182 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
183 * | Advertised Receiver Window Credit (a_rwnd) |
184 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
185 * | Number of Outbound Streams | Number of Inbound Streams |
186 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
187 * | Initial TSN |
188 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
189 * \ \
190 * / Optional/Variable-Length Parameters /
191 * \ \
192 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
193 *
194 *
195 * The INIT chunk contains the following parameters. Unless otherwise
196 * noted, each parameter MUST only be included once in the INIT chunk.
197 *
198 * Fixed Parameters Status
199 * ----------------------------------------------
200 * Initiate Tag Mandatory
201 * Advertised Receiver Window Credit Mandatory
202 * Number of Outbound Streams Mandatory
203 * Number of Inbound Streams Mandatory
204 * Initial TSN Mandatory
205 *
206 * Variable Parameters Status Type Value
207 * -------------------------------------------------------------
208 * IPv4 Address (Note 1) Optional 5
209 * IPv6 Address (Note 1) Optional 6
210 * Cookie Preservative Optional 9
211 * Reserved for ECN Capable (Note 2) Optional 32768 (0x8000)
212 * Host Name Address (Note 3) Optional 11
213 * Supported Address Types (Note 4) Optional 12
214 */
215struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
216 const struct sctp_bind_addr *bp,
dd0fc66f 217 gfp_t gfp, int vparam_len)
1da177e4 218{
e1fc3b14 219 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
220 sctp_inithdr_t init;
221 union sctp_params addrs;
222 size_t chunksize;
223 struct sctp_chunk *retval = NULL;
224 int num_types, addrs_len = 0;
225 struct sctp_sock *sp;
226 sctp_supported_addrs_param_t sat;
3dbe8656 227 __be16 types[2];
0f3fffd8 228 sctp_adaptation_ind_param_t aiparam;
131a47e3
VY
229 sctp_supported_ext_param_t ext_param;
230 int num_ext = 0;
231 __u8 extensions[3];
730fc3d0
VY
232 sctp_paramhdr_t *auth_chunks = NULL,
233 *auth_hmacs = NULL;
1da177e4
LT
234
235 /* RFC 2960 3.3.2 Initiation (INIT) (1)
236 *
237 * Note 1: The INIT chunks can contain multiple addresses that
238 * can be IPv4 and/or IPv6 in any combination.
239 */
240 retval = NULL;
241
242 /* Convert the provided bind address list to raw format. */
243 addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
244
245 init.init_tag = htonl(asoc->c.my_vtag);
246 init.a_rwnd = htonl(asoc->rwnd);
247 init.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
248 init.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
249 init.initial_tsn = htonl(asoc->c.initial_tsn);
250
251 /* How many address types are needed? */
252 sp = sctp_sk(asoc->base.sk);
253 num_types = sp->pf->supported_addrs(sp, types);
254
a8170c35
WY
255 chunksize = sizeof(init) + addrs_len;
256 chunksize += WORD_ROUND(SCTP_SAT_LEN(num_types));
1da177e4 257 chunksize += sizeof(ecap_param);
8ee4be37 258
e1fc3b14 259 if (net->sctp.prsctp_enable)
036b579b
VY
260 chunksize += sizeof(prsctp_param);
261
131a47e3
VY
262 /* ADDIP: Section 4.2.7:
263 * An implementation supporting this extension [ADDIP] MUST list
264 * the ASCONF,the ASCONF-ACK, and the AUTH chunks in its INIT and
265 * INIT-ACK parameters.
131a47e3 266 */
e1fc3b14 267 if (net->sctp.addip_enable) {
131a47e3
VY
268 extensions[num_ext] = SCTP_CID_ASCONF;
269 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
270 num_ext += 2;
271 }
272
6fc791ee 273 if (sp->adaptation_ind)
274 chunksize += sizeof(aiparam);
275
1da177e4
LT
276 chunksize += vparam_len;
277
730fc3d0 278 /* Account for AUTH related parameters */
e1fc3b14 279 if (net->sctp.auth_enable) {
730fc3d0
VY
280 /* Add random parameter length*/
281 chunksize += sizeof(asoc->c.auth_random);
282
283 /* Add HMACS parameter length if any were defined */
284 auth_hmacs = (sctp_paramhdr_t *)asoc->c.auth_hmacs;
285 if (auth_hmacs->length)
a8170c35 286 chunksize += WORD_ROUND(ntohs(auth_hmacs->length));
730fc3d0
VY
287 else
288 auth_hmacs = NULL;
289
290 /* Add CHUNKS parameter length */
291 auth_chunks = (sctp_paramhdr_t *)asoc->c.auth_chunks;
292 if (auth_chunks->length)
a8170c35 293 chunksize += WORD_ROUND(ntohs(auth_chunks->length));
730fc3d0 294 else
9baffaa6 295 auth_chunks = NULL;
730fc3d0
VY
296
297 extensions[num_ext] = SCTP_CID_AUTH;
298 num_ext += 1;
299 }
300
131a47e3
VY
301 /* If we have any extensions to report, account for that */
302 if (num_ext)
a8170c35
WY
303 chunksize += WORD_ROUND(sizeof(sctp_supported_ext_param_t) +
304 num_ext);
131a47e3 305
1da177e4
LT
306 /* RFC 2960 3.3.2 Initiation (INIT) (1)
307 *
308 * Note 3: An INIT chunk MUST NOT contain more than one Host
309 * Name address parameter. Moreover, the sender of the INIT
310 * MUST NOT combine any other address types with the Host Name
311 * address in the INIT. The receiver of INIT MUST ignore any
312 * other address types if the Host Name address parameter is
313 * present in the received INIT chunk.
314 *
315 * PLEASE DO NOT FIXME [This version does not support Host Name.]
316 */
317
072017b4 318 retval = sctp_make_control(asoc, SCTP_CID_INIT, 0, chunksize);
1da177e4
LT
319 if (!retval)
320 goto nodata;
321
322 retval->subh.init_hdr =
323 sctp_addto_chunk(retval, sizeof(init), &init);
324 retval->param_hdr.v =
325 sctp_addto_chunk(retval, addrs_len, addrs.v);
326
327 /* RFC 2960 3.3.2 Initiation (INIT) (1)
328 *
329 * Note 4: This parameter, when present, specifies all the
330 * address types the sending endpoint can support. The absence
331 * of this parameter indicates that the sending endpoint can
332 * support any address type.
333 */
334 sat.param_hdr.type = SCTP_PARAM_SUPPORTED_ADDRESS_TYPES;
335 sat.param_hdr.length = htons(SCTP_SAT_LEN(num_types));
336 sctp_addto_chunk(retval, sizeof(sat), &sat);
337 sctp_addto_chunk(retval, num_types * sizeof(__u16), &types);
338
339 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
131a47e3 340
7aa1b54b 341 /* Add the supported extensions parameter. Be nice and add this
131a47e3
VY
342 * fist before addiding the parameters for the extensions themselves
343 */
344 if (num_ext) {
345 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
346 ext_param.param_hdr.length =
347 htons(sizeof(sctp_supported_ext_param_t) + num_ext);
348 sctp_addto_chunk(retval, sizeof(sctp_supported_ext_param_t),
349 &ext_param);
8ee4be37 350 sctp_addto_param(retval, num_ext, extensions);
131a47e3
VY
351 }
352
e1fc3b14 353 if (net->sctp.prsctp_enable)
1da177e4 354 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
131a47e3 355
6fc791ee 356 if (sp->adaptation_ind) {
357 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
358 aiparam.param_hdr.length = htons(sizeof(aiparam));
359 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
360 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
361 }
131a47e3 362
730fc3d0 363 /* Add SCTP-AUTH chunks to the parameter list */
e1fc3b14 364 if (net->sctp.auth_enable) {
730fc3d0
VY
365 sctp_addto_chunk(retval, sizeof(asoc->c.auth_random),
366 asoc->c.auth_random);
367 if (auth_hmacs)
368 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
369 auth_hmacs);
370 if (auth_chunks)
371 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
372 auth_chunks);
373 }
1da177e4 374nodata:
a51482bd 375 kfree(addrs.v);
1da177e4
LT
376 return retval;
377}
378
379struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
380 const struct sctp_chunk *chunk,
dd0fc66f 381 gfp_t gfp, int unkparam_len)
1da177e4
LT
382{
383 sctp_inithdr_t initack;
384 struct sctp_chunk *retval;
385 union sctp_params addrs;
6fc791ee 386 struct sctp_sock *sp;
1da177e4
LT
387 int addrs_len;
388 sctp_cookie_param_t *cookie;
389 int cookie_len;
390 size_t chunksize;
0f3fffd8 391 sctp_adaptation_ind_param_t aiparam;
131a47e3
VY
392 sctp_supported_ext_param_t ext_param;
393 int num_ext = 0;
394 __u8 extensions[3];
730fc3d0
VY
395 sctp_paramhdr_t *auth_chunks = NULL,
396 *auth_hmacs = NULL,
397 *auth_random = NULL;
1da177e4
LT
398
399 retval = NULL;
400
401 /* Note: there may be no addresses to embed. */
402 addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
403
404 initack.init_tag = htonl(asoc->c.my_vtag);
405 initack.a_rwnd = htonl(asoc->rwnd);
406 initack.num_outbound_streams = htons(asoc->c.sinit_num_ostreams);
407 initack.num_inbound_streams = htons(asoc->c.sinit_max_instreams);
408 initack.initial_tsn = htonl(asoc->c.initial_tsn);
409
410 /* FIXME: We really ought to build the cookie right
411 * into the packet instead of allocating more fresh memory.
412 */
413 cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
414 addrs.v, addrs_len);
415 if (!cookie)
416 goto nomem_cookie;
417
418 /* Calculate the total size of allocation, include the reserved
419 * space for reporting unknown parameters if it is specified.
420 */
6fc791ee 421 sp = sctp_sk(asoc->base.sk);
1da177e4
LT
422 chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
423
d808ad9a 424 /* Tell peer that we'll do ECN only if peer advertised such cap. */
1da177e4
LT
425 if (asoc->peer.ecn_capable)
426 chunksize += sizeof(ecap_param);
427
5ffad5ac 428 if (asoc->peer.prsctp_capable)
036b579b
VY
429 chunksize += sizeof(prsctp_param);
430
5ffad5ac 431 if (asoc->peer.asconf_capable) {
131a47e3
VY
432 extensions[num_ext] = SCTP_CID_ASCONF;
433 extensions[num_ext+1] = SCTP_CID_ASCONF_ACK;
434 num_ext += 2;
435 }
436
6fc791ee 437 if (sp->adaptation_ind)
438 chunksize += sizeof(aiparam);
1da177e4 439
730fc3d0
VY
440 if (asoc->peer.auth_capable) {
441 auth_random = (sctp_paramhdr_t *)asoc->c.auth_random;
442 chunksize += ntohs(auth_random->length);
443
444 auth_hmacs = (sctp_paramhdr_t *)asoc->c.auth_hmacs;
445 if (auth_hmacs->length)
a8170c35 446 chunksize += WORD_ROUND(ntohs(auth_hmacs->length));
730fc3d0
VY
447 else
448 auth_hmacs = NULL;
449
450 auth_chunks = (sctp_paramhdr_t *)asoc->c.auth_chunks;
451 if (auth_chunks->length)
a8170c35 452 chunksize += WORD_ROUND(ntohs(auth_chunks->length));
730fc3d0
VY
453 else
454 auth_chunks = NULL;
455
456 extensions[num_ext] = SCTP_CID_AUTH;
457 num_ext += 1;
458 }
459
8ee4be37 460 if (num_ext)
a8170c35
WY
461 chunksize += WORD_ROUND(sizeof(sctp_supported_ext_param_t) +
462 num_ext);
8ee4be37 463
1da177e4 464 /* Now allocate and fill out the chunk. */
072017b4 465 retval = sctp_make_control(asoc, SCTP_CID_INIT_ACK, 0, chunksize);
1da177e4
LT
466 if (!retval)
467 goto nomem_chunk;
468
b99a4d53
DC
469 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
470 *
471 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
472 * HEARTBEAT ACK, * etc.) to the same destination transport
473 * address from which it received the DATA or control chunk
474 * to which it is replying.
475 *
476 * [INIT ACK back to where the INIT came from.]
1da177e4
LT
477 */
478 retval->transport = chunk->transport;
b99a4d53 479
1da177e4
LT
480 retval->subh.init_hdr =
481 sctp_addto_chunk(retval, sizeof(initack), &initack);
482 retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
483 sctp_addto_chunk(retval, cookie_len, cookie);
484 if (asoc->peer.ecn_capable)
485 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
131a47e3
VY
486 if (num_ext) {
487 ext_param.param_hdr.type = SCTP_PARAM_SUPPORTED_EXT;
488 ext_param.param_hdr.length =
489 htons(sizeof(sctp_supported_ext_param_t) + num_ext);
490 sctp_addto_chunk(retval, sizeof(sctp_supported_ext_param_t),
491 &ext_param);
8ee4be37 492 sctp_addto_param(retval, num_ext, extensions);
131a47e3 493 }
1da177e4
LT
494 if (asoc->peer.prsctp_capable)
495 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
496
6fc791ee 497 if (sp->adaptation_ind) {
498 aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
499 aiparam.param_hdr.length = htons(sizeof(aiparam));
500 aiparam.adaptation_ind = htonl(sp->adaptation_ind);
501 sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
502 }
1da177e4 503
730fc3d0
VY
504 if (asoc->peer.auth_capable) {
505 sctp_addto_chunk(retval, ntohs(auth_random->length),
506 auth_random);
507 if (auth_hmacs)
508 sctp_addto_chunk(retval, ntohs(auth_hmacs->length),
509 auth_hmacs);
510 if (auth_chunks)
511 sctp_addto_chunk(retval, ntohs(auth_chunks->length),
512 auth_chunks);
513 }
514
1da177e4
LT
515 /* We need to remove the const qualifier at this point. */
516 retval->asoc = (struct sctp_association *) asoc;
517
1da177e4
LT
518nomem_chunk:
519 kfree(cookie);
520nomem_cookie:
a51482bd 521 kfree(addrs.v);
1da177e4
LT
522 return retval;
523}
524
525/* 3.3.11 Cookie Echo (COOKIE ECHO) (10):
526 *
527 * This chunk is used only during the initialization of an association.
528 * It is sent by the initiator of an association to its peer to complete
529 * the initialization process. This chunk MUST precede any DATA chunk
530 * sent within the association, but MAY be bundled with one or more DATA
531 * chunks in the same packet.
532 *
533 * 0 1 2 3
534 * 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
535 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
536 * | Type = 10 |Chunk Flags | Length |
537 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
538 * / Cookie /
539 * \ \
540 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
541 *
542 * Chunk Flags: 8 bit
543 *
544 * Set to zero on transmit and ignored on receipt.
545 *
546 * Length: 16 bits (unsigned integer)
547 *
548 * Set to the size of the chunk in bytes, including the 4 bytes of
549 * the chunk header and the size of the Cookie.
550 *
551 * Cookie: variable size
552 *
553 * This field must contain the exact cookie received in the
554 * State Cookie parameter from the previous INIT ACK.
555 *
556 * An implementation SHOULD make the cookie as small as possible
557 * to insure interoperability.
558 */
559struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *asoc,
560 const struct sctp_chunk *chunk)
561{
562 struct sctp_chunk *retval;
563 void *cookie;
564 int cookie_len;
565
566 cookie = asoc->peer.cookie;
567 cookie_len = asoc->peer.cookie_len;
568
569 /* Build a cookie echo chunk. */
072017b4 570 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ECHO, 0, cookie_len);
1da177e4
LT
571 if (!retval)
572 goto nodata;
573 retval->subh.cookie_hdr =
574 sctp_addto_chunk(retval, cookie_len, cookie);
575
576 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
577 *
578 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
579 * HEARTBEAT ACK, * etc.) to the same destination transport
580 * address from which it * received the DATA or control chunk
581 * to which it is replying.
582 *
583 * [COOKIE ECHO back to where the INIT ACK came from.]
584 */
585 if (chunk)
586 retval->transport = chunk->transport;
587
588nodata:
589 return retval;
590}
591
592/* 3.3.12 Cookie Acknowledgement (COOKIE ACK) (11):
593 *
594 * This chunk is used only during the initialization of an
595 * association. It is used to acknowledge the receipt of a COOKIE
596 * ECHO chunk. This chunk MUST precede any DATA or SACK chunk sent
597 * within the association, but MAY be bundled with one or more DATA
598 * chunks or SACK chunk in the same SCTP packet.
599 *
600 * 0 1 2 3
601 * 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
602 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
603 * | Type = 11 |Chunk Flags | Length = 4 |
604 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
605 *
606 * Chunk Flags: 8 bits
607 *
608 * Set to zero on transmit and ignored on receipt.
609 */
610struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *asoc,
611 const struct sctp_chunk *chunk)
612{
613 struct sctp_chunk *retval;
614
072017b4 615 retval = sctp_make_control(asoc, SCTP_CID_COOKIE_ACK, 0, 0);
1da177e4
LT
616
617 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
618 *
619 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
620 * HEARTBEAT ACK, * etc.) to the same destination transport
621 * address from which it * received the DATA or control chunk
622 * to which it is replying.
623 *
624 * [COOKIE ACK back to where the COOKIE ECHO came from.]
625 */
626 if (retval && chunk)
627 retval->transport = chunk->transport;
628
629 return retval;
630}
631
632/*
633 * Appendix A: Explicit Congestion Notification:
634 * CWR:
635 *
636 * RFC 2481 details a specific bit for a sender to send in the header of
637 * its next outbound TCP segment to indicate to its peer that it has
638 * reduced its congestion window. This is termed the CWR bit. For
639 * SCTP the same indication is made by including the CWR chunk.
640 * This chunk contains one data element, i.e. the TSN number that
641 * was sent in the ECNE chunk. This element represents the lowest
642 * TSN number in the datagram that was originally marked with the
643 * CE bit.
644 *
645 * 0 1 2 3
646 * 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
647 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
648 * | Chunk Type=13 | Flags=00000000| Chunk Length = 8 |
649 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
650 * | Lowest TSN Number |
651 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
652 *
653 * Note: The CWR is considered a Control chunk.
654 */
655struct sctp_chunk *sctp_make_cwr(const struct sctp_association *asoc,
656 const __u32 lowest_tsn,
657 const struct sctp_chunk *chunk)
658{
659 struct sctp_chunk *retval;
660 sctp_cwrhdr_t cwr;
661
662 cwr.lowest_tsn = htonl(lowest_tsn);
072017b4
VY
663 retval = sctp_make_control(asoc, SCTP_CID_ECN_CWR, 0,
664 sizeof(sctp_cwrhdr_t));
1da177e4
LT
665
666 if (!retval)
667 goto nodata;
668
669 retval->subh.ecn_cwr_hdr =
670 sctp_addto_chunk(retval, sizeof(cwr), &cwr);
671
672 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
673 *
674 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
675 * HEARTBEAT ACK, * etc.) to the same destination transport
676 * address from which it * received the DATA or control chunk
677 * to which it is replying.
678 *
679 * [Report a reduced congestion window back to where the ECNE
680 * came from.]
681 */
682 if (chunk)
683 retval->transport = chunk->transport;
684
685nodata:
686 return retval;
687}
688
689/* Make an ECNE chunk. This is a congestion experienced report. */
690struct sctp_chunk *sctp_make_ecne(const struct sctp_association *asoc,
691 const __u32 lowest_tsn)
692{
693 struct sctp_chunk *retval;
694 sctp_ecnehdr_t ecne;
695
696 ecne.lowest_tsn = htonl(lowest_tsn);
072017b4
VY
697 retval = sctp_make_control(asoc, SCTP_CID_ECN_ECNE, 0,
698 sizeof(sctp_ecnehdr_t));
1da177e4
LT
699 if (!retval)
700 goto nodata;
701 retval->subh.ecne_hdr =
702 sctp_addto_chunk(retval, sizeof(ecne), &ecne);
703
704nodata:
705 return retval;
706}
707
708/* Make a DATA chunk for the given association from the provided
709 * parameters. However, do not populate the data payload.
710 */
711struct sctp_chunk *sctp_make_datafrag_empty(struct sctp_association *asoc,
712 const struct sctp_sndrcvinfo *sinfo,
713 int data_len, __u8 flags, __u16 ssn)
714{
715 struct sctp_chunk *retval;
716 struct sctp_datahdr dp;
717 int chunk_len;
718
719 /* We assign the TSN as LATE as possible, not here when
720 * creating the chunk.
721 */
722 dp.tsn = 0;
723 dp.stream = htons(sinfo->sinfo_stream);
724 dp.ppid = sinfo->sinfo_ppid;
725
726 /* Set the flags for an unordered send. */
eaa5c54d 727 if (sinfo->sinfo_flags & SCTP_UNORDERED) {
1da177e4
LT
728 flags |= SCTP_DATA_UNORDERED;
729 dp.ssn = 0;
730 } else
731 dp.ssn = htons(ssn);
732
733 chunk_len = sizeof(dp) + data_len;
072017b4 734 retval = sctp_make_data(asoc, flags, chunk_len);
1da177e4
LT
735 if (!retval)
736 goto nodata;
737
738 retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
739 memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
740
741nodata:
742 return retval;
743}
744
745/* Create a selective ackowledgement (SACK) for the given
746 * association. This reports on which TSN's we've seen to date,
747 * including duplicates and gaps.
748 */
749struct sctp_chunk *sctp_make_sack(const struct sctp_association *asoc)
750{
751 struct sctp_chunk *retval;
752 struct sctp_sackhdr sack;
753 int len;
754 __u32 ctsn;
755 __u16 num_gabs, num_dup_tsns;
4244854d 756 struct sctp_association *aptr = (struct sctp_association *)asoc;
1da177e4 757 struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
02015180 758 struct sctp_gap_ack_block gabs[SCTP_MAX_GABS];
4244854d 759 struct sctp_transport *trans;
1da177e4 760
02015180 761 memset(gabs, 0, sizeof(gabs));
1da177e4 762 ctsn = sctp_tsnmap_get_ctsn(map);
bb33381d
DB
763
764 pr_debug("%s: sackCTSNAck sent:0x%x\n", __func__, ctsn);
1da177e4
LT
765
766 /* How much room is needed in the chunk? */
02015180 767 num_gabs = sctp_tsnmap_num_gabs(map, gabs);
1da177e4
LT
768 num_dup_tsns = sctp_tsnmap_num_dups(map);
769
770 /* Initialize the SACK header. */
771 sack.cum_tsn_ack = htonl(ctsn);
772 sack.a_rwnd = htonl(asoc->a_rwnd);
773 sack.num_gap_ack_blocks = htons(num_gabs);
774 sack.num_dup_tsns = htons(num_dup_tsns);
775
776 len = sizeof(sack)
777 + sizeof(struct sctp_gap_ack_block) * num_gabs
778 + sizeof(__u32) * num_dup_tsns;
779
780 /* Create the chunk. */
072017b4 781 retval = sctp_make_control(asoc, SCTP_CID_SACK, 0, len);
1da177e4
LT
782 if (!retval)
783 goto nodata;
784
785 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
786 *
787 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
788 * HEARTBEAT ACK, etc.) to the same destination transport
789 * address from which it received the DATA or control chunk to
790 * which it is replying. This rule should also be followed if
791 * the endpoint is bundling DATA chunks together with the
792 * reply chunk.
793 *
794 * However, when acknowledging multiple DATA chunks received
795 * in packets from different source addresses in a single
796 * SACK, the SACK chunk may be transmitted to one of the
797 * destination transport addresses from which the DATA or
798 * control chunks being acknowledged were received.
799 *
800 * [BUG: We do not implement the following paragraph.
801 * Perhaps we should remember the last transport we used for a
802 * SACK and avoid that (if possible) if we have seen any
803 * duplicates. --piggy]
804 *
805 * When a receiver of a duplicate DATA chunk sends a SACK to a
806 * multi- homed endpoint it MAY be beneficial to vary the
807 * destination address and not use the source address of the
808 * DATA chunk. The reason being that receiving a duplicate
809 * from a multi-homed endpoint might indicate that the return
810 * path (as specified in the source address of the DATA chunk)
811 * for the SACK is broken.
812 *
813 * [Send to the address from which we last received a DATA chunk.]
814 */
815 retval->transport = asoc->peer.last_data_from;
816
817 retval->subh.sack_hdr =
818 sctp_addto_chunk(retval, sizeof(sack), &sack);
819
820 /* Add the gap ack block information. */
821 if (num_gabs)
822 sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
02015180 823 gabs);
1da177e4
LT
824
825 /* Add the duplicate TSN information. */
196d6759
MB
826 if (num_dup_tsns) {
827 aptr->stats.idupchunks += num_dup_tsns;
1da177e4
LT
828 sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
829 sctp_tsnmap_get_dups(map));
196d6759 830 }
4244854d
NH
831 /* Once we have a sack generated, check to see what our sack
832 * generation is, if its 0, reset the transports to 0, and reset
833 * the association generation to 1
834 *
835 * The idea is that zero is never used as a valid generation for the
836 * association so no transport will match after a wrap event like this,
837 * Until the next sack
838 */
839 if (++aptr->peer.sack_generation == 0) {
840 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
841 transports)
842 trans->sack_generation = 0;
843 aptr->peer.sack_generation = 1;
844 }
1da177e4
LT
845nodata:
846 return retval;
847}
848
849/* Make a SHUTDOWN chunk. */
850struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
851 const struct sctp_chunk *chunk)
852{
853 struct sctp_chunk *retval;
854 sctp_shutdownhdr_t shut;
855 __u32 ctsn;
856
857 ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
858 shut.cum_tsn_ack = htonl(ctsn);
859
072017b4
VY
860 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN, 0,
861 sizeof(sctp_shutdownhdr_t));
1da177e4
LT
862 if (!retval)
863 goto nodata;
864
865 retval->subh.shutdown_hdr =
866 sctp_addto_chunk(retval, sizeof(shut), &shut);
867
868 if (chunk)
869 retval->transport = chunk->transport;
870nodata:
871 return retval;
872}
873
874struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
875 const struct sctp_chunk *chunk)
876{
877 struct sctp_chunk *retval;
878
072017b4 879 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0);
1da177e4
LT
880
881 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
882 *
883 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
884 * HEARTBEAT ACK, * etc.) to the same destination transport
885 * address from which it * received the DATA or control chunk
886 * to which it is replying.
887 *
888 * [ACK back to where the SHUTDOWN came from.]
889 */
890 if (retval && chunk)
891 retval->transport = chunk->transport;
892
893 return retval;
894}
895
896struct sctp_chunk *sctp_make_shutdown_complete(
897 const struct sctp_association *asoc,
898 const struct sctp_chunk *chunk)
899{
900 struct sctp_chunk *retval;
901 __u8 flags = 0;
902
047a2428
JF
903 /* Set the T-bit if we have no association (vtag will be
904 * reflected)
905 */
1da177e4
LT
906 flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
907
072017b4 908 retval = sctp_make_control(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags, 0);
1da177e4
LT
909
910 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
911 *
912 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
913 * HEARTBEAT ACK, * etc.) to the same destination transport
914 * address from which it * received the DATA or control chunk
915 * to which it is replying.
916 *
917 * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
918 * came from.]
919 */
920 if (retval && chunk)
921 retval->transport = chunk->transport;
922
d808ad9a 923 return retval;
1da177e4
LT
924}
925
926/* Create an ABORT. Note that we set the T bit if we have no
047a2428 927 * association, except when responding to an INIT (sctpimpguide 2.41).
1da177e4
LT
928 */
929struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
930 const struct sctp_chunk *chunk,
931 const size_t hint)
932{
933 struct sctp_chunk *retval;
934 __u8 flags = 0;
935
047a2428
JF
936 /* Set the T-bit if we have no association and 'chunk' is not
937 * an INIT (vtag will be reflected).
938 */
939 if (!asoc) {
940 if (chunk && chunk->chunk_hdr &&
941 chunk->chunk_hdr->type == SCTP_CID_INIT)
942 flags = 0;
943 else
944 flags = SCTP_CHUNK_FLAG_T;
945 }
1da177e4 946
072017b4 947 retval = sctp_make_control(asoc, SCTP_CID_ABORT, flags, hint);
1da177e4
LT
948
949 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
950 *
951 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
952 * HEARTBEAT ACK, * etc.) to the same destination transport
953 * address from which it * received the DATA or control chunk
954 * to which it is replying.
955 *
956 * [ABORT back to where the offender came from.]
957 */
958 if (retval && chunk)
959 retval->transport = chunk->transport;
960
961 return retval;
962}
963
964/* Helper to create ABORT with a NO_USER_DATA error. */
965struct sctp_chunk *sctp_make_abort_no_data(
966 const struct sctp_association *asoc,
967 const struct sctp_chunk *chunk, __u32 tsn)
968{
969 struct sctp_chunk *retval;
9f81bcd9 970 __be32 payload;
1da177e4
LT
971
972 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t)
973 + sizeof(tsn));
974
975 if (!retval)
976 goto no_mem;
977
978 /* Put the tsn back into network byte order. */
979 payload = htonl(tsn);
00f1c2df
WY
980 sctp_init_cause(retval, SCTP_ERROR_NO_DATA, sizeof(payload));
981 sctp_addto_chunk(retval, sizeof(payload), (const void *)&payload);
1da177e4
LT
982
983 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
984 *
985 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
986 * HEARTBEAT ACK, * etc.) to the same destination transport
987 * address from which it * received the DATA or control chunk
988 * to which it is replying.
989 *
990 * [ABORT back to where the offender came from.]
991 */
992 if (chunk)
993 retval->transport = chunk->transport;
994
995no_mem:
996 return retval;
997}
998
999/* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error. */
1000struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
c164a9ba
SS
1001 const struct msghdr *msg,
1002 size_t paylen)
1da177e4
LT
1003{
1004 struct sctp_chunk *retval;
c164a9ba
SS
1005 void *payload = NULL;
1006 int err;
1da177e4 1007
c164a9ba 1008 retval = sctp_make_abort(asoc, NULL, sizeof(sctp_errhdr_t) + paylen);
1da177e4
LT
1009 if (!retval)
1010 goto err_chunk;
1011
1012 if (paylen) {
1013 /* Put the msg_iov together into payload. */
c164a9ba 1014 payload = kmalloc(paylen, GFP_KERNEL);
1da177e4
LT
1015 if (!payload)
1016 goto err_payload;
c164a9ba
SS
1017
1018 err = memcpy_fromiovec(payload, msg->msg_iov, paylen);
1019 if (err < 0)
1020 goto err_copy;
1da177e4
LT
1021 }
1022
00f1c2df
WY
1023 sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, paylen);
1024 sctp_addto_chunk(retval, paylen, payload);
1da177e4
LT
1025
1026 if (paylen)
1027 kfree(payload);
1028
1029 return retval;
1030
1031err_copy:
1032 kfree(payload);
1033err_payload:
1034 sctp_chunk_free(retval);
1035 retval = NULL;
1036err_chunk:
1037 return retval;
1038}
1039
5c94bf86
AB
1040/* Append bytes to the end of a parameter. Will panic if chunk is not big
1041 * enough.
1042 */
1043static void *sctp_addto_param(struct sctp_chunk *chunk, int len,
1044 const void *data)
1045{
1046 void *target;
1047 int chunklen = ntohs(chunk->chunk_hdr->length);
1048
1049 target = skb_put(chunk->skb, len);
1050
6383cfb3
VY
1051 if (data)
1052 memcpy(target, data, len);
1053 else
1054 memset(target, 0, len);
5c94bf86
AB
1055
1056 /* Adjust the chunk length field. */
1057 chunk->chunk_hdr->length = htons(chunklen + len);
1058 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1059
1060 return target;
1061}
1062
d808ad9a 1063/* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
1da177e4
LT
1064struct sctp_chunk *sctp_make_abort_violation(
1065 const struct sctp_association *asoc,
1066 const struct sctp_chunk *chunk,
1067 const __u8 *payload,
1068 const size_t paylen)
1069{
1070 struct sctp_chunk *retval;
1071 struct sctp_paramhdr phdr;
1072
1073 retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t) + paylen
00f1c2df 1074 + sizeof(sctp_paramhdr_t));
1da177e4
LT
1075 if (!retval)
1076 goto end;
1077
00f1c2df
WY
1078 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, paylen
1079 + sizeof(sctp_paramhdr_t));
1da177e4
LT
1080
1081 phdr.type = htons(chunk->chunk_hdr->type);
1082 phdr.length = chunk->chunk_hdr->length;
00f1c2df
WY
1083 sctp_addto_chunk(retval, paylen, payload);
1084 sctp_addto_param(retval, sizeof(sctp_paramhdr_t), &phdr);
1da177e4
LT
1085
1086end:
1087 return retval;
1088}
1089
ba016670
WY
1090struct sctp_chunk *sctp_make_violation_paramlen(
1091 const struct sctp_association *asoc,
1092 const struct sctp_chunk *chunk,
1093 struct sctp_paramhdr *param)
1094{
1095 struct sctp_chunk *retval;
1096 static const char error[] = "The following parameter had invalid length:";
1097 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t) +
1098 sizeof(sctp_paramhdr_t);
1099
1100 retval = sctp_make_abort(asoc, chunk, payload_len);
1101 if (!retval)
1102 goto nodata;
1103
1104 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION,
1105 sizeof(error) + sizeof(sctp_paramhdr_t));
1106 sctp_addto_chunk(retval, sizeof(error), error);
1107 sctp_addto_param(retval, sizeof(sctp_paramhdr_t), param);
1108
1109nodata:
1110 return retval;
1111}
1112
de4594a5
NH
1113struct sctp_chunk *sctp_make_violation_max_retrans(
1114 const struct sctp_association *asoc,
1115 const struct sctp_chunk *chunk)
1116{
1117 struct sctp_chunk *retval;
1118 static const char error[] = "Association exceeded its max_retans count";
1119 size_t payload_len = sizeof(error) + sizeof(sctp_errhdr_t);
1120
1121 retval = sctp_make_abort(asoc, chunk, payload_len);
1122 if (!retval)
1123 goto nodata;
1124
1125 sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, sizeof(error));
1126 sctp_addto_chunk(retval, sizeof(error), error);
1127
1128nodata:
1129 return retval;
1130}
1131
1da177e4
LT
1132/* Make a HEARTBEAT chunk. */
1133struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
92c73af5 1134 const struct sctp_transport *transport)
1da177e4 1135{
92c73af5
WY
1136 struct sctp_chunk *retval;
1137 sctp_sender_hb_info_t hbinfo;
1138
072017b4 1139 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT, 0, sizeof(hbinfo));
1da177e4
LT
1140
1141 if (!retval)
1142 goto nodata;
1143
92c73af5
WY
1144 hbinfo.param_hdr.type = SCTP_PARAM_HEARTBEAT_INFO;
1145 hbinfo.param_hdr.length = htons(sizeof(sctp_sender_hb_info_t));
1146 hbinfo.daddr = transport->ipaddr;
1147 hbinfo.sent_at = jiffies;
1148 hbinfo.hb_nonce = transport->hb_nonce;
1149
1da177e4
LT
1150 /* Cast away the 'const', as this is just telling the chunk
1151 * what transport it belongs to.
1152 */
1153 retval->transport = (struct sctp_transport *) transport;
92c73af5
WY
1154 retval->subh.hbs_hdr = sctp_addto_chunk(retval, sizeof(hbinfo),
1155 &hbinfo);
1da177e4
LT
1156
1157nodata:
1158 return retval;
1159}
1160
1161struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
1162 const struct sctp_chunk *chunk,
1163 const void *payload, const size_t paylen)
1164{
1165 struct sctp_chunk *retval;
1166
072017b4 1167 retval = sctp_make_control(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen);
1da177e4
LT
1168 if (!retval)
1169 goto nodata;
1170
1171 retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
1172
1173 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1174 *
1175 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1176 * HEARTBEAT ACK, * etc.) to the same destination transport
1177 * address from which it * received the DATA or control chunk
1178 * to which it is replying.
1179 *
1180 * [HBACK back to where the HEARTBEAT came from.]
1181 */
1182 if (chunk)
1183 retval->transport = chunk->transport;
1184
1185nodata:
1186 return retval;
1187}
1188
1189/* Create an Operation Error chunk with the specified space reserved.
1190 * This routine can be used for containing multiple causes in the chunk.
1191 */
1192static struct sctp_chunk *sctp_make_op_error_space(
1193 const struct sctp_association *asoc,
1194 const struct sctp_chunk *chunk,
1195 size_t size)
1196{
1197 struct sctp_chunk *retval;
1198
072017b4
VY
1199 retval = sctp_make_control(asoc, SCTP_CID_ERROR, 0,
1200 sizeof(sctp_errhdr_t) + size);
1da177e4
LT
1201 if (!retval)
1202 goto nodata;
1203
1204 /* RFC 2960 6.4 Multi-homed SCTP Endpoints
1205 *
1206 * An endpoint SHOULD transmit reply chunks (e.g., SACK,
1207 * HEARTBEAT ACK, etc.) to the same destination transport
1208 * address from which it received the DATA or control chunk
1209 * to which it is replying.
1210 *
1211 */
1212 if (chunk)
1213 retval->transport = chunk->transport;
1214
1215nodata:
1216 return retval;
1217}
1218
5fa782c2
NH
1219/* Create an Operation Error chunk of a fixed size,
1220 * specifically, max(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT)
1221 * This is a helper function to allocate an error chunk for
1222 * for those invalid parameter codes in which we may not want
d82603c6 1223 * to report all the errors, if the incoming chunk is large
5fa782c2
NH
1224 */
1225static inline struct sctp_chunk *sctp_make_op_error_fixed(
1226 const struct sctp_association *asoc,
1227 const struct sctp_chunk *chunk)
1228{
1229 size_t size = asoc ? asoc->pathmtu : 0;
1230
1231 if (!size)
1232 size = SCTP_DEFAULT_MAXSEGMENT;
1233
1234 return sctp_make_op_error_space(asoc, chunk, size);
1235}
1236
1da177e4
LT
1237/* Create an Operation Error chunk. */
1238struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
1239 const struct sctp_chunk *chunk,
63706c5c 1240 __be16 cause_code, const void *payload,
6383cfb3 1241 size_t paylen, size_t reserve_tail)
1da177e4
LT
1242{
1243 struct sctp_chunk *retval;
1244
6383cfb3 1245 retval = sctp_make_op_error_space(asoc, chunk, paylen + reserve_tail);
1da177e4
LT
1246 if (!retval)
1247 goto nodata;
1248
6383cfb3 1249 sctp_init_cause(retval, cause_code, paylen + reserve_tail);
00f1c2df 1250 sctp_addto_chunk(retval, paylen, payload);
6383cfb3
VY
1251 if (reserve_tail)
1252 sctp_addto_param(retval, reserve_tail, NULL);
1da177e4
LT
1253
1254nodata:
1255 return retval;
1256}
1257
4cd57c80
VY
1258struct sctp_chunk *sctp_make_auth(const struct sctp_association *asoc)
1259{
1260 struct sctp_chunk *retval;
1261 struct sctp_hmac *hmac_desc;
1262 struct sctp_authhdr auth_hdr;
1263 __u8 *hmac;
1264
1265 /* Get the first hmac that the peer told us to use */
1266 hmac_desc = sctp_auth_asoc_get_hmac(asoc);
1267 if (unlikely(!hmac_desc))
1268 return NULL;
1269
072017b4 1270 retval = sctp_make_control(asoc, SCTP_CID_AUTH, 0,
4cd57c80
VY
1271 hmac_desc->hmac_len + sizeof(sctp_authhdr_t));
1272 if (!retval)
1273 return NULL;
1274
1275 auth_hdr.hmac_id = htons(hmac_desc->hmac_id);
1276 auth_hdr.shkey_id = htons(asoc->active_key_id);
1277
1278 retval->subh.auth_hdr = sctp_addto_chunk(retval, sizeof(sctp_authhdr_t),
1279 &auth_hdr);
1280
1281 hmac = skb_put(retval->skb, hmac_desc->hmac_len);
1282 memset(hmac, 0, hmac_desc->hmac_len);
1283
1284 /* Adjust the chunk header to include the empty MAC */
1285 retval->chunk_hdr->length =
1286 htons(ntohs(retval->chunk_hdr->length) + hmac_desc->hmac_len);
1287 retval->chunk_end = skb_tail_pointer(retval->skb);
1288
1289 return retval;
1290}
1291
1292
1da177e4
LT
1293/********************************************************************
1294 * 2nd Level Abstractions
1295 ********************************************************************/
1296
1297/* Turn an skb into a chunk.
1298 * FIXME: Eventually move the structure directly inside the skb->cb[].
3dc0a548 1299 *
1300 * sctpimpguide-05.txt Section 2.8.2
1301 * M1) Each time a new DATA chunk is transmitted
1302 * set the 'TSN.Missing.Report' count for that TSN to 0. The
1303 * 'TSN.Missing.Report' count will be used to determine missing chunks
1304 * and when to fast retransmit.
1305 *
1da177e4
LT
1306 */
1307struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
1308 const struct sctp_association *asoc,
1309 struct sock *sk)
1310{
1311 struct sctp_chunk *retval;
1312
c3762229 1313 retval = kmem_cache_zalloc(sctp_chunk_cachep, GFP_ATOMIC);
1da177e4
LT
1314
1315 if (!retval)
1316 goto nodata;
bb33381d
DB
1317 if (!sk)
1318 pr_debug("%s: chunkifying skb:%p w/o an sk\n", __func__, skb);
1da177e4 1319
79af02c2 1320 INIT_LIST_HEAD(&retval->list);
1da177e4
LT
1321 retval->skb = skb;
1322 retval->asoc = (struct sctp_association *)asoc;
1da177e4 1323 retval->singleton = 1;
1da177e4 1324
3dc0a548 1325 retval->fast_retransmit = SCTP_CAN_FRTX;
1da177e4
LT
1326
1327 /* Polish the bead hole. */
1328 INIT_LIST_HEAD(&retval->transmitted_list);
1329 INIT_LIST_HEAD(&retval->frag_list);
1330 SCTP_DBG_OBJCNT_INC(chunk);
1331 atomic_set(&retval->refcnt, 1);
1332
1333nodata:
1334 return retval;
1335}
1336
1337/* Set chunk->source and dest based on the IP header in chunk->skb. */
1338void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
1339 union sctp_addr *dest)
1340{
f235fca3 1341 memcpy(&chunk->source, src, sizeof(union sctp_addr));
16b0a030 1342 memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
1da177e4
LT
1343}
1344
1345/* Extract the source address from a chunk. */
1346const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
1347{
1348 /* If we have a known transport, use that. */
1349 if (chunk->transport) {
6a1e5f33 1350 return &chunk->transport->ipaddr;
1da177e4
LT
1351 } else {
1352 /* Otherwise, extract it from the IP header. */
6a1e5f33 1353 return &chunk->source;
1da177e4
LT
1354 }
1355}
1356
1357/* Create a new chunk, setting the type and flags headers from the
1358 * arguments, reserving enough space for a 'paylen' byte payload.
1359 */
072017b4
VY
1360static struct sctp_chunk *_sctp_make_chunk(const struct sctp_association *asoc,
1361 __u8 type, __u8 flags, int paylen)
1da177e4
LT
1362{
1363 struct sctp_chunk *retval;
1364 sctp_chunkhdr_t *chunk_hdr;
1365 struct sk_buff *skb;
1366 struct sock *sk;
1367
1368 /* No need to allocate LL here, as this is only a chunk. */
1369 skb = alloc_skb(WORD_ROUND(sizeof(sctp_chunkhdr_t) + paylen),
1370 GFP_ATOMIC);
1371 if (!skb)
1372 goto nodata;
1373
1374 /* Make room for the chunk header. */
1375 chunk_hdr = (sctp_chunkhdr_t *)skb_put(skb, sizeof(sctp_chunkhdr_t));
1376 chunk_hdr->type = type;
1377 chunk_hdr->flags = flags;
1378 chunk_hdr->length = htons(sizeof(sctp_chunkhdr_t));
1379
1380 sk = asoc ? asoc->base.sk : NULL;
1381 retval = sctp_chunkify(skb, asoc, sk);
1382 if (!retval) {
1383 kfree_skb(skb);
1384 goto nodata;
1385 }
1386
1387 retval->chunk_hdr = chunk_hdr;
1388 retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(struct sctp_chunkhdr);
1389
4cd57c80
VY
1390 /* Determine if the chunk needs to be authenticated */
1391 if (sctp_auth_send_cid(type, asoc))
1392 retval->auth = 1;
1393
1da177e4
LT
1394 return retval;
1395nodata:
1396 return NULL;
1397}
1398
072017b4
VY
1399static struct sctp_chunk *sctp_make_data(const struct sctp_association *asoc,
1400 __u8 flags, int paylen)
1401{
1402 return _sctp_make_chunk(asoc, SCTP_CID_DATA, flags, paylen);
1403}
1404
1405static struct sctp_chunk *sctp_make_control(const struct sctp_association *asoc,
1406 __u8 type, __u8 flags, int paylen)
1407{
1408 struct sctp_chunk *chunk = _sctp_make_chunk(asoc, type, flags, paylen);
1409
1410 if (chunk)
1411 sctp_control_set_owner_w(chunk);
1412
1413 return chunk;
1414}
1da177e4
LT
1415
1416/* Release the memory occupied by a chunk. */
1417static void sctp_chunk_destroy(struct sctp_chunk *chunk)
1418{
a08de64d
VY
1419 BUG_ON(!list_empty(&chunk->list));
1420 list_del_init(&chunk->transmitted_list);
1421
1da177e4
LT
1422 /* Free the chunk skb data and the SCTP_chunk stub itself. */
1423 dev_kfree_skb(chunk->skb);
1424
1425 SCTP_DBG_OBJCNT_DEC(chunk);
1426 kmem_cache_free(sctp_chunk_cachep, chunk);
1427}
1428
1429/* Possibly, free the chunk. */
1430void sctp_chunk_free(struct sctp_chunk *chunk)
1431{
1da177e4
LT
1432 /* Release our reference on the message tracker. */
1433 if (chunk->msg)
1434 sctp_datamsg_put(chunk->msg);
1435
1436 sctp_chunk_put(chunk);
1437}
1438
1439/* Grab a reference to the chunk. */
1440void sctp_chunk_hold(struct sctp_chunk *ch)
1441{
1442 atomic_inc(&ch->refcnt);
1443}
1444
1445/* Release a reference to the chunk. */
1446void sctp_chunk_put(struct sctp_chunk *ch)
1447{
1448 if (atomic_dec_and_test(&ch->refcnt))
1449 sctp_chunk_destroy(ch);
1450}
1451
1452/* Append bytes to the end of a chunk. Will panic if chunk is not big
1453 * enough.
1454 */
1455void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
1456{
1457 void *target;
1458 void *padding;
1459 int chunklen = ntohs(chunk->chunk_hdr->length);
8d614ade 1460 int padlen = WORD_ROUND(chunklen) - chunklen;
1da177e4
LT
1461
1462 padding = skb_put(chunk->skb, padlen);
1463 target = skb_put(chunk->skb, len);
1464
1465 memset(padding, 0, padlen);
1466 memcpy(target, data, len);
1467
1468 /* Adjust the chunk length field. */
1469 chunk->chunk_hdr->length = htons(chunklen + padlen + len);
27a884dc 1470 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1da177e4
LT
1471
1472 return target;
1473}
1474
5fa782c2
NH
1475/* Append bytes to the end of a chunk. Returns NULL if there isn't sufficient
1476 * space in the chunk
1477 */
1478void *sctp_addto_chunk_fixed(struct sctp_chunk *chunk,
1479 int len, const void *data)
1480{
2e3219b5 1481 if (skb_tailroom(chunk->skb) >= len)
5fa782c2
NH
1482 return sctp_addto_chunk(chunk, len, data);
1483 else
1484 return NULL;
1485}
1486
1da177e4
LT
1487/* Append bytes from user space to the end of a chunk. Will panic if
1488 * chunk is not big enough.
1489 * Returns a kernel err value.
1490 */
1491int sctp_user_addto_chunk(struct sctp_chunk *chunk, int off, int len,
1492 struct iovec *data)
1493{
1494 __u8 *target;
1495 int err = 0;
1496
1497 /* Make room in chunk for data. */
1498 target = skb_put(chunk->skb, len);
1499
1500 /* Copy data (whole iovec) into chunk */
1501 if ((err = memcpy_fromiovecend(target, data, off, len)))
1502 goto out;
1503
1504 /* Adjust the chunk length field. */
1505 chunk->chunk_hdr->length =
1506 htons(ntohs(chunk->chunk_hdr->length) + len);
27a884dc 1507 chunk->chunk_end = skb_tail_pointer(chunk->skb);
1da177e4
LT
1508
1509out:
1510 return err;
1511}
1512
1513/* Helper function to assign a TSN if needed. This assumes that both
1514 * the data_hdr and association have already been assigned.
1515 */
1516void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
1517{
ab3e5e7b
VY
1518 struct sctp_datamsg *msg;
1519 struct sctp_chunk *lchunk;
1520 struct sctp_stream *stream;
1da177e4
LT
1521 __u16 ssn;
1522 __u16 sid;
1523
1524 if (chunk->has_ssn)
1525 return;
1526
ab3e5e7b
VY
1527 /* All fragments will be on the same stream */
1528 sid = ntohs(chunk->subh.data_hdr->stream);
1529 stream = &chunk->asoc->ssnmap->out;
1da177e4 1530
ab3e5e7b
VY
1531 /* Now assign the sequence number to the entire message.
1532 * All fragments must have the same stream sequence number.
1533 */
1534 msg = chunk->msg;
1535 list_for_each_entry(lchunk, &msg->chunks, frag_list) {
1536 if (lchunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
1537 ssn = 0;
1538 } else {
1539 if (lchunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
1540 ssn = sctp_ssn_next(stream, sid);
1541 else
1542 ssn = sctp_ssn_peek(stream, sid);
1543 }
1544
1545 lchunk->subh.data_hdr->ssn = htons(ssn);
1546 lchunk->has_ssn = 1;
1547 }
1da177e4
LT
1548}
1549
1550/* Helper function to assign a TSN if needed. This assumes that both
1551 * the data_hdr and association have already been assigned.
1552 */
1553void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
1554{
1555 if (!chunk->has_tsn) {
1556 /* This is the last possible instant to
1557 * assign a TSN.
1558 */
1559 chunk->subh.data_hdr->tsn =
1560 htonl(sctp_association_get_next_tsn(chunk->asoc));
1561 chunk->has_tsn = 1;
1562 }
1563}
1564
1565/* Create a CLOSED association to use with an incoming packet. */
1566struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
3182cd84 1567 struct sctp_chunk *chunk,
dd0fc66f 1568 gfp_t gfp)
1da177e4
LT
1569{
1570 struct sctp_association *asoc;
1571 struct sk_buff *skb;
1572 sctp_scope_t scope;
1573 struct sctp_af *af;
1574
1575 /* Create the bare association. */
1576 scope = sctp_scope(sctp_source(chunk));
1577 asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
1578 if (!asoc)
1579 goto nodata;
1580 asoc->temp = 1;
1581 skb = chunk->skb;
1582 /* Create an entry for the source address of the packet. */
eddc9ec5 1583 af = sctp_get_af_specific(ipver2af(ip_hdr(skb)->version));
1da177e4
LT
1584 if (unlikely(!af))
1585 goto fail;
d55c41b1 1586 af->from_skb(&asoc->c.peer_addr, skb, 1);
1da177e4
LT
1587nodata:
1588 return asoc;
1589
1590fail:
1591 sctp_association_free(asoc);
1592 return NULL;
1593}
1594
1595/* Build a cookie representing asoc.
1596 * This INCLUDES the param header needed to put the cookie in the INIT ACK.
1597 */
1598static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
1599 const struct sctp_association *asoc,
1600 const struct sctp_chunk *init_chunk,
1601 int *cookie_len,
1602 const __u8 *raw_addrs, int addrs_len)
1603{
1604 sctp_cookie_param_t *retval;
1605 struct sctp_signed_cookie *cookie;
1606 struct scatterlist sg;
1607 int headersize, bodysize;
1da177e4 1608
9834a2bb
VY
1609 /* Header size is static data prior to the actual cookie, including
1610 * any padding.
1611 */
d808ad9a
YH
1612 headersize = sizeof(sctp_paramhdr_t) +
1613 (sizeof(struct sctp_signed_cookie) -
9834a2bb 1614 sizeof(struct sctp_cookie));
1da177e4
LT
1615 bodysize = sizeof(struct sctp_cookie)
1616 + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
1617
1618 /* Pad out the cookie to a multiple to make the signature
1619 * functions simpler to write.
1620 */
1621 if (bodysize % SCTP_COOKIE_MULTIPLE)
1622 bodysize += SCTP_COOKIE_MULTIPLE
1623 - (bodysize % SCTP_COOKIE_MULTIPLE);
1624 *cookie_len = headersize + bodysize;
1625
1da177e4
LT
1626 /* Clear this memory since we are sending this data structure
1627 * out on the network.
1628 */
af997d8c
ACM
1629 retval = kzalloc(*cookie_len, GFP_ATOMIC);
1630 if (!retval)
1631 goto nodata;
1632
1da177e4
LT
1633 cookie = (struct sctp_signed_cookie *) retval->body;
1634
1635 /* Set up the parameter header. */
1636 retval->p.type = SCTP_PARAM_STATE_COOKIE;
1637 retval->p.length = htons(*cookie_len);
1638
1639 /* Copy the cookie part of the association itself. */
1640 cookie->c = asoc->c;
1641 /* Save the raw address list length in the cookie. */
1642 cookie->c.raw_addr_list_len = addrs_len;
1643
1644 /* Remember PR-SCTP capability. */
1645 cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
1646
0f3fffd8
ISJ
1647 /* Save adaptation indication in the cookie. */
1648 cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
1da177e4
LT
1649
1650 /* Set an expiration time for the cookie. */
52db882f
DB
1651 cookie->c.expiration = ktime_add(asoc->cookie_life,
1652 ktime_get());
1da177e4
LT
1653
1654 /* Copy the peer's init packet. */
1655 memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
1656 ntohs(init_chunk->chunk_hdr->length));
1657
1658 /* Copy the raw local address list of the association. */
1659 memcpy((__u8 *)&cookie->c.peer_init[0] +
1660 ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
1661
d808ad9a 1662 if (sctp_sk(ep->base.sk)->hmac) {
1b489e11
HX
1663 struct hash_desc desc;
1664
1da177e4 1665 /* Sign the message. */
68e3f5dd 1666 sg_init_one(&sg, &cookie->c, bodysize);
d808ad9a
YH
1667 desc.tfm = sctp_sk(ep->base.sk)->hmac;
1668 desc.flags = 0;
1da177e4 1669
570617e7
DB
1670 if (crypto_hash_setkey(desc.tfm, ep->secret_key,
1671 sizeof(ep->secret_key)) ||
1b489e11
HX
1672 crypto_hash_digest(&desc, &sg, bodysize, cookie->signature))
1673 goto free_cookie;
1da177e4
LT
1674 }
1675
1da177e4 1676 return retval;
1b489e11
HX
1677
1678free_cookie:
1679 kfree(retval);
1680nodata:
1681 *cookie_len = 0;
1682 return NULL;
1da177e4
LT
1683}
1684
1685/* Unpack the cookie from COOKIE ECHO chunk, recreating the association. */
1686struct sctp_association *sctp_unpack_cookie(
1687 const struct sctp_endpoint *ep,
1688 const struct sctp_association *asoc,
dd0fc66f 1689 struct sctp_chunk *chunk, gfp_t gfp,
1da177e4
LT
1690 int *error, struct sctp_chunk **errp)
1691{
1692 struct sctp_association *retval = NULL;
1693 struct sctp_signed_cookie *cookie;
1694 struct sctp_cookie *bear_cookie;
1695 int headersize, bodysize, fixed_size;
313e7b4d 1696 __u8 *digest = ep->digest;
1da177e4 1697 struct scatterlist sg;
570617e7 1698 unsigned int len;
1da177e4
LT
1699 sctp_scope_t scope;
1700 struct sk_buff *skb = chunk->skb;
52db882f 1701 ktime_t kt;
1b489e11 1702 struct hash_desc desc;
1da177e4 1703
9834a2bb
VY
1704 /* Header size is static data prior to the actual cookie, including
1705 * any padding.
1706 */
1707 headersize = sizeof(sctp_chunkhdr_t) +
d808ad9a 1708 (sizeof(struct sctp_signed_cookie) -
9834a2bb 1709 sizeof(struct sctp_cookie));
1da177e4
LT
1710 bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
1711 fixed_size = headersize + sizeof(struct sctp_cookie);
1712
1713 /* Verify that the chunk looks like it even has a cookie.
1714 * There must be enough room for our cookie and our peer's
1715 * INIT chunk.
1716 */
1717 len = ntohs(chunk->chunk_hdr->length);
1718 if (len < fixed_size + sizeof(struct sctp_chunkhdr))
1719 goto malformed;
1720
1721 /* Verify that the cookie has been padded out. */
1722 if (bodysize % SCTP_COOKIE_MULTIPLE)
1723 goto malformed;
1724
1725 /* Process the cookie. */
1726 cookie = chunk->subh.cookie_hdr;
1727 bear_cookie = &cookie->c;
1728
1729 if (!sctp_sk(ep->base.sk)->hmac)
1730 goto no_hmac;
1731
1732 /* Check the signature. */
68e3f5dd 1733 sg_init_one(&sg, bear_cookie, bodysize);
1b489e11
HX
1734 desc.tfm = sctp_sk(ep->base.sk)->hmac;
1735 desc.flags = 0;
1da177e4 1736
8ca84481 1737 memset(digest, 0x00, SCTP_SIGNATURE_SIZE);
570617e7
DB
1738 if (crypto_hash_setkey(desc.tfm, ep->secret_key,
1739 sizeof(ep->secret_key)) ||
1b489e11
HX
1740 crypto_hash_digest(&desc, &sg, bodysize, digest)) {
1741 *error = -SCTP_IERROR_NOMEM;
1742 goto fail;
1743 }
1da177e4
LT
1744
1745 if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
570617e7
DB
1746 *error = -SCTP_IERROR_BAD_SIG;
1747 goto fail;
1da177e4
LT
1748 }
1749
1750no_hmac:
1751 /* IG Section 2.35.2:
1752 * 3) Compare the port numbers and the verification tag contained
1753 * within the COOKIE ECHO chunk to the actual port numbers and the
1754 * verification tag within the SCTP common header of the received
1755 * packet. If these values do not match the packet MUST be silently
1756 * discarded,
1757 */
1758 if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
1759 *error = -SCTP_IERROR_BAD_TAG;
1760 goto fail;
1761 }
1762
9b1dfad0 1763 if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
1da177e4
LT
1764 ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
1765 *error = -SCTP_IERROR_BAD_PORTS;
1766 goto fail;
1767 }
1768
1769 /* Check to see if the cookie is stale. If there is already
1770 * an association, there is no need to check cookie's expiration
1771 * for init collision case of lost COOKIE ACK.
f236218b
VY
1772 * If skb has been timestamped, then use the stamp, otherwise
1773 * use current time. This introduces a small possibility that
1774 * that a cookie may be considered expired, but his would only slow
1775 * down the new association establishment instead of every packet.
1da177e4 1776 */
f236218b 1777 if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
52db882f 1778 kt = skb_get_ktime(skb);
f236218b 1779 else
52db882f 1780 kt = ktime_get();
f236218b 1781
52db882f 1782 if (!asoc && ktime_compare(bear_cookie->expiration, kt) < 0) {
1da177e4
LT
1783 /*
1784 * Section 3.3.10.3 Stale Cookie Error (3)
1785 *
1786 * Cause of error
1787 * ---------------
1788 * Stale Cookie Error: Indicates the receipt of a valid State
1789 * Cookie that has expired.
1790 */
1791 len = ntohs(chunk->chunk_hdr->length);
1792 *errp = sctp_make_op_error_space(asoc, chunk, len);
1793 if (*errp) {
52db882f 1794 suseconds_t usecs = ktime_to_us(ktime_sub(kt, bear_cookie->expiration));
34bcca28 1795 __be32 n = htonl(usecs);
1da177e4 1796
1da177e4 1797 sctp_init_cause(*errp, SCTP_ERROR_STALE_COOKIE,
00f1c2df
WY
1798 sizeof(n));
1799 sctp_addto_chunk(*errp, sizeof(n), &n);
1da177e4
LT
1800 *error = -SCTP_IERROR_STALE_COOKIE;
1801 } else
1802 *error = -SCTP_IERROR_NOMEM;
1803
1804 goto fail;
1805 }
1806
1807 /* Make a new base association. */
1808 scope = sctp_scope(sctp_source(chunk));
1809 retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
1810 if (!retval) {
1811 *error = -SCTP_IERROR_NOMEM;
1812 goto fail;
1813 }
1814
1815 /* Set up our peer's port number. */
1816 retval->peer.port = ntohs(chunk->sctp_hdr->source);
1817
1818 /* Populate the association from the cookie. */
1819 memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
1820
1821 if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
1822 GFP_ATOMIC) < 0) {
1823 *error = -SCTP_IERROR_NOMEM;
1824 goto fail;
1825 }
1826
1827 /* Also, add the destination address. */
1828 if (list_empty(&retval->base.bind_addr.address_list)) {
f57d96b2
VY
1829 sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest,
1830 SCTP_ADDR_SRC, GFP_ATOMIC);
1da177e4
LT
1831 }
1832
1833 retval->next_tsn = retval->c.initial_tsn;
1834 retval->ctsn_ack_point = retval->next_tsn - 1;
1835 retval->addip_serial = retval->c.initial_tsn;
1836 retval->adv_peer_ack_point = retval->ctsn_ack_point;
1837 retval->peer.prsctp_capable = retval->c.prsctp_capable;
0f3fffd8 1838 retval->peer.adaptation_ind = retval->c.adaptation_ind;
1da177e4
LT
1839
1840 /* The INIT stuff will be done by the side effects. */
1841 return retval;
1842
1843fail:
1844 if (retval)
1845 sctp_association_free(retval);
1846
1847 return NULL;
1848
1849malformed:
1850 /* Yikes! The packet is either corrupt or deliberately
1851 * malformed.
1852 */
1853 *error = -SCTP_IERROR_MALFORMED;
1854 goto fail;
1855}
1856
1857/********************************************************************
1858 * 3rd Level Abstractions
1859 ********************************************************************/
1860
1861struct __sctp_missing {
9f81bcd9
AV
1862 __be32 num_missing;
1863 __be16 type;
bc10502d 1864} __packed;
1da177e4
LT
1865
1866/*
1867 * Report a missing mandatory parameter.
1868 */
1869static int sctp_process_missing_param(const struct sctp_association *asoc,
1870 sctp_param_t paramtype,
1871 struct sctp_chunk *chunk,
1872 struct sctp_chunk **errp)
1873{
1874 struct __sctp_missing report;
1875 __u16 len;
1876
1877 len = WORD_ROUND(sizeof(report));
1878
1879 /* Make an ERROR chunk, preparing enough room for
1880 * returning multiple unknown parameters.
1881 */
1882 if (!*errp)
1883 *errp = sctp_make_op_error_space(asoc, chunk, len);
1884
1885 if (*errp) {
1886 report.num_missing = htonl(1);
1887 report.type = paramtype;
ebdfcad4 1888 sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
00f1c2df
WY
1889 sizeof(report));
1890 sctp_addto_chunk(*errp, sizeof(report), &report);
1da177e4
LT
1891 }
1892
1893 /* Stop processing this chunk. */
1894 return 0;
1895}
1896
1897/* Report an Invalid Mandatory Parameter. */
1898static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
1899 struct sctp_chunk *chunk,
1900 struct sctp_chunk **errp)
1901{
1902 /* Invalid Mandatory Parameter Error has no payload. */
1903
1904 if (!*errp)
1905 *errp = sctp_make_op_error_space(asoc, chunk, 0);
1906
1907 if (*errp)
00f1c2df 1908 sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, 0);
1da177e4
LT
1909
1910 /* Stop processing this chunk. */
1911 return 0;
1912}
1913
1914static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
1915 struct sctp_paramhdr *param,
1916 const struct sctp_chunk *chunk,
1917 struct sctp_chunk **errp)
1918{
7ab90804
VY
1919 /* This is a fatal error. Any accumulated non-fatal errors are
1920 * not reported.
1921 */
1922 if (*errp)
1923 sctp_chunk_free(*errp);
1924
1da177e4 1925 /* Create an error chunk and fill it in with our payload. */
ba016670 1926 *errp = sctp_make_violation_paramlen(asoc, chunk, param);
1da177e4
LT
1927
1928 return 0;
1929}
1930
1931
1932/* Do not attempt to handle the HOST_NAME parm. However, do
1933 * send back an indicator to the peer.
1934 */
1935static int sctp_process_hn_param(const struct sctp_association *asoc,
1936 union sctp_params param,
1937 struct sctp_chunk *chunk,
1938 struct sctp_chunk **errp)
1939{
1940 __u16 len = ntohs(param.p->length);
1941
7ab90804
VY
1942 /* Processing of the HOST_NAME parameter will generate an
1943 * ABORT. If we've accumulated any non-fatal errors, they
1944 * would be unrecognized parameters and we should not include
1945 * them in the ABORT.
1946 */
1947 if (*errp)
1948 sctp_chunk_free(*errp);
1949
1950 *errp = sctp_make_op_error_space(asoc, chunk, len);
1da177e4 1951
00f1c2df
WY
1952 if (*errp) {
1953 sctp_init_cause(*errp, SCTP_ERROR_DNS_FAILED, len);
1954 sctp_addto_chunk(*errp, len, param.v);
1955 }
1da177e4
LT
1956
1957 /* Stop processing this chunk. */
1958 return 0;
1959}
1960
f53b5b09 1961static int sctp_verify_ext_param(struct net *net, union sctp_params param)
d6701191
VY
1962{
1963 __u16 num_ext = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
1964 int have_auth = 0;
1965 int have_asconf = 0;
1966 int i;
1967
1968 for (i = 0; i < num_ext; i++) {
1969 switch (param.ext->chunks[i]) {
1970 case SCTP_CID_AUTH:
1971 have_auth = 1;
1972 break;
1973 case SCTP_CID_ASCONF:
1974 case SCTP_CID_ASCONF_ACK:
1975 have_asconf = 1;
1976 break;
1977 }
1978 }
1979
1980 /* ADD-IP Security: The draft requires us to ABORT or ignore the
1981 * INIT/INIT-ACK if ADD-IP is listed, but AUTH is not. Do this
1982 * only if ADD-IP is turned on and we are not backward-compatible
1983 * mode.
1984 */
e1fc3b14 1985 if (net->sctp.addip_noauth)
d6701191
VY
1986 return 1;
1987
e1fc3b14 1988 if (net->sctp.addip_enable && !have_auth && have_asconf)
d6701191
VY
1989 return 0;
1990
1991 return 1;
1992}
1993
131a47e3
VY
1994static void sctp_process_ext_param(struct sctp_association *asoc,
1995 union sctp_params param)
1996{
e1fc3b14 1997 struct net *net = sock_net(asoc->base.sk);
131a47e3
VY
1998 __u16 num_ext = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
1999 int i;
2000
2001 for (i = 0; i < num_ext; i++) {
2002 switch (param.ext->chunks[i]) {
2003 case SCTP_CID_FWD_TSN:
e1fc3b14 2004 if (net->sctp.prsctp_enable &&
131a47e3
VY
2005 !asoc->peer.prsctp_capable)
2006 asoc->peer.prsctp_capable = 1;
2007 break;
730fc3d0
VY
2008 case SCTP_CID_AUTH:
2009 /* if the peer reports AUTH, assume that he
2010 * supports AUTH.
2011 */
e1fc3b14 2012 if (net->sctp.auth_enable)
0ef46e28 2013 asoc->peer.auth_capable = 1;
730fc3d0 2014 break;
131a47e3
VY
2015 case SCTP_CID_ASCONF:
2016 case SCTP_CID_ASCONF_ACK:
e1fc3b14 2017 if (net->sctp.addip_enable)
0ef46e28 2018 asoc->peer.asconf_capable = 1;
6b2f9cb6 2019 break;
131a47e3
VY
2020 default:
2021 break;
2022 }
2023 }
2024}
2025
1da177e4
LT
2026/* RFC 3.2.1 & the Implementers Guide 2.2.
2027 *
2028 * The Parameter Types are encoded such that the
2029 * highest-order two bits specify the action that must be
2030 * taken if the processing endpoint does not recognize the
2031 * Parameter Type.
2032 *
7ab90804
VY
2033 * 00 - Stop processing this parameter; do not process any further
2034 * parameters within this chunk
1da177e4 2035 *
7ab90804
VY
2036 * 01 - Stop processing this parameter, do not process any further
2037 * parameters within this chunk, and report the unrecognized
2038 * parameter in an 'Unrecognized Parameter' ERROR chunk.
1da177e4
LT
2039 *
2040 * 10 - Skip this parameter and continue processing.
2041 *
2042 * 11 - Skip this parameter and continue processing but
2043 * report the unrecognized parameter in an
7ab90804 2044 * 'Unrecognized Parameter' ERROR chunk.
1da177e4
LT
2045 *
2046 * Return value:
7ab90804
VY
2047 * SCTP_IERROR_NO_ERROR - continue with the chunk
2048 * SCTP_IERROR_ERROR - stop and report an error.
2049 * SCTP_IERROR_NOMEME - out of memory.
1da177e4 2050 */
7ab90804
VY
2051static sctp_ierror_t sctp_process_unk_param(const struct sctp_association *asoc,
2052 union sctp_params param,
2053 struct sctp_chunk *chunk,
2054 struct sctp_chunk **errp)
1da177e4 2055{
7ab90804 2056 int retval = SCTP_IERROR_NO_ERROR;
1da177e4
LT
2057
2058 switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
2059 case SCTP_PARAM_ACTION_DISCARD:
7ab90804 2060 retval = SCTP_IERROR_ERROR;
1da177e4
LT
2061 break;
2062 case SCTP_PARAM_ACTION_SKIP:
2063 break;
7ab90804
VY
2064 case SCTP_PARAM_ACTION_DISCARD_ERR:
2065 retval = SCTP_IERROR_ERROR;
2066 /* Fall through */
1da177e4
LT
2067 case SCTP_PARAM_ACTION_SKIP_ERR:
2068 /* Make an ERROR chunk, preparing enough room for
2069 * returning multiple unknown parameters.
2070 */
2071 if (NULL == *errp)
5fa782c2 2072 *errp = sctp_make_op_error_fixed(asoc, chunk);
1da177e4
LT
2073
2074 if (*errp) {
2205a6ea
JB
2075 if (!sctp_init_cause_fixed(*errp, SCTP_ERROR_UNKNOWN_PARAM,
2076 WORD_ROUND(ntohs(param.p->length))))
2077 sctp_addto_chunk_fixed(*errp,
2078 WORD_ROUND(ntohs(param.p->length)),
2079 param.v);
1da177e4
LT
2080 } else {
2081 /* If there is no memory for generating the ERROR
2082 * report as specified, an ABORT will be triggered
2083 * to the peer and the association won't be
2084 * established.
2085 */
7ab90804 2086 retval = SCTP_IERROR_NOMEM;
1da177e4 2087 }
1da177e4
LT
2088 break;
2089 default:
2090 break;
2091 }
2092
2093 return retval;
2094}
2095
7ab90804 2096/* Verify variable length parameters
1da177e4 2097 * Return values:
7ab90804
VY
2098 * SCTP_IERROR_ABORT - trigger an ABORT
2099 * SCTP_IERROR_NOMEM - out of memory (abort)
2100 * SCTP_IERROR_ERROR - stop processing, trigger an ERROR
2101 * SCTP_IERROR_NO_ERROR - continue with the chunk
1da177e4 2102 */
f53b5b09
EB
2103static sctp_ierror_t sctp_verify_param(struct net *net,
2104 const struct sctp_association *asoc,
7ab90804
VY
2105 union sctp_params param,
2106 sctp_cid_t cid,
2107 struct sctp_chunk *chunk,
2108 struct sctp_chunk **err_chunk)
1da177e4 2109{
72da7b38 2110 struct sctp_hmac_algo_param *hmacs;
7ab90804 2111 int retval = SCTP_IERROR_NO_ERROR;
72da7b38
WY
2112 __u16 n_elt, id = 0;
2113 int i;
1da177e4
LT
2114
2115 /* FIXME - This routine is not looking at each parameter per the
2116 * chunk type, i.e., unrecognized parameters should be further
2117 * identified based on the chunk id.
2118 */
2119
2120 switch (param.p->type) {
2121 case SCTP_PARAM_IPV4_ADDRESS:
2122 case SCTP_PARAM_IPV6_ADDRESS:
2123 case SCTP_PARAM_COOKIE_PRESERVATIVE:
2124 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2125 case SCTP_PARAM_STATE_COOKIE:
2126 case SCTP_PARAM_HEARTBEAT_INFO:
2127 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2128 case SCTP_PARAM_ECN_CAPABLE:
0f3fffd8 2129 case SCTP_PARAM_ADAPTATION_LAYER_IND:
d6701191
VY
2130 break;
2131
131a47e3 2132 case SCTP_PARAM_SUPPORTED_EXT:
f53b5b09 2133 if (!sctp_verify_ext_param(net, param))
d6701191 2134 return SCTP_IERROR_ABORT;
1da177e4
LT
2135 break;
2136
d6de3097 2137 case SCTP_PARAM_SET_PRIMARY:
e1fc3b14 2138 if (net->sctp.addip_enable)
d6de3097
VY
2139 break;
2140 goto fallthrough;
2141
1da177e4
LT
2142 case SCTP_PARAM_HOST_NAME_ADDRESS:
2143 /* Tell the peer, we won't support this param. */
7ab90804
VY
2144 sctp_process_hn_param(asoc, param, chunk, err_chunk);
2145 retval = SCTP_IERROR_ABORT;
2146 break;
131a47e3 2147
1da177e4 2148 case SCTP_PARAM_FWD_TSN_SUPPORT:
e1fc3b14 2149 if (net->sctp.prsctp_enable)
1da177e4 2150 break;
730fc3d0
VY
2151 goto fallthrough;
2152
2153 case SCTP_PARAM_RANDOM:
e1fc3b14 2154 if (!net->sctp.auth_enable)
730fc3d0
VY
2155 goto fallthrough;
2156
2157 /* SCTP-AUTH: Secion 6.1
2158 * If the random number is not 32 byte long the association
2159 * MUST be aborted. The ABORT chunk SHOULD contain the error
2160 * cause 'Protocol Violation'.
2161 */
2162 if (SCTP_AUTH_RANDOM_LENGTH !=
7ab90804
VY
2163 ntohs(param.p->length) - sizeof(sctp_paramhdr_t)) {
2164 sctp_process_inv_paramlength(asoc, param.p,
730fc3d0 2165 chunk, err_chunk);
7ab90804
VY
2166 retval = SCTP_IERROR_ABORT;
2167 }
730fc3d0
VY
2168 break;
2169
2170 case SCTP_PARAM_CHUNKS:
e1fc3b14 2171 if (!net->sctp.auth_enable)
730fc3d0
VY
2172 goto fallthrough;
2173
2174 /* SCTP-AUTH: Section 3.2
2175 * The CHUNKS parameter MUST be included once in the INIT or
2176 * INIT-ACK chunk if the sender wants to receive authenticated
2177 * chunks. Its maximum length is 260 bytes.
2178 */
7ab90804
VY
2179 if (260 < ntohs(param.p->length)) {
2180 sctp_process_inv_paramlength(asoc, param.p,
2181 chunk, err_chunk);
2182 retval = SCTP_IERROR_ABORT;
2183 }
730fc3d0
VY
2184 break;
2185
2186 case SCTP_PARAM_HMAC_ALGO:
e1fc3b14 2187 if (!net->sctp.auth_enable)
72da7b38
WY
2188 goto fallthrough;
2189
2190 hmacs = (struct sctp_hmac_algo_param *)param.p;
2191 n_elt = (ntohs(param.p->length) - sizeof(sctp_paramhdr_t)) >> 1;
2192
2193 /* SCTP-AUTH: Section 6.1
2194 * The HMAC algorithm based on SHA-1 MUST be supported and
2195 * included in the HMAC-ALGO parameter.
2196 */
2197 for (i = 0; i < n_elt; i++) {
2198 id = ntohs(hmacs->hmac_ids[i]);
2199
2200 if (id == SCTP_AUTH_HMAC_ID_SHA1)
2201 break;
2202 }
2203
2204 if (id != SCTP_AUTH_HMAC_ID_SHA1) {
2205 sctp_process_inv_paramlength(asoc, param.p, chunk,
2206 err_chunk);
2207 retval = SCTP_IERROR_ABORT;
2208 }
2209 break;
730fc3d0 2210fallthrough:
1da177e4 2211 default:
bb33381d
DB
2212 pr_debug("%s: unrecognized param:%d for chunk:%d\n",
2213 __func__, ntohs(param.p->type), cid);
2214
7ab90804 2215 retval = sctp_process_unk_param(asoc, param, chunk, err_chunk);
1da177e4
LT
2216 break;
2217 }
2218 return retval;
2219}
2220
2221/* Verify the INIT packet before we process it. */
f53b5b09 2222int sctp_verify_init(struct net *net, const struct sctp_association *asoc,
1da177e4
LT
2223 sctp_cid_t cid,
2224 sctp_init_chunk_t *peer_init,
2225 struct sctp_chunk *chunk,
2226 struct sctp_chunk **errp)
2227{
2228 union sctp_params param;
7613f5fe 2229 bool has_cookie = false;
7ab90804 2230 int result;
1da177e4 2231
7613f5fe
DB
2232 /* Check for missing mandatory parameters. Note: Initial TSN is
2233 * also mandatory, but is not checked here since the valid range
2234 * is 0..2**32-1. RFC4960, section 3.3.3.
2235 */
2236 if (peer_init->init_hdr.num_outbound_streams == 0 ||
2237 peer_init->init_hdr.num_inbound_streams == 0 ||
2238 peer_init->init_hdr.init_tag == 0 ||
2239 ntohl(peer_init->init_hdr.a_rwnd) < SCTP_DEFAULT_MINWINDOW)
7ab90804 2240 return sctp_process_inv_mandatory(asoc, chunk, errp);
1da177e4 2241
1da177e4 2242 sctp_walk_params(param, peer_init, init_hdr.params) {
7613f5fe
DB
2243 if (param.p->type == SCTP_PARAM_STATE_COOKIE)
2244 has_cookie = true;
2245 }
1da177e4
LT
2246
2247 /* There is a possibility that a parameter length was bad and
2248 * in that case we would have stoped walking the parameters.
2249 * The current param.p would point at the bad one.
2250 * Current consensus on the mailing list is to generate a PROTOCOL
2251 * VIOLATION error. We build the ERROR chunk here and let the normal
2252 * error handling code build and send the packet.
2253 */
26ac8e5f 2254 if (param.v != (void *)chunk->chunk_end)
7ab90804 2255 return sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
1da177e4
LT
2256
2257 /* The only missing mandatory param possible today is
2258 * the state cookie for an INIT-ACK chunk.
2259 */
7ab90804
VY
2260 if ((SCTP_CID_INIT_ACK == cid) && !has_cookie)
2261 return sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
2262 chunk, errp);
1da177e4 2263
7ab90804 2264 /* Verify all the variable length parameters */
1da177e4
LT
2265 sctp_walk_params(param, peer_init, init_hdr.params) {
2266
f53b5b09 2267 result = sctp_verify_param(net, asoc, param, cid, chunk, errp);
7ab90804
VY
2268 switch (result) {
2269 case SCTP_IERROR_ABORT:
2270 case SCTP_IERROR_NOMEM:
1da177e4 2271 return 0;
7ab90804 2272 case SCTP_IERROR_ERROR:
1da177e4 2273 return 1;
7ab90804
VY
2274 case SCTP_IERROR_NO_ERROR:
2275 default:
2276 break;
1da177e4
LT
2277 }
2278
2279 } /* for (loop through all parameters) */
2280
2281 return 1;
2282}
2283
2284/* Unpack the parameters in an INIT packet into an association.
2285 * Returns 0 on failure, else success.
2286 * FIXME: This is an association method.
2287 */
de6becdc 2288int sctp_process_init(struct sctp_association *asoc, struct sctp_chunk *chunk,
1da177e4 2289 const union sctp_addr *peer_addr,
dd0fc66f 2290 sctp_init_chunk_t *peer_init, gfp_t gfp)
1da177e4 2291{
e1fc3b14 2292 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
2293 union sctp_params param;
2294 struct sctp_transport *transport;
2295 struct list_head *pos, *temp;
de6becdc
WY
2296 struct sctp_af *af;
2297 union sctp_addr addr;
1da177e4 2298 char *cookie;
de6becdc 2299 int src_match = 0;
1da177e4
LT
2300
2301 /* We must include the address that the INIT packet came from.
2302 * This is the only address that matters for an INIT packet.
2303 * When processing a COOKIE ECHO, we retrieve the from address
2304 * of the INIT from the cookie.
2305 */
2306
2307 /* This implementation defaults to making the first transport
2308 * added as the primary transport. The source address seems to
2309 * be a a better choice than any of the embedded addresses.
2310 */
cb3f837b 2311 if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
de6becdc
WY
2312 goto nomem;
2313
2314 if (sctp_cmp_addr_exact(sctp_source(chunk), peer_addr))
2315 src_match = 1;
1da177e4
LT
2316
2317 /* Process the initialization parameters. */
1da177e4 2318 sctp_walk_params(param, peer_init, init_hdr.params) {
de6becdc
WY
2319 if (!src_match && (param.p->type == SCTP_PARAM_IPV4_ADDRESS ||
2320 param.p->type == SCTP_PARAM_IPV6_ADDRESS)) {
2321 af = sctp_get_af_specific(param_type2af(param.p->type));
2322 af->from_addr_param(&addr, param.addr,
2323 chunk->sctp_hdr->source, 0);
2324 if (sctp_cmp_addr_exact(sctp_source(chunk), &addr))
2325 src_match = 1;
2326 }
1da177e4
LT
2327
2328 if (!sctp_process_param(asoc, param, peer_addr, gfp))
d808ad9a 2329 goto clean_up;
1da177e4
LT
2330 }
2331
de6becdc
WY
2332 /* source address of chunk may not match any valid address */
2333 if (!src_match)
2334 goto clean_up;
2335
730fc3d0
VY
2336 /* AUTH: After processing the parameters, make sure that we
2337 * have all the required info to potentially do authentications.
2338 */
2339 if (asoc->peer.auth_capable && (!asoc->peer.peer_random ||
2340 !asoc->peer.peer_hmacs))
2341 asoc->peer.auth_capable = 0;
2342
d6701191
VY
2343 /* In a non-backward compatible mode, if the peer claims
2344 * support for ADD-IP but not AUTH, the ADD-IP spec states
2345 * that we MUST ABORT the association. Section 6. The section
2346 * also give us an option to silently ignore the packet, which
2347 * is what we'll do here.
6b2f9cb6 2348 */
e1fc3b14 2349 if (!net->sctp.addip_noauth &&
73d9c4fd 2350 (asoc->peer.asconf_capable && !asoc->peer.auth_capable)) {
6b2f9cb6
VY
2351 asoc->peer.addip_disabled_mask |= (SCTP_PARAM_ADD_IP |
2352 SCTP_PARAM_DEL_IP |
2353 SCTP_PARAM_SET_PRIMARY);
88799fe5 2354 asoc->peer.asconf_capable = 0;
d6701191 2355 goto clean_up;
6b2f9cb6
VY
2356 }
2357
3f7a87d2
FF
2358 /* Walk list of transports, removing transports in the UNKNOWN state. */
2359 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2360 transport = list_entry(pos, struct sctp_transport, transports);
2361 if (transport->state == SCTP_UNKNOWN) {
2362 sctp_assoc_rm_peer(asoc, transport);
2363 }
2364 }
2365
1da177e4
LT
2366 /* The fixed INIT headers are always in network byte
2367 * order.
2368 */
2369 asoc->peer.i.init_tag =
2370 ntohl(peer_init->init_hdr.init_tag);
2371 asoc->peer.i.a_rwnd =
2372 ntohl(peer_init->init_hdr.a_rwnd);
2373 asoc->peer.i.num_outbound_streams =
2374 ntohs(peer_init->init_hdr.num_outbound_streams);
2375 asoc->peer.i.num_inbound_streams =
2376 ntohs(peer_init->init_hdr.num_inbound_streams);
2377 asoc->peer.i.initial_tsn =
2378 ntohl(peer_init->init_hdr.initial_tsn);
2379
2380 /* Apply the upper bounds for output streams based on peer's
2381 * number of inbound streams.
2382 */
2383 if (asoc->c.sinit_num_ostreams >
2384 ntohs(peer_init->init_hdr.num_inbound_streams)) {
2385 asoc->c.sinit_num_ostreams =
2386 ntohs(peer_init->init_hdr.num_inbound_streams);
2387 }
2388
2389 if (asoc->c.sinit_max_instreams >
2390 ntohs(peer_init->init_hdr.num_outbound_streams)) {
2391 asoc->c.sinit_max_instreams =
2392 ntohs(peer_init->init_hdr.num_outbound_streams);
2393 }
2394
2395 /* Copy Initiation tag from INIT to VT_peer in cookie. */
2396 asoc->c.peer_vtag = asoc->peer.i.init_tag;
2397
2398 /* Peer Rwnd : Current calculated value of the peer's rwnd. */
2399 asoc->peer.rwnd = asoc->peer.i.a_rwnd;
2400
2401 /* Copy cookie in case we need to resend COOKIE-ECHO. */
2402 cookie = asoc->peer.cookie;
2403 if (cookie) {
af997d8c 2404 asoc->peer.cookie = kmemdup(cookie, asoc->peer.cookie_len, gfp);
1da177e4
LT
2405 if (!asoc->peer.cookie)
2406 goto clean_up;
1da177e4
LT
2407 }
2408
2409 /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
2410 * high (for example, implementations MAY use the size of the receiver
2411 * advertised window).
2412 */
9dbc15f0
RD
2413 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
2414 transports) {
1da177e4
LT
2415 transport->ssthresh = asoc->peer.i.a_rwnd;
2416 }
2417
2418 /* Set up the TSN tracking pieces. */
8e1ee18c
VY
2419 if (!sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_INITIAL,
2420 asoc->peer.i.initial_tsn, gfp))
2421 goto clean_up;
1da177e4
LT
2422
2423 /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
2424 *
2425 * The stream sequence number in all the streams shall start
2426 * from 0 when the association is established. Also, when the
2427 * stream sequence number reaches the value 65535 the next
2428 * stream sequence number shall be set to 0.
2429 */
2430
3f7a87d2 2431 /* Allocate storage for the negotiated streams if it is not a temporary
d808ad9a 2432 * association.
1da177e4
LT
2433 */
2434 if (!asoc->temp) {
1da177e4
LT
2435 int error;
2436
2437 asoc->ssnmap = sctp_ssnmap_new(asoc->c.sinit_max_instreams,
2438 asoc->c.sinit_num_ostreams, gfp);
2439 if (!asoc->ssnmap)
2440 goto clean_up;
2441
07d93967
VY
2442 error = sctp_assoc_set_id(asoc, gfp);
2443 if (error)
1da177e4 2444 goto clean_up;
1da177e4
LT
2445 }
2446
2447 /* ADDIP Section 4.1 ASCONF Chunk Procedures
2448 *
2449 * When an endpoint has an ASCONF signaled change to be sent to the
2450 * remote endpoint it should do the following:
2451 * ...
2452 * A2) A serial number should be assigned to the Chunk. The serial
2453 * number should be a monotonically increasing number. All serial
2454 * numbers are defined to be initialized at the start of the
2455 * association to the same value as the Initial TSN.
2456 */
2457 asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
2458 return 1;
2459
2460clean_up:
2461 /* Release the transport structures. */
2462 list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
2463 transport = list_entry(pos, struct sctp_transport, transports);
add52379
VY
2464 if (transport->state != SCTP_ACTIVE)
2465 sctp_assoc_rm_peer(asoc, transport);
1da177e4 2466 }
3f7a87d2 2467
1da177e4
LT
2468nomem:
2469 return 0;
2470}
2471
2472
2473/* Update asoc with the option described in param.
2474 *
2475 * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
2476 *
2477 * asoc is the association to update.
2478 * param is the variable length parameter to use for update.
2479 * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
2480 * If the current packet is an INIT we want to minimize the amount of
2481 * work we do. In particular, we should not build transport
2482 * structures for the addresses.
2483 */
2484static int sctp_process_param(struct sctp_association *asoc,
2485 union sctp_params param,
2486 const union sctp_addr *peer_addr,
dd0fc66f 2487 gfp_t gfp)
1da177e4 2488{
e7ff4a70 2489 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
2490 union sctp_addr addr;
2491 int i;
2492 __u16 sat;
2493 int retval = 1;
2494 sctp_scope_t scope;
2495 time_t stale;
2496 struct sctp_af *af;
d6de3097
VY
2497 union sctp_addr_param *addr_param;
2498 struct sctp_transport *t;
1da177e4
LT
2499
2500 /* We maintain all INIT parameters in network byte order all the
2501 * time. This allows us to not worry about whether the parameters
2502 * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
2503 */
2504 switch (param.p->type) {
2505 case SCTP_PARAM_IPV6_ADDRESS:
2506 if (PF_INET6 != asoc->base.sk->sk_family)
2507 break;
7dab83de
VY
2508 goto do_addr_param;
2509
1da177e4 2510 case SCTP_PARAM_IPV4_ADDRESS:
7dab83de
VY
2511 /* v4 addresses are not allowed on v6-only socket */
2512 if (ipv6_only_sock(asoc->base.sk))
2513 break;
2514do_addr_param:
1da177e4 2515 af = sctp_get_af_specific(param_type2af(param.p->type));
dd86d136 2516 af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
1da177e4 2517 scope = sctp_scope(peer_addr);
e7ff4a70 2518 if (sctp_in_scope(net, &addr, scope))
dd86d136 2519 if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
1da177e4
LT
2520 return 0;
2521 break;
2522
2523 case SCTP_PARAM_COOKIE_PRESERVATIVE:
e1fc3b14 2524 if (!net->sctp.cookie_preserve_enable)
1da177e4
LT
2525 break;
2526
2527 stale = ntohl(param.life->lifespan_increment);
2528
2529 /* Suggested Cookie Life span increment's unit is msec,
2530 * (1/1000sec).
2531 */
52db882f 2532 asoc->cookie_life = ktime_add_ms(asoc->cookie_life, stale);
1da177e4
LT
2533 break;
2534
2535 case SCTP_PARAM_HOST_NAME_ADDRESS:
bb33381d 2536 pr_debug("%s: unimplemented SCTP_HOST_NAME_ADDRESS\n", __func__);
1da177e4
LT
2537 break;
2538
2539 case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2540 /* Turn off the default values first so we'll know which
2541 * ones are really set by the peer.
2542 */
2543 asoc->peer.ipv4_address = 0;
2544 asoc->peer.ipv6_address = 0;
2545
140ee960
GJ
2546 /* Assume that peer supports the address family
2547 * by which it sends a packet.
2548 */
2549 if (peer_addr->sa.sa_family == AF_INET6)
2550 asoc->peer.ipv6_address = 1;
2551 else if (peer_addr->sa.sa_family == AF_INET)
2552 asoc->peer.ipv4_address = 1;
2553
1da177e4
LT
2554 /* Cycle through address types; avoid divide by 0. */
2555 sat = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2556 if (sat)
2557 sat /= sizeof(__u16);
2558
2559 for (i = 0; i < sat; ++i) {
2560 switch (param.sat->types[i]) {
2561 case SCTP_PARAM_IPV4_ADDRESS:
2562 asoc->peer.ipv4_address = 1;
2563 break;
2564
2565 case SCTP_PARAM_IPV6_ADDRESS:
6e40a915
WY
2566 if (PF_INET6 == asoc->base.sk->sk_family)
2567 asoc->peer.ipv6_address = 1;
1da177e4
LT
2568 break;
2569
2570 case SCTP_PARAM_HOST_NAME_ADDRESS:
2571 asoc->peer.hostname_address = 1;
2572 break;
2573
2574 default: /* Just ignore anything else. */
2575 break;
3ff50b79 2576 }
1da177e4
LT
2577 }
2578 break;
2579
2580 case SCTP_PARAM_STATE_COOKIE:
2581 asoc->peer.cookie_len =
2582 ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2583 asoc->peer.cookie = param.cookie->body;
2584 break;
2585
2586 case SCTP_PARAM_HEARTBEAT_INFO:
2587 /* Would be odd to receive, but it causes no problems. */
2588 break;
2589
2590 case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2591 /* Rejected during verify stage. */
2592 break;
2593
2594 case SCTP_PARAM_ECN_CAPABLE:
2595 asoc->peer.ecn_capable = 1;
2596 break;
2597
0f3fffd8 2598 case SCTP_PARAM_ADAPTATION_LAYER_IND:
e69c4e0f 2599 asoc->peer.adaptation_ind = ntohl(param.aind->adaptation_ind);
1da177e4
LT
2600 break;
2601
d6de3097 2602 case SCTP_PARAM_SET_PRIMARY:
e1fc3b14 2603 if (!net->sctp.addip_enable)
0ef46e28
VY
2604 goto fall_through;
2605
d6de3097
VY
2606 addr_param = param.v + sizeof(sctp_addip_param_t);
2607
2608 af = sctp_get_af_specific(param_type2af(param.p->type));
2609 af->from_addr_param(&addr, addr_param,
2610 htons(asoc->peer.port), 0);
2611
2612 /* if the address is invalid, we can't process it.
2613 * XXX: see spec for what to do.
2614 */
2615 if (!af->addr_valid(&addr, NULL, NULL))
2616 break;
2617
2618 t = sctp_assoc_lookup_paddr(asoc, &addr);
2619 if (!t)
2620 break;
2621
2622 sctp_assoc_set_primary(asoc, t);
2623 break;
2624
131a47e3
VY
2625 case SCTP_PARAM_SUPPORTED_EXT:
2626 sctp_process_ext_param(asoc, param);
2627 break;
2628
1da177e4 2629 case SCTP_PARAM_FWD_TSN_SUPPORT:
e1fc3b14 2630 if (net->sctp.prsctp_enable) {
1da177e4
LT
2631 asoc->peer.prsctp_capable = 1;
2632 break;
2633 }
d808ad9a 2634 /* Fall Through */
730fc3d0
VY
2635 goto fall_through;
2636
2637 case SCTP_PARAM_RANDOM:
e1fc3b14 2638 if (!net->sctp.auth_enable)
730fc3d0
VY
2639 goto fall_through;
2640
2641 /* Save peer's random parameter */
2642 asoc->peer.peer_random = kmemdup(param.p,
2643 ntohs(param.p->length), gfp);
2644 if (!asoc->peer.peer_random) {
2645 retval = 0;
2646 break;
2647 }
2648 break;
2649
2650 case SCTP_PARAM_HMAC_ALGO:
e1fc3b14 2651 if (!net->sctp.auth_enable)
730fc3d0
VY
2652 goto fall_through;
2653
2654 /* Save peer's HMAC list */
2655 asoc->peer.peer_hmacs = kmemdup(param.p,
2656 ntohs(param.p->length), gfp);
2657 if (!asoc->peer.peer_hmacs) {
2658 retval = 0;
2659 break;
2660 }
2661
2662 /* Set the default HMAC the peer requested*/
2663 sctp_auth_asoc_set_default_hmac(asoc, param.hmac_algo);
2664 break;
2665
2666 case SCTP_PARAM_CHUNKS:
e1fc3b14 2667 if (!net->sctp.auth_enable)
730fc3d0
VY
2668 goto fall_through;
2669
2670 asoc->peer.peer_chunks = kmemdup(param.p,
2671 ntohs(param.p->length), gfp);
2672 if (!asoc->peer.peer_chunks)
2673 retval = 0;
2674 break;
2675fall_through:
1da177e4
LT
2676 default:
2677 /* Any unrecognized parameters should have been caught
2678 * and handled by sctp_verify_param() which should be
2679 * called prior to this routine. Simply log the error
2680 * here.
2681 */
bb33381d
DB
2682 pr_debug("%s: ignoring param:%d for association:%p.\n",
2683 __func__, ntohs(param.p->type), asoc);
1da177e4 2684 break;
3ff50b79 2685 }
1da177e4
LT
2686
2687 return retval;
2688}
2689
2690/* Select a new verification tag. */
2691__u32 sctp_generate_tag(const struct sctp_endpoint *ep)
2692{
2693 /* I believe that this random number generator complies with RFC1750.
2694 * A tag of 0 is reserved for special cases (e.g. INIT).
2695 */
2696 __u32 x;
2697
2698 do {
2699 get_random_bytes(&x, sizeof(__u32));
2700 } while (x == 0);
2701
2702 return x;
2703}
2704
2705/* Select an initial TSN to send during startup. */
2706__u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
2707{
2708 __u32 retval;
2709
2710 get_random_bytes(&retval, sizeof(__u32));
2711 return retval;
2712}
2713
2714/*
2715 * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
2716 * 0 1 2 3
2717 * 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
2718 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2719 * | Type = 0xC1 | Chunk Flags | Chunk Length |
2720 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2721 * | Serial Number |
2722 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2723 * | Address Parameter |
2724 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2725 * | ASCONF Parameter #1 |
2726 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2727 * \ \
2728 * / .... /
2729 * \ \
2730 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2731 * | ASCONF Parameter #N |
2732 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2733 *
d808ad9a 2734 * Address Parameter and other parameter will not be wrapped in this function
1da177e4
LT
2735 */
2736static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
2737 union sctp_addr *addr,
2738 int vparam_len)
2739{
2740 sctp_addiphdr_t asconf;
2741 struct sctp_chunk *retval;
2742 int length = sizeof(asconf) + vparam_len;
2743 union sctp_addr_param addrparam;
2744 int addrlen;
2745 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2746
2747 addrlen = af->to_addr_param(addr, &addrparam);
2748 if (!addrlen)
2749 return NULL;
2750 length += addrlen;
2751
2752 /* Create the chunk. */
072017b4 2753 retval = sctp_make_control(asoc, SCTP_CID_ASCONF, 0, length);
1da177e4
LT
2754 if (!retval)
2755 return NULL;
2756
2757 asconf.serial = htonl(asoc->addip_serial++);
2758
2759 retval->subh.addip_hdr =
2760 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2761 retval->param_hdr.v =
2762 sctp_addto_chunk(retval, addrlen, &addrparam);
2763
2764 return retval;
2765}
2766
2767/* ADDIP
2768 * 3.2.1 Add IP Address
2769 * 0 1 2 3
2770 * 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
2771 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2772 * | Type = 0xC001 | Length = Variable |
2773 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2774 * | ASCONF-Request Correlation ID |
2775 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2776 * | Address Parameter |
2777 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2778 *
2779 * 3.2.2 Delete IP Address
2780 * 0 1 2 3
2781 * 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
2782 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2783 * | Type = 0xC002 | Length = Variable |
2784 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2785 * | ASCONF-Request Correlation ID |
2786 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2787 * | Address Parameter |
2788 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2789 *
2790 */
2791struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
2792 union sctp_addr *laddr,
2793 struct sockaddr *addrs,
2794 int addrcnt,
dbc16db1 2795 __be16 flags)
1da177e4
LT
2796{
2797 sctp_addip_param_t param;
2798 struct sctp_chunk *retval;
2799 union sctp_addr_param addr_param;
2800 union sctp_addr *addr;
2801 void *addr_buf;
2802 struct sctp_af *af;
2803 int paramlen = sizeof(param);
2804 int addr_param_len = 0;
2805 int totallen = 0;
2806 int i;
8a07eb0a 2807 int del_pickup = 0;
1da177e4
LT
2808
2809 /* Get total length of all the address parameters. */
2810 addr_buf = addrs;
2811 for (i = 0; i < addrcnt; i++) {
ea110733 2812 addr = addr_buf;
1da177e4
LT
2813 af = sctp_get_af_specific(addr->v4.sin_family);
2814 addr_param_len = af->to_addr_param(addr, &addr_param);
2815
2816 totallen += paramlen;
2817 totallen += addr_param_len;
2818
2819 addr_buf += af->sockaddr_len;
8a07eb0a
MH
2820 if (asoc->asconf_addr_del_pending && !del_pickup) {
2821 /* reuse the parameter length from the same scope one */
2822 totallen += paramlen;
2823 totallen += addr_param_len;
2824 del_pickup = 1;
bb33381d
DB
2825
2826 pr_debug("%s: picked same-scope del_pending addr, "
2827 "totallen for all addresses is %d\n",
2828 __func__, totallen);
8a07eb0a 2829 }
1da177e4
LT
2830 }
2831
2832 /* Create an asconf chunk with the required length. */
2833 retval = sctp_make_asconf(asoc, laddr, totallen);
2834 if (!retval)
2835 return NULL;
2836
2837 /* Add the address parameters to the asconf chunk. */
2838 addr_buf = addrs;
2839 for (i = 0; i < addrcnt; i++) {
ea110733 2840 addr = addr_buf;
1da177e4
LT
2841 af = sctp_get_af_specific(addr->v4.sin_family);
2842 addr_param_len = af->to_addr_param(addr, &addr_param);
2843 param.param_hdr.type = flags;
2844 param.param_hdr.length = htons(paramlen + addr_param_len);
2845 param.crr_id = i;
2846
2847 sctp_addto_chunk(retval, paramlen, &param);
2848 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2849
2850 addr_buf += af->sockaddr_len;
2851 }
8a07eb0a
MH
2852 if (flags == SCTP_PARAM_ADD_IP && del_pickup) {
2853 addr = asoc->asconf_addr_del_pending;
2854 af = sctp_get_af_specific(addr->v4.sin_family);
2855 addr_param_len = af->to_addr_param(addr, &addr_param);
2856 param.param_hdr.type = SCTP_PARAM_DEL_IP;
2857 param.param_hdr.length = htons(paramlen + addr_param_len);
2858 param.crr_id = i;
2859
2860 sctp_addto_chunk(retval, paramlen, &param);
2861 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2862 }
1da177e4
LT
2863 return retval;
2864}
2865
2866/* ADDIP
2867 * 3.2.4 Set Primary IP Address
2868 * 0 1 2 3
2869 * 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
2870 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2871 * | Type =0xC004 | Length = Variable |
2872 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2873 * | ASCONF-Request Correlation ID |
2874 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2875 * | Address Parameter |
2876 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2877 *
d808ad9a 2878 * Create an ASCONF chunk with Set Primary IP address parameter.
1da177e4
LT
2879 */
2880struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
2881 union sctp_addr *addr)
2882{
2883 sctp_addip_param_t param;
2884 struct sctp_chunk *retval;
2885 int len = sizeof(param);
2886 union sctp_addr_param addrparam;
2887 int addrlen;
2888 struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2889
2890 addrlen = af->to_addr_param(addr, &addrparam);
2891 if (!addrlen)
2892 return NULL;
2893 len += addrlen;
2894
2895 /* Create the chunk and make asconf header. */
2896 retval = sctp_make_asconf(asoc, addr, len);
2897 if (!retval)
2898 return NULL;
2899
2900 param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
2901 param.param_hdr.length = htons(len);
2902 param.crr_id = 0;
2903
2904 sctp_addto_chunk(retval, sizeof(param), &param);
2905 sctp_addto_chunk(retval, addrlen, &addrparam);
2906
2907 return retval;
2908}
2909
2910/* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
2911 * 0 1 2 3
2912 * 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
2913 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2914 * | Type = 0x80 | Chunk Flags | Chunk Length |
2915 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2916 * | Serial Number |
2917 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2918 * | ASCONF Parameter Response#1 |
2919 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2920 * \ \
2921 * / .... /
2922 * \ \
2923 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2924 * | ASCONF Parameter Response#N |
2925 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2926 *
d808ad9a 2927 * Create an ASCONF_ACK chunk with enough space for the parameter responses.
1da177e4
LT
2928 */
2929static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
2930 __u32 serial, int vparam_len)
2931{
2932 sctp_addiphdr_t asconf;
2933 struct sctp_chunk *retval;
2934 int length = sizeof(asconf) + vparam_len;
2935
2936 /* Create the chunk. */
072017b4 2937 retval = sctp_make_control(asoc, SCTP_CID_ASCONF_ACK, 0, length);
1da177e4
LT
2938 if (!retval)
2939 return NULL;
2940
2941 asconf.serial = htonl(serial);
2942
2943 retval->subh.addip_hdr =
2944 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2945
2946 return retval;
2947}
2948
2949/* Add response parameters to an ASCONF_ACK chunk. */
9f81bcd9 2950static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
dbc16db1 2951 __be16 err_code, sctp_addip_param_t *asconf_param)
1da177e4
LT
2952{
2953 sctp_addip_param_t ack_param;
2954 sctp_errhdr_t err_param;
2955 int asconf_param_len = 0;
2956 int err_param_len = 0;
dbc16db1 2957 __be16 response_type;
1da177e4
LT
2958
2959 if (SCTP_ERROR_NO_ERROR == err_code) {
2960 response_type = SCTP_PARAM_SUCCESS_REPORT;
2961 } else {
2962 response_type = SCTP_PARAM_ERR_CAUSE;
2963 err_param_len = sizeof(err_param);
2964 if (asconf_param)
2965 asconf_param_len =
2966 ntohs(asconf_param->param_hdr.length);
2967 }
2968
d808ad9a 2969 /* Add Success Indication or Error Cause Indication parameter. */
1da177e4
LT
2970 ack_param.param_hdr.type = response_type;
2971 ack_param.param_hdr.length = htons(sizeof(ack_param) +
2972 err_param_len +
2973 asconf_param_len);
2974 ack_param.crr_id = crr_id;
2975 sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
2976
2977 if (SCTP_ERROR_NO_ERROR == err_code)
2978 return;
2979
2980 /* Add Error Cause parameter. */
2981 err_param.cause = err_code;
2982 err_param.length = htons(err_param_len + asconf_param_len);
2983 sctp_addto_chunk(chunk, err_param_len, &err_param);
2984
2985 /* Add the failed TLV copied from ASCONF chunk. */
2986 if (asconf_param)
2987 sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
2988}
2989
2990/* Process a asconf parameter. */
dbc16db1 2991static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
1da177e4
LT
2992 struct sctp_chunk *asconf,
2993 sctp_addip_param_t *asconf_param)
2994{
2995 struct sctp_transport *peer;
2996 struct sctp_af *af;
2997 union sctp_addr addr;
1da177e4 2998 union sctp_addr_param *addr_param;
5f242a13 2999
ea110733 3000 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
c1cc678a 3001
44e65c1e
WY
3002 if (asconf_param->param_hdr.type != SCTP_PARAM_ADD_IP &&
3003 asconf_param->param_hdr.type != SCTP_PARAM_DEL_IP &&
3004 asconf_param->param_hdr.type != SCTP_PARAM_SET_PRIMARY)
3005 return SCTP_ERROR_UNKNOWN_PARAM;
3006
6a435732 3007 switch (addr_param->p.type) {
c4492586
WY
3008 case SCTP_PARAM_IPV6_ADDRESS:
3009 if (!asoc->peer.ipv6_address)
945e5abc 3010 return SCTP_ERROR_DNS_FAILED;
c4492586
WY
3011 break;
3012 case SCTP_PARAM_IPV4_ADDRESS:
3013 if (!asoc->peer.ipv4_address)
945e5abc 3014 return SCTP_ERROR_DNS_FAILED;
c4492586
WY
3015 break;
3016 default:
945e5abc 3017 return SCTP_ERROR_DNS_FAILED;
c4492586
WY
3018 }
3019
6a435732 3020 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
1da177e4 3021 if (unlikely(!af))
945e5abc 3022 return SCTP_ERROR_DNS_FAILED;
1da177e4 3023
dd86d136 3024 af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
42e30bf3
VY
3025
3026 /* ADDIP 4.2.1 This parameter MUST NOT contain a broadcast
3027 * or multicast address.
3028 * (note: wildcard is permitted and requires special handling so
3029 * make sure we check for that)
3030 */
3031 if (!af->is_any(&addr) && !af->addr_valid(&addr, NULL, asconf->skb))
945e5abc 3032 return SCTP_ERROR_DNS_FAILED;
42e30bf3 3033
1da177e4
LT
3034 switch (asconf_param->param_hdr.type) {
3035 case SCTP_PARAM_ADD_IP:
42e30bf3
VY
3036 /* Section 4.2.1:
3037 * If the address 0.0.0.0 or ::0 is provided, the source
3038 * address of the packet MUST be added.
3039 */
3040 if (af->is_any(&addr))
3041 memcpy(&addr, &asconf->source, sizeof(addr));
3042
1da177e4 3043 /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
d808ad9a
YH
3044 * request and does not have the local resources to add this
3045 * new address to the association, it MUST return an Error
3046 * Cause TLV set to the new error code 'Operation Refused
3047 * Due to Resource Shortage'.
3048 */
1da177e4 3049
dd86d136 3050 peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
1da177e4
LT
3051 if (!peer)
3052 return SCTP_ERROR_RSRC_LOW;
3053
3054 /* Start the heartbeat timer. */
3055 if (!mod_timer(&peer->hb_timer, sctp_transport_timeout(peer)))
3056 sctp_transport_hold(peer);
6af29ccc 3057 asoc->new_transport = peer;
1da177e4
LT
3058 break;
3059 case SCTP_PARAM_DEL_IP:
3060 /* ADDIP 4.3 D7) If a request is received to delete the
d808ad9a
YH
3061 * last remaining IP address of a peer endpoint, the receiver
3062 * MUST send an Error Cause TLV with the error cause set to the
3063 * new error code 'Request to Delete Last Remaining IP Address'.
3064 */
42e30bf3 3065 if (asoc->peer.transport_count == 1)
1da177e4
LT
3066 return SCTP_ERROR_DEL_LAST_IP;
3067
3068 /* ADDIP 4.3 D8) If a request is received to delete an IP
3069 * address which is also the source address of the IP packet
3070 * which contained the ASCONF chunk, the receiver MUST reject
3071 * this request. To reject the request the receiver MUST send
3072 * an Error Cause TLV set to the new error code 'Request to
3073 * Delete Source IP Address'
3074 */
b1364104 3075 if (sctp_cmp_addr_exact(&asconf->source, &addr))
1da177e4
LT
3076 return SCTP_ERROR_DEL_SRC_IP;
3077
42e30bf3
VY
3078 /* Section 4.2.2
3079 * If the address 0.0.0.0 or ::0 is provided, all
3080 * addresses of the peer except the source address of the
3081 * packet MUST be deleted.
3082 */
3083 if (af->is_any(&addr)) {
3084 sctp_assoc_set_primary(asoc, asconf->transport);
3085 sctp_assoc_del_nonprimary_peers(asoc,
3086 asconf->transport);
3087 } else
3088 sctp_assoc_del_peer(asoc, &addr);
1da177e4
LT
3089 break;
3090 case SCTP_PARAM_SET_PRIMARY:
42e30bf3
VY
3091 /* ADDIP Section 4.2.4
3092 * If the address 0.0.0.0 or ::0 is provided, the receiver
3093 * MAY mark the source address of the packet as its
3094 * primary.
3095 */
3096 if (af->is_any(&addr))
3097 memcpy(&addr.v4, sctp_source(asconf), sizeof(addr));
3098
dd86d136 3099 peer = sctp_assoc_lookup_paddr(asoc, &addr);
1da177e4 3100 if (!peer)
945e5abc 3101 return SCTP_ERROR_DNS_FAILED;
1da177e4
LT
3102
3103 sctp_assoc_set_primary(asoc, peer);
3104 break;
1da177e4
LT
3105 }
3106
3107 return SCTP_ERROR_NO_ERROR;
3108}
3109
6f4c618d
WY
3110/* Verify the ASCONF packet before we process it. */
3111int sctp_verify_asconf(const struct sctp_association *asoc,
3112 struct sctp_paramhdr *param_hdr, void *chunk_end,
3113 struct sctp_paramhdr **errp) {
3114 sctp_addip_param_t *asconf_param;
3115 union sctp_params param;
3116 int length, plen;
3117
3118 param.v = (sctp_paramhdr_t *) param_hdr;
3119 while (param.v <= chunk_end - sizeof(sctp_paramhdr_t)) {
3120 length = ntohs(param.p->length);
3121 *errp = param.p;
3122
3123 if (param.v > chunk_end - length ||
3124 length < sizeof(sctp_paramhdr_t))
3125 return 0;
3126
3127 switch (param.p->type) {
3128 case SCTP_PARAM_ADD_IP:
3129 case SCTP_PARAM_DEL_IP:
3130 case SCTP_PARAM_SET_PRIMARY:
3131 asconf_param = (sctp_addip_param_t *)param.v;
3132 plen = ntohs(asconf_param->param_hdr.length);
3133 if (plen < sizeof(sctp_addip_param_t) +
3134 sizeof(sctp_paramhdr_t))
3135 return 0;
3136 break;
3137 case SCTP_PARAM_SUCCESS_REPORT:
3138 case SCTP_PARAM_ADAPTATION_LAYER_IND:
3139 if (length != sizeof(sctp_addip_param_t))
3140 return 0;
3141
3142 break;
3143 default:
3144 break;
3145 }
3146
3147 param.v += WORD_ROUND(length);
3148 }
3149
3150 if (param.v != chunk_end)
3151 return 0;
3152
3153 return 1;
3154}
3155
d808ad9a 3156/* Process an incoming ASCONF chunk with the next expected serial no. and
1da177e4
LT
3157 * return an ASCONF_ACK chunk to be sent in response.
3158 */
3159struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
3160 struct sctp_chunk *asconf)
3161{
3162 sctp_addiphdr_t *hdr;
3163 union sctp_addr_param *addr_param;
3164 sctp_addip_param_t *asconf_param;
3165 struct sctp_chunk *asconf_ack;
3166
dbc16db1 3167 __be16 err_code;
1da177e4 3168 int length = 0;
f3830ccc 3169 int chunk_len;
1da177e4
LT
3170 __u32 serial;
3171 int all_param_pass = 1;
3172
f3830ccc 3173 chunk_len = ntohs(asconf->chunk_hdr->length) - sizeof(sctp_chunkhdr_t);
1da177e4
LT
3174 hdr = (sctp_addiphdr_t *)asconf->skb->data;
3175 serial = ntohl(hdr->serial);
3176
d808ad9a 3177 /* Skip the addiphdr and store a pointer to address parameter. */
1da177e4
LT
3178 length = sizeof(sctp_addiphdr_t);
3179 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3180 chunk_len -= length;
3181
3182 /* Skip the address parameter and store a pointer to the first
7aa1b54b 3183 * asconf parameter.
d808ad9a 3184 */
6a435732 3185 length = ntohs(addr_param->p.length);
ea110733 3186 asconf_param = (void *)addr_param + length;
1da177e4
LT
3187 chunk_len -= length;
3188
d808ad9a 3189 /* create an ASCONF_ACK chunk.
1da177e4 3190 * Based on the definitions of parameters, we know that the size of
2cab86be 3191 * ASCONF_ACK parameters are less than or equal to the fourfold of ASCONF
7aa1b54b 3192 * parameters.
1da177e4 3193 */
2cab86be 3194 asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 4);
1da177e4
LT
3195 if (!asconf_ack)
3196 goto done;
3197
3198 /* Process the TLVs contained within the ASCONF chunk. */
3199 while (chunk_len > 0) {
3200 err_code = sctp_process_asconf_param(asoc, asconf,
3201 asconf_param);
3202 /* ADDIP 4.1 A7)
3203 * If an error response is received for a TLV parameter,
3204 * all TLVs with no response before the failed TLV are
3205 * considered successful if not reported. All TLVs after
3206 * the failed response are considered unsuccessful unless
3207 * a specific success indication is present for the parameter.
3208 */
3209 if (SCTP_ERROR_NO_ERROR != err_code)
3210 all_param_pass = 0;
3211
3212 if (!all_param_pass)
3213 sctp_add_asconf_response(asconf_ack,
3214 asconf_param->crr_id, err_code,
3215 asconf_param);
3216
3217 /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
3218 * an IP address sends an 'Out of Resource' in its response, it
3219 * MUST also fail any subsequent add or delete requests bundled
d808ad9a 3220 * in the ASCONF.
1da177e4
LT
3221 */
3222 if (SCTP_ERROR_RSRC_LOW == err_code)
3223 goto done;
3224
3225 /* Move to the next ASCONF param. */
3226 length = ntohs(asconf_param->param_hdr.length);
ea110733 3227 asconf_param = (void *)asconf_param + length;
1da177e4
LT
3228 chunk_len -= length;
3229 }
d808ad9a 3230
1da177e4
LT
3231done:
3232 asoc->peer.addip_serial++;
3233
3234 /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
d808ad9a 3235 * after freeing the reference to old asconf ack if any.
1da177e4
LT
3236 */
3237 if (asconf_ack) {
1da177e4 3238 sctp_chunk_hold(asconf_ack);
a08de64d
VY
3239 list_add_tail(&asconf_ack->transmitted_list,
3240 &asoc->asconf_ack_list);
1da177e4
LT
3241 }
3242
3243 return asconf_ack;
3244}
3245
3246/* Process a asconf parameter that is successfully acked. */
425e0f68 3247static void sctp_asconf_param_success(struct sctp_association *asoc,
1da177e4
LT
3248 sctp_addip_param_t *asconf_param)
3249{
3250 struct sctp_af *af;
3251 union sctp_addr addr;
3252 struct sctp_bind_addr *bp = &asoc->base.bind_addr;
3253 union sctp_addr_param *addr_param;
1da177e4 3254 struct sctp_transport *transport;
dc022a98 3255 struct sctp_sockaddr_entry *saddr;
1da177e4 3256
ea110733 3257 addr_param = (void *)asconf_param + sizeof(sctp_addip_param_t);
1da177e4
LT
3258
3259 /* We have checked the packet before, so we do not check again. */
6a435732 3260 af = sctp_get_af_specific(param_type2af(addr_param->p.type));
dd86d136 3261 af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
1da177e4
LT
3262
3263 switch (asconf_param->param_hdr.type) {
3264 case SCTP_PARAM_ADD_IP:
559cf710
VY
3265 /* This is always done in BH context with a socket lock
3266 * held, so the list can not change.
3267 */
0ed90fb0 3268 local_bh_disable();
559cf710 3269 list_for_each_entry(saddr, &bp->address_list, list) {
dd86d136 3270 if (sctp_cmp_addr_exact(&saddr->a, &addr))
f57d96b2 3271 saddr->state = SCTP_ADDR_SRC;
dc022a98 3272 }
0ed90fb0 3273 local_bh_enable();
3cd9749c
WY
3274 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3275 transports) {
3cd9749c 3276 dst_release(transport->dst);
c6ef006b 3277 transport->dst = NULL;
3cd9749c 3278 }
1da177e4
LT
3279 break;
3280 case SCTP_PARAM_DEL_IP:
0ed90fb0 3281 local_bh_disable();
425e0f68 3282 sctp_del_bind_addr(bp, &addr);
8a07eb0a
MH
3283 if (asoc->asconf_addr_del_pending != NULL &&
3284 sctp_cmp_addr_exact(asoc->asconf_addr_del_pending, &addr)) {
3285 kfree(asoc->asconf_addr_del_pending);
3286 asoc->asconf_addr_del_pending = NULL;
3287 }
0ed90fb0 3288 local_bh_enable();
9dbc15f0
RD
3289 list_for_each_entry(transport, &asoc->peer.transport_addr_list,
3290 transports) {
dc022a98 3291 dst_release(transport->dst);
c6ef006b 3292 transport->dst = NULL;
1da177e4
LT
3293 }
3294 break;
3295 default:
3296 break;
3297 }
1da177e4
LT
3298}
3299
3300/* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
3301 * for the given asconf parameter. If there is no response for this parameter,
d808ad9a 3302 * return the error code based on the third argument 'no_err'.
1da177e4
LT
3303 * ADDIP 4.1
3304 * A7) If an error response is received for a TLV parameter, all TLVs with no
3305 * response before the failed TLV are considered successful if not reported.
3306 * All TLVs after the failed response are considered unsuccessful unless a
3307 * specific success indication is present for the parameter.
3308 */
dbc16db1 3309static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
1da177e4
LT
3310 sctp_addip_param_t *asconf_param,
3311 int no_err)
3312{
3313 sctp_addip_param_t *asconf_ack_param;
3314 sctp_errhdr_t *err_param;
3315 int length;
f3830ccc 3316 int asconf_ack_len;
dbc16db1 3317 __be16 err_code;
1da177e4
LT
3318
3319 if (no_err)
3320 err_code = SCTP_ERROR_NO_ERROR;
3321 else
3322 err_code = SCTP_ERROR_REQ_REFUSED;
3323
f3830ccc
WY
3324 asconf_ack_len = ntohs(asconf_ack->chunk_hdr->length) -
3325 sizeof(sctp_chunkhdr_t);
3326
1da177e4
LT
3327 /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
3328 * the first asconf_ack parameter.
d808ad9a 3329 */
1da177e4
LT
3330 length = sizeof(sctp_addiphdr_t);
3331 asconf_ack_param = (sctp_addip_param_t *)(asconf_ack->skb->data +
3332 length);
3333 asconf_ack_len -= length;
3334
3335 while (asconf_ack_len > 0) {
3336 if (asconf_ack_param->crr_id == asconf_param->crr_id) {
cb3f837b 3337 switch (asconf_ack_param->param_hdr.type) {
1da177e4
LT
3338 case SCTP_PARAM_SUCCESS_REPORT:
3339 return SCTP_ERROR_NO_ERROR;
3340 case SCTP_PARAM_ERR_CAUSE:
3341 length = sizeof(sctp_addip_param_t);
ea110733 3342 err_param = (void *)asconf_ack_param + length;
1da177e4
LT
3343 asconf_ack_len -= length;
3344 if (asconf_ack_len > 0)
3345 return err_param->cause;
3346 else
3347 return SCTP_ERROR_INV_PARAM;
3348 break;
3349 default:
3350 return SCTP_ERROR_INV_PARAM;
3351 }
3352 }
3353
3354 length = ntohs(asconf_ack_param->param_hdr.length);
ea110733 3355 asconf_ack_param = (void *)asconf_ack_param + length;
1da177e4
LT
3356 asconf_ack_len -= length;
3357 }
3358
3359 return err_code;
3360}
3361
3362/* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
3363int sctp_process_asconf_ack(struct sctp_association *asoc,
3364 struct sctp_chunk *asconf_ack)
3365{
3366 struct sctp_chunk *asconf = asoc->addip_last_asconf;
3367 union sctp_addr_param *addr_param;
3368 sctp_addip_param_t *asconf_param;
3369 int length = 0;
3370 int asconf_len = asconf->skb->len;
3371 int all_param_pass = 0;
3372 int no_err = 1;
3373 int retval = 0;
dbc16db1 3374 __be16 err_code = SCTP_ERROR_NO_ERROR;
1da177e4
LT
3375
3376 /* Skip the chunkhdr and addiphdr from the last asconf sent and store
3377 * a pointer to address parameter.
d808ad9a 3378 */
1da177e4
LT
3379 length = sizeof(sctp_addip_chunk_t);
3380 addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
3381 asconf_len -= length;
3382
3383 /* Skip the address parameter in the last asconf sent and store a
7aa1b54b 3384 * pointer to the first asconf parameter.
d808ad9a 3385 */
6a435732 3386 length = ntohs(addr_param->p.length);
ea110733 3387 asconf_param = (void *)addr_param + length;
1da177e4
LT
3388 asconf_len -= length;
3389
3390 /* ADDIP 4.1
3391 * A8) If there is no response(s) to specific TLV parameter(s), and no
3392 * failures are indicated, then all request(s) are considered
3393 * successful.
3394 */
3395 if (asconf_ack->skb->len == sizeof(sctp_addiphdr_t))
3396 all_param_pass = 1;
3397
3398 /* Process the TLVs contained in the last sent ASCONF chunk. */
3399 while (asconf_len > 0) {
3400 if (all_param_pass)
3401 err_code = SCTP_ERROR_NO_ERROR;
3402 else {
3403 err_code = sctp_get_asconf_response(asconf_ack,
3404 asconf_param,
3405 no_err);
3406 if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
3407 no_err = 0;
3408 }
3409
3410 switch (err_code) {
3411 case SCTP_ERROR_NO_ERROR:
425e0f68 3412 sctp_asconf_param_success(asoc, asconf_param);
1da177e4
LT
3413 break;
3414
3415 case SCTP_ERROR_RSRC_LOW:
3416 retval = 1;
3417 break;
3418
a987f762 3419 case SCTP_ERROR_UNKNOWN_PARAM:
1da177e4
LT
3420 /* Disable sending this type of asconf parameter in
3421 * future.
d808ad9a 3422 */
1da177e4
LT
3423 asoc->peer.addip_disabled_mask |=
3424 asconf_param->param_hdr.type;
3425 break;
3426
3427 case SCTP_ERROR_REQ_REFUSED:
3428 case SCTP_ERROR_DEL_LAST_IP:
3429 case SCTP_ERROR_DEL_SRC_IP:
3430 default:
3431 break;
3432 }
3433
3434 /* Skip the processed asconf parameter and move to the next
3435 * one.
d808ad9a 3436 */
1da177e4 3437 length = ntohs(asconf_param->param_hdr.length);
ea110733 3438 asconf_param = (void *)asconf_param + length;
1da177e4
LT
3439 asconf_len -= length;
3440 }
3441
ddc4bbee 3442 if (no_err && asoc->src_out_of_asoc_ok) {
8a07eb0a 3443 asoc->src_out_of_asoc_ok = 0;
ddc4bbee
MH
3444 sctp_transport_immediate_rtx(asoc->peer.primary_path);
3445 }
8a07eb0a 3446
1da177e4 3447 /* Free the cached last sent asconf chunk. */
5f9646c3 3448 list_del_init(&asconf->transmitted_list);
1da177e4
LT
3449 sctp_chunk_free(asconf);
3450 asoc->addip_last_asconf = NULL;
3451
1da177e4
LT
3452 return retval;
3453}
3454
d808ad9a 3455/* Make a FWD TSN chunk. */
1da177e4
LT
3456struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
3457 __u32 new_cum_tsn, size_t nstreams,
3458 struct sctp_fwdtsn_skip *skiplist)
3459{
3460 struct sctp_chunk *retval = NULL;
d808ad9a 3461 struct sctp_fwdtsn_hdr ftsn_hdr;
1da177e4
LT
3462 struct sctp_fwdtsn_skip skip;
3463 size_t hint;
3464 int i;
3465
3466 hint = (nstreams + 1) * sizeof(__u32);
3467
072017b4 3468 retval = sctp_make_control(asoc, SCTP_CID_FWD_TSN, 0, hint);
1da177e4
LT
3469
3470 if (!retval)
3471 return NULL;
3472
1da177e4
LT
3473 ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
3474 retval->subh.fwdtsn_hdr =
3475 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
3476
3477 for (i = 0; i < nstreams; i++) {
3478 skip.stream = skiplist[i].stream;
3479 skip.ssn = skiplist[i].ssn;
3480 sctp_addto_chunk(retval, sizeof(skip), &skip);
3481 }
3482
3483 return retval;
3484}