Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
[linux-drm-fsl-dcu.git] / net / sctp / sm_make_chunk.c
1 /* SCTP kernel reference 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 reference 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  * The SCTP reference 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  * The SCTP reference 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, write to
27  * the Free Software Foundation, 59 Temple Place - Suite 330,
28  * Boston, MA 02111-1307, USA.
29  *
30  * Please send any bug reports or fixes you make to the
31  * email address(es):
32  *    lksctp developers <lksctp-developers@lists.sourceforge.net>
33  *
34  * Or submit a bug report through the following website:
35  *    http://www.sf.net/projects/lksctp
36  *
37  * Written or modified by:
38  *    La Monte H.P. Yarroll <piggy@acm.org>
39  *    Karl Knutson          <karl@athena.chicago.il.us>
40  *    C. Robin              <chris@hundredacre.ac.uk>
41  *    Jon Grimm             <jgrimm@us.ibm.com>
42  *    Xingang Guo           <xingang.guo@intel.com>
43  *    Dajiang Zhang         <dajiang.zhang@nokia.com>
44  *    Sridhar Samudrala     <sri@us.ibm.com>
45  *    Daisy Chang           <daisyc@us.ibm.com>
46  *    Ardelle Fan           <ardelle.fan@intel.com>
47  *    Kevin Gao             <kevin.gao@intel.com>
48  *
49  * Any bugs reported given to us we will try to fix... any fixes shared will
50  * be incorporated into the next SCTP release.
51  */
52
53 #include <linux/types.h>
54 #include <linux/kernel.h>
55 #include <linux/ip.h>
56 #include <linux/ipv6.h>
57 #include <linux/net.h>
58 #include <linux/inet.h>
59 #include <asm/scatterlist.h>
60 #include <linux/crypto.h>
61 #include <net/sock.h>
62
63 #include <linux/skbuff.h>
64 #include <linux/random.h>       /* for get_random_bytes */
65 #include <net/sctp/sctp.h>
66 #include <net/sctp/sm.h>
67
68 extern struct kmem_cache *sctp_chunk_cachep;
69
70 SCTP_STATIC
71 struct sctp_chunk *sctp_make_chunk(const struct sctp_association *asoc,
72                                    __u8 type, __u8 flags, int paylen);
73 static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
74                                         const struct sctp_association *asoc,
75                                         const struct sctp_chunk *init_chunk,
76                                         int *cookie_len,
77                                         const __u8 *raw_addrs, int addrs_len);
78 static int sctp_process_param(struct sctp_association *asoc,
79                               union sctp_params param,
80                               const union sctp_addr *peer_addr,
81                               gfp_t gfp);
82
83 /* What was the inbound interface for this chunk? */
84 int sctp_chunk_iif(const struct sctp_chunk *chunk)
85 {
86         struct sctp_af *af;
87         int iif = 0;
88
89         af = sctp_get_af_specific(ipver2af(chunk->skb->nh.iph->version));
90         if (af)
91                 iif = af->skb_iif(chunk->skb);
92
93         return iif;
94 }
95
96 /* RFC 2960 3.3.2 Initiation (INIT) (1)
97  *
98  * Note 2: The ECN capable field is reserved for future use of
99  * Explicit Congestion Notification.
100  */
101 static const struct sctp_paramhdr ecap_param = {
102         SCTP_PARAM_ECN_CAPABLE,
103         __constant_htons(sizeof(struct sctp_paramhdr)),
104 };
105 static const struct sctp_paramhdr prsctp_param = {
106         SCTP_PARAM_FWD_TSN_SUPPORT,
107         __constant_htons(sizeof(struct sctp_paramhdr)),
108 };
109
110 /* A helper to initialize to initialize an op error inside a
111  * provided chunk, as most cause codes will be embedded inside an
112  * abort chunk.
113  */
114 void  sctp_init_cause(struct sctp_chunk *chunk, __be16 cause_code,
115                       const void *payload, size_t paylen)
116 {
117         sctp_errhdr_t err;
118         int padlen;
119         __u16 len;
120
121         /* Cause code constants are now defined in network order.  */
122         err.cause = cause_code;
123         len = sizeof(sctp_errhdr_t) + paylen;
124         padlen = len % 4;
125         err.length  = htons(len);
126         len += padlen;
127         chunk->subh.err_hdr = sctp_addto_chunk(chunk, sizeof(sctp_errhdr_t), &err);
128         sctp_addto_chunk(chunk, paylen, payload);
129 }
130
131 /* 3.3.2 Initiation (INIT) (1)
132  *
133  * This chunk is used to initiate a SCTP association between two
134  * endpoints. The format of the INIT chunk is shown below:
135  *
136  *     0                   1                   2                   3
137  *     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
138  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
139  *    |   Type = 1    |  Chunk Flags  |      Chunk Length             |
140  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
141  *    |                         Initiate Tag                          |
142  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
143  *    |           Advertised Receiver Window Credit (a_rwnd)          |
144  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
145  *    |  Number of Outbound Streams   |  Number of Inbound Streams    |
146  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
147  *    |                          Initial TSN                          |
148  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
149  *    \                                                               \
150  *    /              Optional/Variable-Length Parameters              /
151  *    \                                                               \
152  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
153  *
154  *
155  * The INIT chunk contains the following parameters. Unless otherwise
156  * noted, each parameter MUST only be included once in the INIT chunk.
157  *
158  * Fixed Parameters                     Status
159  * ----------------------------------------------
160  * Initiate Tag                        Mandatory
161  * Advertised Receiver Window Credit   Mandatory
162  * Number of Outbound Streams          Mandatory
163  * Number of Inbound Streams           Mandatory
164  * Initial TSN                         Mandatory
165  *
166  * Variable Parameters                  Status     Type Value
167  * -------------------------------------------------------------
168  * IPv4 Address (Note 1)               Optional    5
169  * IPv6 Address (Note 1)               Optional    6
170  * Cookie Preservative                 Optional    9
171  * Reserved for ECN Capable (Note 2)   Optional    32768 (0x8000)
172  * Host Name Address (Note 3)          Optional    11
173  * Supported Address Types (Note 4)    Optional    12
174  */
175 struct sctp_chunk *sctp_make_init(const struct sctp_association *asoc,
176                              const struct sctp_bind_addr *bp,
177                              gfp_t gfp, int vparam_len)
178 {
179         sctp_inithdr_t init;
180         union sctp_params addrs;
181         size_t chunksize;
182         struct sctp_chunk *retval = NULL;
183         int num_types, addrs_len = 0;
184         struct sctp_sock *sp;
185         sctp_supported_addrs_param_t sat;
186         __be16 types[2];
187         sctp_adaptation_ind_param_t aiparam;
188
189         /* RFC 2960 3.3.2 Initiation (INIT) (1)
190          *
191          * Note 1: The INIT chunks can contain multiple addresses that
192          * can be IPv4 and/or IPv6 in any combination.
193          */
194         retval = NULL;
195
196         /* Convert the provided bind address list to raw format. */
197         addrs = sctp_bind_addrs_to_raw(bp, &addrs_len, gfp);
198
199         init.init_tag              = htonl(asoc->c.my_vtag);
200         init.a_rwnd                = htonl(asoc->rwnd);
201         init.num_outbound_streams  = htons(asoc->c.sinit_num_ostreams);
202         init.num_inbound_streams   = htons(asoc->c.sinit_max_instreams);
203         init.initial_tsn           = htonl(asoc->c.initial_tsn);
204
205         /* How many address types are needed? */
206         sp = sctp_sk(asoc->base.sk);
207         num_types = sp->pf->supported_addrs(sp, types);
208
209         chunksize = sizeof(init) + addrs_len + SCTP_SAT_LEN(num_types);
210         chunksize += sizeof(ecap_param);
211         if (sctp_prsctp_enable)
212                 chunksize += sizeof(prsctp_param);
213         chunksize += sizeof(aiparam);
214         chunksize += vparam_len;
215
216         /* RFC 2960 3.3.2 Initiation (INIT) (1)
217          *
218          * Note 3: An INIT chunk MUST NOT contain more than one Host
219          * Name address parameter. Moreover, the sender of the INIT
220          * MUST NOT combine any other address types with the Host Name
221          * address in the INIT. The receiver of INIT MUST ignore any
222          * other address types if the Host Name address parameter is
223          * present in the received INIT chunk.
224          *
225          * PLEASE DO NOT FIXME [This version does not support Host Name.]
226          */
227
228         retval = sctp_make_chunk(asoc, SCTP_CID_INIT, 0, chunksize);
229         if (!retval)
230                 goto nodata;
231
232         retval->subh.init_hdr =
233                 sctp_addto_chunk(retval, sizeof(init), &init);
234         retval->param_hdr.v =
235                 sctp_addto_chunk(retval, addrs_len, addrs.v);
236
237         /* RFC 2960 3.3.2 Initiation (INIT) (1)
238          *
239          * Note 4: This parameter, when present, specifies all the
240          * address types the sending endpoint can support. The absence
241          * of this parameter indicates that the sending endpoint can
242          * support any address type.
243          */
244         sat.param_hdr.type = SCTP_PARAM_SUPPORTED_ADDRESS_TYPES;
245         sat.param_hdr.length = htons(SCTP_SAT_LEN(num_types));
246         sctp_addto_chunk(retval, sizeof(sat), &sat);
247         sctp_addto_chunk(retval, num_types * sizeof(__u16), &types);
248
249         sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
250         if (sctp_prsctp_enable)
251                 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
252         aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
253         aiparam.param_hdr.length = htons(sizeof(aiparam));
254         aiparam.adaptation_ind = htonl(sp->adaptation_ind);
255         sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
256 nodata:
257         kfree(addrs.v);
258         return retval;
259 }
260
261 struct sctp_chunk *sctp_make_init_ack(const struct sctp_association *asoc,
262                                  const struct sctp_chunk *chunk,
263                                  gfp_t gfp, int unkparam_len)
264 {
265         sctp_inithdr_t initack;
266         struct sctp_chunk *retval;
267         union sctp_params addrs;
268         int addrs_len;
269         sctp_cookie_param_t *cookie;
270         int cookie_len;
271         size_t chunksize;
272         sctp_adaptation_ind_param_t aiparam;
273
274         retval = NULL;
275
276         /* Note: there may be no addresses to embed. */
277         addrs = sctp_bind_addrs_to_raw(&asoc->base.bind_addr, &addrs_len, gfp);
278
279         initack.init_tag                = htonl(asoc->c.my_vtag);
280         initack.a_rwnd                  = htonl(asoc->rwnd);
281         initack.num_outbound_streams    = htons(asoc->c.sinit_num_ostreams);
282         initack.num_inbound_streams     = htons(asoc->c.sinit_max_instreams);
283         initack.initial_tsn             = htonl(asoc->c.initial_tsn);
284
285         /* FIXME:  We really ought to build the cookie right
286          * into the packet instead of allocating more fresh memory.
287          */
288         cookie = sctp_pack_cookie(asoc->ep, asoc, chunk, &cookie_len,
289                                   addrs.v, addrs_len);
290         if (!cookie)
291                 goto nomem_cookie;
292
293         /* Calculate the total size of allocation, include the reserved
294          * space for reporting unknown parameters if it is specified.
295          */
296         chunksize = sizeof(initack) + addrs_len + cookie_len + unkparam_len;
297
298         /* Tell peer that we'll do ECN only if peer advertised such cap.  */
299         if (asoc->peer.ecn_capable)
300                 chunksize += sizeof(ecap_param);
301
302         /* Tell peer that we'll do PR-SCTP only if peer advertised.  */
303         if (asoc->peer.prsctp_capable)
304                 chunksize += sizeof(prsctp_param);
305
306         chunksize += sizeof(aiparam);
307
308         /* Now allocate and fill out the chunk.  */
309         retval = sctp_make_chunk(asoc, SCTP_CID_INIT_ACK, 0, chunksize);
310         if (!retval)
311                 goto nomem_chunk;
312
313         /* Per the advice in RFC 2960 6.4, send this reply to
314          * the source of the INIT packet.
315          */
316         retval->transport = chunk->transport;
317         retval->subh.init_hdr =
318                 sctp_addto_chunk(retval, sizeof(initack), &initack);
319         retval->param_hdr.v = sctp_addto_chunk(retval, addrs_len, addrs.v);
320         sctp_addto_chunk(retval, cookie_len, cookie);
321         if (asoc->peer.ecn_capable)
322                 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param);
323         if (asoc->peer.prsctp_capable)
324                 sctp_addto_chunk(retval, sizeof(prsctp_param), &prsctp_param);
325
326         aiparam.param_hdr.type = SCTP_PARAM_ADAPTATION_LAYER_IND;
327         aiparam.param_hdr.length = htons(sizeof(aiparam));
328         aiparam.adaptation_ind = htonl(sctp_sk(asoc->base.sk)->adaptation_ind);
329         sctp_addto_chunk(retval, sizeof(aiparam), &aiparam);
330
331         /* We need to remove the const qualifier at this point.  */
332         retval->asoc = (struct sctp_association *) asoc;
333
334         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
335          *
336          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
337          * HEARTBEAT ACK, * etc.) to the same destination transport
338          * address from which it received the DATA or control chunk
339          * to which it is replying.
340          *
341          * [INIT ACK back to where the INIT came from.]
342          */
343         if (chunk)
344                 retval->transport = chunk->transport;
345
346 nomem_chunk:
347         kfree(cookie);
348 nomem_cookie:
349         kfree(addrs.v);
350         return retval;
351 }
352
353 /* 3.3.11 Cookie Echo (COOKIE ECHO) (10):
354  *
355  * This chunk is used only during the initialization of an association.
356  * It is sent by the initiator of an association to its peer to complete
357  * the initialization process. This chunk MUST precede any DATA chunk
358  * sent within the association, but MAY be bundled with one or more DATA
359  * chunks in the same packet.
360  *
361  *      0                   1                   2                   3
362  *      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
363  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
364  *     |   Type = 10   |Chunk  Flags   |         Length                |
365  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
366  *     /                     Cookie                                    /
367  *     \                                                               \
368  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
369  *
370  * Chunk Flags: 8 bit
371  *
372  *   Set to zero on transmit and ignored on receipt.
373  *
374  * Length: 16 bits (unsigned integer)
375  *
376  *   Set to the size of the chunk in bytes, including the 4 bytes of
377  *   the chunk header and the size of the Cookie.
378  *
379  * Cookie: variable size
380  *
381  *   This field must contain the exact cookie received in the
382  *   State Cookie parameter from the previous INIT ACK.
383  *
384  *   An implementation SHOULD make the cookie as small as possible
385  *   to insure interoperability.
386  */
387 struct sctp_chunk *sctp_make_cookie_echo(const struct sctp_association *asoc,
388                                     const struct sctp_chunk *chunk)
389 {
390         struct sctp_chunk *retval;
391         void *cookie;
392         int cookie_len;
393
394         cookie = asoc->peer.cookie;
395         cookie_len = asoc->peer.cookie_len;
396
397         /* Build a cookie echo chunk.  */
398         retval = sctp_make_chunk(asoc, SCTP_CID_COOKIE_ECHO, 0, cookie_len);
399         if (!retval)
400                 goto nodata;
401         retval->subh.cookie_hdr =
402                 sctp_addto_chunk(retval, cookie_len, cookie);
403
404         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
405          *
406          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
407          * HEARTBEAT ACK, * etc.) to the same destination transport
408          * address from which it * received the DATA or control chunk
409          * to which it is replying.
410          *
411          * [COOKIE ECHO back to where the INIT ACK came from.]
412          */
413         if (chunk)
414                 retval->transport = chunk->transport;
415
416 nodata:
417         return retval;
418 }
419
420 /* 3.3.12 Cookie Acknowledgement (COOKIE ACK) (11):
421  *
422  * This chunk is used only during the initialization of an
423  * association.  It is used to acknowledge the receipt of a COOKIE
424  * ECHO chunk.  This chunk MUST precede any DATA or SACK chunk sent
425  * within the association, but MAY be bundled with one or more DATA
426  * chunks or SACK chunk in the same SCTP packet.
427  *
428  *      0                   1                   2                   3
429  *      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
430  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
431  *     |   Type = 11   |Chunk  Flags   |     Length = 4                |
432  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
433  *
434  * Chunk Flags: 8 bits
435  *
436  *   Set to zero on transmit and ignored on receipt.
437  */
438 struct sctp_chunk *sctp_make_cookie_ack(const struct sctp_association *asoc,
439                                    const struct sctp_chunk *chunk)
440 {
441         struct sctp_chunk *retval;
442
443         retval = sctp_make_chunk(asoc, SCTP_CID_COOKIE_ACK, 0, 0);
444
445         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
446          *
447          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
448          * HEARTBEAT ACK, * etc.) to the same destination transport
449          * address from which it * received the DATA or control chunk
450          * to which it is replying.
451          *
452          * [COOKIE ACK back to where the COOKIE ECHO came from.]
453          */
454         if (retval && chunk)
455                 retval->transport = chunk->transport;
456
457         return retval;
458 }
459
460 /*
461  *  Appendix A: Explicit Congestion Notification:
462  *  CWR:
463  *
464  *  RFC 2481 details a specific bit for a sender to send in the header of
465  *  its next outbound TCP segment to indicate to its peer that it has
466  *  reduced its congestion window.  This is termed the CWR bit.  For
467  *  SCTP the same indication is made by including the CWR chunk.
468  *  This chunk contains one data element, i.e. the TSN number that
469  *  was sent in the ECNE chunk.  This element represents the lowest
470  *  TSN number in the datagram that was originally marked with the
471  *  CE bit.
472  *
473  *     0                   1                   2                   3
474  *     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
475  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
476  *    | Chunk Type=13 | Flags=00000000|    Chunk Length = 8           |
477  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
478  *    |                      Lowest TSN Number                        |
479  *    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
480  *
481  *     Note: The CWR is considered a Control chunk.
482  */
483 struct sctp_chunk *sctp_make_cwr(const struct sctp_association *asoc,
484                             const __u32 lowest_tsn,
485                             const struct sctp_chunk *chunk)
486 {
487         struct sctp_chunk *retval;
488         sctp_cwrhdr_t cwr;
489
490         cwr.lowest_tsn = htonl(lowest_tsn);
491         retval = sctp_make_chunk(asoc, SCTP_CID_ECN_CWR, 0,
492                                  sizeof(sctp_cwrhdr_t));
493
494         if (!retval)
495                 goto nodata;
496
497         retval->subh.ecn_cwr_hdr =
498                 sctp_addto_chunk(retval, sizeof(cwr), &cwr);
499
500         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
501          *
502          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
503          * HEARTBEAT ACK, * etc.) to the same destination transport
504          * address from which it * received the DATA or control chunk
505          * to which it is replying.
506          *
507          * [Report a reduced congestion window back to where the ECNE
508          * came from.]
509          */
510         if (chunk)
511                 retval->transport = chunk->transport;
512
513 nodata:
514         return retval;
515 }
516
517 /* Make an ECNE chunk.  This is a congestion experienced report.  */
518 struct sctp_chunk *sctp_make_ecne(const struct sctp_association *asoc,
519                              const __u32 lowest_tsn)
520 {
521         struct sctp_chunk *retval;
522         sctp_ecnehdr_t ecne;
523
524         ecne.lowest_tsn = htonl(lowest_tsn);
525         retval = sctp_make_chunk(asoc, SCTP_CID_ECN_ECNE, 0,
526                                  sizeof(sctp_ecnehdr_t));
527         if (!retval)
528                 goto nodata;
529         retval->subh.ecne_hdr =
530                 sctp_addto_chunk(retval, sizeof(ecne), &ecne);
531
532 nodata:
533         return retval;
534 }
535
536 /* Make a DATA chunk for the given association from the provided
537  * parameters.  However, do not populate the data payload.
538  */
539 struct sctp_chunk *sctp_make_datafrag_empty(struct sctp_association *asoc,
540                                        const struct sctp_sndrcvinfo *sinfo,
541                                        int data_len, __u8 flags, __u16 ssn)
542 {
543         struct sctp_chunk *retval;
544         struct sctp_datahdr dp;
545         int chunk_len;
546
547         /* We assign the TSN as LATE as possible, not here when
548          * creating the chunk.
549          */
550         dp.tsn = 0;
551         dp.stream = htons(sinfo->sinfo_stream);
552         dp.ppid   = sinfo->sinfo_ppid;
553
554         /* Set the flags for an unordered send.  */
555         if (sinfo->sinfo_flags & SCTP_UNORDERED) {
556                 flags |= SCTP_DATA_UNORDERED;
557                 dp.ssn = 0;
558         } else
559                 dp.ssn = htons(ssn);
560
561         chunk_len = sizeof(dp) + data_len;
562         retval = sctp_make_chunk(asoc, SCTP_CID_DATA, flags, chunk_len);
563         if (!retval)
564                 goto nodata;
565
566         retval->subh.data_hdr = sctp_addto_chunk(retval, sizeof(dp), &dp);
567         memcpy(&retval->sinfo, sinfo, sizeof(struct sctp_sndrcvinfo));
568
569 nodata:
570         return retval;
571 }
572
573 /* Create a selective ackowledgement (SACK) for the given
574  * association.  This reports on which TSN's we've seen to date,
575  * including duplicates and gaps.
576  */
577 struct sctp_chunk *sctp_make_sack(const struct sctp_association *asoc)
578 {
579         struct sctp_chunk *retval;
580         struct sctp_sackhdr sack;
581         int len;
582         __u32 ctsn;
583         __u16 num_gabs, num_dup_tsns;
584         struct sctp_tsnmap *map = (struct sctp_tsnmap *)&asoc->peer.tsn_map;
585
586         ctsn = sctp_tsnmap_get_ctsn(map);
587         SCTP_DEBUG_PRINTK("sackCTSNAck sent:  0x%x.\n", ctsn);
588
589         /* How much room is needed in the chunk? */
590         num_gabs = sctp_tsnmap_num_gabs(map);
591         num_dup_tsns = sctp_tsnmap_num_dups(map);
592
593         /* Initialize the SACK header.  */
594         sack.cum_tsn_ack            = htonl(ctsn);
595         sack.a_rwnd                 = htonl(asoc->a_rwnd);
596         sack.num_gap_ack_blocks     = htons(num_gabs);
597         sack.num_dup_tsns           = htons(num_dup_tsns);
598
599         len = sizeof(sack)
600                 + sizeof(struct sctp_gap_ack_block) * num_gabs
601                 + sizeof(__u32) * num_dup_tsns;
602
603         /* Create the chunk.  */
604         retval = sctp_make_chunk(asoc, SCTP_CID_SACK, 0, len);
605         if (!retval)
606                 goto nodata;
607
608         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
609          *
610          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
611          * HEARTBEAT ACK, etc.) to the same destination transport
612          * address from which it received the DATA or control chunk to
613          * which it is replying.  This rule should also be followed if
614          * the endpoint is bundling DATA chunks together with the
615          * reply chunk.
616          *
617          * However, when acknowledging multiple DATA chunks received
618          * in packets from different source addresses in a single
619          * SACK, the SACK chunk may be transmitted to one of the
620          * destination transport addresses from which the DATA or
621          * control chunks being acknowledged were received.
622          *
623          * [BUG:  We do not implement the following paragraph.
624          * Perhaps we should remember the last transport we used for a
625          * SACK and avoid that (if possible) if we have seen any
626          * duplicates. --piggy]
627          *
628          * When a receiver of a duplicate DATA chunk sends a SACK to a
629          * multi- homed endpoint it MAY be beneficial to vary the
630          * destination address and not use the source address of the
631          * DATA chunk.  The reason being that receiving a duplicate
632          * from a multi-homed endpoint might indicate that the return
633          * path (as specified in the source address of the DATA chunk)
634          * for the SACK is broken.
635          *
636          * [Send to the address from which we last received a DATA chunk.]
637          */
638         retval->transport = asoc->peer.last_data_from;
639
640         retval->subh.sack_hdr =
641                 sctp_addto_chunk(retval, sizeof(sack), &sack);
642
643         /* Add the gap ack block information.   */
644         if (num_gabs)
645                 sctp_addto_chunk(retval, sizeof(__u32) * num_gabs,
646                                  sctp_tsnmap_get_gabs(map));
647
648         /* Add the duplicate TSN information.  */
649         if (num_dup_tsns)
650                 sctp_addto_chunk(retval, sizeof(__u32) * num_dup_tsns,
651                                  sctp_tsnmap_get_dups(map));
652
653 nodata:
654         return retval;
655 }
656
657 /* Make a SHUTDOWN chunk. */
658 struct sctp_chunk *sctp_make_shutdown(const struct sctp_association *asoc,
659                                       const struct sctp_chunk *chunk)
660 {
661         struct sctp_chunk *retval;
662         sctp_shutdownhdr_t shut;
663         __u32 ctsn;
664
665         ctsn = sctp_tsnmap_get_ctsn(&asoc->peer.tsn_map);
666         shut.cum_tsn_ack = htonl(ctsn);
667
668         retval = sctp_make_chunk(asoc, SCTP_CID_SHUTDOWN, 0,
669                                  sizeof(sctp_shutdownhdr_t));
670         if (!retval)
671                 goto nodata;
672
673         retval->subh.shutdown_hdr =
674                 sctp_addto_chunk(retval, sizeof(shut), &shut);
675
676         if (chunk)
677                 retval->transport = chunk->transport;
678 nodata:
679         return retval;
680 }
681
682 struct sctp_chunk *sctp_make_shutdown_ack(const struct sctp_association *asoc,
683                                      const struct sctp_chunk *chunk)
684 {
685         struct sctp_chunk *retval;
686
687         retval = sctp_make_chunk(asoc, SCTP_CID_SHUTDOWN_ACK, 0, 0);
688
689         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
690          *
691          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
692          * HEARTBEAT ACK, * etc.) to the same destination transport
693          * address from which it * received the DATA or control chunk
694          * to which it is replying.
695          *
696          * [ACK back to where the SHUTDOWN came from.]
697          */
698         if (retval && chunk)
699                 retval->transport = chunk->transport;
700
701         return retval;
702 }
703
704 struct sctp_chunk *sctp_make_shutdown_complete(
705         const struct sctp_association *asoc,
706         const struct sctp_chunk *chunk)
707 {
708         struct sctp_chunk *retval;
709         __u8 flags = 0;
710
711         /* Set the T-bit if we have no association (vtag will be
712          * reflected)
713          */
714         flags |= asoc ? 0 : SCTP_CHUNK_FLAG_T;
715
716         retval = sctp_make_chunk(asoc, SCTP_CID_SHUTDOWN_COMPLETE, flags, 0);
717
718         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
719          *
720          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
721          * HEARTBEAT ACK, * etc.) to the same destination transport
722          * address from which it * received the DATA or control chunk
723          * to which it is replying.
724          *
725          * [Report SHUTDOWN COMPLETE back to where the SHUTDOWN ACK
726          * came from.]
727          */
728         if (retval && chunk)
729                 retval->transport = chunk->transport;
730
731         return retval;
732 }
733
734 /* Create an ABORT.  Note that we set the T bit if we have no
735  * association, except when responding to an INIT (sctpimpguide 2.41).
736  */
737 struct sctp_chunk *sctp_make_abort(const struct sctp_association *asoc,
738                               const struct sctp_chunk *chunk,
739                               const size_t hint)
740 {
741         struct sctp_chunk *retval;
742         __u8 flags = 0;
743
744         /* Set the T-bit if we have no association and 'chunk' is not
745          * an INIT (vtag will be reflected).
746          */
747         if (!asoc) {
748                 if (chunk && chunk->chunk_hdr &&
749                     chunk->chunk_hdr->type == SCTP_CID_INIT)
750                         flags = 0;
751                 else
752                         flags = SCTP_CHUNK_FLAG_T;
753         }
754
755         retval = sctp_make_chunk(asoc, SCTP_CID_ABORT, flags, hint);
756
757         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
758          *
759          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
760          * HEARTBEAT ACK, * etc.) to the same destination transport
761          * address from which it * received the DATA or control chunk
762          * to which it is replying.
763          *
764          * [ABORT back to where the offender came from.]
765          */
766         if (retval && chunk)
767                 retval->transport = chunk->transport;
768
769         return retval;
770 }
771
772 /* Helper to create ABORT with a NO_USER_DATA error.  */
773 struct sctp_chunk *sctp_make_abort_no_data(
774         const struct sctp_association *asoc,
775         const struct sctp_chunk *chunk, __u32 tsn)
776 {
777         struct sctp_chunk *retval;
778         __be32 payload;
779
780         retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t)
781                                  + sizeof(tsn));
782
783         if (!retval)
784                 goto no_mem;
785
786         /* Put the tsn back into network byte order.  */
787         payload = htonl(tsn);
788         sctp_init_cause(retval, SCTP_ERROR_NO_DATA, (const void *)&payload,
789                         sizeof(payload));
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
796          * to which it is replying.
797          *
798          * [ABORT back to where the offender came from.]
799          */
800         if (chunk)
801                 retval->transport = chunk->transport;
802
803 no_mem:
804         return retval;
805 }
806
807 /* Helper to create ABORT with a SCTP_ERROR_USER_ABORT error.  */
808 struct sctp_chunk *sctp_make_abort_user(const struct sctp_association *asoc,
809                                         const struct msghdr *msg,
810                                         size_t paylen)
811 {
812         struct sctp_chunk *retval;
813         void *payload = NULL;
814         int err;
815
816         retval = sctp_make_abort(asoc, NULL, sizeof(sctp_errhdr_t) + paylen);
817         if (!retval)
818                 goto err_chunk;
819
820         if (paylen) {
821                 /* Put the msg_iov together into payload.  */
822                 payload = kmalloc(paylen, GFP_KERNEL);
823                 if (!payload)
824                         goto err_payload;
825
826                 err = memcpy_fromiovec(payload, msg->msg_iov, paylen);
827                 if (err < 0)
828                         goto err_copy;
829         }
830
831         sctp_init_cause(retval, SCTP_ERROR_USER_ABORT, payload, paylen);
832
833         if (paylen)
834                 kfree(payload);
835
836         return retval;
837
838 err_copy:
839         kfree(payload);
840 err_payload:
841         sctp_chunk_free(retval);
842         retval = NULL;
843 err_chunk:
844         return retval;
845 }
846
847 /* Make an ABORT chunk with a PROTOCOL VIOLATION cause code. */
848 struct sctp_chunk *sctp_make_abort_violation(
849         const struct sctp_association *asoc,
850         const struct sctp_chunk *chunk,
851         const __u8   *payload,
852         const size_t paylen)
853 {
854         struct sctp_chunk  *retval;
855         struct sctp_paramhdr phdr;
856
857         retval = sctp_make_abort(asoc, chunk, sizeof(sctp_errhdr_t) + paylen
858                                         + sizeof(sctp_chunkhdr_t));
859         if (!retval)
860                 goto end;
861
862         sctp_init_cause(retval, SCTP_ERROR_PROTO_VIOLATION, payload, paylen);
863
864         phdr.type = htons(chunk->chunk_hdr->type);
865         phdr.length = chunk->chunk_hdr->length;
866         sctp_addto_chunk(retval, sizeof(sctp_paramhdr_t), &phdr);
867
868 end:
869         return retval;
870 }
871
872 /* Make a HEARTBEAT chunk.  */
873 struct sctp_chunk *sctp_make_heartbeat(const struct sctp_association *asoc,
874                                   const struct sctp_transport *transport,
875                                   const void *payload, const size_t paylen)
876 {
877         struct sctp_chunk *retval = sctp_make_chunk(asoc, SCTP_CID_HEARTBEAT,
878                                                     0, paylen);
879
880         if (!retval)
881                 goto nodata;
882
883         /* Cast away the 'const', as this is just telling the chunk
884          * what transport it belongs to.
885          */
886         retval->transport = (struct sctp_transport *) transport;
887         retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
888
889 nodata:
890         return retval;
891 }
892
893 struct sctp_chunk *sctp_make_heartbeat_ack(const struct sctp_association *asoc,
894                                       const struct sctp_chunk *chunk,
895                                       const void *payload, const size_t paylen)
896 {
897         struct sctp_chunk *retval;
898
899         retval  = sctp_make_chunk(asoc, SCTP_CID_HEARTBEAT_ACK, 0, paylen);
900         if (!retval)
901                 goto nodata;
902
903         retval->subh.hbs_hdr = sctp_addto_chunk(retval, paylen, payload);
904
905         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
906          *
907          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
908          * HEARTBEAT ACK, * etc.) to the same destination transport
909          * address from which it * received the DATA or control chunk
910          * to which it is replying.
911          *
912          * [HBACK back to where the HEARTBEAT came from.]
913          */
914         if (chunk)
915                 retval->transport = chunk->transport;
916
917 nodata:
918         return retval;
919 }
920
921 /* Create an Operation Error chunk with the specified space reserved.
922  * This routine can be used for containing multiple causes in the chunk.
923  */
924 static struct sctp_chunk *sctp_make_op_error_space(
925         const struct sctp_association *asoc,
926         const struct sctp_chunk *chunk,
927         size_t size)
928 {
929         struct sctp_chunk *retval;
930
931         retval = sctp_make_chunk(asoc, SCTP_CID_ERROR, 0,
932                                  sizeof(sctp_errhdr_t) + size);
933         if (!retval)
934                 goto nodata;
935
936         /* RFC 2960 6.4 Multi-homed SCTP Endpoints
937          *
938          * An endpoint SHOULD transmit reply chunks (e.g., SACK,
939          * HEARTBEAT ACK, etc.) to the same destination transport
940          * address from which it received the DATA or control chunk
941          * to which it is replying.
942          *
943          */
944         if (chunk)
945                 retval->transport = chunk->transport;
946
947 nodata:
948         return retval;
949 }
950
951 /* Create an Operation Error chunk.  */
952 struct sctp_chunk *sctp_make_op_error(const struct sctp_association *asoc,
953                                  const struct sctp_chunk *chunk,
954                                  __be16 cause_code, const void *payload,
955                                  size_t paylen)
956 {
957         struct sctp_chunk *retval;
958
959         retval = sctp_make_op_error_space(asoc, chunk, paylen);
960         if (!retval)
961                 goto nodata;
962
963         sctp_init_cause(retval, cause_code, payload, paylen);
964
965 nodata:
966         return retval;
967 }
968
969 /********************************************************************
970  * 2nd Level Abstractions
971  ********************************************************************/
972
973 /* Turn an skb into a chunk.
974  * FIXME: Eventually move the structure directly inside the skb->cb[].
975  */
976 struct sctp_chunk *sctp_chunkify(struct sk_buff *skb,
977                             const struct sctp_association *asoc,
978                             struct sock *sk)
979 {
980         struct sctp_chunk *retval;
981
982         retval = kmem_cache_zalloc(sctp_chunk_cachep, GFP_ATOMIC);
983
984         if (!retval)
985                 goto nodata;
986
987         if (!sk) {
988                 SCTP_DEBUG_PRINTK("chunkifying skb %p w/o an sk\n", skb);
989         }
990
991         INIT_LIST_HEAD(&retval->list);
992         retval->skb             = skb;
993         retval->asoc            = (struct sctp_association *)asoc;
994         retval->resent          = 0;
995         retval->has_tsn         = 0;
996         retval->has_ssn         = 0;
997         retval->rtt_in_progress = 0;
998         retval->sent_at         = 0;
999         retval->singleton       = 1;
1000         retval->end_of_packet   = 0;
1001         retval->ecn_ce_done     = 0;
1002         retval->pdiscard        = 0;
1003
1004         /* sctpimpguide-05.txt Section 2.8.2
1005          * M1) Each time a new DATA chunk is transmitted
1006          * set the 'TSN.Missing.Report' count for that TSN to 0. The
1007          * 'TSN.Missing.Report' count will be used to determine missing chunks
1008          * and when to fast retransmit.
1009          */
1010         retval->tsn_missing_report = 0;
1011         retval->tsn_gap_acked = 0;
1012         retval->fast_retransmit = 0;
1013
1014         /* If this is a fragmented message, track all fragments
1015          * of the message (for SEND_FAILED).
1016          */
1017         retval->msg = NULL;
1018
1019         /* Polish the bead hole.  */
1020         INIT_LIST_HEAD(&retval->transmitted_list);
1021         INIT_LIST_HEAD(&retval->frag_list);
1022         SCTP_DBG_OBJCNT_INC(chunk);
1023         atomic_set(&retval->refcnt, 1);
1024
1025 nodata:
1026         return retval;
1027 }
1028
1029 /* Set chunk->source and dest based on the IP header in chunk->skb.  */
1030 void sctp_init_addrs(struct sctp_chunk *chunk, union sctp_addr *src,
1031                      union sctp_addr *dest)
1032 {
1033         memcpy(&chunk->source, src, sizeof(union sctp_addr));
1034         memcpy(&chunk->dest, dest, sizeof(union sctp_addr));
1035 }
1036
1037 /* Extract the source address from a chunk.  */
1038 const union sctp_addr *sctp_source(const struct sctp_chunk *chunk)
1039 {
1040         /* If we have a known transport, use that.  */
1041         if (chunk->transport) {
1042                 return &chunk->transport->ipaddr;
1043         } else {
1044                 /* Otherwise, extract it from the IP header.  */
1045                 return &chunk->source;
1046         }
1047 }
1048
1049 /* Create a new chunk, setting the type and flags headers from the
1050  * arguments, reserving enough space for a 'paylen' byte payload.
1051  */
1052 SCTP_STATIC
1053 struct sctp_chunk *sctp_make_chunk(const struct sctp_association *asoc,
1054                                    __u8 type, __u8 flags, int paylen)
1055 {
1056         struct sctp_chunk *retval;
1057         sctp_chunkhdr_t *chunk_hdr;
1058         struct sk_buff *skb;
1059         struct sock *sk;
1060
1061         /* No need to allocate LL here, as this is only a chunk. */
1062         skb = alloc_skb(WORD_ROUND(sizeof(sctp_chunkhdr_t) + paylen),
1063                         GFP_ATOMIC);
1064         if (!skb)
1065                 goto nodata;
1066
1067         /* Make room for the chunk header.  */
1068         chunk_hdr = (sctp_chunkhdr_t *)skb_put(skb, sizeof(sctp_chunkhdr_t));
1069         chunk_hdr->type   = type;
1070         chunk_hdr->flags  = flags;
1071         chunk_hdr->length = htons(sizeof(sctp_chunkhdr_t));
1072
1073         sk = asoc ? asoc->base.sk : NULL;
1074         retval = sctp_chunkify(skb, asoc, sk);
1075         if (!retval) {
1076                 kfree_skb(skb);
1077                 goto nodata;
1078         }
1079
1080         retval->chunk_hdr = chunk_hdr;
1081         retval->chunk_end = ((__u8 *)chunk_hdr) + sizeof(struct sctp_chunkhdr);
1082
1083         /* Set the skb to the belonging sock for accounting.  */
1084         skb->sk = sk;
1085
1086         return retval;
1087 nodata:
1088         return NULL;
1089 }
1090
1091
1092 /* Release the memory occupied by a chunk.  */
1093 static void sctp_chunk_destroy(struct sctp_chunk *chunk)
1094 {
1095         /* Free the chunk skb data and the SCTP_chunk stub itself. */
1096         dev_kfree_skb(chunk->skb);
1097
1098         SCTP_DBG_OBJCNT_DEC(chunk);
1099         kmem_cache_free(sctp_chunk_cachep, chunk);
1100 }
1101
1102 /* Possibly, free the chunk.  */
1103 void sctp_chunk_free(struct sctp_chunk *chunk)
1104 {
1105         BUG_ON(!list_empty(&chunk->list));
1106         list_del_init(&chunk->transmitted_list);
1107
1108         /* Release our reference on the message tracker. */
1109         if (chunk->msg)
1110                 sctp_datamsg_put(chunk->msg);
1111
1112         sctp_chunk_put(chunk);
1113 }
1114
1115 /* Grab a reference to the chunk. */
1116 void sctp_chunk_hold(struct sctp_chunk *ch)
1117 {
1118         atomic_inc(&ch->refcnt);
1119 }
1120
1121 /* Release a reference to the chunk. */
1122 void sctp_chunk_put(struct sctp_chunk *ch)
1123 {
1124         if (atomic_dec_and_test(&ch->refcnt))
1125                 sctp_chunk_destroy(ch);
1126 }
1127
1128 /* Append bytes to the end of a chunk.  Will panic if chunk is not big
1129  * enough.
1130  */
1131 void *sctp_addto_chunk(struct sctp_chunk *chunk, int len, const void *data)
1132 {
1133         void *target;
1134         void *padding;
1135         int chunklen = ntohs(chunk->chunk_hdr->length);
1136         int padlen = chunklen % 4;
1137
1138         padding = skb_put(chunk->skb, padlen);
1139         target = skb_put(chunk->skb, len);
1140
1141         memset(padding, 0, padlen);
1142         memcpy(target, data, len);
1143
1144         /* Adjust the chunk length field.  */
1145         chunk->chunk_hdr->length = htons(chunklen + padlen + len);
1146         chunk->chunk_end = chunk->skb->tail;
1147
1148         return target;
1149 }
1150
1151 /* Append bytes from user space to the end of a chunk.  Will panic if
1152  * chunk is not big enough.
1153  * Returns a kernel err value.
1154  */
1155 int sctp_user_addto_chunk(struct sctp_chunk *chunk, int off, int len,
1156                           struct iovec *data)
1157 {
1158         __u8 *target;
1159         int err = 0;
1160
1161         /* Make room in chunk for data.  */
1162         target = skb_put(chunk->skb, len);
1163
1164         /* Copy data (whole iovec) into chunk */
1165         if ((err = memcpy_fromiovecend(target, data, off, len)))
1166                 goto out;
1167
1168         /* Adjust the chunk length field.  */
1169         chunk->chunk_hdr->length =
1170                 htons(ntohs(chunk->chunk_hdr->length) + len);
1171         chunk->chunk_end = chunk->skb->tail;
1172
1173 out:
1174         return err;
1175 }
1176
1177 /* Helper function to assign a TSN if needed.  This assumes that both
1178  * the data_hdr and association have already been assigned.
1179  */
1180 void sctp_chunk_assign_ssn(struct sctp_chunk *chunk)
1181 {
1182         __u16 ssn;
1183         __u16 sid;
1184
1185         if (chunk->has_ssn)
1186                 return;
1187
1188         /* This is the last possible instant to assign a SSN. */
1189         if (chunk->chunk_hdr->flags & SCTP_DATA_UNORDERED) {
1190                 ssn = 0;
1191         } else {
1192                 sid = ntohs(chunk->subh.data_hdr->stream);
1193                 if (chunk->chunk_hdr->flags & SCTP_DATA_LAST_FRAG)
1194                         ssn = sctp_ssn_next(&chunk->asoc->ssnmap->out, sid);
1195                 else
1196                         ssn = sctp_ssn_peek(&chunk->asoc->ssnmap->out, sid);
1197         }
1198
1199         chunk->subh.data_hdr->ssn = htons(ssn);
1200         chunk->has_ssn = 1;
1201 }
1202
1203 /* Helper function to assign a TSN if needed.  This assumes that both
1204  * the data_hdr and association have already been assigned.
1205  */
1206 void sctp_chunk_assign_tsn(struct sctp_chunk *chunk)
1207 {
1208         if (!chunk->has_tsn) {
1209                 /* This is the last possible instant to
1210                  * assign a TSN.
1211                  */
1212                 chunk->subh.data_hdr->tsn =
1213                         htonl(sctp_association_get_next_tsn(chunk->asoc));
1214                 chunk->has_tsn = 1;
1215         }
1216 }
1217
1218 /* Create a CLOSED association to use with an incoming packet.  */
1219 struct sctp_association *sctp_make_temp_asoc(const struct sctp_endpoint *ep,
1220                                         struct sctp_chunk *chunk,
1221                                         gfp_t gfp)
1222 {
1223         struct sctp_association *asoc;
1224         struct sk_buff *skb;
1225         sctp_scope_t scope;
1226         struct sctp_af *af;
1227
1228         /* Create the bare association.  */
1229         scope = sctp_scope(sctp_source(chunk));
1230         asoc = sctp_association_new(ep, ep->base.sk, scope, gfp);
1231         if (!asoc)
1232                 goto nodata;
1233         asoc->temp = 1;
1234         skb = chunk->skb;
1235         /* Create an entry for the source address of the packet.  */
1236         af = sctp_get_af_specific(ipver2af(skb->nh.iph->version));
1237         if (unlikely(!af))
1238                 goto fail;
1239         af->from_skb(&asoc->c.peer_addr, skb, 1);
1240 nodata:
1241         return asoc;
1242
1243 fail:
1244         sctp_association_free(asoc);
1245         return NULL;
1246 }
1247
1248 /* Build a cookie representing asoc.
1249  * This INCLUDES the param header needed to put the cookie in the INIT ACK.
1250  */
1251 static sctp_cookie_param_t *sctp_pack_cookie(const struct sctp_endpoint *ep,
1252                                       const struct sctp_association *asoc,
1253                                       const struct sctp_chunk *init_chunk,
1254                                       int *cookie_len,
1255                                       const __u8 *raw_addrs, int addrs_len)
1256 {
1257         sctp_cookie_param_t *retval;
1258         struct sctp_signed_cookie *cookie;
1259         struct scatterlist sg;
1260         int headersize, bodysize;
1261         unsigned int keylen;
1262         char *key;
1263
1264         /* Header size is static data prior to the actual cookie, including
1265          * any padding.
1266          */
1267         headersize = sizeof(sctp_paramhdr_t) +
1268                      (sizeof(struct sctp_signed_cookie) -
1269                       sizeof(struct sctp_cookie));
1270         bodysize = sizeof(struct sctp_cookie)
1271                 + ntohs(init_chunk->chunk_hdr->length) + addrs_len;
1272
1273         /* Pad out the cookie to a multiple to make the signature
1274          * functions simpler to write.
1275          */
1276         if (bodysize % SCTP_COOKIE_MULTIPLE)
1277                 bodysize += SCTP_COOKIE_MULTIPLE
1278                         - (bodysize % SCTP_COOKIE_MULTIPLE);
1279         *cookie_len = headersize + bodysize;
1280
1281         /* Clear this memory since we are sending this data structure
1282          * out on the network.
1283          */
1284         retval = kzalloc(*cookie_len, GFP_ATOMIC);
1285         if (!retval)
1286                 goto nodata;
1287
1288         cookie = (struct sctp_signed_cookie *) retval->body;
1289
1290         /* Set up the parameter header.  */
1291         retval->p.type = SCTP_PARAM_STATE_COOKIE;
1292         retval->p.length = htons(*cookie_len);
1293
1294         /* Copy the cookie part of the association itself.  */
1295         cookie->c = asoc->c;
1296         /* Save the raw address list length in the cookie. */
1297         cookie->c.raw_addr_list_len = addrs_len;
1298
1299         /* Remember PR-SCTP capability. */
1300         cookie->c.prsctp_capable = asoc->peer.prsctp_capable;
1301
1302         /* Save adaptation indication in the cookie. */
1303         cookie->c.adaptation_ind = asoc->peer.adaptation_ind;
1304
1305         /* Set an expiration time for the cookie.  */
1306         do_gettimeofday(&cookie->c.expiration);
1307         TIMEVAL_ADD(asoc->cookie_life, cookie->c.expiration);
1308
1309         /* Copy the peer's init packet.  */
1310         memcpy(&cookie->c.peer_init[0], init_chunk->chunk_hdr,
1311                ntohs(init_chunk->chunk_hdr->length));
1312
1313         /* Copy the raw local address list of the association. */
1314         memcpy((__u8 *)&cookie->c.peer_init[0] +
1315                ntohs(init_chunk->chunk_hdr->length), raw_addrs, addrs_len);
1316
1317         if (sctp_sk(ep->base.sk)->hmac) {
1318                 struct hash_desc desc;
1319
1320                 /* Sign the message.  */
1321                 sg.page = virt_to_page(&cookie->c);
1322                 sg.offset = (unsigned long)(&cookie->c) % PAGE_SIZE;
1323                 sg.length = bodysize;
1324                 keylen = SCTP_SECRET_SIZE;
1325                 key = (char *)ep->secret_key[ep->current_key];
1326                 desc.tfm = sctp_sk(ep->base.sk)->hmac;
1327                 desc.flags = 0;
1328
1329                 if (crypto_hash_setkey(desc.tfm, key, keylen) ||
1330                     crypto_hash_digest(&desc, &sg, bodysize, cookie->signature))
1331                         goto free_cookie;
1332         }
1333
1334         return retval;
1335
1336 free_cookie:
1337         kfree(retval);
1338 nodata:
1339         *cookie_len = 0;
1340         return NULL;
1341 }
1342
1343 /* Unpack the cookie from COOKIE ECHO chunk, recreating the association.  */
1344 struct sctp_association *sctp_unpack_cookie(
1345         const struct sctp_endpoint *ep,
1346         const struct sctp_association *asoc,
1347         struct sctp_chunk *chunk, gfp_t gfp,
1348         int *error, struct sctp_chunk **errp)
1349 {
1350         struct sctp_association *retval = NULL;
1351         struct sctp_signed_cookie *cookie;
1352         struct sctp_cookie *bear_cookie;
1353         int headersize, bodysize, fixed_size;
1354         __u8 *digest = ep->digest;
1355         struct scatterlist sg;
1356         unsigned int keylen, len;
1357         char *key;
1358         sctp_scope_t scope;
1359         struct sk_buff *skb = chunk->skb;
1360         struct timeval tv;
1361         struct hash_desc desc;
1362
1363         /* Header size is static data prior to the actual cookie, including
1364          * any padding.
1365          */
1366         headersize = sizeof(sctp_chunkhdr_t) +
1367                      (sizeof(struct sctp_signed_cookie) -
1368                       sizeof(struct sctp_cookie));
1369         bodysize = ntohs(chunk->chunk_hdr->length) - headersize;
1370         fixed_size = headersize + sizeof(struct sctp_cookie);
1371
1372         /* Verify that the chunk looks like it even has a cookie.
1373          * There must be enough room for our cookie and our peer's
1374          * INIT chunk.
1375          */
1376         len = ntohs(chunk->chunk_hdr->length);
1377         if (len < fixed_size + sizeof(struct sctp_chunkhdr))
1378                 goto malformed;
1379
1380         /* Verify that the cookie has been padded out. */
1381         if (bodysize % SCTP_COOKIE_MULTIPLE)
1382                 goto malformed;
1383
1384         /* Process the cookie.  */
1385         cookie = chunk->subh.cookie_hdr;
1386         bear_cookie = &cookie->c;
1387
1388         if (!sctp_sk(ep->base.sk)->hmac)
1389                 goto no_hmac;
1390
1391         /* Check the signature.  */
1392         keylen = SCTP_SECRET_SIZE;
1393         sg.page = virt_to_page(bear_cookie);
1394         sg.offset = (unsigned long)(bear_cookie) % PAGE_SIZE;
1395         sg.length = bodysize;
1396         key = (char *)ep->secret_key[ep->current_key];
1397         desc.tfm = sctp_sk(ep->base.sk)->hmac;
1398         desc.flags = 0;
1399
1400         memset(digest, 0x00, SCTP_SIGNATURE_SIZE);
1401         if (crypto_hash_setkey(desc.tfm, key, keylen) ||
1402             crypto_hash_digest(&desc, &sg, bodysize, digest)) {
1403                 *error = -SCTP_IERROR_NOMEM;
1404                 goto fail;
1405         }
1406
1407         if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
1408                 /* Try the previous key. */
1409                 key = (char *)ep->secret_key[ep->last_key];
1410                 memset(digest, 0x00, SCTP_SIGNATURE_SIZE);
1411                 if (crypto_hash_setkey(desc.tfm, key, keylen) ||
1412                     crypto_hash_digest(&desc, &sg, bodysize, digest)) {
1413                         *error = -SCTP_IERROR_NOMEM;
1414                         goto fail;
1415                 }
1416
1417                 if (memcmp(digest, cookie->signature, SCTP_SIGNATURE_SIZE)) {
1418                         /* Yikes!  Still bad signature! */
1419                         *error = -SCTP_IERROR_BAD_SIG;
1420                         goto fail;
1421                 }
1422         }
1423
1424 no_hmac:
1425         /* IG Section 2.35.2:
1426          *  3) Compare the port numbers and the verification tag contained
1427          *     within the COOKIE ECHO chunk to the actual port numbers and the
1428          *     verification tag within the SCTP common header of the received
1429          *     packet. If these values do not match the packet MUST be silently
1430          *     discarded,
1431          */
1432         if (ntohl(chunk->sctp_hdr->vtag) != bear_cookie->my_vtag) {
1433                 *error = -SCTP_IERROR_BAD_TAG;
1434                 goto fail;
1435         }
1436
1437         if (chunk->sctp_hdr->source != bear_cookie->peer_addr.v4.sin_port ||
1438             ntohs(chunk->sctp_hdr->dest) != bear_cookie->my_port) {
1439                 *error = -SCTP_IERROR_BAD_PORTS;
1440                 goto fail;
1441         }
1442
1443         /* Check to see if the cookie is stale.  If there is already
1444          * an association, there is no need to check cookie's expiration
1445          * for init collision case of lost COOKIE ACK.
1446          * If skb has been timestamped, then use the stamp, otherwise
1447          * use current time.  This introduces a small possibility that
1448          * that a cookie may be considered expired, but his would only slow
1449          * down the new association establishment instead of every packet.
1450          */
1451         if (sock_flag(ep->base.sk, SOCK_TIMESTAMP))
1452                 skb_get_timestamp(skb, &tv);
1453         else
1454                 do_gettimeofday(&tv);
1455
1456         if (!asoc && tv_lt(bear_cookie->expiration, tv)) {
1457                 __u16 len;
1458                 /*
1459                  * Section 3.3.10.3 Stale Cookie Error (3)
1460                  *
1461                  * Cause of error
1462                  * ---------------
1463                  * Stale Cookie Error:  Indicates the receipt of a valid State
1464                  * Cookie that has expired.
1465                  */
1466                 len = ntohs(chunk->chunk_hdr->length);
1467                 *errp = sctp_make_op_error_space(asoc, chunk, len);
1468                 if (*errp) {
1469                         suseconds_t usecs = (tv.tv_sec -
1470                                 bear_cookie->expiration.tv_sec) * 1000000L +
1471                                 tv.tv_usec - bear_cookie->expiration.tv_usec;
1472                         __be32 n = htonl(usecs);
1473
1474                         sctp_init_cause(*errp, SCTP_ERROR_STALE_COOKIE,
1475                                         &n, sizeof(n));
1476                         *error = -SCTP_IERROR_STALE_COOKIE;
1477                 } else
1478                         *error = -SCTP_IERROR_NOMEM;
1479
1480                 goto fail;
1481         }
1482
1483         /* Make a new base association.  */
1484         scope = sctp_scope(sctp_source(chunk));
1485         retval = sctp_association_new(ep, ep->base.sk, scope, gfp);
1486         if (!retval) {
1487                 *error = -SCTP_IERROR_NOMEM;
1488                 goto fail;
1489         }
1490
1491         /* Set up our peer's port number.  */
1492         retval->peer.port = ntohs(chunk->sctp_hdr->source);
1493
1494         /* Populate the association from the cookie.  */
1495         memcpy(&retval->c, bear_cookie, sizeof(*bear_cookie));
1496
1497         if (sctp_assoc_set_bind_addr_from_cookie(retval, bear_cookie,
1498                                                  GFP_ATOMIC) < 0) {
1499                 *error = -SCTP_IERROR_NOMEM;
1500                 goto fail;
1501         }
1502
1503         /* Also, add the destination address. */
1504         if (list_empty(&retval->base.bind_addr.address_list)) {
1505                 sctp_add_bind_addr(&retval->base.bind_addr, &chunk->dest, 1,
1506                                    GFP_ATOMIC);
1507         }
1508
1509         retval->next_tsn = retval->c.initial_tsn;
1510         retval->ctsn_ack_point = retval->next_tsn - 1;
1511         retval->addip_serial = retval->c.initial_tsn;
1512         retval->adv_peer_ack_point = retval->ctsn_ack_point;
1513         retval->peer.prsctp_capable = retval->c.prsctp_capable;
1514         retval->peer.adaptation_ind = retval->c.adaptation_ind;
1515
1516         /* The INIT stuff will be done by the side effects.  */
1517         return retval;
1518
1519 fail:
1520         if (retval)
1521                 sctp_association_free(retval);
1522
1523         return NULL;
1524
1525 malformed:
1526         /* Yikes!  The packet is either corrupt or deliberately
1527          * malformed.
1528          */
1529         *error = -SCTP_IERROR_MALFORMED;
1530         goto fail;
1531 }
1532
1533 /********************************************************************
1534  * 3rd Level Abstractions
1535  ********************************************************************/
1536
1537 struct __sctp_missing {
1538         __be32 num_missing;
1539         __be16 type;
1540 }  __attribute__((packed));
1541
1542 /*
1543  * Report a missing mandatory parameter.
1544  */
1545 static int sctp_process_missing_param(const struct sctp_association *asoc,
1546                                       sctp_param_t paramtype,
1547                                       struct sctp_chunk *chunk,
1548                                       struct sctp_chunk **errp)
1549 {
1550         struct __sctp_missing report;
1551         __u16 len;
1552
1553         len = WORD_ROUND(sizeof(report));
1554
1555         /* Make an ERROR chunk, preparing enough room for
1556          * returning multiple unknown parameters.
1557          */
1558         if (!*errp)
1559                 *errp = sctp_make_op_error_space(asoc, chunk, len);
1560
1561         if (*errp) {
1562                 report.num_missing = htonl(1);
1563                 report.type = paramtype;
1564                 sctp_init_cause(*errp, SCTP_ERROR_MISS_PARAM,
1565                                 &report, sizeof(report));
1566         }
1567
1568         /* Stop processing this chunk. */
1569         return 0;
1570 }
1571
1572 /* Report an Invalid Mandatory Parameter.  */
1573 static int sctp_process_inv_mandatory(const struct sctp_association *asoc,
1574                                       struct sctp_chunk *chunk,
1575                                       struct sctp_chunk **errp)
1576 {
1577         /* Invalid Mandatory Parameter Error has no payload. */
1578
1579         if (!*errp)
1580                 *errp = sctp_make_op_error_space(asoc, chunk, 0);
1581
1582         if (*errp)
1583                 sctp_init_cause(*errp, SCTP_ERROR_INV_PARAM, NULL, 0);
1584
1585         /* Stop processing this chunk. */
1586         return 0;
1587 }
1588
1589 static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
1590                                         struct sctp_paramhdr *param,
1591                                         const struct sctp_chunk *chunk,
1592                                         struct sctp_chunk **errp)
1593 {
1594         char            error[] = "The following parameter had invalid length:";
1595         size_t          payload_len = WORD_ROUND(sizeof(error)) +
1596                                                 sizeof(sctp_paramhdr_t);
1597
1598
1599         /* Create an error chunk and fill it in with our payload. */
1600         if (!*errp)
1601                 *errp = sctp_make_op_error_space(asoc, chunk, payload_len);
1602
1603         if (*errp) {
1604                 sctp_init_cause(*errp, SCTP_ERROR_PROTO_VIOLATION, error,
1605                                 sizeof(error));
1606                 sctp_addto_chunk(*errp, sizeof(sctp_paramhdr_t), param);
1607         }
1608
1609         return 0;
1610 }
1611
1612
1613 /* Do not attempt to handle the HOST_NAME parm.  However, do
1614  * send back an indicator to the peer.
1615  */
1616 static int sctp_process_hn_param(const struct sctp_association *asoc,
1617                                  union sctp_params param,
1618                                  struct sctp_chunk *chunk,
1619                                  struct sctp_chunk **errp)
1620 {
1621         __u16 len = ntohs(param.p->length);
1622
1623         /* Make an ERROR chunk. */
1624         if (!*errp)
1625                 *errp = sctp_make_op_error_space(asoc, chunk, len);
1626
1627         if (*errp)
1628                 sctp_init_cause(*errp, SCTP_ERROR_DNS_FAILED,
1629                                 param.v, len);
1630
1631         /* Stop processing this chunk. */
1632         return 0;
1633 }
1634
1635 /* RFC 3.2.1 & the Implementers Guide 2.2.
1636  *
1637  * The Parameter Types are encoded such that the
1638  * highest-order two bits specify the action that must be
1639  * taken if the processing endpoint does not recognize the
1640  * Parameter Type.
1641  *
1642  * 00 - Stop processing this SCTP chunk and discard it,
1643  *      do not process any further chunks within it.
1644  *
1645  * 01 - Stop processing this SCTP chunk and discard it,
1646  *      do not process any further chunks within it, and report
1647  *      the unrecognized parameter in an 'Unrecognized
1648  *      Parameter Type' (in either an ERROR or in the INIT ACK).
1649  *
1650  * 10 - Skip this parameter and continue processing.
1651  *
1652  * 11 - Skip this parameter and continue processing but
1653  *      report the unrecognized parameter in an
1654  *      'Unrecognized Parameter Type' (in either an ERROR or in
1655  *      the INIT ACK).
1656  *
1657  * Return value:
1658  *      0 - discard the chunk
1659  *      1 - continue with the chunk
1660  */
1661 static int sctp_process_unk_param(const struct sctp_association *asoc,
1662                                   union sctp_params param,
1663                                   struct sctp_chunk *chunk,
1664                                   struct sctp_chunk **errp)
1665 {
1666         int retval = 1;
1667
1668         switch (param.p->type & SCTP_PARAM_ACTION_MASK) {
1669         case SCTP_PARAM_ACTION_DISCARD:
1670                 retval =  0;
1671                 break;
1672         case SCTP_PARAM_ACTION_DISCARD_ERR:
1673                 retval =  0;
1674                 /* Make an ERROR chunk, preparing enough room for
1675                  * returning multiple unknown parameters.
1676                  */
1677                 if (NULL == *errp)
1678                         *errp = sctp_make_op_error_space(asoc, chunk,
1679                                         ntohs(chunk->chunk_hdr->length));
1680
1681                 if (*errp)
1682                         sctp_init_cause(*errp, SCTP_ERROR_UNKNOWN_PARAM,
1683                                         param.v,
1684                                         WORD_ROUND(ntohs(param.p->length)));
1685
1686                 break;
1687         case SCTP_PARAM_ACTION_SKIP:
1688                 break;
1689         case SCTP_PARAM_ACTION_SKIP_ERR:
1690                 /* Make an ERROR chunk, preparing enough room for
1691                  * returning multiple unknown parameters.
1692                  */
1693                 if (NULL == *errp)
1694                         *errp = sctp_make_op_error_space(asoc, chunk,
1695                                         ntohs(chunk->chunk_hdr->length));
1696
1697                 if (*errp) {
1698                         sctp_init_cause(*errp, SCTP_ERROR_UNKNOWN_PARAM,
1699                                         param.v,
1700                                         WORD_ROUND(ntohs(param.p->length)));
1701                 } else {
1702                         /* If there is no memory for generating the ERROR
1703                          * report as specified, an ABORT will be triggered
1704                          * to the peer and the association won't be
1705                          * established.
1706                          */
1707                         retval = 0;
1708                 }
1709
1710                 break;
1711         default:
1712                 break;
1713         }
1714
1715         return retval;
1716 }
1717
1718 /* Find unrecognized parameters in the chunk.
1719  * Return values:
1720  *      0 - discard the chunk
1721  *      1 - continue with the chunk
1722  */
1723 static int sctp_verify_param(const struct sctp_association *asoc,
1724                              union sctp_params param,
1725                              sctp_cid_t cid,
1726                              struct sctp_chunk *chunk,
1727                              struct sctp_chunk **err_chunk)
1728 {
1729         int retval = 1;
1730
1731         /* FIXME - This routine is not looking at each parameter per the
1732          * chunk type, i.e., unrecognized parameters should be further
1733          * identified based on the chunk id.
1734          */
1735
1736         switch (param.p->type) {
1737         case SCTP_PARAM_IPV4_ADDRESS:
1738         case SCTP_PARAM_IPV6_ADDRESS:
1739         case SCTP_PARAM_COOKIE_PRESERVATIVE:
1740         case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
1741         case SCTP_PARAM_STATE_COOKIE:
1742         case SCTP_PARAM_HEARTBEAT_INFO:
1743         case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
1744         case SCTP_PARAM_ECN_CAPABLE:
1745         case SCTP_PARAM_ADAPTATION_LAYER_IND:
1746                 break;
1747
1748         case SCTP_PARAM_HOST_NAME_ADDRESS:
1749                 /* Tell the peer, we won't support this param.  */
1750                 return sctp_process_hn_param(asoc, param, chunk, err_chunk);
1751         case SCTP_PARAM_FWD_TSN_SUPPORT:
1752                 if (sctp_prsctp_enable)
1753                         break;
1754                 /* Fall Through */
1755         default:
1756                 SCTP_DEBUG_PRINTK("Unrecognized param: %d for chunk %d.\n",
1757                                 ntohs(param.p->type), cid);
1758                 return sctp_process_unk_param(asoc, param, chunk, err_chunk);
1759
1760                 break;
1761         }
1762         return retval;
1763 }
1764
1765 /* Verify the INIT packet before we process it.  */
1766 int sctp_verify_init(const struct sctp_association *asoc,
1767                      sctp_cid_t cid,
1768                      sctp_init_chunk_t *peer_init,
1769                      struct sctp_chunk *chunk,
1770                      struct sctp_chunk **errp)
1771 {
1772         union sctp_params param;
1773         int has_cookie = 0;
1774
1775         /* Verify stream values are non-zero. */
1776         if ((0 == peer_init->init_hdr.num_outbound_streams) ||
1777             (0 == peer_init->init_hdr.num_inbound_streams) ||
1778             (0 == peer_init->init_hdr.init_tag) ||
1779             (SCTP_DEFAULT_MINWINDOW > ntohl(peer_init->init_hdr.a_rwnd))) {
1780
1781                 sctp_process_inv_mandatory(asoc, chunk, errp);
1782                 return 0;
1783         }
1784
1785         /* Check for missing mandatory parameters.  */
1786         sctp_walk_params(param, peer_init, init_hdr.params) {
1787
1788                 if (SCTP_PARAM_STATE_COOKIE == param.p->type)
1789                         has_cookie = 1;
1790
1791         } /* for (loop through all parameters) */
1792
1793         /* There is a possibility that a parameter length was bad and
1794          * in that case we would have stoped walking the parameters.
1795          * The current param.p would point at the bad one.
1796          * Current consensus on the mailing list is to generate a PROTOCOL
1797          * VIOLATION error.  We build the ERROR chunk here and let the normal
1798          * error handling code build and send the packet.
1799          */
1800         if (param.v < (void*)chunk->chunk_end - sizeof(sctp_paramhdr_t)) {
1801                 sctp_process_inv_paramlength(asoc, param.p, chunk, errp);
1802                 return 0;
1803         }
1804
1805         /* The only missing mandatory param possible today is
1806          * the state cookie for an INIT-ACK chunk.
1807          */
1808         if ((SCTP_CID_INIT_ACK == cid) && !has_cookie) {
1809                 sctp_process_missing_param(asoc, SCTP_PARAM_STATE_COOKIE,
1810                                            chunk, errp);
1811                 return 0;
1812         }
1813
1814         /* Find unrecognized parameters. */
1815
1816         sctp_walk_params(param, peer_init, init_hdr.params) {
1817
1818                 if (!sctp_verify_param(asoc, param, cid, chunk, errp)) {
1819                         if (SCTP_PARAM_HOST_NAME_ADDRESS == param.p->type)
1820                                 return 0;
1821                         else
1822                                 return 1;
1823                 }
1824
1825         } /* for (loop through all parameters) */
1826
1827         return 1;
1828 }
1829
1830 /* Unpack the parameters in an INIT packet into an association.
1831  * Returns 0 on failure, else success.
1832  * FIXME:  This is an association method.
1833  */
1834 int sctp_process_init(struct sctp_association *asoc, sctp_cid_t cid,
1835                       const union sctp_addr *peer_addr,
1836                       sctp_init_chunk_t *peer_init, gfp_t gfp)
1837 {
1838         union sctp_params param;
1839         struct sctp_transport *transport;
1840         struct list_head *pos, *temp;
1841         char *cookie;
1842
1843         /* We must include the address that the INIT packet came from.
1844          * This is the only address that matters for an INIT packet.
1845          * When processing a COOKIE ECHO, we retrieve the from address
1846          * of the INIT from the cookie.
1847          */
1848
1849         /* This implementation defaults to making the first transport
1850          * added as the primary transport.  The source address seems to
1851          * be a a better choice than any of the embedded addresses.
1852          */
1853         if (peer_addr) {
1854                 if(!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE))
1855                         goto nomem;
1856         }
1857
1858         /* Process the initialization parameters.  */
1859
1860         sctp_walk_params(param, peer_init, init_hdr.params) {
1861
1862                 if (!sctp_process_param(asoc, param, peer_addr, gfp))
1863                         goto clean_up;
1864         }
1865
1866         /* Walk list of transports, removing transports in the UNKNOWN state. */
1867         list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
1868                 transport = list_entry(pos, struct sctp_transport, transports);
1869                 if (transport->state == SCTP_UNKNOWN) {
1870                         sctp_assoc_rm_peer(asoc, transport);
1871                 }
1872         }
1873
1874         /* The fixed INIT headers are always in network byte
1875          * order.
1876          */
1877         asoc->peer.i.init_tag =
1878                 ntohl(peer_init->init_hdr.init_tag);
1879         asoc->peer.i.a_rwnd =
1880                 ntohl(peer_init->init_hdr.a_rwnd);
1881         asoc->peer.i.num_outbound_streams =
1882                 ntohs(peer_init->init_hdr.num_outbound_streams);
1883         asoc->peer.i.num_inbound_streams =
1884                 ntohs(peer_init->init_hdr.num_inbound_streams);
1885         asoc->peer.i.initial_tsn =
1886                 ntohl(peer_init->init_hdr.initial_tsn);
1887
1888         /* Apply the upper bounds for output streams based on peer's
1889          * number of inbound streams.
1890          */
1891         if (asoc->c.sinit_num_ostreams  >
1892             ntohs(peer_init->init_hdr.num_inbound_streams)) {
1893                 asoc->c.sinit_num_ostreams =
1894                         ntohs(peer_init->init_hdr.num_inbound_streams);
1895         }
1896
1897         if (asoc->c.sinit_max_instreams >
1898             ntohs(peer_init->init_hdr.num_outbound_streams)) {
1899                 asoc->c.sinit_max_instreams =
1900                         ntohs(peer_init->init_hdr.num_outbound_streams);
1901         }
1902
1903         /* Copy Initiation tag from INIT to VT_peer in cookie.   */
1904         asoc->c.peer_vtag = asoc->peer.i.init_tag;
1905
1906         /* Peer Rwnd   : Current calculated value of the peer's rwnd.  */
1907         asoc->peer.rwnd = asoc->peer.i.a_rwnd;
1908
1909         /* Copy cookie in case we need to resend COOKIE-ECHO. */
1910         cookie = asoc->peer.cookie;
1911         if (cookie) {
1912                 asoc->peer.cookie = kmemdup(cookie, asoc->peer.cookie_len, gfp);
1913                 if (!asoc->peer.cookie)
1914                         goto clean_up;
1915         }
1916
1917         /* RFC 2960 7.2.1 The initial value of ssthresh MAY be arbitrarily
1918          * high (for example, implementations MAY use the size of the receiver
1919          * advertised window).
1920          */
1921         list_for_each(pos, &asoc->peer.transport_addr_list) {
1922                 transport = list_entry(pos, struct sctp_transport, transports);
1923                 transport->ssthresh = asoc->peer.i.a_rwnd;
1924         }
1925
1926         /* Set up the TSN tracking pieces.  */
1927         sctp_tsnmap_init(&asoc->peer.tsn_map, SCTP_TSN_MAP_SIZE,
1928                          asoc->peer.i.initial_tsn);
1929
1930         /* RFC 2960 6.5 Stream Identifier and Stream Sequence Number
1931          *
1932          * The stream sequence number in all the streams shall start
1933          * from 0 when the association is established.  Also, when the
1934          * stream sequence number reaches the value 65535 the next
1935          * stream sequence number shall be set to 0.
1936          */
1937
1938         /* Allocate storage for the negotiated streams if it is not a temporary
1939          * association.
1940          */
1941         if (!asoc->temp) {
1942                 int assoc_id;
1943                 int error;
1944
1945                 asoc->ssnmap = sctp_ssnmap_new(asoc->c.sinit_max_instreams,
1946                                                asoc->c.sinit_num_ostreams, gfp);
1947                 if (!asoc->ssnmap)
1948                         goto clean_up;
1949
1950         retry:
1951                 if (unlikely(!idr_pre_get(&sctp_assocs_id, gfp)))
1952                         goto clean_up;
1953                 spin_lock_bh(&sctp_assocs_id_lock);
1954                 error = idr_get_new_above(&sctp_assocs_id, (void *)asoc, 1,
1955                                           &assoc_id);
1956                 spin_unlock_bh(&sctp_assocs_id_lock);
1957                 if (error == -EAGAIN)
1958                         goto retry;
1959                 else if (error)
1960                         goto clean_up;
1961
1962                 asoc->assoc_id = (sctp_assoc_t) assoc_id;
1963         }
1964
1965         /* ADDIP Section 4.1 ASCONF Chunk Procedures
1966          *
1967          * When an endpoint has an ASCONF signaled change to be sent to the
1968          * remote endpoint it should do the following:
1969          * ...
1970          * A2) A serial number should be assigned to the Chunk. The serial
1971          * number should be a monotonically increasing number. All serial
1972          * numbers are defined to be initialized at the start of the
1973          * association to the same value as the Initial TSN.
1974          */
1975         asoc->peer.addip_serial = asoc->peer.i.initial_tsn - 1;
1976         return 1;
1977
1978 clean_up:
1979         /* Release the transport structures. */
1980         list_for_each_safe(pos, temp, &asoc->peer.transport_addr_list) {
1981                 transport = list_entry(pos, struct sctp_transport, transports);
1982                 list_del_init(pos);
1983                 sctp_transport_free(transport);
1984         }
1985
1986         asoc->peer.transport_count = 0;
1987
1988 nomem:
1989         return 0;
1990 }
1991
1992
1993 /* Update asoc with the option described in param.
1994  *
1995  * RFC2960 3.3.2.1 Optional/Variable Length Parameters in INIT
1996  *
1997  * asoc is the association to update.
1998  * param is the variable length parameter to use for update.
1999  * cid tells us if this is an INIT, INIT ACK or COOKIE ECHO.
2000  * If the current packet is an INIT we want to minimize the amount of
2001  * work we do.  In particular, we should not build transport
2002  * structures for the addresses.
2003  */
2004 static int sctp_process_param(struct sctp_association *asoc,
2005                               union sctp_params param,
2006                               const union sctp_addr *peer_addr,
2007                               gfp_t gfp)
2008 {
2009         union sctp_addr addr;
2010         int i;
2011         __u16 sat;
2012         int retval = 1;
2013         sctp_scope_t scope;
2014         time_t stale;
2015         struct sctp_af *af;
2016
2017         /* We maintain all INIT parameters in network byte order all the
2018          * time.  This allows us to not worry about whether the parameters
2019          * came from a fresh INIT, and INIT ACK, or were stored in a cookie.
2020          */
2021         switch (param.p->type) {
2022         case SCTP_PARAM_IPV6_ADDRESS:
2023                 if (PF_INET6 != asoc->base.sk->sk_family)
2024                         break;
2025                 /* Fall through. */
2026         case SCTP_PARAM_IPV4_ADDRESS:
2027                 af = sctp_get_af_specific(param_type2af(param.p->type));
2028                 af->from_addr_param(&addr, param.addr, htons(asoc->peer.port), 0);
2029                 scope = sctp_scope(peer_addr);
2030                 if (sctp_in_scope(&addr, scope))
2031                         if (!sctp_assoc_add_peer(asoc, &addr, gfp, SCTP_UNCONFIRMED))
2032                                 return 0;
2033                 break;
2034
2035         case SCTP_PARAM_COOKIE_PRESERVATIVE:
2036                 if (!sctp_cookie_preserve_enable)
2037                         break;
2038
2039                 stale = ntohl(param.life->lifespan_increment);
2040
2041                 /* Suggested Cookie Life span increment's unit is msec,
2042                  * (1/1000sec).
2043                  */
2044                 asoc->cookie_life.tv_sec += stale / 1000;
2045                 asoc->cookie_life.tv_usec += (stale % 1000) * 1000;
2046                 break;
2047
2048         case SCTP_PARAM_HOST_NAME_ADDRESS:
2049                 SCTP_DEBUG_PRINTK("unimplemented SCTP_HOST_NAME_ADDRESS\n");
2050                 break;
2051
2052         case SCTP_PARAM_SUPPORTED_ADDRESS_TYPES:
2053                 /* Turn off the default values first so we'll know which
2054                  * ones are really set by the peer.
2055                  */
2056                 asoc->peer.ipv4_address = 0;
2057                 asoc->peer.ipv6_address = 0;
2058
2059                 /* Cycle through address types; avoid divide by 0. */
2060                 sat = ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2061                 if (sat)
2062                         sat /= sizeof(__u16);
2063
2064                 for (i = 0; i < sat; ++i) {
2065                         switch (param.sat->types[i]) {
2066                         case SCTP_PARAM_IPV4_ADDRESS:
2067                                 asoc->peer.ipv4_address = 1;
2068                                 break;
2069
2070                         case SCTP_PARAM_IPV6_ADDRESS:
2071                                 asoc->peer.ipv6_address = 1;
2072                                 break;
2073
2074                         case SCTP_PARAM_HOST_NAME_ADDRESS:
2075                                 asoc->peer.hostname_address = 1;
2076                                 break;
2077
2078                         default: /* Just ignore anything else.  */
2079                                 break;
2080                         };
2081                 }
2082                 break;
2083
2084         case SCTP_PARAM_STATE_COOKIE:
2085                 asoc->peer.cookie_len =
2086                         ntohs(param.p->length) - sizeof(sctp_paramhdr_t);
2087                 asoc->peer.cookie = param.cookie->body;
2088                 break;
2089
2090         case SCTP_PARAM_HEARTBEAT_INFO:
2091                 /* Would be odd to receive, but it causes no problems. */
2092                 break;
2093
2094         case SCTP_PARAM_UNRECOGNIZED_PARAMETERS:
2095                 /* Rejected during verify stage. */
2096                 break;
2097
2098         case SCTP_PARAM_ECN_CAPABLE:
2099                 asoc->peer.ecn_capable = 1;
2100                 break;
2101
2102         case SCTP_PARAM_ADAPTATION_LAYER_IND:
2103                 asoc->peer.adaptation_ind = param.aind->adaptation_ind;
2104                 break;
2105
2106         case SCTP_PARAM_FWD_TSN_SUPPORT:
2107                 if (sctp_prsctp_enable) {
2108                         asoc->peer.prsctp_capable = 1;
2109                         break;
2110                 }
2111                 /* Fall Through */
2112         default:
2113                 /* Any unrecognized parameters should have been caught
2114                  * and handled by sctp_verify_param() which should be
2115                  * called prior to this routine.  Simply log the error
2116                  * here.
2117                  */
2118                 SCTP_DEBUG_PRINTK("Ignoring param: %d for association %p.\n",
2119                                   ntohs(param.p->type), asoc);
2120                 break;
2121         };
2122
2123         return retval;
2124 }
2125
2126 /* Select a new verification tag.  */
2127 __u32 sctp_generate_tag(const struct sctp_endpoint *ep)
2128 {
2129         /* I believe that this random number generator complies with RFC1750.
2130          * A tag of 0 is reserved for special cases (e.g. INIT).
2131          */
2132         __u32 x;
2133
2134         do {
2135                 get_random_bytes(&x, sizeof(__u32));
2136         } while (x == 0);
2137
2138         return x;
2139 }
2140
2141 /* Select an initial TSN to send during startup.  */
2142 __u32 sctp_generate_tsn(const struct sctp_endpoint *ep)
2143 {
2144         __u32 retval;
2145
2146         get_random_bytes(&retval, sizeof(__u32));
2147         return retval;
2148 }
2149
2150 /*
2151  * ADDIP 3.1.1 Address Configuration Change Chunk (ASCONF)
2152  *      0                   1                   2                   3
2153  *      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
2154  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2155  *     | Type = 0xC1   |  Chunk Flags  |      Chunk Length             |
2156  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2157  *     |                       Serial Number                           |
2158  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2159  *     |                    Address Parameter                          |
2160  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2161  *     |                     ASCONF Parameter #1                       |
2162  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2163  *     \                                                               \
2164  *     /                             ....                              /
2165  *     \                                                               \
2166  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2167  *     |                     ASCONF Parameter #N                       |
2168  *      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2169  *
2170  * Address Parameter and other parameter will not be wrapped in this function
2171  */
2172 static struct sctp_chunk *sctp_make_asconf(struct sctp_association *asoc,
2173                                            union sctp_addr *addr,
2174                                            int vparam_len)
2175 {
2176         sctp_addiphdr_t asconf;
2177         struct sctp_chunk *retval;
2178         int length = sizeof(asconf) + vparam_len;
2179         union sctp_addr_param addrparam;
2180         int addrlen;
2181         struct sctp_af *af = sctp_get_af_specific(addr->v4.sin_family);
2182
2183         addrlen = af->to_addr_param(addr, &addrparam);
2184         if (!addrlen)
2185                 return NULL;
2186         length += addrlen;
2187
2188         /* Create the chunk.  */
2189         retval = sctp_make_chunk(asoc, SCTP_CID_ASCONF, 0, length);
2190         if (!retval)
2191                 return NULL;
2192
2193         asconf.serial = htonl(asoc->addip_serial++);
2194
2195         retval->subh.addip_hdr =
2196                 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2197         retval->param_hdr.v =
2198                 sctp_addto_chunk(retval, addrlen, &addrparam);
2199
2200         return retval;
2201 }
2202
2203 /* ADDIP
2204  * 3.2.1 Add IP Address
2205  *      0                   1                   2                   3
2206  *      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
2207  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2208  *     |        Type = 0xC001          |    Length = Variable          |
2209  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2210  *     |               ASCONF-Request Correlation ID                   |
2211  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2212  *     |                       Address Parameter                       |
2213  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2214  *
2215  * 3.2.2 Delete IP Address
2216  *      0                   1                   2                   3
2217  *      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
2218  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2219  *     |        Type = 0xC002          |    Length = Variable          |
2220  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2221  *     |               ASCONF-Request Correlation ID                   |
2222  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2223  *     |                       Address Parameter                       |
2224  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2225  *
2226  */
2227 struct sctp_chunk *sctp_make_asconf_update_ip(struct sctp_association *asoc,
2228                                               union sctp_addr         *laddr,
2229                                               struct sockaddr         *addrs,
2230                                               int                     addrcnt,
2231                                               __be16                  flags)
2232 {
2233         sctp_addip_param_t      param;
2234         struct sctp_chunk       *retval;
2235         union sctp_addr_param   addr_param;
2236         union sctp_addr         *addr;
2237         void                    *addr_buf;
2238         struct sctp_af          *af;
2239         int                     paramlen = sizeof(param);
2240         int                     addr_param_len = 0;
2241         int                     totallen = 0;
2242         int                     i;
2243
2244         /* Get total length of all the address parameters. */
2245         addr_buf = addrs;
2246         for (i = 0; i < addrcnt; i++) {
2247                 addr = (union sctp_addr *)addr_buf;
2248                 af = sctp_get_af_specific(addr->v4.sin_family);
2249                 addr_param_len = af->to_addr_param(addr, &addr_param);
2250
2251                 totallen += paramlen;
2252                 totallen += addr_param_len;
2253
2254                 addr_buf += af->sockaddr_len;
2255         }
2256
2257         /* Create an asconf chunk with the required length. */
2258         retval = sctp_make_asconf(asoc, laddr, totallen);
2259         if (!retval)
2260                 return NULL;
2261
2262         /* Add the address parameters to the asconf chunk. */
2263         addr_buf = addrs;
2264         for (i = 0; i < addrcnt; i++) {
2265                 addr = (union sctp_addr *)addr_buf;
2266                 af = sctp_get_af_specific(addr->v4.sin_family);
2267                 addr_param_len = af->to_addr_param(addr, &addr_param);
2268                 param.param_hdr.type = flags;
2269                 param.param_hdr.length = htons(paramlen + addr_param_len);
2270                 param.crr_id = i;
2271
2272                 sctp_addto_chunk(retval, paramlen, &param);
2273                 sctp_addto_chunk(retval, addr_param_len, &addr_param);
2274
2275                 addr_buf += af->sockaddr_len;
2276         }
2277         return retval;
2278 }
2279
2280 /* ADDIP
2281  * 3.2.4 Set Primary IP Address
2282  *      0                   1                   2                   3
2283  *      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
2284  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2285  *     |        Type =0xC004           |    Length = Variable          |
2286  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2287  *     |               ASCONF-Request Correlation ID                   |
2288  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2289  *     |                       Address Parameter                       |
2290  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2291  *
2292  * Create an ASCONF chunk with Set Primary IP address parameter.
2293  */
2294 struct sctp_chunk *sctp_make_asconf_set_prim(struct sctp_association *asoc,
2295                                              union sctp_addr *addr)
2296 {
2297         sctp_addip_param_t      param;
2298         struct sctp_chunk       *retval;
2299         int                     len = sizeof(param);
2300         union sctp_addr_param   addrparam;
2301         int                     addrlen;
2302         struct sctp_af          *af = sctp_get_af_specific(addr->v4.sin_family);
2303
2304         addrlen = af->to_addr_param(addr, &addrparam);
2305         if (!addrlen)
2306                 return NULL;
2307         len += addrlen;
2308
2309         /* Create the chunk and make asconf header. */
2310         retval = sctp_make_asconf(asoc, addr, len);
2311         if (!retval)
2312                 return NULL;
2313
2314         param.param_hdr.type = SCTP_PARAM_SET_PRIMARY;
2315         param.param_hdr.length = htons(len);
2316         param.crr_id = 0;
2317
2318         sctp_addto_chunk(retval, sizeof(param), &param);
2319         sctp_addto_chunk(retval, addrlen, &addrparam);
2320
2321         return retval;
2322 }
2323
2324 /* ADDIP 3.1.2 Address Configuration Acknowledgement Chunk (ASCONF-ACK)
2325  *      0                   1                   2                   3
2326  *      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
2327  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2328  *     | Type = 0x80   |  Chunk Flags  |      Chunk Length             |
2329  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2330  *     |                       Serial Number                           |
2331  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2332  *     |                 ASCONF Parameter Response#1                   |
2333  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2334  *     \                                                               \
2335  *     /                             ....                              /
2336  *     \                                                               \
2337  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2338  *     |                 ASCONF Parameter Response#N                   |
2339  *     +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2340  *
2341  * Create an ASCONF_ACK chunk with enough space for the parameter responses.
2342  */
2343 static struct sctp_chunk *sctp_make_asconf_ack(const struct sctp_association *asoc,
2344                                                __u32 serial, int vparam_len)
2345 {
2346         sctp_addiphdr_t         asconf;
2347         struct sctp_chunk       *retval;
2348         int                     length = sizeof(asconf) + vparam_len;
2349
2350         /* Create the chunk.  */
2351         retval = sctp_make_chunk(asoc, SCTP_CID_ASCONF_ACK, 0, length);
2352         if (!retval)
2353                 return NULL;
2354
2355         asconf.serial = htonl(serial);
2356
2357         retval->subh.addip_hdr =
2358                 sctp_addto_chunk(retval, sizeof(asconf), &asconf);
2359
2360         return retval;
2361 }
2362
2363 /* Add response parameters to an ASCONF_ACK chunk. */
2364 static void sctp_add_asconf_response(struct sctp_chunk *chunk, __be32 crr_id,
2365                               __be16 err_code, sctp_addip_param_t *asconf_param)
2366 {
2367         sctp_addip_param_t      ack_param;
2368         sctp_errhdr_t           err_param;
2369         int                     asconf_param_len = 0;
2370         int                     err_param_len = 0;
2371         __be16                  response_type;
2372
2373         if (SCTP_ERROR_NO_ERROR == err_code) {
2374                 response_type = SCTP_PARAM_SUCCESS_REPORT;
2375         } else {
2376                 response_type = SCTP_PARAM_ERR_CAUSE;
2377                 err_param_len = sizeof(err_param);
2378                 if (asconf_param)
2379                         asconf_param_len =
2380                                  ntohs(asconf_param->param_hdr.length);
2381         }
2382
2383         /* Add Success Indication or Error Cause Indication parameter. */
2384         ack_param.param_hdr.type = response_type;
2385         ack_param.param_hdr.length = htons(sizeof(ack_param) +
2386                                            err_param_len +
2387                                            asconf_param_len);
2388         ack_param.crr_id = crr_id;
2389         sctp_addto_chunk(chunk, sizeof(ack_param), &ack_param);
2390
2391         if (SCTP_ERROR_NO_ERROR == err_code)
2392                 return;
2393
2394         /* Add Error Cause parameter. */
2395         err_param.cause = err_code;
2396         err_param.length = htons(err_param_len + asconf_param_len);
2397         sctp_addto_chunk(chunk, err_param_len, &err_param);
2398
2399         /* Add the failed TLV copied from ASCONF chunk. */
2400         if (asconf_param)
2401                 sctp_addto_chunk(chunk, asconf_param_len, asconf_param);
2402 }
2403
2404 /* Process a asconf parameter. */
2405 static __be16 sctp_process_asconf_param(struct sctp_association *asoc,
2406                                        struct sctp_chunk *asconf,
2407                                        sctp_addip_param_t *asconf_param)
2408 {
2409         struct sctp_transport *peer;
2410         struct sctp_af *af;
2411         union sctp_addr addr;
2412         struct list_head *pos;
2413         union sctp_addr_param *addr_param;
2414
2415         addr_param = (union sctp_addr_param *)
2416                         ((void *)asconf_param + sizeof(sctp_addip_param_t));
2417
2418         af = sctp_get_af_specific(param_type2af(addr_param->v4.param_hdr.type));
2419         if (unlikely(!af))
2420                 return SCTP_ERROR_INV_PARAM;
2421
2422         af->from_addr_param(&addr, addr_param, htons(asoc->peer.port), 0);
2423         switch (asconf_param->param_hdr.type) {
2424         case SCTP_PARAM_ADD_IP:
2425                 /* ADDIP 4.3 D9) If an endpoint receives an ADD IP address
2426                  * request and does not have the local resources to add this
2427                  * new address to the association, it MUST return an Error
2428                  * Cause TLV set to the new error code 'Operation Refused
2429                  * Due to Resource Shortage'.
2430                  */
2431
2432                 peer = sctp_assoc_add_peer(asoc, &addr, GFP_ATOMIC, SCTP_UNCONFIRMED);
2433                 if (!peer)
2434                         return SCTP_ERROR_RSRC_LOW;
2435
2436                 /* Start the heartbeat timer. */
2437                 if (!mod_timer(&peer->hb_timer, sctp_transport_timeout(peer)))
2438                         sctp_transport_hold(peer);
2439                 break;
2440         case SCTP_PARAM_DEL_IP:
2441                 /* ADDIP 4.3 D7) If a request is received to delete the
2442                  * last remaining IP address of a peer endpoint, the receiver
2443                  * MUST send an Error Cause TLV with the error cause set to the
2444                  * new error code 'Request to Delete Last Remaining IP Address'.
2445                  */
2446                 pos = asoc->peer.transport_addr_list.next;
2447                 if (pos->next == &asoc->peer.transport_addr_list)
2448                         return SCTP_ERROR_DEL_LAST_IP;
2449
2450                 /* ADDIP 4.3 D8) If a request is received to delete an IP
2451                  * address which is also the source address of the IP packet
2452                  * which contained the ASCONF chunk, the receiver MUST reject
2453                  * this request. To reject the request the receiver MUST send
2454                  * an Error Cause TLV set to the new error code 'Request to
2455                  * Delete Source IP Address'
2456                  */
2457                 if (sctp_cmp_addr_exact(sctp_source(asconf), &addr))
2458                         return SCTP_ERROR_DEL_SRC_IP;
2459
2460                 sctp_assoc_del_peer(asoc, &addr);
2461                 break;
2462         case SCTP_PARAM_SET_PRIMARY:
2463                 peer = sctp_assoc_lookup_paddr(asoc, &addr);
2464                 if (!peer)
2465                         return SCTP_ERROR_INV_PARAM;
2466
2467                 sctp_assoc_set_primary(asoc, peer);
2468                 break;
2469         default:
2470                 return SCTP_ERROR_INV_PARAM;
2471                 break;
2472         }
2473
2474         return SCTP_ERROR_NO_ERROR;
2475 }
2476
2477 /* Process an incoming ASCONF chunk with the next expected serial no. and
2478  * return an ASCONF_ACK chunk to be sent in response.
2479  */
2480 struct sctp_chunk *sctp_process_asconf(struct sctp_association *asoc,
2481                                        struct sctp_chunk *asconf)
2482 {
2483         sctp_addiphdr_t         *hdr;
2484         union sctp_addr_param   *addr_param;
2485         sctp_addip_param_t      *asconf_param;
2486         struct sctp_chunk       *asconf_ack;
2487
2488         __be16  err_code;
2489         int     length = 0;
2490         int     chunk_len = asconf->skb->len;
2491         __u32   serial;
2492         int     all_param_pass = 1;
2493
2494         hdr = (sctp_addiphdr_t *)asconf->skb->data;
2495         serial = ntohl(hdr->serial);
2496
2497         /* Skip the addiphdr and store a pointer to address parameter.  */
2498         length = sizeof(sctp_addiphdr_t);
2499         addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
2500         chunk_len -= length;
2501
2502         /* Skip the address parameter and store a pointer to the first
2503          * asconf paramter.
2504          */
2505         length = ntohs(addr_param->v4.param_hdr.length);
2506         asconf_param = (sctp_addip_param_t *)((void *)addr_param + length);
2507         chunk_len -= length;
2508
2509         /* create an ASCONF_ACK chunk.
2510          * Based on the definitions of parameters, we know that the size of
2511          * ASCONF_ACK parameters are less than or equal to the twice of ASCONF
2512          * paramters.
2513          */
2514         asconf_ack = sctp_make_asconf_ack(asoc, serial, chunk_len * 2);
2515         if (!asconf_ack)
2516                 goto done;
2517
2518         /* Process the TLVs contained within the ASCONF chunk. */
2519         while (chunk_len > 0) {
2520                 err_code = sctp_process_asconf_param(asoc, asconf,
2521                                                      asconf_param);
2522                 /* ADDIP 4.1 A7)
2523                  * If an error response is received for a TLV parameter,
2524                  * all TLVs with no response before the failed TLV are
2525                  * considered successful if not reported.  All TLVs after
2526                  * the failed response are considered unsuccessful unless
2527                  * a specific success indication is present for the parameter.
2528                  */
2529                 if (SCTP_ERROR_NO_ERROR != err_code)
2530                         all_param_pass = 0;
2531
2532                 if (!all_param_pass)
2533                         sctp_add_asconf_response(asconf_ack,
2534                                                  asconf_param->crr_id, err_code,
2535                                                  asconf_param);
2536
2537                 /* ADDIP 4.3 D11) When an endpoint receiving an ASCONF to add
2538                  * an IP address sends an 'Out of Resource' in its response, it
2539                  * MUST also fail any subsequent add or delete requests bundled
2540                  * in the ASCONF.
2541                  */
2542                 if (SCTP_ERROR_RSRC_LOW == err_code)
2543                         goto done;
2544
2545                 /* Move to the next ASCONF param. */
2546                 length = ntohs(asconf_param->param_hdr.length);
2547                 asconf_param = (sctp_addip_param_t *)((void *)asconf_param +
2548                                                       length);
2549                 chunk_len -= length;
2550         }
2551
2552 done:
2553         asoc->peer.addip_serial++;
2554
2555         /* If we are sending a new ASCONF_ACK hold a reference to it in assoc
2556          * after freeing the reference to old asconf ack if any.
2557          */
2558         if (asconf_ack) {
2559                 if (asoc->addip_last_asconf_ack)
2560                         sctp_chunk_free(asoc->addip_last_asconf_ack);
2561
2562                 sctp_chunk_hold(asconf_ack);
2563                 asoc->addip_last_asconf_ack = asconf_ack;
2564         }
2565
2566         return asconf_ack;
2567 }
2568
2569 /* Process a asconf parameter that is successfully acked. */
2570 static int sctp_asconf_param_success(struct sctp_association *asoc,
2571                                      sctp_addip_param_t *asconf_param)
2572 {
2573         struct sctp_af *af;
2574         union sctp_addr addr;
2575         struct sctp_bind_addr *bp = &asoc->base.bind_addr;
2576         union sctp_addr_param *addr_param;
2577         struct list_head *pos;
2578         struct sctp_transport *transport;
2579         struct sctp_sockaddr_entry *saddr;
2580         int retval = 0;
2581
2582         addr_param = (union sctp_addr_param *)
2583                         ((void *)asconf_param + sizeof(sctp_addip_param_t));
2584
2585         /* We have checked the packet before, so we do not check again. */
2586         af = sctp_get_af_specific(param_type2af(addr_param->v4.param_hdr.type));
2587         af->from_addr_param(&addr, addr_param, htons(bp->port), 0);
2588
2589         switch (asconf_param->param_hdr.type) {
2590         case SCTP_PARAM_ADD_IP:
2591                 sctp_local_bh_disable();
2592                 sctp_write_lock(&asoc->base.addr_lock);
2593                 list_for_each(pos, &bp->address_list) {
2594                         saddr = list_entry(pos, struct sctp_sockaddr_entry, list);
2595                         if (sctp_cmp_addr_exact(&saddr->a, &addr))
2596                                 saddr->use_as_src = 1;
2597                 }
2598                 sctp_write_unlock(&asoc->base.addr_lock);
2599                 sctp_local_bh_enable();
2600                 break;
2601         case SCTP_PARAM_DEL_IP:
2602                 sctp_local_bh_disable();
2603                 sctp_write_lock(&asoc->base.addr_lock);
2604                 retval = sctp_del_bind_addr(bp, &addr);
2605                 sctp_write_unlock(&asoc->base.addr_lock);
2606                 sctp_local_bh_enable();
2607                 list_for_each(pos, &asoc->peer.transport_addr_list) {
2608                         transport = list_entry(pos, struct sctp_transport,
2609                                                  transports);
2610                         dst_release(transport->dst);
2611                         sctp_transport_route(transport, NULL,
2612                                              sctp_sk(asoc->base.sk));
2613                 }
2614                 break;
2615         default:
2616                 break;
2617         }
2618
2619         return retval;
2620 }
2621
2622 /* Get the corresponding ASCONF response error code from the ASCONF_ACK chunk
2623  * for the given asconf parameter.  If there is no response for this parameter,
2624  * return the error code based on the third argument 'no_err'.
2625  * ADDIP 4.1
2626  * A7) If an error response is received for a TLV parameter, all TLVs with no
2627  * response before the failed TLV are considered successful if not reported.
2628  * All TLVs after the failed response are considered unsuccessful unless a
2629  * specific success indication is present for the parameter.
2630  */
2631 static __be16 sctp_get_asconf_response(struct sctp_chunk *asconf_ack,
2632                                       sctp_addip_param_t *asconf_param,
2633                                       int no_err)
2634 {
2635         sctp_addip_param_t      *asconf_ack_param;
2636         sctp_errhdr_t           *err_param;
2637         int                     length;
2638         int                     asconf_ack_len = asconf_ack->skb->len;
2639         __be16                  err_code;
2640
2641         if (no_err)
2642                 err_code = SCTP_ERROR_NO_ERROR;
2643         else
2644                 err_code = SCTP_ERROR_REQ_REFUSED;
2645
2646         /* Skip the addiphdr from the asconf_ack chunk and store a pointer to
2647          * the first asconf_ack parameter.
2648          */
2649         length = sizeof(sctp_addiphdr_t);
2650         asconf_ack_param = (sctp_addip_param_t *)(asconf_ack->skb->data +
2651                                                   length);
2652         asconf_ack_len -= length;
2653
2654         while (asconf_ack_len > 0) {
2655                 if (asconf_ack_param->crr_id == asconf_param->crr_id) {
2656                         switch(asconf_ack_param->param_hdr.type) {
2657                         case SCTP_PARAM_SUCCESS_REPORT:
2658                                 return SCTP_ERROR_NO_ERROR;
2659                         case SCTP_PARAM_ERR_CAUSE:
2660                                 length = sizeof(sctp_addip_param_t);
2661                                 err_param = (sctp_errhdr_t *)
2662                                            ((void *)asconf_ack_param + length);
2663                                 asconf_ack_len -= length;
2664                                 if (asconf_ack_len > 0)
2665                                         return err_param->cause;
2666                                 else
2667                                         return SCTP_ERROR_INV_PARAM;
2668                                 break;
2669                         default:
2670                                 return SCTP_ERROR_INV_PARAM;
2671                         }
2672                 }
2673
2674                 length = ntohs(asconf_ack_param->param_hdr.length);
2675                 asconf_ack_param = (sctp_addip_param_t *)
2676                                         ((void *)asconf_ack_param + length);
2677                 asconf_ack_len -= length;
2678         }
2679
2680         return err_code;
2681 }
2682
2683 /* Process an incoming ASCONF_ACK chunk against the cached last ASCONF chunk. */
2684 int sctp_process_asconf_ack(struct sctp_association *asoc,
2685                             struct sctp_chunk *asconf_ack)
2686 {
2687         struct sctp_chunk       *asconf = asoc->addip_last_asconf;
2688         union sctp_addr_param   *addr_param;
2689         sctp_addip_param_t      *asconf_param;
2690         int     length = 0;
2691         int     asconf_len = asconf->skb->len;
2692         int     all_param_pass = 0;
2693         int     no_err = 1;
2694         int     retval = 0;
2695         __be16  err_code = SCTP_ERROR_NO_ERROR;
2696
2697         /* Skip the chunkhdr and addiphdr from the last asconf sent and store
2698          * a pointer to address parameter.
2699          */
2700         length = sizeof(sctp_addip_chunk_t);
2701         addr_param = (union sctp_addr_param *)(asconf->skb->data + length);
2702         asconf_len -= length;
2703
2704         /* Skip the address parameter in the last asconf sent and store a
2705          * pointer to the first asconf paramter.
2706          */
2707         length = ntohs(addr_param->v4.param_hdr.length);
2708         asconf_param = (sctp_addip_param_t *)((void *)addr_param + length);
2709         asconf_len -= length;
2710
2711         /* ADDIP 4.1
2712          * A8) If there is no response(s) to specific TLV parameter(s), and no
2713          * failures are indicated, then all request(s) are considered
2714          * successful.
2715          */
2716         if (asconf_ack->skb->len == sizeof(sctp_addiphdr_t))
2717                 all_param_pass = 1;
2718
2719         /* Process the TLVs contained in the last sent ASCONF chunk. */
2720         while (asconf_len > 0) {
2721                 if (all_param_pass)
2722                         err_code = SCTP_ERROR_NO_ERROR;
2723                 else {
2724                         err_code = sctp_get_asconf_response(asconf_ack,
2725                                                             asconf_param,
2726                                                             no_err);
2727                         if (no_err && (SCTP_ERROR_NO_ERROR != err_code))
2728                                 no_err = 0;
2729                 }
2730
2731                 switch (err_code) {
2732                 case SCTP_ERROR_NO_ERROR:
2733                         retval = sctp_asconf_param_success(asoc, asconf_param);
2734                         break;
2735
2736                 case SCTP_ERROR_RSRC_LOW:
2737                         retval = 1;
2738                         break;
2739
2740                 case SCTP_ERROR_INV_PARAM:
2741                         /* Disable sending this type of asconf parameter in
2742                          * future.
2743                          */
2744                         asoc->peer.addip_disabled_mask |=
2745                                 asconf_param->param_hdr.type;
2746                         break;
2747
2748                 case SCTP_ERROR_REQ_REFUSED:
2749                 case SCTP_ERROR_DEL_LAST_IP:
2750                 case SCTP_ERROR_DEL_SRC_IP:
2751                 default:
2752                          break;
2753                 }
2754
2755                 /* Skip the processed asconf parameter and move to the next
2756                  * one.
2757                  */
2758                 length = ntohs(asconf_param->param_hdr.length);
2759                 asconf_param = (sctp_addip_param_t *)((void *)asconf_param +
2760                                                       length);
2761                 asconf_len -= length;
2762         }
2763
2764         /* Free the cached last sent asconf chunk. */
2765         sctp_chunk_free(asconf);
2766         asoc->addip_last_asconf = NULL;
2767
2768         /* Send the next asconf chunk from the addip chunk queue. */
2769         if (!list_empty(&asoc->addip_chunk_list)) {
2770                 struct list_head *entry = asoc->addip_chunk_list.next;
2771                 asconf = list_entry(entry, struct sctp_chunk, list);
2772
2773                 list_del_init(entry);
2774
2775                 /* Hold the chunk until an ASCONF_ACK is received. */
2776                 sctp_chunk_hold(asconf);
2777                 if (sctp_primitive_ASCONF(asoc, asconf))
2778                         sctp_chunk_free(asconf);
2779                 else
2780                         asoc->addip_last_asconf = asconf;
2781         }
2782
2783         return retval;
2784 }
2785
2786 /* Make a FWD TSN chunk. */
2787 struct sctp_chunk *sctp_make_fwdtsn(const struct sctp_association *asoc,
2788                                     __u32 new_cum_tsn, size_t nstreams,
2789                                     struct sctp_fwdtsn_skip *skiplist)
2790 {
2791         struct sctp_chunk *retval = NULL;
2792         struct sctp_fwdtsn_chunk *ftsn_chunk;
2793         struct sctp_fwdtsn_hdr ftsn_hdr;
2794         struct sctp_fwdtsn_skip skip;
2795         size_t hint;
2796         int i;
2797
2798         hint = (nstreams + 1) * sizeof(__u32);
2799
2800         retval = sctp_make_chunk(asoc, SCTP_CID_FWD_TSN, 0, hint);
2801
2802         if (!retval)
2803                 return NULL;
2804
2805         ftsn_chunk = (struct sctp_fwdtsn_chunk *)retval->subh.fwdtsn_hdr;
2806
2807         ftsn_hdr.new_cum_tsn = htonl(new_cum_tsn);
2808         retval->subh.fwdtsn_hdr =
2809                 sctp_addto_chunk(retval, sizeof(ftsn_hdr), &ftsn_hdr);
2810
2811         for (i = 0; i < nstreams; i++) {
2812                 skip.stream = skiplist[i].stream;
2813                 skip.ssn = skiplist[i].ssn;
2814                 sctp_addto_chunk(retval, sizeof(skip), &skip);
2815         }
2816
2817         return retval;
2818 }