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