]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/netinet/sctp_indata.c
MFC r236515:
[FreeBSD/stable/8.git] / sys / netinet / sctp_indata.c
1 /*-
2  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * a) Redistributions of source code must retain the above copyright notice,
10  *    this list of conditions and the following disclaimer.
11  *
12  * b) Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the distribution.
15  *
16  * c) Neither the name of Cisco Systems, Inc. nor the names of its
17  *    contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30  * THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <netinet/sctp_os.h>
37 #include <netinet/sctp_var.h>
38 #include <netinet/sctp_sysctl.h>
39 #include <netinet/sctp_pcb.h>
40 #include <netinet/sctp_header.h>
41 #include <netinet/sctputil.h>
42 #include <netinet/sctp_output.h>
43 #include <netinet/sctp_input.h>
44 #include <netinet/sctp_indata.h>
45 #include <netinet/sctp_uio.h>
46 #include <netinet/sctp_timer.h>
47
48
49 /*
50  * NOTES: On the outbound side of things I need to check the sack timer to
51  * see if I should generate a sack into the chunk queue (if I have data to
52  * send that is and will be sending it .. for bundling.
53  *
54  * The callback in sctp_usrreq.c will get called when the socket is read from.
55  * This will cause sctp_service_queues() to get called on the top entry in
56  * the list.
57  */
58
59 void
60 sctp_set_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc)
61 {
62         asoc->my_rwnd = sctp_calc_rwnd(stcb, asoc);
63 }
64
65 /* Calculate what the rwnd would be */
66 uint32_t
67 sctp_calc_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc)
68 {
69         uint32_t calc = 0;
70
71         /*
72          * This is really set wrong with respect to a 1-2-m socket. Since
73          * the sb_cc is the count that everyone as put up. When we re-write
74          * sctp_soreceive then we will fix this so that ONLY this
75          * associations data is taken into account.
76          */
77         if (stcb->sctp_socket == NULL)
78                 return (calc);
79
80         if (stcb->asoc.sb_cc == 0 &&
81             asoc->size_on_reasm_queue == 0 &&
82             asoc->size_on_all_streams == 0) {
83                 /* Full rwnd granted */
84                 calc = max(SCTP_SB_LIMIT_RCV(stcb->sctp_socket), SCTP_MINIMAL_RWND);
85                 return (calc);
86         }
87         /* get actual space */
88         calc = (uint32_t) sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv);
89
90         /*
91          * take out what has NOT been put on socket queue and we yet hold
92          * for putting up.
93          */
94         calc = sctp_sbspace_sub(calc, (uint32_t) (asoc->size_on_reasm_queue +
95             asoc->cnt_on_reasm_queue * MSIZE));
96         calc = sctp_sbspace_sub(calc, (uint32_t) (asoc->size_on_all_streams +
97             asoc->cnt_on_all_streams * MSIZE));
98
99         if (calc == 0) {
100                 /* out of space */
101                 return (calc);
102         }
103         /* what is the overhead of all these rwnd's */
104         calc = sctp_sbspace_sub(calc, stcb->asoc.my_rwnd_control_len);
105         /*
106          * If the window gets too small due to ctrl-stuff, reduce it to 1,
107          * even it is 0. SWS engaged
108          */
109         if (calc < stcb->asoc.my_rwnd_control_len) {
110                 calc = 1;
111         }
112         return (calc);
113 }
114
115
116
117 /*
118  * Build out our readq entry based on the incoming packet.
119  */
120 struct sctp_queued_to_read *
121 sctp_build_readq_entry(struct sctp_tcb *stcb,
122     struct sctp_nets *net,
123     uint32_t tsn, uint32_t ppid,
124     uint32_t context, uint16_t stream_no,
125     uint16_t stream_seq, uint8_t flags,
126     struct mbuf *dm)
127 {
128         struct sctp_queued_to_read *read_queue_e = NULL;
129
130         sctp_alloc_a_readq(stcb, read_queue_e);
131         if (read_queue_e == NULL) {
132                 goto failed_build;
133         }
134         read_queue_e->sinfo_stream = stream_no;
135         read_queue_e->sinfo_ssn = stream_seq;
136         read_queue_e->sinfo_flags = (flags << 8);
137         read_queue_e->sinfo_ppid = ppid;
138         read_queue_e->sinfo_context = context;
139         read_queue_e->sinfo_timetolive = 0;
140         read_queue_e->sinfo_tsn = tsn;
141         read_queue_e->sinfo_cumtsn = tsn;
142         read_queue_e->sinfo_assoc_id = sctp_get_associd(stcb);
143         read_queue_e->whoFrom = net;
144         read_queue_e->length = 0;
145         atomic_add_int(&net->ref_count, 1);
146         read_queue_e->data = dm;
147         read_queue_e->spec_flags = 0;
148         read_queue_e->tail_mbuf = NULL;
149         read_queue_e->aux_data = NULL;
150         read_queue_e->stcb = stcb;
151         read_queue_e->port_from = stcb->rport;
152         read_queue_e->do_not_ref_stcb = 0;
153         read_queue_e->end_added = 0;
154         read_queue_e->some_taken = 0;
155         read_queue_e->pdapi_aborted = 0;
156 failed_build:
157         return (read_queue_e);
158 }
159
160
161 /*
162  * Build out our readq entry based on the incoming packet.
163  */
164 static struct sctp_queued_to_read *
165 sctp_build_readq_entry_chk(struct sctp_tcb *stcb,
166     struct sctp_tmit_chunk *chk)
167 {
168         struct sctp_queued_to_read *read_queue_e = NULL;
169
170         sctp_alloc_a_readq(stcb, read_queue_e);
171         if (read_queue_e == NULL) {
172                 goto failed_build;
173         }
174         read_queue_e->sinfo_stream = chk->rec.data.stream_number;
175         read_queue_e->sinfo_ssn = chk->rec.data.stream_seq;
176         read_queue_e->sinfo_flags = (chk->rec.data.rcv_flags << 8);
177         read_queue_e->sinfo_ppid = chk->rec.data.payloadtype;
178         read_queue_e->sinfo_context = stcb->asoc.context;
179         read_queue_e->sinfo_timetolive = 0;
180         read_queue_e->sinfo_tsn = chk->rec.data.TSN_seq;
181         read_queue_e->sinfo_cumtsn = chk->rec.data.TSN_seq;
182         read_queue_e->sinfo_assoc_id = sctp_get_associd(stcb);
183         read_queue_e->whoFrom = chk->whoTo;
184         read_queue_e->aux_data = NULL;
185         read_queue_e->length = 0;
186         atomic_add_int(&chk->whoTo->ref_count, 1);
187         read_queue_e->data = chk->data;
188         read_queue_e->tail_mbuf = NULL;
189         read_queue_e->stcb = stcb;
190         read_queue_e->port_from = stcb->rport;
191         read_queue_e->spec_flags = 0;
192         read_queue_e->do_not_ref_stcb = 0;
193         read_queue_e->end_added = 0;
194         read_queue_e->some_taken = 0;
195         read_queue_e->pdapi_aborted = 0;
196 failed_build:
197         return (read_queue_e);
198 }
199
200
201 struct mbuf *
202 sctp_build_ctl_nchunk(struct sctp_inpcb *inp, struct sctp_sndrcvinfo *sinfo)
203 {
204         struct sctp_extrcvinfo *seinfo;
205         struct sctp_sndrcvinfo *outinfo;
206         struct sctp_rcvinfo *rcvinfo;
207         struct sctp_nxtinfo *nxtinfo;
208         struct cmsghdr *cmh;
209         struct mbuf *ret;
210         int len;
211         int use_extended;
212         int provide_nxt;
213
214         if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT) &&
215             sctp_is_feature_off(inp, SCTP_PCB_FLAGS_RECVRCVINFO) &&
216             sctp_is_feature_off(inp, SCTP_PCB_FLAGS_RECVNXTINFO)) {
217                 /* user does not want any ancillary data */
218                 return (NULL);
219         }
220         len = 0;
221         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO)) {
222                 len += CMSG_SPACE(sizeof(struct sctp_rcvinfo));
223         }
224         seinfo = (struct sctp_extrcvinfo *)sinfo;
225         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVNXTINFO) &&
226             (seinfo->sreinfo_next_flags & SCTP_NEXT_MSG_AVAIL)) {
227                 provide_nxt = 1;
228                 len += CMSG_SPACE(sizeof(struct sctp_rcvinfo));
229         } else {
230                 provide_nxt = 0;
231         }
232         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT)) {
233                 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXT_RCVINFO)) {
234                         use_extended = 1;
235                         len += CMSG_SPACE(sizeof(struct sctp_extrcvinfo));
236                 } else {
237                         use_extended = 0;
238                         len += CMSG_SPACE(sizeof(struct sctp_sndrcvinfo));
239                 }
240         } else {
241                 use_extended = 0;
242         }
243
244         ret = sctp_get_mbuf_for_msg(len, 0, M_DONTWAIT, 1, MT_DATA);
245         if (ret == NULL) {
246                 /* No space */
247                 return (ret);
248         }
249         SCTP_BUF_LEN(ret) = 0;
250
251         /* We need a CMSG header followed by the struct */
252         cmh = mtod(ret, struct cmsghdr *);
253         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVRCVINFO)) {
254                 cmh->cmsg_level = IPPROTO_SCTP;
255                 cmh->cmsg_len = CMSG_LEN(sizeof(struct sctp_rcvinfo));
256                 cmh->cmsg_type = SCTP_RCVINFO;
257                 rcvinfo = (struct sctp_rcvinfo *)CMSG_DATA(cmh);
258                 rcvinfo->rcv_sid = sinfo->sinfo_stream;
259                 rcvinfo->rcv_ssn = sinfo->sinfo_ssn;
260                 rcvinfo->rcv_flags = sinfo->sinfo_flags;
261                 rcvinfo->rcv_ppid = sinfo->sinfo_ppid;
262                 rcvinfo->rcv_tsn = sinfo->sinfo_tsn;
263                 rcvinfo->rcv_cumtsn = sinfo->sinfo_cumtsn;
264                 rcvinfo->rcv_context = sinfo->sinfo_context;
265                 rcvinfo->rcv_assoc_id = sinfo->sinfo_assoc_id;
266                 cmh = (struct cmsghdr *)((caddr_t)cmh + CMSG_SPACE(sizeof(struct sctp_rcvinfo)));
267                 SCTP_BUF_LEN(ret) += CMSG_SPACE(sizeof(struct sctp_rcvinfo));
268         }
269         if (provide_nxt) {
270                 cmh->cmsg_level = IPPROTO_SCTP;
271                 cmh->cmsg_len = CMSG_LEN(sizeof(struct sctp_nxtinfo));
272                 cmh->cmsg_type = SCTP_NXTINFO;
273                 nxtinfo = (struct sctp_nxtinfo *)CMSG_DATA(cmh);
274                 nxtinfo->nxt_sid = seinfo->sreinfo_next_stream;
275                 nxtinfo->nxt_flags = 0;
276                 if (seinfo->sreinfo_next_flags & SCTP_NEXT_MSG_IS_UNORDERED) {
277                         nxtinfo->nxt_flags |= SCTP_UNORDERED;
278                 }
279                 if (seinfo->sreinfo_next_flags & SCTP_NEXT_MSG_IS_NOTIFICATION) {
280                         nxtinfo->nxt_flags |= SCTP_NOTIFICATION;
281                 }
282                 if (seinfo->sreinfo_next_flags & SCTP_NEXT_MSG_ISCOMPLETE) {
283                         nxtinfo->nxt_flags |= SCTP_COMPLETE;
284                 }
285                 nxtinfo->nxt_ppid = seinfo->sreinfo_next_ppid;
286                 nxtinfo->nxt_length = seinfo->sreinfo_next_length;
287                 nxtinfo->nxt_assoc_id = seinfo->sreinfo_next_aid;
288                 cmh = (struct cmsghdr *)((caddr_t)cmh + CMSG_SPACE(sizeof(struct sctp_nxtinfo)));
289                 SCTP_BUF_LEN(ret) += CMSG_SPACE(sizeof(struct sctp_nxtinfo));
290         }
291         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_RECVDATAIOEVNT)) {
292                 cmh->cmsg_level = IPPROTO_SCTP;
293                 outinfo = (struct sctp_sndrcvinfo *)CMSG_DATA(cmh);
294                 if (use_extended) {
295                         cmh->cmsg_len = CMSG_LEN(sizeof(struct sctp_extrcvinfo));
296                         cmh->cmsg_type = SCTP_EXTRCV;
297                         memcpy(outinfo, sinfo, sizeof(struct sctp_extrcvinfo));
298                         SCTP_BUF_LEN(ret) += CMSG_SPACE(sizeof(struct sctp_extrcvinfo));
299                 } else {
300                         cmh->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo));
301                         cmh->cmsg_type = SCTP_SNDRCV;
302                         *outinfo = *sinfo;
303                         SCTP_BUF_LEN(ret) += CMSG_SPACE(sizeof(struct sctp_sndrcvinfo));
304                 }
305         }
306         return (ret);
307 }
308
309
310 static void
311 sctp_mark_non_revokable(struct sctp_association *asoc, uint32_t tsn)
312 {
313         uint32_t gap, i, cumackp1;
314         int fnd = 0;
315
316         if (SCTP_BASE_SYSCTL(sctp_do_drain) == 0) {
317                 return;
318         }
319         cumackp1 = asoc->cumulative_tsn + 1;
320         if (SCTP_TSN_GT(cumackp1, tsn)) {
321                 /*
322                  * this tsn is behind the cum ack and thus we don't need to
323                  * worry about it being moved from one to the other.
324                  */
325                 return;
326         }
327         SCTP_CALC_TSN_TO_GAP(gap, tsn, asoc->mapping_array_base_tsn);
328         if (!SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap)) {
329                 SCTP_PRINTF("gap:%x tsn:%x\n", gap, tsn);
330                 sctp_print_mapping_array(asoc);
331 #ifdef INVARIANTS
332                 panic("Things are really messed up now!!");
333 #endif
334         }
335         SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap);
336         SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap);
337         if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
338                 asoc->highest_tsn_inside_nr_map = tsn;
339         }
340         if (tsn == asoc->highest_tsn_inside_map) {
341                 /* We must back down to see what the new highest is */
342                 for (i = tsn - 1; SCTP_TSN_GE(i, asoc->mapping_array_base_tsn); i--) {
343                         SCTP_CALC_TSN_TO_GAP(gap, i, asoc->mapping_array_base_tsn);
344                         if (SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap)) {
345                                 asoc->highest_tsn_inside_map = i;
346                                 fnd = 1;
347                                 break;
348                         }
349                 }
350                 if (!fnd) {
351                         asoc->highest_tsn_inside_map = asoc->mapping_array_base_tsn - 1;
352                 }
353         }
354 }
355
356
357 /*
358  * We are delivering currently from the reassembly queue. We must continue to
359  * deliver until we either: 1) run out of space. 2) run out of sequential
360  * TSN's 3) hit the SCTP_DATA_LAST_FRAG flag.
361  */
362 static void
363 sctp_service_reassembly(struct sctp_tcb *stcb, struct sctp_association *asoc)
364 {
365         struct sctp_tmit_chunk *chk, *nchk;
366         uint16_t nxt_todel;
367         uint16_t stream_no;
368         int end = 0;
369         int cntDel;
370         struct sctp_queued_to_read *control, *ctl, *nctl;
371
372         if (stcb == NULL)
373                 return;
374
375         cntDel = stream_no = 0;
376         if ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
377             (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) ||
378             (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET)) {
379                 /* socket above is long gone or going.. */
380 abandon:
381                 asoc->fragmented_delivery_inprogress = 0;
382                 TAILQ_FOREACH_SAFE(chk, &asoc->reasmqueue, sctp_next, nchk) {
383                         TAILQ_REMOVE(&asoc->reasmqueue, chk, sctp_next);
384                         asoc->size_on_reasm_queue -= chk->send_size;
385                         sctp_ucount_decr(asoc->cnt_on_reasm_queue);
386                         /*
387                          * Lose the data pointer, since its in the socket
388                          * buffer
389                          */
390                         if (chk->data) {
391                                 sctp_m_freem(chk->data);
392                                 chk->data = NULL;
393                         }
394                         /* Now free the address and data */
395                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
396                         /* sa_ignore FREED_MEMORY */
397                 }
398                 return;
399         }
400         SCTP_TCB_LOCK_ASSERT(stcb);
401         TAILQ_FOREACH_SAFE(chk, &asoc->reasmqueue, sctp_next, nchk) {
402                 if (chk->rec.data.TSN_seq != (asoc->tsn_last_delivered + 1)) {
403                         /* Can't deliver more :< */
404                         return;
405                 }
406                 stream_no = chk->rec.data.stream_number;
407                 nxt_todel = asoc->strmin[stream_no].last_sequence_delivered + 1;
408                 if (nxt_todel != chk->rec.data.stream_seq &&
409                     (chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
410                         /*
411                          * Not the next sequence to deliver in its stream OR
412                          * unordered
413                          */
414                         return;
415                 }
416                 if (chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) {
417
418                         control = sctp_build_readq_entry_chk(stcb, chk);
419                         if (control == NULL) {
420                                 /* out of memory? */
421                                 return;
422                         }
423                         /* save it off for our future deliveries */
424                         stcb->asoc.control_pdapi = control;
425                         if (chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG)
426                                 end = 1;
427                         else
428                                 end = 0;
429                         sctp_mark_non_revokable(asoc, chk->rec.data.TSN_seq);
430                         sctp_add_to_readq(stcb->sctp_ep,
431                             stcb, control, &stcb->sctp_socket->so_rcv, end,
432                             SCTP_READ_LOCK_NOT_HELD, SCTP_SO_NOT_LOCKED);
433                         cntDel++;
434                 } else {
435                         if (chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG)
436                                 end = 1;
437                         else
438                                 end = 0;
439                         sctp_mark_non_revokable(asoc, chk->rec.data.TSN_seq);
440                         if (sctp_append_to_readq(stcb->sctp_ep, stcb,
441                             stcb->asoc.control_pdapi,
442                             chk->data, end, chk->rec.data.TSN_seq,
443                             &stcb->sctp_socket->so_rcv)) {
444                                 /*
445                                  * something is very wrong, either
446                                  * control_pdapi is NULL, or the tail_mbuf
447                                  * is corrupt, or there is a EOM already on
448                                  * the mbuf chain.
449                                  */
450                                 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) {
451                                         goto abandon;
452                                 } else {
453 #ifdef INVARIANTS
454                                         if ((stcb->asoc.control_pdapi == NULL) || (stcb->asoc.control_pdapi->tail_mbuf == NULL)) {
455                                                 panic("This should not happen control_pdapi NULL?");
456                                         }
457                                         /* if we did not panic, it was a EOM */
458                                         panic("Bad chunking ??");
459 #else
460                                         if ((stcb->asoc.control_pdapi == NULL) || (stcb->asoc.control_pdapi->tail_mbuf == NULL)) {
461                                                 SCTP_PRINTF("This should not happen control_pdapi NULL?\n");
462                                         }
463                                         SCTP_PRINTF("Bad chunking ??\n");
464                                         SCTP_PRINTF("Dumping re-assembly queue this will probably hose the association\n");
465
466 #endif
467                                         goto abandon;
468                                 }
469                         }
470                         cntDel++;
471                 }
472                 /* pull it we did it */
473                 TAILQ_REMOVE(&asoc->reasmqueue, chk, sctp_next);
474                 if (chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) {
475                         asoc->fragmented_delivery_inprogress = 0;
476                         if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) {
477                                 asoc->strmin[stream_no].last_sequence_delivered++;
478                         }
479                         if ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0) {
480                                 SCTP_STAT_INCR_COUNTER64(sctps_reasmusrmsgs);
481                         }
482                 } else if (chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) {
483                         /*
484                          * turn the flag back on since we just  delivered
485                          * yet another one.
486                          */
487                         asoc->fragmented_delivery_inprogress = 1;
488                 }
489                 asoc->tsn_of_pdapi_last_delivered = chk->rec.data.TSN_seq;
490                 asoc->last_flags_delivered = chk->rec.data.rcv_flags;
491                 asoc->last_strm_seq_delivered = chk->rec.data.stream_seq;
492                 asoc->last_strm_no_delivered = chk->rec.data.stream_number;
493
494                 asoc->tsn_last_delivered = chk->rec.data.TSN_seq;
495                 asoc->size_on_reasm_queue -= chk->send_size;
496                 sctp_ucount_decr(asoc->cnt_on_reasm_queue);
497                 /* free up the chk */
498                 chk->data = NULL;
499                 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
500
501                 if (asoc->fragmented_delivery_inprogress == 0) {
502                         /*
503                          * Now lets see if we can deliver the next one on
504                          * the stream
505                          */
506                         struct sctp_stream_in *strm;
507
508                         strm = &asoc->strmin[stream_no];
509                         nxt_todel = strm->last_sequence_delivered + 1;
510                         TAILQ_FOREACH_SAFE(ctl, &strm->inqueue, next, nctl) {
511                                 /* Deliver more if we can. */
512                                 if (nxt_todel == ctl->sinfo_ssn) {
513                                         TAILQ_REMOVE(&strm->inqueue, ctl, next);
514                                         asoc->size_on_all_streams -= ctl->length;
515                                         sctp_ucount_decr(asoc->cnt_on_all_streams);
516                                         strm->last_sequence_delivered++;
517                                         sctp_mark_non_revokable(asoc, ctl->sinfo_tsn);
518                                         sctp_add_to_readq(stcb->sctp_ep, stcb,
519                                             ctl,
520                                             &stcb->sctp_socket->so_rcv, 1,
521                                             SCTP_READ_LOCK_NOT_HELD, SCTP_SO_NOT_LOCKED);
522                                 } else {
523                                         break;
524                                 }
525                                 nxt_todel = strm->last_sequence_delivered + 1;
526                         }
527                         break;
528                 }
529         }
530 }
531
532 /*
533  * Queue the chunk either right into the socket buffer if it is the next one
534  * to go OR put it in the correct place in the delivery queue.  If we do
535  * append to the so_buf, keep doing so until we are out of order. One big
536  * question still remains, what to do when the socket buffer is FULL??
537  */
538 static void
539 sctp_queue_data_to_stream(struct sctp_tcb *stcb, struct sctp_association *asoc,
540     struct sctp_queued_to_read *control, int *abort_flag)
541 {
542         /*
543          * FIX-ME maybe? What happens when the ssn wraps? If we are getting
544          * all the data in one stream this could happen quite rapidly. One
545          * could use the TSN to keep track of things, but this scheme breaks
546          * down in the other type of stream useage that could occur. Send a
547          * single msg to stream 0, send 4Billion messages to stream 1, now
548          * send a message to stream 0. You have a situation where the TSN
549          * has wrapped but not in the stream. Is this worth worrying about
550          * or should we just change our queue sort at the bottom to be by
551          * TSN.
552          * 
553          * Could it also be legal for a peer to send ssn 1 with TSN 2 and ssn 2
554          * with TSN 1? If the peer is doing some sort of funky TSN/SSN
555          * assignment this could happen... and I don't see how this would be
556          * a violation. So for now I am undecided an will leave the sort by
557          * SSN alone. Maybe a hybred approach is the answer
558          * 
559          */
560         struct sctp_stream_in *strm;
561         struct sctp_queued_to_read *at;
562         int queue_needed;
563         uint16_t nxt_todel;
564         struct mbuf *oper;
565
566         queue_needed = 1;
567         asoc->size_on_all_streams += control->length;
568         sctp_ucount_incr(asoc->cnt_on_all_streams);
569         strm = &asoc->strmin[control->sinfo_stream];
570         nxt_todel = strm->last_sequence_delivered + 1;
571         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
572                 sctp_log_strm_del(control, NULL, SCTP_STR_LOG_FROM_INTO_STRD);
573         }
574         SCTPDBG(SCTP_DEBUG_INDATA1,
575             "queue to stream called for ssn:%u lastdel:%u nxt:%u\n",
576             (uint32_t) control->sinfo_stream,
577             (uint32_t) strm->last_sequence_delivered,
578             (uint32_t) nxt_todel);
579         if (SCTP_SSN_GE(strm->last_sequence_delivered, control->sinfo_ssn)) {
580                 /* The incoming sseq is behind where we last delivered? */
581                 SCTPDBG(SCTP_DEBUG_INDATA1, "Duplicate S-SEQ:%d delivered:%d from peer, Abort  association\n",
582                     control->sinfo_ssn, strm->last_sequence_delivered);
583 protocol_error:
584                 /*
585                  * throw it in the stream so it gets cleaned up in
586                  * association destruction
587                  */
588                 TAILQ_INSERT_HEAD(&strm->inqueue, control, next);
589                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
590                     0, M_DONTWAIT, 1, MT_DATA);
591                 if (oper) {
592                         struct sctp_paramhdr *ph;
593                         uint32_t *ippp;
594
595                         SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
596                             (sizeof(uint32_t) * 3);
597                         ph = mtod(oper, struct sctp_paramhdr *);
598                         ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
599                         ph->param_length = htons(SCTP_BUF_LEN(oper));
600                         ippp = (uint32_t *) (ph + 1);
601                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_1);
602                         ippp++;
603                         *ippp = control->sinfo_tsn;
604                         ippp++;
605                         *ippp = ((control->sinfo_stream << 16) | control->sinfo_ssn);
606                 }
607                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_1;
608                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
609                 *abort_flag = 1;
610                 return;
611
612         }
613         if (nxt_todel == control->sinfo_ssn) {
614                 /* can be delivered right away? */
615                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
616                         sctp_log_strm_del(control, NULL, SCTP_STR_LOG_FROM_IMMED_DEL);
617                 }
618                 /* EY it wont be queued if it could be delivered directly */
619                 queue_needed = 0;
620                 asoc->size_on_all_streams -= control->length;
621                 sctp_ucount_decr(asoc->cnt_on_all_streams);
622                 strm->last_sequence_delivered++;
623
624                 sctp_mark_non_revokable(asoc, control->sinfo_tsn);
625                 sctp_add_to_readq(stcb->sctp_ep, stcb,
626                     control,
627                     &stcb->sctp_socket->so_rcv, 1,
628                     SCTP_READ_LOCK_NOT_HELD, SCTP_SO_NOT_LOCKED);
629                 TAILQ_FOREACH_SAFE(control, &strm->inqueue, next, at) {
630                         /* all delivered */
631                         nxt_todel = strm->last_sequence_delivered + 1;
632                         if (nxt_todel == control->sinfo_ssn) {
633                                 TAILQ_REMOVE(&strm->inqueue, control, next);
634                                 asoc->size_on_all_streams -= control->length;
635                                 sctp_ucount_decr(asoc->cnt_on_all_streams);
636                                 strm->last_sequence_delivered++;
637                                 /*
638                                  * We ignore the return of deliver_data here
639                                  * since we always can hold the chunk on the
640                                  * d-queue. And we have a finite number that
641                                  * can be delivered from the strq.
642                                  */
643                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
644                                         sctp_log_strm_del(control, NULL,
645                                             SCTP_STR_LOG_FROM_IMMED_DEL);
646                                 }
647                                 sctp_mark_non_revokable(asoc, control->sinfo_tsn);
648                                 sctp_add_to_readq(stcb->sctp_ep, stcb,
649                                     control,
650                                     &stcb->sctp_socket->so_rcv, 1,
651                                     SCTP_READ_LOCK_NOT_HELD,
652                                     SCTP_SO_NOT_LOCKED);
653                                 continue;
654                         }
655                         break;
656                 }
657         }
658         if (queue_needed) {
659                 /*
660                  * Ok, we did not deliver this guy, find the correct place
661                  * to put it on the queue.
662                  */
663                 if (SCTP_TSN_GE(asoc->cumulative_tsn, control->sinfo_tsn)) {
664                         goto protocol_error;
665                 }
666                 if (TAILQ_EMPTY(&strm->inqueue)) {
667                         /* Empty queue */
668                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
669                                 sctp_log_strm_del(control, NULL, SCTP_STR_LOG_FROM_INSERT_HD);
670                         }
671                         TAILQ_INSERT_HEAD(&strm->inqueue, control, next);
672                 } else {
673                         TAILQ_FOREACH(at, &strm->inqueue, next) {
674                                 if (SCTP_SSN_GT(at->sinfo_ssn, control->sinfo_ssn)) {
675                                         /*
676                                          * one in queue is bigger than the
677                                          * new one, insert before this one
678                                          */
679                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
680                                                 sctp_log_strm_del(control, at,
681                                                     SCTP_STR_LOG_FROM_INSERT_MD);
682                                         }
683                                         TAILQ_INSERT_BEFORE(at, control, next);
684                                         break;
685                                 } else if (at->sinfo_ssn == control->sinfo_ssn) {
686                                         /*
687                                          * Gak, He sent me a duplicate str
688                                          * seq number
689                                          */
690                                         /*
691                                          * foo bar, I guess I will just free
692                                          * this new guy, should we abort
693                                          * too? FIX ME MAYBE? Or it COULD be
694                                          * that the SSN's have wrapped.
695                                          * Maybe I should compare to TSN
696                                          * somehow... sigh for now just blow
697                                          * away the chunk!
698                                          */
699
700                                         if (control->data)
701                                                 sctp_m_freem(control->data);
702                                         control->data = NULL;
703                                         asoc->size_on_all_streams -= control->length;
704                                         sctp_ucount_decr(asoc->cnt_on_all_streams);
705                                         if (control->whoFrom) {
706                                                 sctp_free_remote_addr(control->whoFrom);
707                                                 control->whoFrom = NULL;
708                                         }
709                                         sctp_free_a_readq(stcb, control);
710                                         return;
711                                 } else {
712                                         if (TAILQ_NEXT(at, next) == NULL) {
713                                                 /*
714                                                  * We are at the end, insert
715                                                  * it after this one
716                                                  */
717                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
718                                                         sctp_log_strm_del(control, at,
719                                                             SCTP_STR_LOG_FROM_INSERT_TL);
720                                                 }
721                                                 TAILQ_INSERT_AFTER(&strm->inqueue,
722                                                     at, control, next);
723                                                 break;
724                                         }
725                                 }
726                         }
727                 }
728         }
729 }
730
731 /*
732  * Returns two things: You get the total size of the deliverable parts of the
733  * first fragmented message on the reassembly queue. And you get a 1 back if
734  * all of the message is ready or a 0 back if the message is still incomplete
735  */
736 static int
737 sctp_is_all_msg_on_reasm(struct sctp_association *asoc, uint32_t * t_size)
738 {
739         struct sctp_tmit_chunk *chk;
740         uint32_t tsn;
741
742         *t_size = 0;
743         chk = TAILQ_FIRST(&asoc->reasmqueue);
744         if (chk == NULL) {
745                 /* nothing on the queue */
746                 return (0);
747         }
748         if ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0) {
749                 /* Not a first on the queue */
750                 return (0);
751         }
752         tsn = chk->rec.data.TSN_seq;
753         TAILQ_FOREACH(chk, &asoc->reasmqueue, sctp_next) {
754                 if (tsn != chk->rec.data.TSN_seq) {
755                         return (0);
756                 }
757                 *t_size += chk->send_size;
758                 if (chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) {
759                         return (1);
760                 }
761                 tsn++;
762         }
763         return (0);
764 }
765
766 static void
767 sctp_deliver_reasm_check(struct sctp_tcb *stcb, struct sctp_association *asoc)
768 {
769         struct sctp_tmit_chunk *chk;
770         uint16_t nxt_todel;
771         uint32_t tsize, pd_point;
772
773 doit_again:
774         chk = TAILQ_FIRST(&asoc->reasmqueue);
775         if (chk == NULL) {
776                 /* Huh? */
777                 asoc->size_on_reasm_queue = 0;
778                 asoc->cnt_on_reasm_queue = 0;
779                 return;
780         }
781         if (asoc->fragmented_delivery_inprogress == 0) {
782                 nxt_todel =
783                     asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered + 1;
784                 if ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) &&
785                     (nxt_todel == chk->rec.data.stream_seq ||
786                     (chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED))) {
787                         /*
788                          * Yep the first one is here and its ok to deliver
789                          * but should we?
790                          */
791                         if (stcb->sctp_socket) {
792                                 pd_point = min(SCTP_SB_LIMIT_RCV(stcb->sctp_socket),
793                                     stcb->sctp_ep->partial_delivery_point);
794                         } else {
795                                 pd_point = stcb->sctp_ep->partial_delivery_point;
796                         }
797                         if (sctp_is_all_msg_on_reasm(asoc, &tsize) || (tsize >= pd_point)) {
798
799                                 /*
800                                  * Yes, we setup to start reception, by
801                                  * backing down the TSN just in case we
802                                  * can't deliver. If we
803                                  */
804                                 asoc->fragmented_delivery_inprogress = 1;
805                                 asoc->tsn_last_delivered =
806                                     chk->rec.data.TSN_seq - 1;
807                                 asoc->str_of_pdapi =
808                                     chk->rec.data.stream_number;
809                                 asoc->ssn_of_pdapi = chk->rec.data.stream_seq;
810                                 asoc->pdapi_ppid = chk->rec.data.payloadtype;
811                                 asoc->fragment_flags = chk->rec.data.rcv_flags;
812                                 sctp_service_reassembly(stcb, asoc);
813                         }
814                 }
815         } else {
816                 /*
817                  * Service re-assembly will deliver stream data queued at
818                  * the end of fragmented delivery.. but it wont know to go
819                  * back and call itself again... we do that here with the
820                  * got doit_again
821                  */
822                 sctp_service_reassembly(stcb, asoc);
823                 if (asoc->fragmented_delivery_inprogress == 0) {
824                         /*
825                          * finished our Fragmented delivery, could be more
826                          * waiting?
827                          */
828                         goto doit_again;
829                 }
830         }
831 }
832
833 /*
834  * Dump onto the re-assembly queue, in its proper place. After dumping on the
835  * queue, see if anthing can be delivered. If so pull it off (or as much as
836  * we can. If we run out of space then we must dump what we can and set the
837  * appropriate flag to say we queued what we could.
838  */
839 static void
840 sctp_queue_data_for_reasm(struct sctp_tcb *stcb, struct sctp_association *asoc,
841     struct sctp_tmit_chunk *chk, int *abort_flag)
842 {
843         struct mbuf *oper;
844         uint32_t cum_ackp1, prev_tsn, post_tsn;
845         struct sctp_tmit_chunk *at, *prev, *next;
846
847         prev = next = NULL;
848         cum_ackp1 = asoc->tsn_last_delivered + 1;
849         if (TAILQ_EMPTY(&asoc->reasmqueue)) {
850                 /* This is the first one on the queue */
851                 TAILQ_INSERT_HEAD(&asoc->reasmqueue, chk, sctp_next);
852                 /*
853                  * we do not check for delivery of anything when only one
854                  * fragment is here
855                  */
856                 asoc->size_on_reasm_queue = chk->send_size;
857                 sctp_ucount_incr(asoc->cnt_on_reasm_queue);
858                 if (chk->rec.data.TSN_seq == cum_ackp1) {
859                         if (asoc->fragmented_delivery_inprogress == 0 &&
860                             (chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) !=
861                             SCTP_DATA_FIRST_FRAG) {
862                                 /*
863                                  * An empty queue, no delivery inprogress,
864                                  * we hit the next one and it does NOT have
865                                  * a FIRST fragment mark.
866                                  */
867                                 SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, its not first, no fragmented delivery in progress\n");
868                                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
869                                     0, M_DONTWAIT, 1, MT_DATA);
870
871                                 if (oper) {
872                                         struct sctp_paramhdr *ph;
873                                         uint32_t *ippp;
874
875                                         SCTP_BUF_LEN(oper) =
876                                             sizeof(struct sctp_paramhdr) +
877                                             (sizeof(uint32_t) * 3);
878                                         ph = mtod(oper, struct sctp_paramhdr *);
879                                         ph->param_type =
880                                             htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
881                                         ph->param_length = htons(SCTP_BUF_LEN(oper));
882                                         ippp = (uint32_t *) (ph + 1);
883                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_2);
884                                         ippp++;
885                                         *ippp = chk->rec.data.TSN_seq;
886                                         ippp++;
887                                         *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
888
889                                 }
890                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_2;
891                                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
892                                 *abort_flag = 1;
893                         } else if (asoc->fragmented_delivery_inprogress &&
894                             (chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == SCTP_DATA_FIRST_FRAG) {
895                                 /*
896                                  * We are doing a partial delivery and the
897                                  * NEXT chunk MUST be either the LAST or
898                                  * MIDDLE fragment NOT a FIRST
899                                  */
900                                 SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, it IS a first and fragmented delivery in progress\n");
901                                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
902                                     0, M_DONTWAIT, 1, MT_DATA);
903                                 if (oper) {
904                                         struct sctp_paramhdr *ph;
905                                         uint32_t *ippp;
906
907                                         SCTP_BUF_LEN(oper) =
908                                             sizeof(struct sctp_paramhdr) +
909                                             (3 * sizeof(uint32_t));
910                                         ph = mtod(oper, struct sctp_paramhdr *);
911                                         ph->param_type =
912                                             htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
913                                         ph->param_length = htons(SCTP_BUF_LEN(oper));
914                                         ippp = (uint32_t *) (ph + 1);
915                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_3);
916                                         ippp++;
917                                         *ippp = chk->rec.data.TSN_seq;
918                                         ippp++;
919                                         *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
920                                 }
921                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_3;
922                                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
923                                 *abort_flag = 1;
924                         } else if (asoc->fragmented_delivery_inprogress) {
925                                 /*
926                                  * Here we are ok with a MIDDLE or LAST
927                                  * piece
928                                  */
929                                 if (chk->rec.data.stream_number !=
930                                     asoc->str_of_pdapi) {
931                                         /* Got to be the right STR No */
932                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, it IS not same stream number %d vs %d\n",
933                                             chk->rec.data.stream_number,
934                                             asoc->str_of_pdapi);
935                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
936                                             0, M_DONTWAIT, 1, MT_DATA);
937                                         if (oper) {
938                                                 struct sctp_paramhdr *ph;
939                                                 uint32_t *ippp;
940
941                                                 SCTP_BUF_LEN(oper) =
942                                                     sizeof(struct sctp_paramhdr) +
943                                                     (sizeof(uint32_t) * 3);
944                                                 ph = mtod(oper,
945                                                     struct sctp_paramhdr *);
946                                                 ph->param_type =
947                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
948                                                 ph->param_length =
949                                                     htons(SCTP_BUF_LEN(oper));
950                                                 ippp = (uint32_t *) (ph + 1);
951                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_4);
952                                                 ippp++;
953                                                 *ippp = chk->rec.data.TSN_seq;
954                                                 ippp++;
955                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
956                                         }
957                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_4;
958                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
959                                         *abort_flag = 1;
960                                 } else if ((asoc->fragment_flags & SCTP_DATA_UNORDERED) !=
961                                             SCTP_DATA_UNORDERED &&
962                                     chk->rec.data.stream_seq != asoc->ssn_of_pdapi) {
963                                         /* Got to be the right STR Seq */
964                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, it IS not same stream seq %d vs %d\n",
965                                             chk->rec.data.stream_seq,
966                                             asoc->ssn_of_pdapi);
967                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
968                                             0, M_DONTWAIT, 1, MT_DATA);
969                                         if (oper) {
970                                                 struct sctp_paramhdr *ph;
971                                                 uint32_t *ippp;
972
973                                                 SCTP_BUF_LEN(oper) =
974                                                     sizeof(struct sctp_paramhdr) +
975                                                     (3 * sizeof(uint32_t));
976                                                 ph = mtod(oper,
977                                                     struct sctp_paramhdr *);
978                                                 ph->param_type =
979                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
980                                                 ph->param_length =
981                                                     htons(SCTP_BUF_LEN(oper));
982                                                 ippp = (uint32_t *) (ph + 1);
983                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_5);
984                                                 ippp++;
985                                                 *ippp = chk->rec.data.TSN_seq;
986                                                 ippp++;
987                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
988
989                                         }
990                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_5;
991                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
992                                         *abort_flag = 1;
993                                 }
994                         }
995                 }
996                 return;
997         }
998         /* Find its place */
999         TAILQ_FOREACH(at, &asoc->reasmqueue, sctp_next) {
1000                 if (SCTP_TSN_GT(at->rec.data.TSN_seq, chk->rec.data.TSN_seq)) {
1001                         /*
1002                          * one in queue is bigger than the new one, insert
1003                          * before this one
1004                          */
1005                         /* A check */
1006                         asoc->size_on_reasm_queue += chk->send_size;
1007                         sctp_ucount_incr(asoc->cnt_on_reasm_queue);
1008                         next = at;
1009                         TAILQ_INSERT_BEFORE(at, chk, sctp_next);
1010                         break;
1011                 } else if (at->rec.data.TSN_seq == chk->rec.data.TSN_seq) {
1012                         /* Gak, He sent me a duplicate str seq number */
1013                         /*
1014                          * foo bar, I guess I will just free this new guy,
1015                          * should we abort too? FIX ME MAYBE? Or it COULD be
1016                          * that the SSN's have wrapped. Maybe I should
1017                          * compare to TSN somehow... sigh for now just blow
1018                          * away the chunk!
1019                          */
1020                         if (chk->data) {
1021                                 sctp_m_freem(chk->data);
1022                                 chk->data = NULL;
1023                         }
1024                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
1025                         return;
1026                 } else {
1027                         prev = at;
1028                         if (TAILQ_NEXT(at, sctp_next) == NULL) {
1029                                 /*
1030                                  * We are at the end, insert it after this
1031                                  * one
1032                                  */
1033                                 /* check it first */
1034                                 asoc->size_on_reasm_queue += chk->send_size;
1035                                 sctp_ucount_incr(asoc->cnt_on_reasm_queue);
1036                                 TAILQ_INSERT_AFTER(&asoc->reasmqueue, at, chk, sctp_next);
1037                                 break;
1038                         }
1039                 }
1040         }
1041         /* Now the audits */
1042         if (prev) {
1043                 prev_tsn = chk->rec.data.TSN_seq - 1;
1044                 if (prev_tsn == prev->rec.data.TSN_seq) {
1045                         /*
1046                          * Ok the one I am dropping onto the end is the
1047                          * NEXT. A bit of valdiation here.
1048                          */
1049                         if ((prev->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1050                             SCTP_DATA_FIRST_FRAG ||
1051                             (prev->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1052                             SCTP_DATA_MIDDLE_FRAG) {
1053                                 /*
1054                                  * Insert chk MUST be a MIDDLE or LAST
1055                                  * fragment
1056                                  */
1057                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1058                                     SCTP_DATA_FIRST_FRAG) {
1059                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Prev check - It can be a midlle or last but not a first\n");
1060                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, it's a FIRST!\n");
1061                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1062                                             0, M_DONTWAIT, 1, MT_DATA);
1063                                         if (oper) {
1064                                                 struct sctp_paramhdr *ph;
1065                                                 uint32_t *ippp;
1066
1067                                                 SCTP_BUF_LEN(oper) =
1068                                                     sizeof(struct sctp_paramhdr) +
1069                                                     (3 * sizeof(uint32_t));
1070                                                 ph = mtod(oper,
1071                                                     struct sctp_paramhdr *);
1072                                                 ph->param_type =
1073                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1074                                                 ph->param_length =
1075                                                     htons(SCTP_BUF_LEN(oper));
1076                                                 ippp = (uint32_t *) (ph + 1);
1077                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_6);
1078                                                 ippp++;
1079                                                 *ippp = chk->rec.data.TSN_seq;
1080                                                 ippp++;
1081                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1082
1083                                         }
1084                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_6;
1085                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1086                                         *abort_flag = 1;
1087                                         return;
1088                                 }
1089                                 if (chk->rec.data.stream_number !=
1090                                     prev->rec.data.stream_number) {
1091                                         /*
1092                                          * Huh, need the correct STR here,
1093                                          * they must be the same.
1094                                          */
1095                                         SCTP_PRINTF("Prev check - Gak, Evil plot, ssn:%d not the same as at:%d\n",
1096                                             chk->rec.data.stream_number,
1097                                             prev->rec.data.stream_number);
1098                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1099                                             0, M_DONTWAIT, 1, MT_DATA);
1100                                         if (oper) {
1101                                                 struct sctp_paramhdr *ph;
1102                                                 uint32_t *ippp;
1103
1104                                                 SCTP_BUF_LEN(oper) =
1105                                                     sizeof(struct sctp_paramhdr) +
1106                                                     (3 * sizeof(uint32_t));
1107                                                 ph = mtod(oper,
1108                                                     struct sctp_paramhdr *);
1109                                                 ph->param_type =
1110                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1111                                                 ph->param_length =
1112                                                     htons(SCTP_BUF_LEN(oper));
1113                                                 ippp = (uint32_t *) (ph + 1);
1114                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_7);
1115                                                 ippp++;
1116                                                 *ippp = chk->rec.data.TSN_seq;
1117                                                 ippp++;
1118                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1119                                         }
1120                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_7;
1121                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1122                                         *abort_flag = 1;
1123                                         return;
1124                                 }
1125                                 if ((prev->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0 &&
1126                                     chk->rec.data.stream_seq !=
1127                                     prev->rec.data.stream_seq) {
1128                                         /*
1129                                          * Huh, need the correct STR here,
1130                                          * they must be the same.
1131                                          */
1132                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Prev check - Gak, Evil plot, sseq:%d not the same as at:%d\n",
1133                                             chk->rec.data.stream_seq,
1134                                             prev->rec.data.stream_seq);
1135                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1136                                             0, M_DONTWAIT, 1, MT_DATA);
1137                                         if (oper) {
1138                                                 struct sctp_paramhdr *ph;
1139                                                 uint32_t *ippp;
1140
1141                                                 SCTP_BUF_LEN(oper) =
1142                                                     sizeof(struct sctp_paramhdr) +
1143                                                     (3 * sizeof(uint32_t));
1144                                                 ph = mtod(oper,
1145                                                     struct sctp_paramhdr *);
1146                                                 ph->param_type =
1147                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1148                                                 ph->param_length =
1149                                                     htons(SCTP_BUF_LEN(oper));
1150                                                 ippp = (uint32_t *) (ph + 1);
1151                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_8);
1152                                                 ippp++;
1153                                                 *ippp = chk->rec.data.TSN_seq;
1154                                                 ippp++;
1155                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1156                                         }
1157                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_8;
1158                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1159                                         *abort_flag = 1;
1160                                         return;
1161                                 }
1162                         } else if ((prev->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1163                             SCTP_DATA_LAST_FRAG) {
1164                                 /* Insert chk MUST be a FIRST */
1165                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) !=
1166                                     SCTP_DATA_FIRST_FRAG) {
1167                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Prev check - Gak, evil plot, its not FIRST and it must be!\n");
1168                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1169                                             0, M_DONTWAIT, 1, MT_DATA);
1170                                         if (oper) {
1171                                                 struct sctp_paramhdr *ph;
1172                                                 uint32_t *ippp;
1173
1174                                                 SCTP_BUF_LEN(oper) =
1175                                                     sizeof(struct sctp_paramhdr) +
1176                                                     (3 * sizeof(uint32_t));
1177                                                 ph = mtod(oper,
1178                                                     struct sctp_paramhdr *);
1179                                                 ph->param_type =
1180                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1181                                                 ph->param_length =
1182                                                     htons(SCTP_BUF_LEN(oper));
1183                                                 ippp = (uint32_t *) (ph + 1);
1184                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_9);
1185                                                 ippp++;
1186                                                 *ippp = chk->rec.data.TSN_seq;
1187                                                 ippp++;
1188                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1189
1190                                         }
1191                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_9;
1192                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1193                                         *abort_flag = 1;
1194                                         return;
1195                                 }
1196                         }
1197                 }
1198         }
1199         if (next) {
1200                 post_tsn = chk->rec.data.TSN_seq + 1;
1201                 if (post_tsn == next->rec.data.TSN_seq) {
1202                         /*
1203                          * Ok the one I am inserting ahead of is my NEXT
1204                          * one. A bit of valdiation here.
1205                          */
1206                         if (next->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) {
1207                                 /* Insert chk MUST be a last fragment */
1208                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK)
1209                                     != SCTP_DATA_LAST_FRAG) {
1210                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Next chk - Next is FIRST, we must be LAST\n");
1211                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, its not a last!\n");
1212                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1213                                             0, M_DONTWAIT, 1, MT_DATA);
1214                                         if (oper) {
1215                                                 struct sctp_paramhdr *ph;
1216                                                 uint32_t *ippp;
1217
1218                                                 SCTP_BUF_LEN(oper) =
1219                                                     sizeof(struct sctp_paramhdr) +
1220                                                     (3 * sizeof(uint32_t));
1221                                                 ph = mtod(oper,
1222                                                     struct sctp_paramhdr *);
1223                                                 ph->param_type =
1224                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1225                                                 ph->param_length =
1226                                                     htons(SCTP_BUF_LEN(oper));
1227                                                 ippp = (uint32_t *) (ph + 1);
1228                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_10);
1229                                                 ippp++;
1230                                                 *ippp = chk->rec.data.TSN_seq;
1231                                                 ippp++;
1232                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1233                                         }
1234                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_10;
1235                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1236                                         *abort_flag = 1;
1237                                         return;
1238                                 }
1239                         } else if ((next->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1240                                     SCTP_DATA_MIDDLE_FRAG ||
1241                                     (next->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1242                             SCTP_DATA_LAST_FRAG) {
1243                                 /*
1244                                  * Insert chk CAN be MIDDLE or FIRST NOT
1245                                  * LAST
1246                                  */
1247                                 if ((chk->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) ==
1248                                     SCTP_DATA_LAST_FRAG) {
1249                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Next chk - Next is a MIDDLE/LAST\n");
1250                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Gak, Evil plot, new prev chunk is a LAST\n");
1251                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1252                                             0, M_DONTWAIT, 1, MT_DATA);
1253                                         if (oper) {
1254                                                 struct sctp_paramhdr *ph;
1255                                                 uint32_t *ippp;
1256
1257                                                 SCTP_BUF_LEN(oper) =
1258                                                     sizeof(struct sctp_paramhdr) +
1259                                                     (3 * sizeof(uint32_t));
1260                                                 ph = mtod(oper,
1261                                                     struct sctp_paramhdr *);
1262                                                 ph->param_type =
1263                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1264                                                 ph->param_length =
1265                                                     htons(SCTP_BUF_LEN(oper));
1266                                                 ippp = (uint32_t *) (ph + 1);
1267                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_11);
1268                                                 ippp++;
1269                                                 *ippp = chk->rec.data.TSN_seq;
1270                                                 ippp++;
1271                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1272
1273                                         }
1274                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_11;
1275                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1276                                         *abort_flag = 1;
1277                                         return;
1278                                 }
1279                                 if (chk->rec.data.stream_number !=
1280                                     next->rec.data.stream_number) {
1281                                         /*
1282                                          * Huh, need the correct STR here,
1283                                          * they must be the same.
1284                                          */
1285                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Next chk - Gak, Evil plot, ssn:%d not the same as at:%d\n",
1286                                             chk->rec.data.stream_number,
1287                                             next->rec.data.stream_number);
1288                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1289                                             0, M_DONTWAIT, 1, MT_DATA);
1290                                         if (oper) {
1291                                                 struct sctp_paramhdr *ph;
1292                                                 uint32_t *ippp;
1293
1294                                                 SCTP_BUF_LEN(oper) =
1295                                                     sizeof(struct sctp_paramhdr) +
1296                                                     (3 * sizeof(uint32_t));
1297                                                 ph = mtod(oper,
1298                                                     struct sctp_paramhdr *);
1299                                                 ph->param_type =
1300                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1301                                                 ph->param_length =
1302                                                     htons(SCTP_BUF_LEN(oper));
1303                                                 ippp = (uint32_t *) (ph + 1);
1304                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_12);
1305                                                 ippp++;
1306                                                 *ippp = chk->rec.data.TSN_seq;
1307                                                 ippp++;
1308                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1309
1310                                         }
1311                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_12;
1312                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1313                                         *abort_flag = 1;
1314                                         return;
1315                                 }
1316                                 if ((next->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0 &&
1317                                     chk->rec.data.stream_seq !=
1318                                     next->rec.data.stream_seq) {
1319                                         /*
1320                                          * Huh, need the correct STR here,
1321                                          * they must be the same.
1322                                          */
1323                                         SCTPDBG(SCTP_DEBUG_INDATA1, "Next chk - Gak, Evil plot, sseq:%d not the same as at:%d\n",
1324                                             chk->rec.data.stream_seq,
1325                                             next->rec.data.stream_seq);
1326                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1327                                             0, M_DONTWAIT, 1, MT_DATA);
1328                                         if (oper) {
1329                                                 struct sctp_paramhdr *ph;
1330                                                 uint32_t *ippp;
1331
1332                                                 SCTP_BUF_LEN(oper) =
1333                                                     sizeof(struct sctp_paramhdr) +
1334                                                     (3 * sizeof(uint32_t));
1335                                                 ph = mtod(oper,
1336                                                     struct sctp_paramhdr *);
1337                                                 ph->param_type =
1338                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1339                                                 ph->param_length =
1340                                                     htons(SCTP_BUF_LEN(oper));
1341                                                 ippp = (uint32_t *) (ph + 1);
1342                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_13);
1343                                                 ippp++;
1344                                                 *ippp = chk->rec.data.TSN_seq;
1345                                                 ippp++;
1346                                                 *ippp = ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq);
1347                                         }
1348                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_13;
1349                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1350                                         *abort_flag = 1;
1351                                         return;
1352                                 }
1353                         }
1354                 }
1355         }
1356         /* Do we need to do some delivery? check */
1357         sctp_deliver_reasm_check(stcb, asoc);
1358 }
1359
1360 /*
1361  * This is an unfortunate routine. It checks to make sure a evil guy is not
1362  * stuffing us full of bad packet fragments. A broken peer could also do this
1363  * but this is doubtful. It is to bad I must worry about evil crackers sigh
1364  * :< more cycles.
1365  */
1366 static int
1367 sctp_does_tsn_belong_to_reasm(struct sctp_association *asoc,
1368     uint32_t TSN_seq)
1369 {
1370         struct sctp_tmit_chunk *at;
1371         uint32_t tsn_est;
1372
1373         TAILQ_FOREACH(at, &asoc->reasmqueue, sctp_next) {
1374                 if (SCTP_TSN_GT(TSN_seq, at->rec.data.TSN_seq)) {
1375                         /* is it one bigger? */
1376                         tsn_est = at->rec.data.TSN_seq + 1;
1377                         if (tsn_est == TSN_seq) {
1378                                 /* yep. It better be a last then */
1379                                 if ((at->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) !=
1380                                     SCTP_DATA_LAST_FRAG) {
1381                                         /*
1382                                          * Ok this guy belongs next to a guy
1383                                          * that is NOT last, it should be a
1384                                          * middle/last, not a complete
1385                                          * chunk.
1386                                          */
1387                                         return (1);
1388                                 } else {
1389                                         /*
1390                                          * This guy is ok since its a LAST
1391                                          * and the new chunk is a fully
1392                                          * self- contained one.
1393                                          */
1394                                         return (0);
1395                                 }
1396                         }
1397                 } else if (TSN_seq == at->rec.data.TSN_seq) {
1398                         /* Software error since I have a dup? */
1399                         return (1);
1400                 } else {
1401                         /*
1402                          * Ok, 'at' is larger than new chunk but does it
1403                          * need to be right before it.
1404                          */
1405                         tsn_est = TSN_seq + 1;
1406                         if (tsn_est == at->rec.data.TSN_seq) {
1407                                 /* Yep, It better be a first */
1408                                 if ((at->rec.data.rcv_flags & SCTP_DATA_FRAG_MASK) !=
1409                                     SCTP_DATA_FIRST_FRAG) {
1410                                         return (1);
1411                                 } else {
1412                                         return (0);
1413                                 }
1414                         }
1415                 }
1416         }
1417         return (0);
1418 }
1419
1420
1421 static int
1422 sctp_process_a_data_chunk(struct sctp_tcb *stcb, struct sctp_association *asoc,
1423     struct mbuf **m, int offset, struct sctp_data_chunk *ch, int chk_length,
1424     struct sctp_nets *net, uint32_t * high_tsn, int *abort_flag,
1425     int *break_flag, int last_chunk)
1426 {
1427         /* Process a data chunk */
1428         /* struct sctp_tmit_chunk *chk; */
1429         struct sctp_tmit_chunk *chk;
1430         uint32_t tsn, gap;
1431         struct mbuf *dmbuf;
1432         int the_len;
1433         int need_reasm_check = 0;
1434         uint16_t strmno, strmseq;
1435         struct mbuf *oper;
1436         struct sctp_queued_to_read *control;
1437         int ordered;
1438         uint32_t protocol_id;
1439         uint8_t chunk_flags;
1440         struct sctp_stream_reset_list *liste;
1441
1442         chk = NULL;
1443         tsn = ntohl(ch->dp.tsn);
1444         chunk_flags = ch->ch.chunk_flags;
1445         if ((chunk_flags & SCTP_DATA_SACK_IMMEDIATELY) == SCTP_DATA_SACK_IMMEDIATELY) {
1446                 asoc->send_sack = 1;
1447         }
1448         protocol_id = ch->dp.protocol_id;
1449         ordered = ((chunk_flags & SCTP_DATA_UNORDERED) == 0);
1450         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
1451                 sctp_log_map(tsn, asoc->cumulative_tsn, asoc->highest_tsn_inside_map, SCTP_MAP_TSN_ENTERS);
1452         }
1453         if (stcb == NULL) {
1454                 return (0);
1455         }
1456         SCTP_LTRACE_CHK(stcb->sctp_ep, stcb, ch->ch.chunk_type, tsn);
1457         if (SCTP_TSN_GE(asoc->cumulative_tsn, tsn)) {
1458                 /* It is a duplicate */
1459                 SCTP_STAT_INCR(sctps_recvdupdata);
1460                 if (asoc->numduptsns < SCTP_MAX_DUP_TSNS) {
1461                         /* Record a dup for the next outbound sack */
1462                         asoc->dup_tsns[asoc->numduptsns] = tsn;
1463                         asoc->numduptsns++;
1464                 }
1465                 asoc->send_sack = 1;
1466                 return (0);
1467         }
1468         /* Calculate the number of TSN's between the base and this TSN */
1469         SCTP_CALC_TSN_TO_GAP(gap, tsn, asoc->mapping_array_base_tsn);
1470         if (gap >= (SCTP_MAPPING_ARRAY << 3)) {
1471                 /* Can't hold the bit in the mapping at max array, toss it */
1472                 return (0);
1473         }
1474         if (gap >= (uint32_t) (asoc->mapping_array_size << 3)) {
1475                 SCTP_TCB_LOCK_ASSERT(stcb);
1476                 if (sctp_expand_mapping_array(asoc, gap)) {
1477                         /* Can't expand, drop it */
1478                         return (0);
1479                 }
1480         }
1481         if (SCTP_TSN_GT(tsn, *high_tsn)) {
1482                 *high_tsn = tsn;
1483         }
1484         /* See if we have received this one already */
1485         if (SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap) ||
1486             SCTP_IS_TSN_PRESENT(asoc->nr_mapping_array, gap)) {
1487                 SCTP_STAT_INCR(sctps_recvdupdata);
1488                 if (asoc->numduptsns < SCTP_MAX_DUP_TSNS) {
1489                         /* Record a dup for the next outbound sack */
1490                         asoc->dup_tsns[asoc->numduptsns] = tsn;
1491                         asoc->numduptsns++;
1492                 }
1493                 asoc->send_sack = 1;
1494                 return (0);
1495         }
1496         /*
1497          * Check to see about the GONE flag, duplicates would cause a sack
1498          * to be sent up above
1499          */
1500         if (((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) ||
1501             (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE) ||
1502             (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET))
1503             ) {
1504                 /*
1505                  * wait a minute, this guy is gone, there is no longer a
1506                  * receiver. Send peer an ABORT!
1507                  */
1508                 struct mbuf *op_err;
1509
1510                 op_err = sctp_generate_invmanparam(SCTP_CAUSE_OUT_OF_RESC);
1511                 sctp_abort_an_association(stcb->sctp_ep, stcb, op_err, SCTP_SO_NOT_LOCKED);
1512                 *abort_flag = 1;
1513                 return (0);
1514         }
1515         /*
1516          * Now before going further we see if there is room. If NOT then we
1517          * MAY let one through only IF this TSN is the one we are waiting
1518          * for on a partial delivery API.
1519          */
1520
1521         /* now do the tests */
1522         if (((asoc->cnt_on_all_streams +
1523             asoc->cnt_on_reasm_queue +
1524             asoc->cnt_msg_on_sb) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)) ||
1525             (((int)asoc->my_rwnd) <= 0)) {
1526                 /*
1527                  * When we have NO room in the rwnd we check to make sure
1528                  * the reader is doing its job...
1529                  */
1530                 if (stcb->sctp_socket->so_rcv.sb_cc) {
1531                         /* some to read, wake-up */
1532 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
1533                         struct socket *so;
1534
1535                         so = SCTP_INP_SO(stcb->sctp_ep);
1536                         atomic_add_int(&stcb->asoc.refcnt, 1);
1537                         SCTP_TCB_UNLOCK(stcb);
1538                         SCTP_SOCKET_LOCK(so, 1);
1539                         SCTP_TCB_LOCK(stcb);
1540                         atomic_subtract_int(&stcb->asoc.refcnt, 1);
1541                         if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
1542                                 /* assoc was freed while we were unlocked */
1543                                 SCTP_SOCKET_UNLOCK(so, 1);
1544                                 return (0);
1545                         }
1546 #endif
1547                         sctp_sorwakeup(stcb->sctp_ep, stcb->sctp_socket);
1548 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
1549                         SCTP_SOCKET_UNLOCK(so, 1);
1550 #endif
1551                 }
1552                 /* now is it in the mapping array of what we have accepted? */
1553                 if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_map) &&
1554                     SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
1555                         /* Nope not in the valid range dump it */
1556                         sctp_set_rwnd(stcb, asoc);
1557                         if ((asoc->cnt_on_all_streams +
1558                             asoc->cnt_on_reasm_queue +
1559                             asoc->cnt_msg_on_sb) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)) {
1560                                 SCTP_STAT_INCR(sctps_datadropchklmt);
1561                         } else {
1562                                 SCTP_STAT_INCR(sctps_datadroprwnd);
1563                         }
1564                         *break_flag = 1;
1565                         return (0);
1566                 }
1567         }
1568         strmno = ntohs(ch->dp.stream_id);
1569         if (strmno >= asoc->streamincnt) {
1570                 struct sctp_paramhdr *phdr;
1571                 struct mbuf *mb;
1572
1573                 mb = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) * 2),
1574                     0, M_DONTWAIT, 1, MT_DATA);
1575                 if (mb != NULL) {
1576                         /* add some space up front so prepend will work well */
1577                         SCTP_BUF_RESV_UF(mb, sizeof(struct sctp_chunkhdr));
1578                         phdr = mtod(mb, struct sctp_paramhdr *);
1579                         /*
1580                          * Error causes are just param's and this one has
1581                          * two back to back phdr, one with the error type
1582                          * and size, the other with the streamid and a rsvd
1583                          */
1584                         SCTP_BUF_LEN(mb) = (sizeof(struct sctp_paramhdr) * 2);
1585                         phdr->param_type = htons(SCTP_CAUSE_INVALID_STREAM);
1586                         phdr->param_length =
1587                             htons(sizeof(struct sctp_paramhdr) * 2);
1588                         phdr++;
1589                         /* We insert the stream in the type field */
1590                         phdr->param_type = ch->dp.stream_id;
1591                         /* And set the length to 0 for the rsvd field */
1592                         phdr->param_length = 0;
1593                         sctp_queue_op_err(stcb, mb);
1594                 }
1595                 SCTP_STAT_INCR(sctps_badsid);
1596                 SCTP_TCB_LOCK_ASSERT(stcb);
1597                 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap);
1598                 if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
1599                         asoc->highest_tsn_inside_nr_map = tsn;
1600                 }
1601                 if (tsn == (asoc->cumulative_tsn + 1)) {
1602                         /* Update cum-ack */
1603                         asoc->cumulative_tsn = tsn;
1604                 }
1605                 return (0);
1606         }
1607         /*
1608          * Before we continue lets validate that we are not being fooled by
1609          * an evil attacker. We can only have 4k chunks based on our TSN
1610          * spread allowed by the mapping array 512 * 8 bits, so there is no
1611          * way our stream sequence numbers could have wrapped. We of course
1612          * only validate the FIRST fragment so the bit must be set.
1613          */
1614         strmseq = ntohs(ch->dp.stream_sequence);
1615 #ifdef SCTP_ASOCLOG_OF_TSNS
1616         SCTP_TCB_LOCK_ASSERT(stcb);
1617         if (asoc->tsn_in_at >= SCTP_TSN_LOG_SIZE) {
1618                 asoc->tsn_in_at = 0;
1619                 asoc->tsn_in_wrapped = 1;
1620         }
1621         asoc->in_tsnlog[asoc->tsn_in_at].tsn = tsn;
1622         asoc->in_tsnlog[asoc->tsn_in_at].strm = strmno;
1623         asoc->in_tsnlog[asoc->tsn_in_at].seq = strmseq;
1624         asoc->in_tsnlog[asoc->tsn_in_at].sz = chk_length;
1625         asoc->in_tsnlog[asoc->tsn_in_at].flgs = chunk_flags;
1626         asoc->in_tsnlog[asoc->tsn_in_at].stcb = (void *)stcb;
1627         asoc->in_tsnlog[asoc->tsn_in_at].in_pos = asoc->tsn_in_at;
1628         asoc->in_tsnlog[asoc->tsn_in_at].in_out = 1;
1629         asoc->tsn_in_at++;
1630 #endif
1631         if ((chunk_flags & SCTP_DATA_FIRST_FRAG) &&
1632             (TAILQ_EMPTY(&asoc->resetHead)) &&
1633             (chunk_flags & SCTP_DATA_UNORDERED) == 0 &&
1634             SCTP_SSN_GE(asoc->strmin[strmno].last_sequence_delivered, strmseq)) {
1635                 /* The incoming sseq is behind where we last delivered? */
1636                 SCTPDBG(SCTP_DEBUG_INDATA1, "EVIL/Broken-Dup S-SEQ:%d delivered:%d from peer, Abort!\n",
1637                     strmseq, asoc->strmin[strmno].last_sequence_delivered);
1638                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1639                     0, M_DONTWAIT, 1, MT_DATA);
1640                 if (oper) {
1641                         struct sctp_paramhdr *ph;
1642                         uint32_t *ippp;
1643
1644                         SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
1645                             (3 * sizeof(uint32_t));
1646                         ph = mtod(oper, struct sctp_paramhdr *);
1647                         ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1648                         ph->param_length = htons(SCTP_BUF_LEN(oper));
1649                         ippp = (uint32_t *) (ph + 1);
1650                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_14);
1651                         ippp++;
1652                         *ippp = tsn;
1653                         ippp++;
1654                         *ippp = ((strmno << 16) | strmseq);
1655
1656                 }
1657                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_14;
1658                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1659                 *abort_flag = 1;
1660                 return (0);
1661         }
1662         /************************************
1663          * From here down we may find ch-> invalid
1664          * so its a good idea NOT to use it.
1665          *************************************/
1666
1667         the_len = (chk_length - sizeof(struct sctp_data_chunk));
1668         if (last_chunk == 0) {
1669                 dmbuf = SCTP_M_COPYM(*m,
1670                     (offset + sizeof(struct sctp_data_chunk)),
1671                     the_len, M_DONTWAIT);
1672 #ifdef SCTP_MBUF_LOGGING
1673                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) {
1674                         struct mbuf *mat;
1675
1676                         for (mat = dmbuf; mat; mat = SCTP_BUF_NEXT(mat)) {
1677                                 if (SCTP_BUF_IS_EXTENDED(mat)) {
1678                                         sctp_log_mb(mat, SCTP_MBUF_ICOPY);
1679                                 }
1680                         }
1681                 }
1682 #endif
1683         } else {
1684                 /* We can steal the last chunk */
1685                 int l_len;
1686
1687                 dmbuf = *m;
1688                 /* lop off the top part */
1689                 m_adj(dmbuf, (offset + sizeof(struct sctp_data_chunk)));
1690                 if (SCTP_BUF_NEXT(dmbuf) == NULL) {
1691                         l_len = SCTP_BUF_LEN(dmbuf);
1692                 } else {
1693                         /*
1694                          * need to count up the size hopefully does not hit
1695                          * this to often :-0
1696                          */
1697                         struct mbuf *lat;
1698
1699                         l_len = 0;
1700                         for (lat = dmbuf; lat; lat = SCTP_BUF_NEXT(lat)) {
1701                                 l_len += SCTP_BUF_LEN(lat);
1702                         }
1703                 }
1704                 if (l_len > the_len) {
1705                         /* Trim the end round bytes off  too */
1706                         m_adj(dmbuf, -(l_len - the_len));
1707                 }
1708         }
1709         if (dmbuf == NULL) {
1710                 SCTP_STAT_INCR(sctps_nomem);
1711                 return (0);
1712         }
1713         if ((chunk_flags & SCTP_DATA_NOT_FRAG) == SCTP_DATA_NOT_FRAG &&
1714             asoc->fragmented_delivery_inprogress == 0 &&
1715             TAILQ_EMPTY(&asoc->resetHead) &&
1716             ((ordered == 0) ||
1717             ((uint16_t) (asoc->strmin[strmno].last_sequence_delivered + 1) == strmseq &&
1718             TAILQ_EMPTY(&asoc->strmin[strmno].inqueue)))) {
1719                 /* Candidate for express delivery */
1720                 /*
1721                  * Its not fragmented, No PD-API is up, Nothing in the
1722                  * delivery queue, Its un-ordered OR ordered and the next to
1723                  * deliver AND nothing else is stuck on the stream queue,
1724                  * And there is room for it in the socket buffer. Lets just
1725                  * stuff it up the buffer....
1726                  */
1727
1728                 /* It would be nice to avoid this copy if we could :< */
1729                 sctp_alloc_a_readq(stcb, control);
1730                 sctp_build_readq_entry_mac(control, stcb, asoc->context, net, tsn,
1731                     protocol_id,
1732                     stcb->asoc.context,
1733                     strmno, strmseq,
1734                     chunk_flags,
1735                     dmbuf);
1736                 if (control == NULL) {
1737                         goto failed_express_del;
1738                 }
1739                 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap);
1740                 if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
1741                         asoc->highest_tsn_inside_nr_map = tsn;
1742                 }
1743                 sctp_add_to_readq(stcb->sctp_ep, stcb,
1744                     control, &stcb->sctp_socket->so_rcv,
1745                     1, SCTP_READ_LOCK_NOT_HELD, SCTP_SO_NOT_LOCKED);
1746
1747                 if ((chunk_flags & SCTP_DATA_UNORDERED) == 0) {
1748                         /* for ordered, bump what we delivered */
1749                         asoc->strmin[strmno].last_sequence_delivered++;
1750                 }
1751                 SCTP_STAT_INCR(sctps_recvexpress);
1752                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
1753                         sctp_log_strm_del_alt(stcb, tsn, strmseq, strmno,
1754                             SCTP_STR_LOG_FROM_EXPRS_DEL);
1755                 }
1756                 control = NULL;
1757
1758                 goto finish_express_del;
1759         }
1760 failed_express_del:
1761         /* If we reach here this is a new chunk */
1762         chk = NULL;
1763         control = NULL;
1764         /* Express for fragmented delivery? */
1765         if ((asoc->fragmented_delivery_inprogress) &&
1766             (stcb->asoc.control_pdapi) &&
1767             (asoc->str_of_pdapi == strmno) &&
1768             (asoc->ssn_of_pdapi == strmseq)
1769             ) {
1770                 control = stcb->asoc.control_pdapi;
1771                 if ((chunk_flags & SCTP_DATA_FIRST_FRAG) == SCTP_DATA_FIRST_FRAG) {
1772                         /* Can't be another first? */
1773                         goto failed_pdapi_express_del;
1774                 }
1775                 if (tsn == (control->sinfo_tsn + 1)) {
1776                         /* Yep, we can add it on */
1777                         int end = 0;
1778
1779                         if (chunk_flags & SCTP_DATA_LAST_FRAG) {
1780                                 end = 1;
1781                         }
1782                         if (sctp_append_to_readq(stcb->sctp_ep, stcb, control, dmbuf, end,
1783                             tsn,
1784                             &stcb->sctp_socket->so_rcv)) {
1785                                 SCTP_PRINTF("Append fails end:%d\n", end);
1786                                 goto failed_pdapi_express_del;
1787                         }
1788                         SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap);
1789                         if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
1790                                 asoc->highest_tsn_inside_nr_map = tsn;
1791                         }
1792                         SCTP_STAT_INCR(sctps_recvexpressm);
1793                         control->sinfo_tsn = tsn;
1794                         asoc->tsn_last_delivered = tsn;
1795                         asoc->fragment_flags = chunk_flags;
1796                         asoc->tsn_of_pdapi_last_delivered = tsn;
1797                         asoc->last_flags_delivered = chunk_flags;
1798                         asoc->last_strm_seq_delivered = strmseq;
1799                         asoc->last_strm_no_delivered = strmno;
1800                         if (end) {
1801                                 /* clean up the flags and such */
1802                                 asoc->fragmented_delivery_inprogress = 0;
1803                                 if ((chunk_flags & SCTP_DATA_UNORDERED) == 0) {
1804                                         asoc->strmin[strmno].last_sequence_delivered++;
1805                                 }
1806                                 stcb->asoc.control_pdapi = NULL;
1807                                 if (TAILQ_EMPTY(&asoc->reasmqueue) == 0) {
1808                                         /*
1809                                          * There could be another message
1810                                          * ready
1811                                          */
1812                                         need_reasm_check = 1;
1813                                 }
1814                         }
1815                         control = NULL;
1816                         goto finish_express_del;
1817                 }
1818         }
1819 failed_pdapi_express_del:
1820         control = NULL;
1821         if (SCTP_BASE_SYSCTL(sctp_do_drain) == 0) {
1822                 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap);
1823                 if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_nr_map)) {
1824                         asoc->highest_tsn_inside_nr_map = tsn;
1825                 }
1826         } else {
1827                 SCTP_SET_TSN_PRESENT(asoc->mapping_array, gap);
1828                 if (SCTP_TSN_GT(tsn, asoc->highest_tsn_inside_map)) {
1829                         asoc->highest_tsn_inside_map = tsn;
1830                 }
1831         }
1832         if ((chunk_flags & SCTP_DATA_NOT_FRAG) != SCTP_DATA_NOT_FRAG) {
1833                 sctp_alloc_a_chunk(stcb, chk);
1834                 if (chk == NULL) {
1835                         /* No memory so we drop the chunk */
1836                         SCTP_STAT_INCR(sctps_nomem);
1837                         if (last_chunk == 0) {
1838                                 /* we copied it, free the copy */
1839                                 sctp_m_freem(dmbuf);
1840                         }
1841                         return (0);
1842                 }
1843                 chk->rec.data.TSN_seq = tsn;
1844                 chk->no_fr_allowed = 0;
1845                 chk->rec.data.stream_seq = strmseq;
1846                 chk->rec.data.stream_number = strmno;
1847                 chk->rec.data.payloadtype = protocol_id;
1848                 chk->rec.data.context = stcb->asoc.context;
1849                 chk->rec.data.doing_fast_retransmit = 0;
1850                 chk->rec.data.rcv_flags = chunk_flags;
1851                 chk->asoc = asoc;
1852                 chk->send_size = the_len;
1853                 chk->whoTo = net;
1854                 atomic_add_int(&net->ref_count, 1);
1855                 chk->data = dmbuf;
1856         } else {
1857                 sctp_alloc_a_readq(stcb, control);
1858                 sctp_build_readq_entry_mac(control, stcb, asoc->context, net, tsn,
1859                     protocol_id,
1860                     stcb->asoc.context,
1861                     strmno, strmseq,
1862                     chunk_flags,
1863                     dmbuf);
1864                 if (control == NULL) {
1865                         /* No memory so we drop the chunk */
1866                         SCTP_STAT_INCR(sctps_nomem);
1867                         if (last_chunk == 0) {
1868                                 /* we copied it, free the copy */
1869                                 sctp_m_freem(dmbuf);
1870                         }
1871                         return (0);
1872                 }
1873                 control->length = the_len;
1874         }
1875
1876         /* Mark it as received */
1877         /* Now queue it where it belongs */
1878         if (control != NULL) {
1879                 /* First a sanity check */
1880                 if (asoc->fragmented_delivery_inprogress) {
1881                         /*
1882                          * Ok, we have a fragmented delivery in progress if
1883                          * this chunk is next to deliver OR belongs in our
1884                          * view to the reassembly, the peer is evil or
1885                          * broken.
1886                          */
1887                         uint32_t estimate_tsn;
1888
1889                         estimate_tsn = asoc->tsn_last_delivered + 1;
1890                         if (TAILQ_EMPTY(&asoc->reasmqueue) &&
1891                             (estimate_tsn == control->sinfo_tsn)) {
1892                                 /* Evil/Broke peer */
1893                                 sctp_m_freem(control->data);
1894                                 control->data = NULL;
1895                                 if (control->whoFrom) {
1896                                         sctp_free_remote_addr(control->whoFrom);
1897                                         control->whoFrom = NULL;
1898                                 }
1899                                 sctp_free_a_readq(stcb, control);
1900                                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1901                                     0, M_DONTWAIT, 1, MT_DATA);
1902                                 if (oper) {
1903                                         struct sctp_paramhdr *ph;
1904                                         uint32_t *ippp;
1905
1906                                         SCTP_BUF_LEN(oper) =
1907                                             sizeof(struct sctp_paramhdr) +
1908                                             (3 * sizeof(uint32_t));
1909                                         ph = mtod(oper, struct sctp_paramhdr *);
1910                                         ph->param_type =
1911                                             htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1912                                         ph->param_length = htons(SCTP_BUF_LEN(oper));
1913                                         ippp = (uint32_t *) (ph + 1);
1914                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_15);
1915                                         ippp++;
1916                                         *ippp = tsn;
1917                                         ippp++;
1918                                         *ippp = ((strmno << 16) | strmseq);
1919                                 }
1920                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_15;
1921                                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1922                                 *abort_flag = 1;
1923                                 return (0);
1924                         } else {
1925                                 if (sctp_does_tsn_belong_to_reasm(asoc, control->sinfo_tsn)) {
1926                                         sctp_m_freem(control->data);
1927                                         control->data = NULL;
1928                                         if (control->whoFrom) {
1929                                                 sctp_free_remote_addr(control->whoFrom);
1930                                                 control->whoFrom = NULL;
1931                                         }
1932                                         sctp_free_a_readq(stcb, control);
1933
1934                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1935                                             0, M_DONTWAIT, 1, MT_DATA);
1936                                         if (oper) {
1937                                                 struct sctp_paramhdr *ph;
1938                                                 uint32_t *ippp;
1939
1940                                                 SCTP_BUF_LEN(oper) =
1941                                                     sizeof(struct sctp_paramhdr) +
1942                                                     (3 * sizeof(uint32_t));
1943                                                 ph = mtod(oper,
1944                                                     struct sctp_paramhdr *);
1945                                                 ph->param_type =
1946                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1947                                                 ph->param_length =
1948                                                     htons(SCTP_BUF_LEN(oper));
1949                                                 ippp = (uint32_t *) (ph + 1);
1950                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_16);
1951                                                 ippp++;
1952                                                 *ippp = tsn;
1953                                                 ippp++;
1954                                                 *ippp = ((strmno << 16) | strmseq);
1955                                         }
1956                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_16;
1957                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
1958                                         *abort_flag = 1;
1959                                         return (0);
1960                                 }
1961                         }
1962                 } else {
1963                         /* No PDAPI running */
1964                         if (!TAILQ_EMPTY(&asoc->reasmqueue)) {
1965                                 /*
1966                                  * Reassembly queue is NOT empty validate
1967                                  * that this tsn does not need to be in
1968                                  * reasembly queue. If it does then our peer
1969                                  * is broken or evil.
1970                                  */
1971                                 if (sctp_does_tsn_belong_to_reasm(asoc, control->sinfo_tsn)) {
1972                                         sctp_m_freem(control->data);
1973                                         control->data = NULL;
1974                                         if (control->whoFrom) {
1975                                                 sctp_free_remote_addr(control->whoFrom);
1976                                                 control->whoFrom = NULL;
1977                                         }
1978                                         sctp_free_a_readq(stcb, control);
1979                                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
1980                                             0, M_DONTWAIT, 1, MT_DATA);
1981                                         if (oper) {
1982                                                 struct sctp_paramhdr *ph;
1983                                                 uint32_t *ippp;
1984
1985                                                 SCTP_BUF_LEN(oper) =
1986                                                     sizeof(struct sctp_paramhdr) +
1987                                                     (3 * sizeof(uint32_t));
1988                                                 ph = mtod(oper,
1989                                                     struct sctp_paramhdr *);
1990                                                 ph->param_type =
1991                                                     htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1992                                                 ph->param_length =
1993                                                     htons(SCTP_BUF_LEN(oper));
1994                                                 ippp = (uint32_t *) (ph + 1);
1995                                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_17);
1996                                                 ippp++;
1997                                                 *ippp = tsn;
1998                                                 ippp++;
1999                                                 *ippp = ((strmno << 16) | strmseq);
2000                                         }
2001                                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_17;
2002                                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
2003                                         *abort_flag = 1;
2004                                         return (0);
2005                                 }
2006                         }
2007                 }
2008                 /* ok, if we reach here we have passed the sanity checks */
2009                 if (chunk_flags & SCTP_DATA_UNORDERED) {
2010                         /* queue directly into socket buffer */
2011                         sctp_mark_non_revokable(asoc, control->sinfo_tsn);
2012                         sctp_add_to_readq(stcb->sctp_ep, stcb,
2013                             control,
2014                             &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_NOT_HELD, SCTP_SO_NOT_LOCKED);
2015                 } else {
2016                         /*
2017                          * Special check for when streams are resetting. We
2018                          * could be more smart about this and check the
2019                          * actual stream to see if it is not being reset..
2020                          * that way we would not create a HOLB when amongst
2021                          * streams being reset and those not being reset.
2022                          * 
2023                          * We take complete messages that have a stream reset
2024                          * intervening (aka the TSN is after where our
2025                          * cum-ack needs to be) off and put them on a
2026                          * pending_reply_queue. The reassembly ones we do
2027                          * not have to worry about since they are all sorted
2028                          * and proceessed by TSN order. It is only the
2029                          * singletons I must worry about.
2030                          */
2031                         if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) &&
2032                             SCTP_TSN_GT(tsn, liste->tsn)) {
2033                                 /*
2034                                  * yep its past where we need to reset... go
2035                                  * ahead and queue it.
2036                                  */
2037                                 if (TAILQ_EMPTY(&asoc->pending_reply_queue)) {
2038                                         /* first one on */
2039                                         TAILQ_INSERT_TAIL(&asoc->pending_reply_queue, control, next);
2040                                 } else {
2041                                         struct sctp_queued_to_read *ctlOn,
2042                                                            *nctlOn;
2043                                         unsigned char inserted = 0;
2044
2045                                         TAILQ_FOREACH_SAFE(ctlOn, &asoc->pending_reply_queue, next, nctlOn) {
2046                                                 if (SCTP_TSN_GT(control->sinfo_tsn, ctlOn->sinfo_tsn)) {
2047                                                         continue;
2048                                                 } else {
2049                                                         /* found it */
2050                                                         TAILQ_INSERT_BEFORE(ctlOn, control, next);
2051                                                         inserted = 1;
2052                                                         break;
2053                                                 }
2054                                         }
2055                                         if (inserted == 0) {
2056                                                 /*
2057                                                  * must be put at end, use
2058                                                  * prevP (all setup from
2059                                                  * loop) to setup nextP.
2060                                                  */
2061                                                 TAILQ_INSERT_TAIL(&asoc->pending_reply_queue, control, next);
2062                                         }
2063                                 }
2064                         } else {
2065                                 sctp_queue_data_to_stream(stcb, asoc, control, abort_flag);
2066                                 if (*abort_flag) {
2067                                         return (0);
2068                                 }
2069                         }
2070                 }
2071         } else {
2072                 /* Into the re-assembly queue */
2073                 sctp_queue_data_for_reasm(stcb, asoc, chk, abort_flag);
2074                 if (*abort_flag) {
2075                         /*
2076                          * the assoc is now gone and chk was put onto the
2077                          * reasm queue, which has all been freed.
2078                          */
2079                         *m = NULL;
2080                         return (0);
2081                 }
2082         }
2083 finish_express_del:
2084         if (tsn == (asoc->cumulative_tsn + 1)) {
2085                 /* Update cum-ack */
2086                 asoc->cumulative_tsn = tsn;
2087         }
2088         if (last_chunk) {
2089                 *m = NULL;
2090         }
2091         if (ordered) {
2092                 SCTP_STAT_INCR_COUNTER64(sctps_inorderchunks);
2093         } else {
2094                 SCTP_STAT_INCR_COUNTER64(sctps_inunorderchunks);
2095         }
2096         SCTP_STAT_INCR(sctps_recvdata);
2097         /* Set it present please */
2098         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_STR_LOGGING_ENABLE) {
2099                 sctp_log_strm_del_alt(stcb, tsn, strmseq, strmno, SCTP_STR_LOG_FROM_MARK_TSN);
2100         }
2101         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
2102                 sctp_log_map(asoc->mapping_array_base_tsn, asoc->cumulative_tsn,
2103                     asoc->highest_tsn_inside_map, SCTP_MAP_PREPARE_SLIDE);
2104         }
2105         /* check the special flag for stream resets */
2106         if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) &&
2107             SCTP_TSN_GE(asoc->cumulative_tsn, liste->tsn)) {
2108                 /*
2109                  * we have finished working through the backlogged TSN's now
2110                  * time to reset streams. 1: call reset function. 2: free
2111                  * pending_reply space 3: distribute any chunks in
2112                  * pending_reply_queue.
2113                  */
2114                 struct sctp_queued_to_read *ctl, *nctl;
2115
2116                 sctp_reset_in_stream(stcb, liste->number_entries, liste->req.list_of_streams);
2117                 TAILQ_REMOVE(&asoc->resetHead, liste, next_resp);
2118                 SCTP_FREE(liste, SCTP_M_STRESET);
2119                 /* sa_ignore FREED_MEMORY */
2120                 liste = TAILQ_FIRST(&asoc->resetHead);
2121                 if (TAILQ_EMPTY(&asoc->resetHead)) {
2122                         /* All can be removed */
2123                         TAILQ_FOREACH_SAFE(ctl, &asoc->pending_reply_queue, next, nctl) {
2124                                 TAILQ_REMOVE(&asoc->pending_reply_queue, ctl, next);
2125                                 sctp_queue_data_to_stream(stcb, asoc, ctl, abort_flag);
2126                                 if (*abort_flag) {
2127                                         return (0);
2128                                 }
2129                         }
2130                 } else {
2131                         TAILQ_FOREACH_SAFE(ctl, &asoc->pending_reply_queue, next, nctl) {
2132                                 if (SCTP_TSN_GT(ctl->sinfo_tsn, liste->tsn)) {
2133                                         break;
2134                                 }
2135                                 /*
2136                                  * if ctl->sinfo_tsn is <= liste->tsn we can
2137                                  * process it which is the NOT of
2138                                  * ctl->sinfo_tsn > liste->tsn
2139                                  */
2140                                 TAILQ_REMOVE(&asoc->pending_reply_queue, ctl, next);
2141                                 sctp_queue_data_to_stream(stcb, asoc, ctl, abort_flag);
2142                                 if (*abort_flag) {
2143                                         return (0);
2144                                 }
2145                         }
2146                 }
2147                 /*
2148                  * Now service re-assembly to pick up anything that has been
2149                  * held on reassembly queue?
2150                  */
2151                 sctp_deliver_reasm_check(stcb, asoc);
2152                 need_reasm_check = 0;
2153         }
2154         if (need_reasm_check) {
2155                 /* Another one waits ? */
2156                 sctp_deliver_reasm_check(stcb, asoc);
2157         }
2158         return (1);
2159 }
2160
2161 int8_t sctp_map_lookup_tab[256] = {
2162         0, 1, 0, 2, 0, 1, 0, 3,
2163         0, 1, 0, 2, 0, 1, 0, 4,
2164         0, 1, 0, 2, 0, 1, 0, 3,
2165         0, 1, 0, 2, 0, 1, 0, 5,
2166         0, 1, 0, 2, 0, 1, 0, 3,
2167         0, 1, 0, 2, 0, 1, 0, 4,
2168         0, 1, 0, 2, 0, 1, 0, 3,
2169         0, 1, 0, 2, 0, 1, 0, 6,
2170         0, 1, 0, 2, 0, 1, 0, 3,
2171         0, 1, 0, 2, 0, 1, 0, 4,
2172         0, 1, 0, 2, 0, 1, 0, 3,
2173         0, 1, 0, 2, 0, 1, 0, 5,
2174         0, 1, 0, 2, 0, 1, 0, 3,
2175         0, 1, 0, 2, 0, 1, 0, 4,
2176         0, 1, 0, 2, 0, 1, 0, 3,
2177         0, 1, 0, 2, 0, 1, 0, 7,
2178         0, 1, 0, 2, 0, 1, 0, 3,
2179         0, 1, 0, 2, 0, 1, 0, 4,
2180         0, 1, 0, 2, 0, 1, 0, 3,
2181         0, 1, 0, 2, 0, 1, 0, 5,
2182         0, 1, 0, 2, 0, 1, 0, 3,
2183         0, 1, 0, 2, 0, 1, 0, 4,
2184         0, 1, 0, 2, 0, 1, 0, 3,
2185         0, 1, 0, 2, 0, 1, 0, 6,
2186         0, 1, 0, 2, 0, 1, 0, 3,
2187         0, 1, 0, 2, 0, 1, 0, 4,
2188         0, 1, 0, 2, 0, 1, 0, 3,
2189         0, 1, 0, 2, 0, 1, 0, 5,
2190         0, 1, 0, 2, 0, 1, 0, 3,
2191         0, 1, 0, 2, 0, 1, 0, 4,
2192         0, 1, 0, 2, 0, 1, 0, 3,
2193         0, 1, 0, 2, 0, 1, 0, 8
2194 };
2195
2196
2197 void
2198 sctp_slide_mapping_arrays(struct sctp_tcb *stcb)
2199 {
2200         /*
2201          * Now we also need to check the mapping array in a couple of ways.
2202          * 1) Did we move the cum-ack point?
2203          * 
2204          * When you first glance at this you might think that all entries that
2205          * make up the postion of the cum-ack would be in the nr-mapping
2206          * array only.. i.e. things up to the cum-ack are always
2207          * deliverable. Thats true with one exception, when its a fragmented
2208          * message we may not deliver the data until some threshold (or all
2209          * of it) is in place. So we must OR the nr_mapping_array and
2210          * mapping_array to get a true picture of the cum-ack.
2211          */
2212         struct sctp_association *asoc;
2213         int at;
2214         uint8_t val;
2215         int slide_from, slide_end, lgap, distance;
2216         uint32_t old_cumack, old_base, old_highest, highest_tsn;
2217
2218         asoc = &stcb->asoc;
2219
2220         old_cumack = asoc->cumulative_tsn;
2221         old_base = asoc->mapping_array_base_tsn;
2222         old_highest = asoc->highest_tsn_inside_map;
2223         /*
2224          * We could probably improve this a small bit by calculating the
2225          * offset of the current cum-ack as the starting point.
2226          */
2227         at = 0;
2228         for (slide_from = 0; slide_from < stcb->asoc.mapping_array_size; slide_from++) {
2229                 val = asoc->nr_mapping_array[slide_from] | asoc->mapping_array[slide_from];
2230                 if (val == 0xff) {
2231                         at += 8;
2232                 } else {
2233                         /* there is a 0 bit */
2234                         at += sctp_map_lookup_tab[val];
2235                         break;
2236                 }
2237         }
2238         asoc->cumulative_tsn = asoc->mapping_array_base_tsn + (at - 1);
2239
2240         if (SCTP_TSN_GT(asoc->cumulative_tsn, asoc->highest_tsn_inside_map) &&
2241             SCTP_TSN_GT(asoc->cumulative_tsn, asoc->highest_tsn_inside_nr_map)) {
2242 #ifdef INVARIANTS
2243                 panic("huh, cumack 0x%x greater than high-tsn 0x%x in map",
2244                     asoc->cumulative_tsn, asoc->highest_tsn_inside_map);
2245 #else
2246                 SCTP_PRINTF("huh, cumack 0x%x greater than high-tsn 0x%x in map - should panic?\n",
2247                     asoc->cumulative_tsn, asoc->highest_tsn_inside_map);
2248                 sctp_print_mapping_array(asoc);
2249                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
2250                         sctp_log_map(0, 6, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT);
2251                 }
2252                 asoc->highest_tsn_inside_map = asoc->cumulative_tsn;
2253                 asoc->highest_tsn_inside_nr_map = asoc->cumulative_tsn;
2254 #endif
2255         }
2256         if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->highest_tsn_inside_map)) {
2257                 highest_tsn = asoc->highest_tsn_inside_nr_map;
2258         } else {
2259                 highest_tsn = asoc->highest_tsn_inside_map;
2260         }
2261         if ((asoc->cumulative_tsn == highest_tsn) && (at >= 8)) {
2262                 /* The complete array was completed by a single FR */
2263                 /* highest becomes the cum-ack */
2264                 int clr;
2265
2266 #ifdef INVARIANTS
2267                 unsigned int i;
2268
2269 #endif
2270
2271                 /* clear the array */
2272                 clr = ((at + 7) >> 3);
2273                 if (clr > asoc->mapping_array_size) {
2274                         clr = asoc->mapping_array_size;
2275                 }
2276                 memset(asoc->mapping_array, 0, clr);
2277                 memset(asoc->nr_mapping_array, 0, clr);
2278 #ifdef INVARIANTS
2279                 for (i = 0; i < asoc->mapping_array_size; i++) {
2280                         if ((asoc->mapping_array[i]) || (asoc->nr_mapping_array[i])) {
2281                                 SCTP_PRINTF("Error Mapping array's not clean at clear\n");
2282                                 sctp_print_mapping_array(asoc);
2283                         }
2284                 }
2285 #endif
2286                 asoc->mapping_array_base_tsn = asoc->cumulative_tsn + 1;
2287                 asoc->highest_tsn_inside_nr_map = asoc->highest_tsn_inside_map = asoc->cumulative_tsn;
2288         } else if (at >= 8) {
2289                 /* we can slide the mapping array down */
2290                 /* slide_from holds where we hit the first NON 0xff byte */
2291
2292                 /*
2293                  * now calculate the ceiling of the move using our highest
2294                  * TSN value
2295                  */
2296                 SCTP_CALC_TSN_TO_GAP(lgap, highest_tsn, asoc->mapping_array_base_tsn);
2297                 slide_end = (lgap >> 3);
2298                 if (slide_end < slide_from) {
2299                         sctp_print_mapping_array(asoc);
2300 #ifdef INVARIANTS
2301                         panic("impossible slide");
2302 #else
2303                         SCTP_PRINTF("impossible slide lgap:%x slide_end:%x slide_from:%x? at:%d\n",
2304                             lgap, slide_end, slide_from, at);
2305                         return;
2306 #endif
2307                 }
2308                 if (slide_end > asoc->mapping_array_size) {
2309 #ifdef INVARIANTS
2310                         panic("would overrun buffer");
2311 #else
2312                         SCTP_PRINTF("Gak, would have overrun map end:%d slide_end:%d\n",
2313                             asoc->mapping_array_size, slide_end);
2314                         slide_end = asoc->mapping_array_size;
2315 #endif
2316                 }
2317                 distance = (slide_end - slide_from) + 1;
2318                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
2319                         sctp_log_map(old_base, old_cumack, old_highest,
2320                             SCTP_MAP_PREPARE_SLIDE);
2321                         sctp_log_map((uint32_t) slide_from, (uint32_t) slide_end,
2322                             (uint32_t) lgap, SCTP_MAP_SLIDE_FROM);
2323                 }
2324                 if (distance + slide_from > asoc->mapping_array_size ||
2325                     distance < 0) {
2326                         /*
2327                          * Here we do NOT slide forward the array so that
2328                          * hopefully when more data comes in to fill it up
2329                          * we will be able to slide it forward. Really I
2330                          * don't think this should happen :-0
2331                          */
2332
2333                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
2334                                 sctp_log_map((uint32_t) distance, (uint32_t) slide_from,
2335                                     (uint32_t) asoc->mapping_array_size,
2336                                     SCTP_MAP_SLIDE_NONE);
2337                         }
2338                 } else {
2339                         int ii;
2340
2341                         for (ii = 0; ii < distance; ii++) {
2342                                 asoc->mapping_array[ii] = asoc->mapping_array[slide_from + ii];
2343                                 asoc->nr_mapping_array[ii] = asoc->nr_mapping_array[slide_from + ii];
2344
2345                         }
2346                         for (ii = distance; ii < asoc->mapping_array_size; ii++) {
2347                                 asoc->mapping_array[ii] = 0;
2348                                 asoc->nr_mapping_array[ii] = 0;
2349                         }
2350                         if (asoc->highest_tsn_inside_map + 1 == asoc->mapping_array_base_tsn) {
2351                                 asoc->highest_tsn_inside_map += (slide_from << 3);
2352                         }
2353                         if (asoc->highest_tsn_inside_nr_map + 1 == asoc->mapping_array_base_tsn) {
2354                                 asoc->highest_tsn_inside_nr_map += (slide_from << 3);
2355                         }
2356                         asoc->mapping_array_base_tsn += (slide_from << 3);
2357                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
2358                                 sctp_log_map(asoc->mapping_array_base_tsn,
2359                                     asoc->cumulative_tsn, asoc->highest_tsn_inside_map,
2360                                     SCTP_MAP_SLIDE_RESULT);
2361                         }
2362                 }
2363         }
2364 }
2365
2366 void
2367 sctp_sack_check(struct sctp_tcb *stcb, int was_a_gap)
2368 {
2369         struct sctp_association *asoc;
2370         uint32_t highest_tsn;
2371
2372         asoc = &stcb->asoc;
2373         if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->highest_tsn_inside_map)) {
2374                 highest_tsn = asoc->highest_tsn_inside_nr_map;
2375         } else {
2376                 highest_tsn = asoc->highest_tsn_inside_map;
2377         }
2378
2379         /*
2380          * Now we need to see if we need to queue a sack or just start the
2381          * timer (if allowed).
2382          */
2383         if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) {
2384                 /*
2385                  * Ok special case, in SHUTDOWN-SENT case. here we maker
2386                  * sure SACK timer is off and instead send a SHUTDOWN and a
2387                  * SACK
2388                  */
2389                 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
2390                         sctp_timer_stop(SCTP_TIMER_TYPE_RECV,
2391                             stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_INDATA + SCTP_LOC_18);
2392                 }
2393                 sctp_send_shutdown(stcb,
2394                     ((stcb->asoc.alternate) ? stcb->asoc.alternate : stcb->asoc.primary_destination));
2395                 sctp_send_sack(stcb, SCTP_SO_NOT_LOCKED);
2396         } else {
2397                 int is_a_gap;
2398
2399                 /* is there a gap now ? */
2400                 is_a_gap = SCTP_TSN_GT(highest_tsn, stcb->asoc.cumulative_tsn);
2401
2402                 /*
2403                  * CMT DAC algorithm: increase number of packets received
2404                  * since last ack
2405                  */
2406                 stcb->asoc.cmt_dac_pkts_rcvd++;
2407
2408                 if ((stcb->asoc.send_sack == 1) ||      /* We need to send a
2409                                                          * SACK */
2410                     ((was_a_gap) && (is_a_gap == 0)) || /* was a gap, but no
2411                                                          * longer is one */
2412                     (stcb->asoc.numduptsns) ||  /* we have dup's */
2413                     (is_a_gap) ||       /* is still a gap */
2414                     (stcb->asoc.delayed_ack == 0) ||    /* Delayed sack disabled */
2415                     (stcb->asoc.data_pkts_seen >= stcb->asoc.sack_freq) /* hit limit of pkts */
2416                     ) {
2417
2418                         if ((stcb->asoc.sctp_cmt_on_off > 0) &&
2419                             (SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) &&
2420                             (stcb->asoc.send_sack == 0) &&
2421                             (stcb->asoc.numduptsns == 0) &&
2422                             (stcb->asoc.delayed_ack) &&
2423                             (!SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer))) {
2424
2425                                 /*
2426                                  * CMT DAC algorithm: With CMT, delay acks
2427                                  * even in the face of
2428                                  * 
2429                                  * reordering. Therefore, if acks that do not
2430                                  * have to be sent because of the above
2431                                  * reasons, will be delayed. That is, acks
2432                                  * that would have been sent due to gap
2433                                  * reports will be delayed with DAC. Start
2434                                  * the delayed ack timer.
2435                                  */
2436                                 sctp_timer_start(SCTP_TIMER_TYPE_RECV,
2437                                     stcb->sctp_ep, stcb, NULL);
2438                         } else {
2439                                 /*
2440                                  * Ok we must build a SACK since the timer
2441                                  * is pending, we got our first packet OR
2442                                  * there are gaps or duplicates.
2443                                  */
2444                                 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer);
2445                                 sctp_send_sack(stcb, SCTP_SO_NOT_LOCKED);
2446                         }
2447                 } else {
2448                         if (!SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
2449                                 sctp_timer_start(SCTP_TIMER_TYPE_RECV,
2450                                     stcb->sctp_ep, stcb, NULL);
2451                         }
2452                 }
2453         }
2454 }
2455
2456 void
2457 sctp_service_queues(struct sctp_tcb *stcb, struct sctp_association *asoc)
2458 {
2459         struct sctp_tmit_chunk *chk;
2460         uint32_t tsize, pd_point;
2461         uint16_t nxt_todel;
2462
2463         if (asoc->fragmented_delivery_inprogress) {
2464                 sctp_service_reassembly(stcb, asoc);
2465         }
2466         /* Can we proceed further, i.e. the PD-API is complete */
2467         if (asoc->fragmented_delivery_inprogress) {
2468                 /* no */
2469                 return;
2470         }
2471         /*
2472          * Now is there some other chunk I can deliver from the reassembly
2473          * queue.
2474          */
2475 doit_again:
2476         chk = TAILQ_FIRST(&asoc->reasmqueue);
2477         if (chk == NULL) {
2478                 asoc->size_on_reasm_queue = 0;
2479                 asoc->cnt_on_reasm_queue = 0;
2480                 return;
2481         }
2482         nxt_todel = asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered + 1;
2483         if ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) &&
2484             ((nxt_todel == chk->rec.data.stream_seq) ||
2485             (chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED))) {
2486                 /*
2487                  * Yep the first one is here. We setup to start reception,
2488                  * by backing down the TSN just in case we can't deliver.
2489                  */
2490
2491                 /*
2492                  * Before we start though either all of the message should
2493                  * be here or the socket buffer max or nothing on the
2494                  * delivery queue and something can be delivered.
2495                  */
2496                 if (stcb->sctp_socket) {
2497                         pd_point = min(SCTP_SB_LIMIT_RCV(stcb->sctp_socket),
2498                             stcb->sctp_ep->partial_delivery_point);
2499                 } else {
2500                         pd_point = stcb->sctp_ep->partial_delivery_point;
2501                 }
2502                 if (sctp_is_all_msg_on_reasm(asoc, &tsize) || (tsize >= pd_point)) {
2503                         asoc->fragmented_delivery_inprogress = 1;
2504                         asoc->tsn_last_delivered = chk->rec.data.TSN_seq - 1;
2505                         asoc->str_of_pdapi = chk->rec.data.stream_number;
2506                         asoc->ssn_of_pdapi = chk->rec.data.stream_seq;
2507                         asoc->pdapi_ppid = chk->rec.data.payloadtype;
2508                         asoc->fragment_flags = chk->rec.data.rcv_flags;
2509                         sctp_service_reassembly(stcb, asoc);
2510                         if (asoc->fragmented_delivery_inprogress == 0) {
2511                                 goto doit_again;
2512                         }
2513                 }
2514         }
2515 }
2516
2517 int
2518 sctp_process_data(struct mbuf **mm, int iphlen, int *offset, int length,
2519     struct sctphdr *sh, struct sctp_inpcb *inp, struct sctp_tcb *stcb,
2520     struct sctp_nets *net, uint32_t * high_tsn)
2521 {
2522         struct sctp_data_chunk *ch, chunk_buf;
2523         struct sctp_association *asoc;
2524         int num_chunks = 0;     /* number of control chunks processed */
2525         int stop_proc = 0;
2526         int chk_length, break_flag, last_chunk;
2527         int abort_flag = 0, was_a_gap;
2528         struct mbuf *m;
2529         uint32_t highest_tsn;
2530
2531         /* set the rwnd */
2532         sctp_set_rwnd(stcb, &stcb->asoc);
2533
2534         m = *mm;
2535         SCTP_TCB_LOCK_ASSERT(stcb);
2536         asoc = &stcb->asoc;
2537         if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->highest_tsn_inside_map)) {
2538                 highest_tsn = asoc->highest_tsn_inside_nr_map;
2539         } else {
2540                 highest_tsn = asoc->highest_tsn_inside_map;
2541         }
2542         was_a_gap = SCTP_TSN_GT(highest_tsn, stcb->asoc.cumulative_tsn);
2543         /*
2544          * setup where we got the last DATA packet from for any SACK that
2545          * may need to go out. Don't bump the net. This is done ONLY when a
2546          * chunk is assigned.
2547          */
2548         asoc->last_data_chunk_from = net;
2549
2550         /*-
2551          * Now before we proceed we must figure out if this is a wasted
2552          * cluster... i.e. it is a small packet sent in and yet the driver
2553          * underneath allocated a full cluster for it. If so we must copy it
2554          * to a smaller mbuf and free up the cluster mbuf. This will help
2555          * with cluster starvation. Note for __Panda__ we don't do this
2556          * since it has clusters all the way down to 64 bytes.
2557          */
2558         if (SCTP_BUF_LEN(m) < (long)MLEN && SCTP_BUF_NEXT(m) == NULL) {
2559                 /* we only handle mbufs that are singletons.. not chains */
2560                 m = sctp_get_mbuf_for_msg(SCTP_BUF_LEN(m), 0, M_DONTWAIT, 1, MT_DATA);
2561                 if (m) {
2562                         /* ok lets see if we can copy the data up */
2563                         caddr_t *from, *to;
2564
2565                         /* get the pointers and copy */
2566                         to = mtod(m, caddr_t *);
2567                         from = mtod((*mm), caddr_t *);
2568                         memcpy(to, from, SCTP_BUF_LEN((*mm)));
2569                         /* copy the length and free up the old */
2570                         SCTP_BUF_LEN(m) = SCTP_BUF_LEN((*mm));
2571                         sctp_m_freem(*mm);
2572                         /* sucess, back copy */
2573                         *mm = m;
2574                 } else {
2575                         /* We are in trouble in the mbuf world .. yikes */
2576                         m = *mm;
2577                 }
2578         }
2579         /* get pointer to the first chunk header */
2580         ch = (struct sctp_data_chunk *)sctp_m_getptr(m, *offset,
2581             sizeof(struct sctp_data_chunk), (uint8_t *) & chunk_buf);
2582         if (ch == NULL) {
2583                 return (1);
2584         }
2585         /*
2586          * process all DATA chunks...
2587          */
2588         *high_tsn = asoc->cumulative_tsn;
2589         break_flag = 0;
2590         asoc->data_pkts_seen++;
2591         while (stop_proc == 0) {
2592                 /* validate chunk length */
2593                 chk_length = ntohs(ch->ch.chunk_length);
2594                 if (length - *offset < chk_length) {
2595                         /* all done, mutulated chunk */
2596                         stop_proc = 1;
2597                         continue;
2598                 }
2599                 if (ch->ch.chunk_type == SCTP_DATA) {
2600                         if ((size_t)chk_length < sizeof(struct sctp_data_chunk) + 1) {
2601                                 /*
2602                                  * Need to send an abort since we had a
2603                                  * invalid data chunk.
2604                                  */
2605                                 struct mbuf *op_err;
2606
2607                                 op_err = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 2 * sizeof(uint32_t)),
2608                                     0, M_DONTWAIT, 1, MT_DATA);
2609
2610                                 if (op_err) {
2611                                         struct sctp_paramhdr *ph;
2612                                         uint32_t *ippp;
2613
2614                                         SCTP_BUF_LEN(op_err) = sizeof(struct sctp_paramhdr) +
2615                                             (2 * sizeof(uint32_t));
2616                                         ph = mtod(op_err, struct sctp_paramhdr *);
2617                                         ph->param_type =
2618                                             htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
2619                                         ph->param_length = htons(SCTP_BUF_LEN(op_err));
2620                                         ippp = (uint32_t *) (ph + 1);
2621                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_19);
2622                                         ippp++;
2623                                         *ippp = asoc->cumulative_tsn;
2624
2625                                 }
2626                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_19;
2627                                 sctp_abort_association(inp, stcb, m, iphlen, sh,
2628                                     op_err, 0, net->port);
2629                                 return (2);
2630                         }
2631 #ifdef SCTP_AUDITING_ENABLED
2632                         sctp_audit_log(0xB1, 0);
2633 #endif
2634                         if (SCTP_SIZE32(chk_length) == (length - *offset)) {
2635                                 last_chunk = 1;
2636                         } else {
2637                                 last_chunk = 0;
2638                         }
2639                         if (sctp_process_a_data_chunk(stcb, asoc, mm, *offset, ch,
2640                             chk_length, net, high_tsn, &abort_flag, &break_flag,
2641                             last_chunk)) {
2642                                 num_chunks++;
2643                         }
2644                         if (abort_flag)
2645                                 return (2);
2646
2647                         if (break_flag) {
2648                                 /*
2649                                  * Set because of out of rwnd space and no
2650                                  * drop rep space left.
2651                                  */
2652                                 stop_proc = 1;
2653                                 continue;
2654                         }
2655                 } else {
2656                         /* not a data chunk in the data region */
2657                         switch (ch->ch.chunk_type) {
2658                         case SCTP_INITIATION:
2659                         case SCTP_INITIATION_ACK:
2660                         case SCTP_SELECTIVE_ACK:
2661                         case SCTP_NR_SELECTIVE_ACK:
2662                         case SCTP_HEARTBEAT_REQUEST:
2663                         case SCTP_HEARTBEAT_ACK:
2664                         case SCTP_ABORT_ASSOCIATION:
2665                         case SCTP_SHUTDOWN:
2666                         case SCTP_SHUTDOWN_ACK:
2667                         case SCTP_OPERATION_ERROR:
2668                         case SCTP_COOKIE_ECHO:
2669                         case SCTP_COOKIE_ACK:
2670                         case SCTP_ECN_ECHO:
2671                         case SCTP_ECN_CWR:
2672                         case SCTP_SHUTDOWN_COMPLETE:
2673                         case SCTP_AUTHENTICATION:
2674                         case SCTP_ASCONF_ACK:
2675                         case SCTP_PACKET_DROPPED:
2676                         case SCTP_STREAM_RESET:
2677                         case SCTP_FORWARD_CUM_TSN:
2678                         case SCTP_ASCONF:
2679                                 /*
2680                                  * Now, what do we do with KNOWN chunks that
2681                                  * are NOT in the right place?
2682                                  * 
2683                                  * For now, I do nothing but ignore them. We
2684                                  * may later want to add sysctl stuff to
2685                                  * switch out and do either an ABORT() or
2686                                  * possibly process them.
2687                                  */
2688                                 if (SCTP_BASE_SYSCTL(sctp_strict_data_order)) {
2689                                         struct mbuf *op_err;
2690
2691                                         op_err = sctp_generate_invmanparam(SCTP_CAUSE_PROTOCOL_VIOLATION);
2692                                         sctp_abort_association(inp, stcb, m, iphlen, sh, op_err, 0, net->port);
2693                                         return (2);
2694                                 }
2695                                 break;
2696                         default:
2697                                 /* unknown chunk type, use bit rules */
2698                                 if (ch->ch.chunk_type & 0x40) {
2699                                         /* Add a error report to the queue */
2700                                         struct mbuf *merr;
2701                                         struct sctp_paramhdr *phd;
2702
2703                                         merr = sctp_get_mbuf_for_msg(sizeof(*phd), 0, M_DONTWAIT, 1, MT_DATA);
2704                                         if (merr) {
2705                                                 phd = mtod(merr, struct sctp_paramhdr *);
2706                                                 /*
2707                                                  * We cheat and use param
2708                                                  * type since we did not
2709                                                  * bother to define a error
2710                                                  * cause struct. They are
2711                                                  * the same basic format
2712                                                  * with different names.
2713                                                  */
2714                                                 phd->param_type =
2715                                                     htons(SCTP_CAUSE_UNRECOG_CHUNK);
2716                                                 phd->param_length =
2717                                                     htons(chk_length + sizeof(*phd));
2718                                                 SCTP_BUF_LEN(merr) = sizeof(*phd);
2719                                                 SCTP_BUF_NEXT(merr) = SCTP_M_COPYM(m, *offset, chk_length, M_DONTWAIT);
2720                                                 if (SCTP_BUF_NEXT(merr)) {
2721                                                         if (sctp_pad_lastmbuf(SCTP_BUF_NEXT(merr), SCTP_SIZE32(chk_length) - chk_length, NULL)) {
2722                                                                 sctp_m_freem(merr);
2723                                                         } else {
2724                                                                 sctp_queue_op_err(stcb, merr);
2725                                                         }
2726                                                 } else {
2727                                                         sctp_m_freem(merr);
2728                                                 }
2729                                         }
2730                                 }
2731                                 if ((ch->ch.chunk_type & 0x80) == 0) {
2732                                         /* discard the rest of this packet */
2733                                         stop_proc = 1;
2734                                 }       /* else skip this bad chunk and
2735                                          * continue... */
2736                                 break;
2737                         }       /* switch of chunk type */
2738                 }
2739                 *offset += SCTP_SIZE32(chk_length);
2740                 if ((*offset >= length) || stop_proc) {
2741                         /* no more data left in the mbuf chain */
2742                         stop_proc = 1;
2743                         continue;
2744                 }
2745                 ch = (struct sctp_data_chunk *)sctp_m_getptr(m, *offset,
2746                     sizeof(struct sctp_data_chunk), (uint8_t *) & chunk_buf);
2747                 if (ch == NULL) {
2748                         *offset = length;
2749                         stop_proc = 1;
2750                         continue;
2751                 }
2752         }
2753         if (break_flag) {
2754                 /*
2755                  * we need to report rwnd overrun drops.
2756                  */
2757                 sctp_send_packet_dropped(stcb, net, *mm, iphlen, 0);
2758         }
2759         if (num_chunks) {
2760                 /*
2761                  * Did we get data, if so update the time for auto-close and
2762                  * give peer credit for being alive.
2763                  */
2764                 SCTP_STAT_INCR(sctps_recvpktwithdata);
2765                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) {
2766                         sctp_misc_ints(SCTP_THRESHOLD_CLEAR,
2767                             stcb->asoc.overall_error_count,
2768                             0,
2769                             SCTP_FROM_SCTP_INDATA,
2770                             __LINE__);
2771                 }
2772                 stcb->asoc.overall_error_count = 0;
2773                 (void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_last_rcvd);
2774         }
2775         /* now service all of the reassm queue if needed */
2776         if (!(TAILQ_EMPTY(&asoc->reasmqueue)))
2777                 sctp_service_queues(stcb, asoc);
2778
2779         if (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) {
2780                 /* Assure that we ack right away */
2781                 stcb->asoc.send_sack = 1;
2782         }
2783         /* Start a sack timer or QUEUE a SACK for sending */
2784         sctp_sack_check(stcb, was_a_gap);
2785         return (0);
2786 }
2787
2788 static int
2789 sctp_process_segment_range(struct sctp_tcb *stcb, struct sctp_tmit_chunk **p_tp1, uint32_t last_tsn,
2790     uint16_t frag_strt, uint16_t frag_end, int nr_sacking,
2791     int *num_frs,
2792     uint32_t * biggest_newly_acked_tsn,
2793     uint32_t * this_sack_lowest_newack,
2794     int *rto_ok)
2795 {
2796         struct sctp_tmit_chunk *tp1;
2797         unsigned int theTSN;
2798         int j, wake_him = 0, circled = 0;
2799
2800         /* Recover the tp1 we last saw */
2801         tp1 = *p_tp1;
2802         if (tp1 == NULL) {
2803                 tp1 = TAILQ_FIRST(&stcb->asoc.sent_queue);
2804         }
2805         for (j = frag_strt; j <= frag_end; j++) {
2806                 theTSN = j + last_tsn;
2807                 while (tp1) {
2808                         if (tp1->rec.data.doing_fast_retransmit)
2809                                 (*num_frs) += 1;
2810
2811                         /*-
2812                          * CMT: CUCv2 algorithm. For each TSN being
2813                          * processed from the sent queue, track the
2814                          * next expected pseudo-cumack, or
2815                          * rtx_pseudo_cumack, if required. Separate
2816                          * cumack trackers for first transmissions,
2817                          * and retransmissions.
2818                          */
2819                         if ((tp1->whoTo->find_pseudo_cumack == 1) && (tp1->sent < SCTP_DATAGRAM_RESEND) &&
2820                             (tp1->snd_count == 1)) {
2821                                 tp1->whoTo->pseudo_cumack = tp1->rec.data.TSN_seq;
2822                                 tp1->whoTo->find_pseudo_cumack = 0;
2823                         }
2824                         if ((tp1->whoTo->find_rtx_pseudo_cumack == 1) && (tp1->sent < SCTP_DATAGRAM_RESEND) &&
2825                             (tp1->snd_count > 1)) {
2826                                 tp1->whoTo->rtx_pseudo_cumack = tp1->rec.data.TSN_seq;
2827                                 tp1->whoTo->find_rtx_pseudo_cumack = 0;
2828                         }
2829                         if (tp1->rec.data.TSN_seq == theTSN) {
2830                                 if (tp1->sent != SCTP_DATAGRAM_UNSENT) {
2831                                         /*-
2832                                          * must be held until
2833                                          * cum-ack passes
2834                                          */
2835                                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
2836                                                 /*-
2837                                                  * If it is less than RESEND, it is
2838                                                  * now no-longer in flight.
2839                                                  * Higher values may already be set
2840                                                  * via previous Gap Ack Blocks...
2841                                                  * i.e. ACKED or RESEND.
2842                                                  */
2843                                                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq,
2844                                                     *biggest_newly_acked_tsn)) {
2845                                                         *biggest_newly_acked_tsn = tp1->rec.data.TSN_seq;
2846                                                 }
2847                                                 /*-
2848                                                  * CMT: SFR algo (and HTNA) - set
2849                                                  * saw_newack to 1 for dest being
2850                                                  * newly acked. update
2851                                                  * this_sack_highest_newack if
2852                                                  * appropriate.
2853                                                  */
2854                                                 if (tp1->rec.data.chunk_was_revoked == 0)
2855                                                         tp1->whoTo->saw_newack = 1;
2856
2857                                                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq,
2858                                                     tp1->whoTo->this_sack_highest_newack)) {
2859                                                         tp1->whoTo->this_sack_highest_newack =
2860                                                             tp1->rec.data.TSN_seq;
2861                                                 }
2862                                                 /*-
2863                                                  * CMT DAC algo: also update
2864                                                  * this_sack_lowest_newack
2865                                                  */
2866                                                 if (*this_sack_lowest_newack == 0) {
2867                                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
2868                                                                 sctp_log_sack(*this_sack_lowest_newack,
2869                                                                     last_tsn,
2870                                                                     tp1->rec.data.TSN_seq,
2871                                                                     0,
2872                                                                     0,
2873                                                                     SCTP_LOG_TSN_ACKED);
2874                                                         }
2875                                                         *this_sack_lowest_newack = tp1->rec.data.TSN_seq;
2876                                                 }
2877                                                 /*-
2878                                                  * CMT: CUCv2 algorithm. If (rtx-)pseudo-cumack for corresp
2879                                                  * dest is being acked, then we have a new (rtx-)pseudo-cumack. Set
2880                                                  * new_(rtx_)pseudo_cumack to TRUE so that the cwnd for this dest can be
2881                                                  * updated. Also trigger search for the next expected (rtx-)pseudo-cumack.
2882                                                  * Separate pseudo_cumack trackers for first transmissions and
2883                                                  * retransmissions.
2884                                                  */
2885                                                 if (tp1->rec.data.TSN_seq == tp1->whoTo->pseudo_cumack) {
2886                                                         if (tp1->rec.data.chunk_was_revoked == 0) {
2887                                                                 tp1->whoTo->new_pseudo_cumack = 1;
2888                                                         }
2889                                                         tp1->whoTo->find_pseudo_cumack = 1;
2890                                                 }
2891                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
2892                                                         sctp_log_cwnd(stcb, tp1->whoTo, tp1->rec.data.TSN_seq, SCTP_CWND_LOG_FROM_SACK);
2893                                                 }
2894                                                 if (tp1->rec.data.TSN_seq == tp1->whoTo->rtx_pseudo_cumack) {
2895                                                         if (tp1->rec.data.chunk_was_revoked == 0) {
2896                                                                 tp1->whoTo->new_pseudo_cumack = 1;
2897                                                         }
2898                                                         tp1->whoTo->find_rtx_pseudo_cumack = 1;
2899                                                 }
2900                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
2901                                                         sctp_log_sack(*biggest_newly_acked_tsn,
2902                                                             last_tsn,
2903                                                             tp1->rec.data.TSN_seq,
2904                                                             frag_strt,
2905                                                             frag_end,
2906                                                             SCTP_LOG_TSN_ACKED);
2907                                                 }
2908                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
2909                                                         sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_GAP,
2910                                                             tp1->whoTo->flight_size,
2911                                                             tp1->book_size,
2912                                                             (uintptr_t) tp1->whoTo,
2913                                                             tp1->rec.data.TSN_seq);
2914                                                 }
2915                                                 sctp_flight_size_decrease(tp1);
2916                                                 if (stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) {
2917                                                         (*stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) (tp1->whoTo,
2918                                                             tp1);
2919                                                 }
2920                                                 sctp_total_flight_decrease(stcb, tp1);
2921
2922                                                 tp1->whoTo->net_ack += tp1->send_size;
2923                                                 if (tp1->snd_count < 2) {
2924                                                         /*-
2925                                                          * True non-retransmited chunk
2926                                                          */
2927                                                         tp1->whoTo->net_ack2 += tp1->send_size;
2928
2929                                                         /*-
2930                                                          * update RTO too ?
2931                                                          */
2932                                                         if (tp1->do_rtt) {
2933                                                                 if (*rto_ok) {
2934                                                                         tp1->whoTo->RTO =
2935                                                                             sctp_calculate_rto(stcb,
2936                                                                             &stcb->asoc,
2937                                                                             tp1->whoTo,
2938                                                                             &tp1->sent_rcv_time,
2939                                                                             sctp_align_safe_nocopy,
2940                                                                             SCTP_RTT_FROM_DATA);
2941                                                                         *rto_ok = 0;
2942                                                                 }
2943                                                                 if (tp1->whoTo->rto_needed == 0) {
2944                                                                         tp1->whoTo->rto_needed = 1;
2945                                                                 }
2946                                                                 tp1->do_rtt = 0;
2947                                                         }
2948                                                 }
2949                                         }
2950                                         if (tp1->sent <= SCTP_DATAGRAM_RESEND) {
2951                                                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq,
2952                                                     stcb->asoc.this_sack_highest_gap)) {
2953                                                         stcb->asoc.this_sack_highest_gap =
2954                                                             tp1->rec.data.TSN_seq;
2955                                                 }
2956                                                 if (tp1->sent == SCTP_DATAGRAM_RESEND) {
2957                                                         sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt);
2958 #ifdef SCTP_AUDITING_ENABLED
2959                                                         sctp_audit_log(0xB2,
2960                                                             (stcb->asoc.sent_queue_retran_cnt & 0x000000ff));
2961 #endif
2962                                                 }
2963                                         }
2964                                         /*-
2965                                          * All chunks NOT UNSENT fall through here and are marked
2966                                          * (leave PR-SCTP ones that are to skip alone though)
2967                                          */
2968                                         if (tp1->sent != SCTP_FORWARD_TSN_SKIP)
2969                                                 tp1->sent = SCTP_DATAGRAM_MARKED;
2970
2971                                         if (tp1->rec.data.chunk_was_revoked) {
2972                                                 /* deflate the cwnd */
2973                                                 tp1->whoTo->cwnd -= tp1->book_size;
2974                                                 tp1->rec.data.chunk_was_revoked = 0;
2975                                         }
2976                                         /* NR Sack code here */
2977                                         if (nr_sacking) {
2978                                                 if (tp1->data) {
2979                                                         /*
2980                                                          * sa_ignore
2981                                                          * NO_NULL_CHK
2982                                                          */
2983                                                         sctp_free_bufspace(stcb, &stcb->asoc, tp1, 1);
2984                                                         sctp_m_freem(tp1->data);
2985                                                         tp1->data = NULL;
2986                                                 }
2987                                                 wake_him++;
2988                                         }
2989                                 }
2990                                 break;
2991                         }       /* if (tp1->TSN_seq == theTSN) */
2992                         if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, theTSN)) {
2993                                 break;
2994                         }
2995                         tp1 = TAILQ_NEXT(tp1, sctp_next);
2996                         if ((tp1 == NULL) && (circled == 0)) {
2997                                 circled++;
2998                                 tp1 = TAILQ_FIRST(&stcb->asoc.sent_queue);
2999                         }
3000                 }               /* end while (tp1) */
3001                 if (tp1 == NULL) {
3002                         circled = 0;
3003                         tp1 = TAILQ_FIRST(&stcb->asoc.sent_queue);
3004                 }
3005                 /* In case the fragments were not in order we must reset */
3006         }                       /* end for (j = fragStart */
3007         *p_tp1 = tp1;
3008         return (wake_him);      /* Return value only used for nr-sack */
3009 }
3010
3011
3012 static int
3013 sctp_handle_segments(struct mbuf *m, int *offset, struct sctp_tcb *stcb, struct sctp_association *asoc,
3014     uint32_t last_tsn, uint32_t * biggest_tsn_acked,
3015     uint32_t * biggest_newly_acked_tsn, uint32_t * this_sack_lowest_newack,
3016     int num_seg, int num_nr_seg, int *rto_ok)
3017 {
3018         struct sctp_gap_ack_block *frag, block;
3019         struct sctp_tmit_chunk *tp1;
3020         int i;
3021         int num_frs = 0;
3022         int chunk_freed;
3023         int non_revocable;
3024         uint16_t frag_strt, frag_end, prev_frag_end;
3025
3026         tp1 = TAILQ_FIRST(&asoc->sent_queue);
3027         prev_frag_end = 0;
3028         chunk_freed = 0;
3029
3030         for (i = 0; i < (num_seg + num_nr_seg); i++) {
3031                 if (i == num_seg) {
3032                         prev_frag_end = 0;
3033                         tp1 = TAILQ_FIRST(&asoc->sent_queue);
3034                 }
3035                 frag = (struct sctp_gap_ack_block *)sctp_m_getptr(m, *offset,
3036                     sizeof(struct sctp_gap_ack_block), (uint8_t *) & block);
3037                 *offset += sizeof(block);
3038                 if (frag == NULL) {
3039                         return (chunk_freed);
3040                 }
3041                 frag_strt = ntohs(frag->start);
3042                 frag_end = ntohs(frag->end);
3043
3044                 if (frag_strt > frag_end) {
3045                         /* This gap report is malformed, skip it. */
3046                         continue;
3047                 }
3048                 if (frag_strt <= prev_frag_end) {
3049                         /* This gap report is not in order, so restart. */
3050                         tp1 = TAILQ_FIRST(&asoc->sent_queue);
3051                 }
3052                 if (SCTP_TSN_GT((last_tsn + frag_end), *biggest_tsn_acked)) {
3053                         *biggest_tsn_acked = last_tsn + frag_end;
3054                 }
3055                 if (i < num_seg) {
3056                         non_revocable = 0;
3057                 } else {
3058                         non_revocable = 1;
3059                 }
3060                 if (sctp_process_segment_range(stcb, &tp1, last_tsn, frag_strt, frag_end,
3061                     non_revocable, &num_frs, biggest_newly_acked_tsn,
3062                     this_sack_lowest_newack, rto_ok)) {
3063                         chunk_freed = 1;
3064                 }
3065                 prev_frag_end = frag_end;
3066         }
3067         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3068                 if (num_frs)
3069                         sctp_log_fr(*biggest_tsn_acked,
3070                             *biggest_newly_acked_tsn,
3071                             last_tsn, SCTP_FR_LOG_BIGGEST_TSNS);
3072         }
3073         return (chunk_freed);
3074 }
3075
3076 static void
3077 sctp_check_for_revoked(struct sctp_tcb *stcb,
3078     struct sctp_association *asoc, uint32_t cumack,
3079     uint32_t biggest_tsn_acked)
3080 {
3081         struct sctp_tmit_chunk *tp1;
3082         int tot_revoked = 0;
3083
3084         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
3085                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, cumack)) {
3086                         /*
3087                          * ok this guy is either ACK or MARKED. If it is
3088                          * ACKED it has been previously acked but not this
3089                          * time i.e. revoked.  If it is MARKED it was ACK'ed
3090                          * again.
3091                          */
3092                         if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, biggest_tsn_acked)) {
3093                                 break;
3094                         }
3095                         if (tp1->sent == SCTP_DATAGRAM_ACKED) {
3096                                 /* it has been revoked */
3097                                 tp1->sent = SCTP_DATAGRAM_SENT;
3098                                 tp1->rec.data.chunk_was_revoked = 1;
3099                                 /*
3100                                  * We must add this stuff back in to assure
3101                                  * timers and such get started.
3102                                  */
3103                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
3104                                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP_REVOKE,
3105                                             tp1->whoTo->flight_size,
3106                                             tp1->book_size,
3107                                             (uintptr_t) tp1->whoTo,
3108                                             tp1->rec.data.TSN_seq);
3109                                 }
3110                                 sctp_flight_size_increase(tp1);
3111                                 sctp_total_flight_increase(stcb, tp1);
3112                                 /*
3113                                  * We inflate the cwnd to compensate for our
3114                                  * artificial inflation of the flight_size.
3115                                  */
3116                                 tp1->whoTo->cwnd += tp1->book_size;
3117                                 tot_revoked++;
3118                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
3119                                         sctp_log_sack(asoc->last_acked_seq,
3120                                             cumack,
3121                                             tp1->rec.data.TSN_seq,
3122                                             0,
3123                                             0,
3124                                             SCTP_LOG_TSN_REVOKED);
3125                                 }
3126                         } else if (tp1->sent == SCTP_DATAGRAM_MARKED) {
3127                                 /* it has been re-acked in this SACK */
3128                                 tp1->sent = SCTP_DATAGRAM_ACKED;
3129                         }
3130                 }
3131                 if (tp1->sent == SCTP_DATAGRAM_UNSENT)
3132                         break;
3133         }
3134 }
3135
3136
3137 static void
3138 sctp_strike_gap_ack_chunks(struct sctp_tcb *stcb, struct sctp_association *asoc,
3139     uint32_t biggest_tsn_acked, uint32_t biggest_tsn_newly_acked, uint32_t this_sack_lowest_newack, int accum_moved)
3140 {
3141         struct sctp_tmit_chunk *tp1;
3142         int strike_flag = 0;
3143         struct timeval now;
3144         int tot_retrans = 0;
3145         uint32_t sending_seq;
3146         struct sctp_nets *net;
3147         int num_dests_sacked = 0;
3148
3149         /*
3150          * select the sending_seq, this is either the next thing ready to be
3151          * sent but not transmitted, OR, the next seq we assign.
3152          */
3153         tp1 = TAILQ_FIRST(&stcb->asoc.send_queue);
3154         if (tp1 == NULL) {
3155                 sending_seq = asoc->sending_seq;
3156         } else {
3157                 sending_seq = tp1->rec.data.TSN_seq;
3158         }
3159
3160         /* CMT DAC algo: finding out if SACK is a mixed SACK */
3161         if ((asoc->sctp_cmt_on_off > 0) &&
3162             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
3163                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
3164                         if (net->saw_newack)
3165                                 num_dests_sacked++;
3166                 }
3167         }
3168         if (stcb->asoc.peer_supports_prsctp) {
3169                 (void)SCTP_GETTIME_TIMEVAL(&now);
3170         }
3171         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
3172                 strike_flag = 0;
3173                 if (tp1->no_fr_allowed) {
3174                         /* this one had a timeout or something */
3175                         continue;
3176                 }
3177                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3178                         if (tp1->sent < SCTP_DATAGRAM_RESEND)
3179                                 sctp_log_fr(biggest_tsn_newly_acked,
3180                                     tp1->rec.data.TSN_seq,
3181                                     tp1->sent,
3182                                     SCTP_FR_LOG_CHECK_STRIKE);
3183                 }
3184                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, biggest_tsn_acked) ||
3185                     tp1->sent == SCTP_DATAGRAM_UNSENT) {
3186                         /* done */
3187                         break;
3188                 }
3189                 if (stcb->asoc.peer_supports_prsctp) {
3190                         if ((PR_SCTP_TTL_ENABLED(tp1->flags)) && tp1->sent < SCTP_DATAGRAM_ACKED) {
3191                                 /* Is it expired? */
3192                                 if (timevalcmp(&now, &tp1->rec.data.timetodrop, >)) {
3193                                         /* Yes so drop it */
3194                                         if (tp1->data != NULL) {
3195                                                 (void)sctp_release_pr_sctp_chunk(stcb, tp1, 1,
3196                                                     SCTP_SO_NOT_LOCKED);
3197                                         }
3198                                         continue;
3199                                 }
3200                         }
3201                 }
3202                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, asoc->this_sack_highest_gap)) {
3203                         /* we are beyond the tsn in the sack  */
3204                         break;
3205                 }
3206                 if (tp1->sent >= SCTP_DATAGRAM_RESEND) {
3207                         /* either a RESEND, ACKED, or MARKED */
3208                         /* skip */
3209                         if (tp1->sent == SCTP_FORWARD_TSN_SKIP) {
3210                                 /* Continue strikin FWD-TSN chunks */
3211                                 tp1->rec.data.fwd_tsn_cnt++;
3212                         }
3213                         continue;
3214                 }
3215                 /*
3216                  * CMT : SFR algo (covers part of DAC and HTNA as well)
3217                  */
3218                 if (tp1->whoTo && tp1->whoTo->saw_newack == 0) {
3219                         /*
3220                          * No new acks were receieved for data sent to this
3221                          * dest. Therefore, according to the SFR algo for
3222                          * CMT, no data sent to this dest can be marked for
3223                          * FR using this SACK.
3224                          */
3225                         continue;
3226                 } else if (tp1->whoTo && SCTP_TSN_GT(tp1->rec.data.TSN_seq,
3227                     tp1->whoTo->this_sack_highest_newack)) {
3228                         /*
3229                          * CMT: New acks were receieved for data sent to
3230                          * this dest. But no new acks were seen for data
3231                          * sent after tp1. Therefore, according to the SFR
3232                          * algo for CMT, tp1 cannot be marked for FR using
3233                          * this SACK. This step covers part of the DAC algo
3234                          * and the HTNA algo as well.
3235                          */
3236                         continue;
3237                 }
3238                 /*
3239                  * Here we check to see if we were have already done a FR
3240                  * and if so we see if the biggest TSN we saw in the sack is
3241                  * smaller than the recovery point. If so we don't strike
3242                  * the tsn... otherwise we CAN strike the TSN.
3243                  */
3244                 /*
3245                  * @@@ JRI: Check for CMT if (accum_moved &&
3246                  * asoc->fast_retran_loss_recovery && (sctp_cmt_on_off ==
3247                  * 0)) {
3248                  */
3249                 if (accum_moved && asoc->fast_retran_loss_recovery) {
3250                         /*
3251                          * Strike the TSN if in fast-recovery and cum-ack
3252                          * moved.
3253                          */
3254                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3255                                 sctp_log_fr(biggest_tsn_newly_acked,
3256                                     tp1->rec.data.TSN_seq,
3257                                     tp1->sent,
3258                                     SCTP_FR_LOG_STRIKE_CHUNK);
3259                         }
3260                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
3261                                 tp1->sent++;
3262                         }
3263                         if ((asoc->sctp_cmt_on_off > 0) &&
3264                             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
3265                                 /*
3266                                  * CMT DAC algorithm: If SACK flag is set to
3267                                  * 0, then lowest_newack test will not pass
3268                                  * because it would have been set to the
3269                                  * cumack earlier. If not already to be
3270                                  * rtx'd, If not a mixed sack and if tp1 is
3271                                  * not between two sacked TSNs, then mark by
3272                                  * one more. NOTE that we are marking by one
3273                                  * additional time since the SACK DAC flag
3274                                  * indicates that two packets have been
3275                                  * received after this missing TSN.
3276                                  */
3277                                 if ((tp1->sent < SCTP_DATAGRAM_RESEND) && (num_dests_sacked == 1) &&
3278                                     SCTP_TSN_GT(this_sack_lowest_newack, tp1->rec.data.TSN_seq)) {
3279                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3280                                                 sctp_log_fr(16 + num_dests_sacked,
3281                                                     tp1->rec.data.TSN_seq,
3282                                                     tp1->sent,
3283                                                     SCTP_FR_LOG_STRIKE_CHUNK);
3284                                         }
3285                                         tp1->sent++;
3286                                 }
3287                         }
3288                 } else if ((tp1->rec.data.doing_fast_retransmit) &&
3289                     (asoc->sctp_cmt_on_off == 0)) {
3290                         /*
3291                          * For those that have done a FR we must take
3292                          * special consideration if we strike. I.e the
3293                          * biggest_newly_acked must be higher than the
3294                          * sending_seq at the time we did the FR.
3295                          */
3296                         if (
3297 #ifdef SCTP_FR_TO_ALTERNATE
3298                         /*
3299                          * If FR's go to new networks, then we must only do
3300                          * this for singly homed asoc's. However if the FR's
3301                          * go to the same network (Armando's work) then its
3302                          * ok to FR multiple times.
3303                          */
3304                             (asoc->numnets < 2)
3305 #else
3306                             (1)
3307 #endif
3308                             ) {
3309
3310                                 if (SCTP_TSN_GE(biggest_tsn_newly_acked,
3311                                     tp1->rec.data.fast_retran_tsn)) {
3312                                         /*
3313                                          * Strike the TSN, since this ack is
3314                                          * beyond where things were when we
3315                                          * did a FR.
3316                                          */
3317                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3318                                                 sctp_log_fr(biggest_tsn_newly_acked,
3319                                                     tp1->rec.data.TSN_seq,
3320                                                     tp1->sent,
3321                                                     SCTP_FR_LOG_STRIKE_CHUNK);
3322                                         }
3323                                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
3324                                                 tp1->sent++;
3325                                         }
3326                                         strike_flag = 1;
3327                                         if ((asoc->sctp_cmt_on_off > 0) &&
3328                                             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
3329                                                 /*
3330                                                  * CMT DAC algorithm: If
3331                                                  * SACK flag is set to 0,
3332                                                  * then lowest_newack test
3333                                                  * will not pass because it
3334                                                  * would have been set to
3335                                                  * the cumack earlier. If
3336                                                  * not already to be rtx'd,
3337                                                  * If not a mixed sack and
3338                                                  * if tp1 is not between two
3339                                                  * sacked TSNs, then mark by
3340                                                  * one more. NOTE that we
3341                                                  * are marking by one
3342                                                  * additional time since the
3343                                                  * SACK DAC flag indicates
3344                                                  * that two packets have
3345                                                  * been received after this
3346                                                  * missing TSN.
3347                                                  */
3348                                                 if ((tp1->sent < SCTP_DATAGRAM_RESEND) &&
3349                                                     (num_dests_sacked == 1) &&
3350                                                     SCTP_TSN_GT(this_sack_lowest_newack,
3351                                                     tp1->rec.data.TSN_seq)) {
3352                                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3353                                                                 sctp_log_fr(32 + num_dests_sacked,
3354                                                                     tp1->rec.data.TSN_seq,
3355                                                                     tp1->sent,
3356                                                                     SCTP_FR_LOG_STRIKE_CHUNK);
3357                                                         }
3358                                                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
3359                                                                 tp1->sent++;
3360                                                         }
3361                                                 }
3362                                         }
3363                                 }
3364                         }
3365                         /*
3366                          * JRI: TODO: remove code for HTNA algo. CMT's SFR
3367                          * algo covers HTNA.
3368                          */
3369                 } else if (SCTP_TSN_GT(tp1->rec.data.TSN_seq,
3370                     biggest_tsn_newly_acked)) {
3371                         /*
3372                          * We don't strike these: This is the  HTNA
3373                          * algorithm i.e. we don't strike If our TSN is
3374                          * larger than the Highest TSN Newly Acked.
3375                          */
3376                         ;
3377                 } else {
3378                         /* Strike the TSN */
3379                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3380                                 sctp_log_fr(biggest_tsn_newly_acked,
3381                                     tp1->rec.data.TSN_seq,
3382                                     tp1->sent,
3383                                     SCTP_FR_LOG_STRIKE_CHUNK);
3384                         }
3385                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
3386                                 tp1->sent++;
3387                         }
3388                         if ((asoc->sctp_cmt_on_off > 0) &&
3389                             SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) {
3390                                 /*
3391                                  * CMT DAC algorithm: If SACK flag is set to
3392                                  * 0, then lowest_newack test will not pass
3393                                  * because it would have been set to the
3394                                  * cumack earlier. If not already to be
3395                                  * rtx'd, If not a mixed sack and if tp1 is
3396                                  * not between two sacked TSNs, then mark by
3397                                  * one more. NOTE that we are marking by one
3398                                  * additional time since the SACK DAC flag
3399                                  * indicates that two packets have been
3400                                  * received after this missing TSN.
3401                                  */
3402                                 if ((tp1->sent < SCTP_DATAGRAM_RESEND) && (num_dests_sacked == 1) &&
3403                                     SCTP_TSN_GT(this_sack_lowest_newack, tp1->rec.data.TSN_seq)) {
3404                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3405                                                 sctp_log_fr(48 + num_dests_sacked,
3406                                                     tp1->rec.data.TSN_seq,
3407                                                     tp1->sent,
3408                                                     SCTP_FR_LOG_STRIKE_CHUNK);
3409                                         }
3410                                         tp1->sent++;
3411                                 }
3412                         }
3413                 }
3414                 if (tp1->sent == SCTP_DATAGRAM_RESEND) {
3415                         struct sctp_nets *alt;
3416
3417                         /* fix counts and things */
3418                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
3419                                 sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_RSND,
3420                                     (tp1->whoTo ? (tp1->whoTo->flight_size) : 0),
3421                                     tp1->book_size,
3422                                     (uintptr_t) tp1->whoTo,
3423                                     tp1->rec.data.TSN_seq);
3424                         }
3425                         if (tp1->whoTo) {
3426                                 tp1->whoTo->net_ack++;
3427                                 sctp_flight_size_decrease(tp1);
3428                                 if (stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) {
3429                                         (*stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) (tp1->whoTo,
3430                                             tp1);
3431                                 }
3432                         }
3433                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
3434                                 sctp_log_rwnd(SCTP_INCREASE_PEER_RWND,
3435                                     asoc->peers_rwnd, tp1->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
3436                         }
3437                         /* add back to the rwnd */
3438                         asoc->peers_rwnd += (tp1->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh));
3439
3440                         /* remove from the total flight */
3441                         sctp_total_flight_decrease(stcb, tp1);
3442
3443                         if ((stcb->asoc.peer_supports_prsctp) &&
3444                             (PR_SCTP_RTX_ENABLED(tp1->flags))) {
3445                                 /*
3446                                  * Has it been retransmitted tv_sec times? -
3447                                  * we store the retran count there.
3448                                  */
3449                                 if (tp1->snd_count > tp1->rec.data.timetodrop.tv_sec) {
3450                                         /* Yes, so drop it */
3451                                         if (tp1->data != NULL) {
3452                                                 (void)sctp_release_pr_sctp_chunk(stcb, tp1, 1,
3453                                                     SCTP_SO_NOT_LOCKED);
3454                                         }
3455                                         /* Make sure to flag we had a FR */
3456                                         tp1->whoTo->net_ack++;
3457                                         continue;
3458                                 }
3459                         }
3460                         /*
3461                          * SCTP_PRINTF("OK, we are now ready to FR this
3462                          * guy\n");
3463                          */
3464                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
3465                                 sctp_log_fr(tp1->rec.data.TSN_seq, tp1->snd_count,
3466                                     0, SCTP_FR_MARKED);
3467                         }
3468                         if (strike_flag) {
3469                                 /* This is a subsequent FR */
3470                                 SCTP_STAT_INCR(sctps_sendmultfastretrans);
3471                         }
3472                         sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
3473                         if (asoc->sctp_cmt_on_off > 0) {
3474                                 /*
3475                                  * CMT: Using RTX_SSTHRESH policy for CMT.
3476                                  * If CMT is being used, then pick dest with
3477                                  * largest ssthresh for any retransmission.
3478                                  */
3479                                 tp1->no_fr_allowed = 1;
3480                                 alt = tp1->whoTo;
3481                                 /* sa_ignore NO_NULL_CHK */
3482                                 if (asoc->sctp_cmt_pf > 0) {
3483                                         /*
3484                                          * JRS 5/18/07 - If CMT PF is on,
3485                                          * use the PF version of
3486                                          * find_alt_net()
3487                                          */
3488                                         alt = sctp_find_alternate_net(stcb, alt, 2);
3489                                 } else {
3490                                         /*
3491                                          * JRS 5/18/07 - If only CMT is on,
3492                                          * use the CMT version of
3493                                          * find_alt_net()
3494                                          */
3495                                         /* sa_ignore NO_NULL_CHK */
3496                                         alt = sctp_find_alternate_net(stcb, alt, 1);
3497                                 }
3498                                 if (alt == NULL) {
3499                                         alt = tp1->whoTo;
3500                                 }
3501                                 /*
3502                                  * CUCv2: If a different dest is picked for
3503                                  * the retransmission, then new
3504                                  * (rtx-)pseudo_cumack needs to be tracked
3505                                  * for orig dest. Let CUCv2 track new (rtx-)
3506                                  * pseudo-cumack always.
3507                                  */
3508                                 if (tp1->whoTo) {
3509                                         tp1->whoTo->find_pseudo_cumack = 1;
3510                                         tp1->whoTo->find_rtx_pseudo_cumack = 1;
3511                                 }
3512                         } else {/* CMT is OFF */
3513
3514 #ifdef SCTP_FR_TO_ALTERNATE
3515                                 /* Can we find an alternate? */
3516                                 alt = sctp_find_alternate_net(stcb, tp1->whoTo, 0);
3517 #else
3518                                 /*
3519                                  * default behavior is to NOT retransmit
3520                                  * FR's to an alternate. Armando Caro's
3521                                  * paper details why.
3522                                  */
3523                                 alt = tp1->whoTo;
3524 #endif
3525                         }
3526
3527                         tp1->rec.data.doing_fast_retransmit = 1;
3528                         tot_retrans++;
3529                         /* mark the sending seq for possible subsequent FR's */
3530                         /*
3531                          * SCTP_PRINTF("Marking TSN for FR new value %x\n",
3532                          * (uint32_t)tpi->rec.data.TSN_seq);
3533                          */
3534                         if (TAILQ_EMPTY(&asoc->send_queue)) {
3535                                 /*
3536                                  * If the queue of send is empty then its
3537                                  * the next sequence number that will be
3538                                  * assigned so we subtract one from this to
3539                                  * get the one we last sent.
3540                                  */
3541                                 tp1->rec.data.fast_retran_tsn = sending_seq;
3542                         } else {
3543                                 /*
3544                                  * If there are chunks on the send queue
3545                                  * (unsent data that has made it from the
3546                                  * stream queues but not out the door, we
3547                                  * take the first one (which will have the
3548                                  * lowest TSN) and subtract one to get the
3549                                  * one we last sent.
3550                                  */
3551                                 struct sctp_tmit_chunk *ttt;
3552
3553                                 ttt = TAILQ_FIRST(&asoc->send_queue);
3554                                 tp1->rec.data.fast_retran_tsn =
3555                                     ttt->rec.data.TSN_seq;
3556                         }
3557
3558                         if (tp1->do_rtt) {
3559                                 /*
3560                                  * this guy had a RTO calculation pending on
3561                                  * it, cancel it
3562                                  */
3563                                 if ((tp1->whoTo != NULL) &&
3564                                     (tp1->whoTo->rto_needed == 0)) {
3565                                         tp1->whoTo->rto_needed = 1;
3566                                 }
3567                                 tp1->do_rtt = 0;
3568                         }
3569                         if (alt != tp1->whoTo) {
3570                                 /* yes, there is an alternate. */
3571                                 sctp_free_remote_addr(tp1->whoTo);
3572                                 /* sa_ignore FREED_MEMORY */
3573                                 tp1->whoTo = alt;
3574                                 atomic_add_int(&alt->ref_count, 1);
3575                         }
3576                 }
3577         }
3578 }
3579
3580 struct sctp_tmit_chunk *
3581 sctp_try_advance_peer_ack_point(struct sctp_tcb *stcb,
3582     struct sctp_association *asoc)
3583 {
3584         struct sctp_tmit_chunk *tp1, *tp2, *a_adv = NULL;
3585         struct timeval now;
3586         int now_filled = 0;
3587
3588         if (asoc->peer_supports_prsctp == 0) {
3589                 return (NULL);
3590         }
3591         TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
3592                 if (tp1->sent != SCTP_FORWARD_TSN_SKIP &&
3593                     tp1->sent != SCTP_DATAGRAM_RESEND) {
3594                         /* no chance to advance, out of here */
3595                         break;
3596                 }
3597                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
3598                         if (tp1->sent == SCTP_FORWARD_TSN_SKIP) {
3599                                 sctp_misc_ints(SCTP_FWD_TSN_CHECK,
3600                                     asoc->advanced_peer_ack_point,
3601                                     tp1->rec.data.TSN_seq, 0, 0);
3602                         }
3603                 }
3604                 if (!PR_SCTP_ENABLED(tp1->flags)) {
3605                         /*
3606                          * We can't fwd-tsn past any that are reliable aka
3607                          * retransmitted until the asoc fails.
3608                          */
3609                         break;
3610                 }
3611                 if (!now_filled) {
3612                         (void)SCTP_GETTIME_TIMEVAL(&now);
3613                         now_filled = 1;
3614                 }
3615                 /*
3616                  * now we got a chunk which is marked for another
3617                  * retransmission to a PR-stream but has run out its chances
3618                  * already maybe OR has been marked to skip now. Can we skip
3619                  * it if its a resend?
3620                  */
3621                 if (tp1->sent == SCTP_DATAGRAM_RESEND &&
3622                     (PR_SCTP_TTL_ENABLED(tp1->flags))) {
3623                         /*
3624                          * Now is this one marked for resend and its time is
3625                          * now up?
3626                          */
3627                         if (timevalcmp(&now, &tp1->rec.data.timetodrop, >)) {
3628                                 /* Yes so drop it */
3629                                 if (tp1->data) {
3630                                         (void)sctp_release_pr_sctp_chunk(stcb, tp1,
3631                                             1, SCTP_SO_NOT_LOCKED);
3632                                 }
3633                         } else {
3634                                 /*
3635                                  * No, we are done when hit one for resend
3636                                  * whos time as not expired.
3637                                  */
3638                                 break;
3639                         }
3640                 }
3641                 /*
3642                  * Ok now if this chunk is marked to drop it we can clean up
3643                  * the chunk, advance our peer ack point and we can check
3644                  * the next chunk.
3645                  */
3646                 if (tp1->sent == SCTP_FORWARD_TSN_SKIP) {
3647                         /* advance PeerAckPoint goes forward */
3648                         if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, asoc->advanced_peer_ack_point)) {
3649                                 asoc->advanced_peer_ack_point = tp1->rec.data.TSN_seq;
3650                                 a_adv = tp1;
3651                         } else if (tp1->rec.data.TSN_seq == asoc->advanced_peer_ack_point) {
3652                                 /* No update but we do save the chk */
3653                                 a_adv = tp1;
3654                         }
3655                 } else {
3656                         /*
3657                          * If it is still in RESEND we can advance no
3658                          * further
3659                          */
3660                         break;
3661                 }
3662         }
3663         return (a_adv);
3664 }
3665
3666 static int
3667 sctp_fs_audit(struct sctp_association *asoc)
3668 {
3669         struct sctp_tmit_chunk *chk;
3670         int inflight = 0, resend = 0, inbetween = 0, acked = 0, above = 0;
3671         int entry_flight, entry_cnt, ret;
3672
3673         entry_flight = asoc->total_flight;
3674         entry_cnt = asoc->total_flight_count;
3675         ret = 0;
3676
3677         if (asoc->pr_sctp_cnt >= asoc->sent_queue_cnt)
3678                 return (0);
3679
3680         TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
3681                 if (chk->sent < SCTP_DATAGRAM_RESEND) {
3682                         SCTP_PRINTF("Chk TSN:%u size:%d inflight cnt:%d\n",
3683                             chk->rec.data.TSN_seq,
3684                             chk->send_size,
3685                             chk->snd_count);
3686                         inflight++;
3687                 } else if (chk->sent == SCTP_DATAGRAM_RESEND) {
3688                         resend++;
3689                 } else if (chk->sent < SCTP_DATAGRAM_ACKED) {
3690                         inbetween++;
3691                 } else if (chk->sent > SCTP_DATAGRAM_ACKED) {
3692                         above++;
3693                 } else {
3694                         acked++;
3695                 }
3696         }
3697
3698         if ((inflight > 0) || (inbetween > 0)) {
3699 #ifdef INVARIANTS
3700                 panic("Flight size-express incorrect? \n");
3701 #else
3702                 SCTP_PRINTF("asoc->total_flight:%d cnt:%d\n",
3703                     entry_flight, entry_cnt);
3704
3705                 SCTP_PRINTF("Flight size-express incorrect F:%d I:%d R:%d Ab:%d ACK:%d\n",
3706                     inflight, inbetween, resend, above, acked);
3707                 ret = 1;
3708 #endif
3709         }
3710         return (ret);
3711 }
3712
3713
3714 static void
3715 sctp_window_probe_recovery(struct sctp_tcb *stcb,
3716     struct sctp_association *asoc,
3717     struct sctp_tmit_chunk *tp1)
3718 {
3719         tp1->window_probe = 0;
3720         if ((tp1->sent >= SCTP_DATAGRAM_ACKED) || (tp1->data == NULL)) {
3721                 /* TSN's skipped we do NOT move back. */
3722                 sctp_misc_ints(SCTP_FLIGHT_LOG_DWN_WP_FWD,
3723                     tp1->whoTo->flight_size,
3724                     tp1->book_size,
3725                     (uintptr_t) tp1->whoTo,
3726                     tp1->rec.data.TSN_seq);
3727                 return;
3728         }
3729         /* First setup this by shrinking flight */
3730         if (stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) {
3731                 (*stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) (tp1->whoTo,
3732                     tp1);
3733         }
3734         sctp_flight_size_decrease(tp1);
3735         sctp_total_flight_decrease(stcb, tp1);
3736         /* Now mark for resend */
3737         tp1->sent = SCTP_DATAGRAM_RESEND;
3738         sctp_ucount_incr(asoc->sent_queue_retran_cnt);
3739
3740         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
3741                 sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_WP,
3742                     tp1->whoTo->flight_size,
3743                     tp1->book_size,
3744                     (uintptr_t) tp1->whoTo,
3745                     tp1->rec.data.TSN_seq);
3746         }
3747 }
3748
3749 void
3750 sctp_express_handle_sack(struct sctp_tcb *stcb, uint32_t cumack,
3751     uint32_t rwnd, int *abort_now, int ecne_seen)
3752 {
3753         struct sctp_nets *net;
3754         struct sctp_association *asoc;
3755         struct sctp_tmit_chunk *tp1, *tp2;
3756         uint32_t old_rwnd;
3757         int win_probe_recovery = 0;
3758         int win_probe_recovered = 0;
3759         int j, done_once = 0;
3760         int rto_ok = 1;
3761
3762         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_SACK_ARRIVALS_ENABLE) {
3763                 sctp_misc_ints(SCTP_SACK_LOG_EXPRESS, cumack,
3764                     rwnd, stcb->asoc.last_acked_seq, stcb->asoc.peers_rwnd);
3765         }
3766         SCTP_TCB_LOCK_ASSERT(stcb);
3767 #ifdef SCTP_ASOCLOG_OF_TSNS
3768         stcb->asoc.cumack_log[stcb->asoc.cumack_log_at] = cumack;
3769         stcb->asoc.cumack_log_at++;
3770         if (stcb->asoc.cumack_log_at > SCTP_TSN_LOG_SIZE) {
3771                 stcb->asoc.cumack_log_at = 0;
3772         }
3773 #endif
3774         asoc = &stcb->asoc;
3775         old_rwnd = asoc->peers_rwnd;
3776         if (SCTP_TSN_GT(asoc->last_acked_seq, cumack)) {
3777                 /* old ack */
3778                 return;
3779         } else if (asoc->last_acked_seq == cumack) {
3780                 /* Window update sack */
3781                 asoc->peers_rwnd = sctp_sbspace_sub(rwnd,
3782                     (uint32_t) (asoc->total_flight + (asoc->total_flight_count * SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))));
3783                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
3784                         /* SWS sender side engages */
3785                         asoc->peers_rwnd = 0;
3786                 }
3787                 if (asoc->peers_rwnd > old_rwnd) {
3788                         goto again;
3789                 }
3790                 return;
3791         }
3792         /* First setup for CC stuff */
3793         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
3794                 if (SCTP_TSN_GT(cumack, net->cwr_window_tsn)) {
3795                         /* Drag along the window_tsn for cwr's */
3796                         net->cwr_window_tsn = cumack;
3797                 }
3798                 net->prev_cwnd = net->cwnd;
3799                 net->net_ack = 0;
3800                 net->net_ack2 = 0;
3801
3802                 /*
3803                  * CMT: Reset CUC and Fast recovery algo variables before
3804                  * SACK processing
3805                  */
3806                 net->new_pseudo_cumack = 0;
3807                 net->will_exit_fast_recovery = 0;
3808                 if (stcb->asoc.cc_functions.sctp_cwnd_prepare_net_for_sack) {
3809                         (*stcb->asoc.cc_functions.sctp_cwnd_prepare_net_for_sack) (stcb, net);
3810                 }
3811         }
3812         if (SCTP_BASE_SYSCTL(sctp_strict_sacks)) {
3813                 uint32_t send_s;
3814
3815                 if (!TAILQ_EMPTY(&asoc->sent_queue)) {
3816                         tp1 = TAILQ_LAST(&asoc->sent_queue,
3817                             sctpchunk_listhead);
3818                         send_s = tp1->rec.data.TSN_seq + 1;
3819                 } else {
3820                         send_s = asoc->sending_seq;
3821                 }
3822                 if (SCTP_TSN_GE(cumack, send_s)) {
3823 #ifndef INVARIANTS
3824                         struct mbuf *oper;
3825
3826 #endif
3827 #ifdef INVARIANTS
3828                         panic("Impossible sack 1");
3829 #else
3830
3831                         *abort_now = 1;
3832                         /* XXX */
3833                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
3834                             0, M_DONTWAIT, 1, MT_DATA);
3835                         if (oper) {
3836                                 struct sctp_paramhdr *ph;
3837                                 uint32_t *ippp;
3838
3839                                 SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
3840                                     sizeof(uint32_t);
3841                                 ph = mtod(oper, struct sctp_paramhdr *);
3842                                 ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
3843                                 ph->param_length = htons(SCTP_BUF_LEN(oper));
3844                                 ippp = (uint32_t *) (ph + 1);
3845                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_25);
3846                         }
3847                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_25;
3848                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
3849                         return;
3850 #endif
3851                 }
3852         }
3853         asoc->this_sack_highest_gap = cumack;
3854         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) {
3855                 sctp_misc_ints(SCTP_THRESHOLD_CLEAR,
3856                     stcb->asoc.overall_error_count,
3857                     0,
3858                     SCTP_FROM_SCTP_INDATA,
3859                     __LINE__);
3860         }
3861         stcb->asoc.overall_error_count = 0;
3862         if (SCTP_TSN_GT(cumack, asoc->last_acked_seq)) {
3863                 /* process the new consecutive TSN first */
3864                 TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
3865                         if (SCTP_TSN_GE(cumack, tp1->rec.data.TSN_seq)) {
3866                                 if (tp1->sent == SCTP_DATAGRAM_UNSENT) {
3867                                         SCTP_PRINTF("Warning, an unsent is now acked?\n");
3868                                 }
3869                                 if (tp1->sent < SCTP_DATAGRAM_ACKED) {
3870                                         /*
3871                                          * If it is less than ACKED, it is
3872                                          * now no-longer in flight. Higher
3873                                          * values may occur during marking
3874                                          */
3875                                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
3876                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
3877                                                         sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_CA,
3878                                                             tp1->whoTo->flight_size,
3879                                                             tp1->book_size,
3880                                                             (uintptr_t) tp1->whoTo,
3881                                                             tp1->rec.data.TSN_seq);
3882                                                 }
3883                                                 sctp_flight_size_decrease(tp1);
3884                                                 if (stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) {
3885                                                         (*stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) (tp1->whoTo,
3886                                                             tp1);
3887                                                 }
3888                                                 /* sa_ignore NO_NULL_CHK */
3889                                                 sctp_total_flight_decrease(stcb, tp1);
3890                                         }
3891                                         tp1->whoTo->net_ack += tp1->send_size;
3892                                         if (tp1->snd_count < 2) {
3893                                                 /*
3894                                                  * True non-retransmited
3895                                                  * chunk
3896                                                  */
3897                                                 tp1->whoTo->net_ack2 +=
3898                                                     tp1->send_size;
3899
3900                                                 /* update RTO too? */
3901                                                 if (tp1->do_rtt) {
3902                                                         if (rto_ok) {
3903                                                                 tp1->whoTo->RTO =
3904                                                                 /*
3905                                                                  * sa_ignore
3906                                                                  * NO_NULL_CH
3907                                                                  * K
3908                                                                  */
3909                                                                     sctp_calculate_rto(stcb,
3910                                                                     asoc, tp1->whoTo,
3911                                                                     &tp1->sent_rcv_time,
3912                                                                     sctp_align_safe_nocopy,
3913                                                                     SCTP_RTT_FROM_DATA);
3914                                                                 rto_ok = 0;
3915                                                         }
3916                                                         if (tp1->whoTo->rto_needed == 0) {
3917                                                                 tp1->whoTo->rto_needed = 1;
3918                                                         }
3919                                                         tp1->do_rtt = 0;
3920                                                 }
3921                                         }
3922                                         /*
3923                                          * CMT: CUCv2 algorithm. From the
3924                                          * cumack'd TSNs, for each TSN being
3925                                          * acked for the first time, set the
3926                                          * following variables for the
3927                                          * corresp destination.
3928                                          * new_pseudo_cumack will trigger a
3929                                          * cwnd update.
3930                                          * find_(rtx_)pseudo_cumack will
3931                                          * trigger search for the next
3932                                          * expected (rtx-)pseudo-cumack.
3933                                          */
3934                                         tp1->whoTo->new_pseudo_cumack = 1;
3935                                         tp1->whoTo->find_pseudo_cumack = 1;
3936                                         tp1->whoTo->find_rtx_pseudo_cumack = 1;
3937
3938                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
3939                                                 /* sa_ignore NO_NULL_CHK */
3940                                                 sctp_log_cwnd(stcb, tp1->whoTo, tp1->rec.data.TSN_seq, SCTP_CWND_LOG_FROM_SACK);
3941                                         }
3942                                 }
3943                                 if (tp1->sent == SCTP_DATAGRAM_RESEND) {
3944                                         sctp_ucount_decr(asoc->sent_queue_retran_cnt);
3945                                 }
3946                                 if (tp1->rec.data.chunk_was_revoked) {
3947                                         /* deflate the cwnd */
3948                                         tp1->whoTo->cwnd -= tp1->book_size;
3949                                         tp1->rec.data.chunk_was_revoked = 0;
3950                                 }
3951                                 tp1->sent = SCTP_DATAGRAM_ACKED;
3952                                 TAILQ_REMOVE(&asoc->sent_queue, tp1, sctp_next);
3953                                 if (tp1->data) {
3954                                         /* sa_ignore NO_NULL_CHK */
3955                                         sctp_free_bufspace(stcb, asoc, tp1, 1);
3956                                         sctp_m_freem(tp1->data);
3957                                         tp1->data = NULL;
3958                                 }
3959                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
3960                                         sctp_log_sack(asoc->last_acked_seq,
3961                                             cumack,
3962                                             tp1->rec.data.TSN_seq,
3963                                             0,
3964                                             0,
3965                                             SCTP_LOG_FREE_SENT);
3966                                 }
3967                                 asoc->sent_queue_cnt--;
3968                                 sctp_free_a_chunk(stcb, tp1, SCTP_SO_NOT_LOCKED);
3969                         } else {
3970                                 break;
3971                         }
3972                 }
3973
3974         }
3975         /* sa_ignore NO_NULL_CHK */
3976         if (stcb->sctp_socket) {
3977 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
3978                 struct socket *so;
3979
3980 #endif
3981                 SOCKBUF_LOCK(&stcb->sctp_socket->so_snd);
3982                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_WAKE_LOGGING_ENABLE) {
3983                         /* sa_ignore NO_NULL_CHK */
3984                         sctp_wakeup_log(stcb, 1, SCTP_WAKESND_FROM_SACK);
3985                 }
3986 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
3987                 so = SCTP_INP_SO(stcb->sctp_ep);
3988                 atomic_add_int(&stcb->asoc.refcnt, 1);
3989                 SCTP_TCB_UNLOCK(stcb);
3990                 SCTP_SOCKET_LOCK(so, 1);
3991                 SCTP_TCB_LOCK(stcb);
3992                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
3993                 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
3994                         /* assoc was freed while we were unlocked */
3995                         SCTP_SOCKET_UNLOCK(so, 1);
3996                         return;
3997                 }
3998 #endif
3999                 sctp_sowwakeup_locked(stcb->sctp_ep, stcb->sctp_socket);
4000 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4001                 SCTP_SOCKET_UNLOCK(so, 1);
4002 #endif
4003         } else {
4004                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_WAKE_LOGGING_ENABLE) {
4005                         sctp_wakeup_log(stcb, 1, SCTP_NOWAKE_FROM_SACK);
4006                 }
4007         }
4008
4009         /* JRS - Use the congestion control given in the CC module */
4010         if ((asoc->last_acked_seq != cumack) && (ecne_seen == 0)) {
4011                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4012                         if (net->net_ack2 > 0) {
4013                                 /*
4014                                  * Karn's rule applies to clearing error
4015                                  * count, this is optional.
4016                                  */
4017                                 net->error_count = 0;
4018                                 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
4019                                         /* addr came good */
4020                                         net->dest_state |= SCTP_ADDR_REACHABLE;
4021                                         sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb,
4022                                             0, (void *)net, SCTP_SO_NOT_LOCKED);
4023                                 }
4024                                 if (net == stcb->asoc.primary_destination) {
4025                                         if (stcb->asoc.alternate) {
4026                                                 /*
4027                                                  * release the alternate,
4028                                                  * primary is good
4029                                                  */
4030                                                 sctp_free_remote_addr(stcb->asoc.alternate);
4031                                                 stcb->asoc.alternate = NULL;
4032                                         }
4033                                 }
4034                                 if (net->dest_state & SCTP_ADDR_PF) {
4035                                         net->dest_state &= ~SCTP_ADDR_PF;
4036                                         sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_3);
4037                                         sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net);
4038                                         asoc->cc_functions.sctp_cwnd_update_exit_pf(stcb, net);
4039                                         /* Done with this net */
4040                                         net->net_ack = 0;
4041                                 }
4042                                 /* restore any doubled timers */
4043                                 net->RTO = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv;
4044                                 if (net->RTO < stcb->asoc.minrto) {
4045                                         net->RTO = stcb->asoc.minrto;
4046                                 }
4047                                 if (net->RTO > stcb->asoc.maxrto) {
4048                                         net->RTO = stcb->asoc.maxrto;
4049                                 }
4050                         }
4051                 }
4052                 asoc->cc_functions.sctp_cwnd_update_after_sack(stcb, asoc, 1, 0, 0);
4053         }
4054         asoc->last_acked_seq = cumack;
4055
4056         if (TAILQ_EMPTY(&asoc->sent_queue)) {
4057                 /* nothing left in-flight */
4058                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4059                         net->flight_size = 0;
4060                         net->partial_bytes_acked = 0;
4061                 }
4062                 asoc->total_flight = 0;
4063                 asoc->total_flight_count = 0;
4064         }
4065         /* RWND update */
4066         asoc->peers_rwnd = sctp_sbspace_sub(rwnd,
4067             (uint32_t) (asoc->total_flight + (asoc->total_flight_count * SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))));
4068         if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
4069                 /* SWS sender side engages */
4070                 asoc->peers_rwnd = 0;
4071         }
4072         if (asoc->peers_rwnd > old_rwnd) {
4073                 win_probe_recovery = 1;
4074         }
4075         /* Now assure a timer where data is queued at */
4076 again:
4077         j = 0;
4078         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4079                 int to_ticks;
4080
4081                 if (win_probe_recovery && (net->window_probe)) {
4082                         win_probe_recovered = 1;
4083                         /*
4084                          * Find first chunk that was used with window probe
4085                          * and clear the sent
4086                          */
4087                         /* sa_ignore FREED_MEMORY */
4088                         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
4089                                 if (tp1->window_probe) {
4090                                         /* move back to data send queue */
4091                                         sctp_window_probe_recovery(stcb, asoc, tp1);
4092                                         break;
4093                                 }
4094                         }
4095                 }
4096                 if (net->RTO == 0) {
4097                         to_ticks = MSEC_TO_TICKS(stcb->asoc.initial_rto);
4098                 } else {
4099                         to_ticks = MSEC_TO_TICKS(net->RTO);
4100                 }
4101                 if (net->flight_size) {
4102                         j++;
4103                         (void)SCTP_OS_TIMER_START(&net->rxt_timer.timer, to_ticks,
4104                             sctp_timeout_handler, &net->rxt_timer);
4105                         if (net->window_probe) {
4106                                 net->window_probe = 0;
4107                         }
4108                 } else {
4109                         if (net->window_probe) {
4110                                 /*
4111                                  * In window probes we must assure a timer
4112                                  * is still running there
4113                                  */
4114                                 net->window_probe = 0;
4115                                 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4116                                         SCTP_OS_TIMER_START(&net->rxt_timer.timer, to_ticks,
4117                                             sctp_timeout_handler, &net->rxt_timer);
4118                                 }
4119                         } else if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
4120                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
4121                                     stcb, net,
4122                                     SCTP_FROM_SCTP_INDATA + SCTP_LOC_22);
4123                         }
4124                 }
4125         }
4126         if ((j == 0) &&
4127             (!TAILQ_EMPTY(&asoc->sent_queue)) &&
4128             (asoc->sent_queue_retran_cnt == 0) &&
4129             (win_probe_recovered == 0) &&
4130             (done_once == 0)) {
4131                 /*
4132                  * huh, this should not happen unless all packets are
4133                  * PR-SCTP and marked to skip of course.
4134                  */
4135                 if (sctp_fs_audit(asoc)) {
4136                         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4137                                 net->flight_size = 0;
4138                         }
4139                         asoc->total_flight = 0;
4140                         asoc->total_flight_count = 0;
4141                         asoc->sent_queue_retran_cnt = 0;
4142                         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
4143                                 if (tp1->sent < SCTP_DATAGRAM_RESEND) {
4144                                         sctp_flight_size_increase(tp1);
4145                                         sctp_total_flight_increase(stcb, tp1);
4146                                 } else if (tp1->sent == SCTP_DATAGRAM_RESEND) {
4147                                         sctp_ucount_incr(asoc->sent_queue_retran_cnt);
4148                                 }
4149                         }
4150                 }
4151                 done_once = 1;
4152                 goto again;
4153         }
4154         /**********************************/
4155         /* Now what about shutdown issues */
4156         /**********************************/
4157         if (TAILQ_EMPTY(&asoc->send_queue) && TAILQ_EMPTY(&asoc->sent_queue)) {
4158                 /* nothing left on sendqueue.. consider done */
4159                 /* clean up */
4160                 if ((asoc->stream_queue_cnt == 1) &&
4161                     ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
4162                     (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED)) &&
4163                     (asoc->locked_on_sending)
4164                     ) {
4165                         struct sctp_stream_queue_pending *sp;
4166
4167                         /*
4168                          * I may be in a state where we got all across.. but
4169                          * cannot write more due to a shutdown... we abort
4170                          * since the user did not indicate EOR in this case.
4171                          * The sp will be cleaned during free of the asoc.
4172                          */
4173                         sp = TAILQ_LAST(&((asoc->locked_on_sending)->outqueue),
4174                             sctp_streamhead);
4175                         if ((sp) && (sp->length == 0)) {
4176                                 /* Let cleanup code purge it */
4177                                 if (sp->msg_is_complete) {
4178                                         asoc->stream_queue_cnt--;
4179                                 } else {
4180                                         asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
4181                                         asoc->locked_on_sending = NULL;
4182                                         asoc->stream_queue_cnt--;
4183                                 }
4184                         }
4185                 }
4186                 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) &&
4187                     (asoc->stream_queue_cnt == 0)) {
4188                         if (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT) {
4189                                 /* Need to abort here */
4190                                 struct mbuf *oper;
4191
4192                 abort_out_now:
4193                                 *abort_now = 1;
4194                                 /* XXX */
4195                                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
4196                                     0, M_DONTWAIT, 1, MT_DATA);
4197                                 if (oper) {
4198                                         struct sctp_paramhdr *ph;
4199                                         uint32_t *ippp;
4200
4201                                         SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
4202                                             sizeof(uint32_t);
4203                                         ph = mtod(oper, struct sctp_paramhdr *);
4204                                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
4205                                         ph->param_length = htons(SCTP_BUF_LEN(oper));
4206                                         ippp = (uint32_t *) (ph + 1);
4207                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_24);
4208                                 }
4209                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_24;
4210                                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
4211                         } else {
4212                                 struct sctp_nets *netp;
4213
4214                                 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) ||
4215                                     (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) {
4216                                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4217                                 }
4218                                 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
4219                                 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
4220                                 sctp_stop_timers_for_shutdown(stcb);
4221                                 if (asoc->alternate) {
4222                                         netp = asoc->alternate;
4223                                 } else {
4224                                         netp = asoc->primary_destination;
4225                                 }
4226                                 sctp_send_shutdown(stcb, netp);
4227                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN,
4228                                     stcb->sctp_ep, stcb, netp);
4229                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD,
4230                                     stcb->sctp_ep, stcb, netp);
4231                         }
4232                 } else if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) &&
4233                     (asoc->stream_queue_cnt == 0)) {
4234                         struct sctp_nets *netp;
4235
4236                         if (asoc->alternate) {
4237                                 netp = asoc->alternate;
4238                         } else {
4239                                 netp = asoc->primary_destination;
4240                         }
4241                         if (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT) {
4242                                 goto abort_out_now;
4243                         }
4244                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4245                         SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_ACK_SENT);
4246                         SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
4247                         sctp_send_shutdown_ack(stcb, netp);
4248                         sctp_stop_timers_for_shutdown(stcb);
4249                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK,
4250                             stcb->sctp_ep, stcb, netp);
4251                 }
4252         }
4253         /*********************************************/
4254         /* Here we perform PR-SCTP procedures        */
4255         /* (section 4.2)                             */
4256         /*********************************************/
4257         /* C1. update advancedPeerAckPoint */
4258         if (SCTP_TSN_GT(cumack, asoc->advanced_peer_ack_point)) {
4259                 asoc->advanced_peer_ack_point = cumack;
4260         }
4261         /* PR-Sctp issues need to be addressed too */
4262         if ((asoc->peer_supports_prsctp) && (asoc->pr_sctp_cnt > 0)) {
4263                 struct sctp_tmit_chunk *lchk;
4264                 uint32_t old_adv_peer_ack_point;
4265
4266                 old_adv_peer_ack_point = asoc->advanced_peer_ack_point;
4267                 lchk = sctp_try_advance_peer_ack_point(stcb, asoc);
4268                 /* C3. See if we need to send a Fwd-TSN */
4269                 if (SCTP_TSN_GT(asoc->advanced_peer_ack_point, cumack)) {
4270                         /*
4271                          * ISSUE with ECN, see FWD-TSN processing.
4272                          */
4273                         if (SCTP_TSN_GT(asoc->advanced_peer_ack_point, old_adv_peer_ack_point)) {
4274                                 send_forward_tsn(stcb, asoc);
4275                         } else if (lchk) {
4276                                 /* try to FR fwd-tsn's that get lost too */
4277                                 if (lchk->rec.data.fwd_tsn_cnt >= 3) {
4278                                         send_forward_tsn(stcb, asoc);
4279                                 }
4280                         }
4281                 }
4282                 if (lchk) {
4283                         /* Assure a timer is up */
4284                         sctp_timer_start(SCTP_TIMER_TYPE_SEND,
4285                             stcb->sctp_ep, stcb, lchk->whoTo);
4286                 }
4287         }
4288         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_RWND_LOGGING_ENABLE) {
4289                 sctp_misc_ints(SCTP_SACK_RWND_UPDATE,
4290                     rwnd,
4291                     stcb->asoc.peers_rwnd,
4292                     stcb->asoc.total_flight,
4293                     stcb->asoc.total_output_queue_size);
4294         }
4295 }
4296
4297 void
4298 sctp_handle_sack(struct mbuf *m, int offset_seg, int offset_dup,
4299     struct sctp_tcb *stcb,
4300     uint16_t num_seg, uint16_t num_nr_seg, uint16_t num_dup,
4301     int *abort_now, uint8_t flags,
4302     uint32_t cum_ack, uint32_t rwnd, int ecne_seen)
4303 {
4304         struct sctp_association *asoc;
4305         struct sctp_tmit_chunk *tp1, *tp2;
4306         uint32_t last_tsn, biggest_tsn_acked, biggest_tsn_newly_acked, this_sack_lowest_newack;
4307         uint16_t wake_him = 0;
4308         uint32_t send_s = 0;
4309         long j;
4310         int accum_moved = 0;
4311         int will_exit_fast_recovery = 0;
4312         uint32_t a_rwnd, old_rwnd;
4313         int win_probe_recovery = 0;
4314         int win_probe_recovered = 0;
4315         struct sctp_nets *net = NULL;
4316         int done_once;
4317         int rto_ok = 1;
4318         uint8_t reneged_all = 0;
4319         uint8_t cmt_dac_flag;
4320
4321         /*
4322          * we take any chance we can to service our queues since we cannot
4323          * get awoken when the socket is read from :<
4324          */
4325         /*
4326          * Now perform the actual SACK handling: 1) Verify that it is not an
4327          * old sack, if so discard. 2) If there is nothing left in the send
4328          * queue (cum-ack is equal to last acked) then you have a duplicate
4329          * too, update any rwnd change and verify no timers are running.
4330          * then return. 3) Process any new consequtive data i.e. cum-ack
4331          * moved process these first and note that it moved. 4) Process any
4332          * sack blocks. 5) Drop any acked from the queue. 6) Check for any
4333          * revoked blocks and mark. 7) Update the cwnd. 8) Nothing left,
4334          * sync up flightsizes and things, stop all timers and also check
4335          * for shutdown_pending state. If so then go ahead and send off the
4336          * shutdown. If in shutdown recv, send off the shutdown-ack and
4337          * start that timer, Ret. 9) Strike any non-acked things and do FR
4338          * procedure if needed being sure to set the FR flag. 10) Do pr-sctp
4339          * procedures. 11) Apply any FR penalties. 12) Assure we will SACK
4340          * if in shutdown_recv state.
4341          */
4342         SCTP_TCB_LOCK_ASSERT(stcb);
4343         /* CMT DAC algo */
4344         this_sack_lowest_newack = 0;
4345         SCTP_STAT_INCR(sctps_slowpath_sack);
4346         last_tsn = cum_ack;
4347         cmt_dac_flag = flags & SCTP_SACK_CMT_DAC;
4348 #ifdef SCTP_ASOCLOG_OF_TSNS
4349         stcb->asoc.cumack_log[stcb->asoc.cumack_log_at] = cum_ack;
4350         stcb->asoc.cumack_log_at++;
4351         if (stcb->asoc.cumack_log_at > SCTP_TSN_LOG_SIZE) {
4352                 stcb->asoc.cumack_log_at = 0;
4353         }
4354 #endif
4355         a_rwnd = rwnd;
4356
4357         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_SACK_ARRIVALS_ENABLE) {
4358                 sctp_misc_ints(SCTP_SACK_LOG_NORMAL, cum_ack,
4359                     rwnd, stcb->asoc.last_acked_seq, stcb->asoc.peers_rwnd);
4360         }
4361         old_rwnd = stcb->asoc.peers_rwnd;
4362         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) {
4363                 sctp_misc_ints(SCTP_THRESHOLD_CLEAR,
4364                     stcb->asoc.overall_error_count,
4365                     0,
4366                     SCTP_FROM_SCTP_INDATA,
4367                     __LINE__);
4368         }
4369         stcb->asoc.overall_error_count = 0;
4370         asoc = &stcb->asoc;
4371         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
4372                 sctp_log_sack(asoc->last_acked_seq,
4373                     cum_ack,
4374                     0,
4375                     num_seg,
4376                     num_dup,
4377                     SCTP_LOG_NEW_SACK);
4378         }
4379         if ((num_dup) && (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE)) {
4380                 uint16_t i;
4381                 uint32_t *dupdata, dblock;
4382
4383                 for (i = 0; i < num_dup; i++) {
4384                         dupdata = (uint32_t *) sctp_m_getptr(m, offset_dup + i * sizeof(uint32_t),
4385                             sizeof(uint32_t), (uint8_t *) & dblock);
4386                         if (dupdata == NULL) {
4387                                 break;
4388                         }
4389                         sctp_log_fr(*dupdata, 0, 0, SCTP_FR_DUPED);
4390                 }
4391         }
4392         if (SCTP_BASE_SYSCTL(sctp_strict_sacks)) {
4393                 /* reality check */
4394                 if (!TAILQ_EMPTY(&asoc->sent_queue)) {
4395                         tp1 = TAILQ_LAST(&asoc->sent_queue,
4396                             sctpchunk_listhead);
4397                         send_s = tp1->rec.data.TSN_seq + 1;
4398                 } else {
4399                         tp1 = NULL;
4400                         send_s = asoc->sending_seq;
4401                 }
4402                 if (SCTP_TSN_GE(cum_ack, send_s)) {
4403                         struct mbuf *oper;
4404
4405                         /*
4406                          * no way, we have not even sent this TSN out yet.
4407                          * Peer is hopelessly messed up with us.
4408                          */
4409                         SCTP_PRINTF("NEW cum_ack:%x send_s:%x is smaller or equal\n",
4410                             cum_ack, send_s);
4411                         if (tp1) {
4412                                 SCTP_PRINTF("Got send_s from tsn:%x + 1 of tp1:%p\n",
4413                                     tp1->rec.data.TSN_seq, tp1);
4414                         }
4415         hopeless_peer:
4416                         *abort_now = 1;
4417                         /* XXX */
4418                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
4419                             0, M_DONTWAIT, 1, MT_DATA);
4420                         if (oper) {
4421                                 struct sctp_paramhdr *ph;
4422                                 uint32_t *ippp;
4423
4424                                 SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
4425                                     sizeof(uint32_t);
4426                                 ph = mtod(oper, struct sctp_paramhdr *);
4427                                 ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
4428                                 ph->param_length = htons(SCTP_BUF_LEN(oper));
4429                                 ippp = (uint32_t *) (ph + 1);
4430                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_25);
4431                         }
4432                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_25;
4433                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
4434                         return;
4435                 }
4436         }
4437         /**********************/
4438         /* 1) check the range */
4439         /**********************/
4440         if (SCTP_TSN_GT(asoc->last_acked_seq, last_tsn)) {
4441                 /* acking something behind */
4442                 return;
4443         }
4444         /* update the Rwnd of the peer */
4445         if (TAILQ_EMPTY(&asoc->sent_queue) &&
4446             TAILQ_EMPTY(&asoc->send_queue) &&
4447             (asoc->stream_queue_cnt == 0)) {
4448                 /* nothing left on send/sent and strmq */
4449                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
4450                         sctp_log_rwnd_set(SCTP_SET_PEER_RWND_VIA_SACK,
4451                             asoc->peers_rwnd, 0, 0, a_rwnd);
4452                 }
4453                 asoc->peers_rwnd = a_rwnd;
4454                 if (asoc->sent_queue_retran_cnt) {
4455                         asoc->sent_queue_retran_cnt = 0;
4456                 }
4457                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
4458                         /* SWS sender side engages */
4459                         asoc->peers_rwnd = 0;
4460                 }
4461                 /* stop any timers */
4462                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4463                         sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
4464                             stcb, net, SCTP_FROM_SCTP_INDATA + SCTP_LOC_26);
4465                         net->partial_bytes_acked = 0;
4466                         net->flight_size = 0;
4467                 }
4468                 asoc->total_flight = 0;
4469                 asoc->total_flight_count = 0;
4470                 return;
4471         }
4472         /*
4473          * We init netAckSz and netAckSz2 to 0. These are used to track 2
4474          * things. The total byte count acked is tracked in netAckSz AND
4475          * netAck2 is used to track the total bytes acked that are un-
4476          * amibguious and were never retransmitted. We track these on a per
4477          * destination address basis.
4478          */
4479         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4480                 if (SCTP_TSN_GT(cum_ack, net->cwr_window_tsn)) {
4481                         /* Drag along the window_tsn for cwr's */
4482                         net->cwr_window_tsn = cum_ack;
4483                 }
4484                 net->prev_cwnd = net->cwnd;
4485                 net->net_ack = 0;
4486                 net->net_ack2 = 0;
4487
4488                 /*
4489                  * CMT: Reset CUC and Fast recovery algo variables before
4490                  * SACK processing
4491                  */
4492                 net->new_pseudo_cumack = 0;
4493                 net->will_exit_fast_recovery = 0;
4494                 if (stcb->asoc.cc_functions.sctp_cwnd_prepare_net_for_sack) {
4495                         (*stcb->asoc.cc_functions.sctp_cwnd_prepare_net_for_sack) (stcb, net);
4496                 }
4497         }
4498         /* process the new consecutive TSN first */
4499         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
4500                 if (SCTP_TSN_GE(last_tsn, tp1->rec.data.TSN_seq)) {
4501                         if (tp1->sent != SCTP_DATAGRAM_UNSENT) {
4502                                 accum_moved = 1;
4503                                 if (tp1->sent < SCTP_DATAGRAM_ACKED) {
4504                                         /*
4505                                          * If it is less than ACKED, it is
4506                                          * now no-longer in flight. Higher
4507                                          * values may occur during marking
4508                                          */
4509                                         if ((tp1->whoTo->dest_state &
4510                                             SCTP_ADDR_UNCONFIRMED) &&
4511                                             (tp1->snd_count < 2)) {
4512                                                 /*
4513                                                  * If there was no retran
4514                                                  * and the address is
4515                                                  * un-confirmed and we sent
4516                                                  * there and are now
4517                                                  * sacked.. its confirmed,
4518                                                  * mark it so.
4519                                                  */
4520                                                 tp1->whoTo->dest_state &=
4521                                                     ~SCTP_ADDR_UNCONFIRMED;
4522                                         }
4523                                         if (tp1->sent < SCTP_DATAGRAM_RESEND) {
4524                                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
4525                                                         sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_CA,
4526                                                             tp1->whoTo->flight_size,
4527                                                             tp1->book_size,
4528                                                             (uintptr_t) tp1->whoTo,
4529                                                             tp1->rec.data.TSN_seq);
4530                                                 }
4531                                                 sctp_flight_size_decrease(tp1);
4532                                                 sctp_total_flight_decrease(stcb, tp1);
4533                                                 if (stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) {
4534                                                         (*stcb->asoc.cc_functions.sctp_cwnd_update_tsn_acknowledged) (tp1->whoTo,
4535                                                             tp1);
4536                                                 }
4537                                         }
4538                                         tp1->whoTo->net_ack += tp1->send_size;
4539
4540                                         /* CMT SFR and DAC algos */
4541                                         this_sack_lowest_newack = tp1->rec.data.TSN_seq;
4542                                         tp1->whoTo->saw_newack = 1;
4543
4544                                         if (tp1->snd_count < 2) {
4545                                                 /*
4546                                                  * True non-retransmited
4547                                                  * chunk
4548                                                  */
4549                                                 tp1->whoTo->net_ack2 +=
4550                                                     tp1->send_size;
4551
4552                                                 /* update RTO too? */
4553                                                 if (tp1->do_rtt) {
4554                                                         if (rto_ok) {
4555                                                                 tp1->whoTo->RTO =
4556                                                                     sctp_calculate_rto(stcb,
4557                                                                     asoc, tp1->whoTo,
4558                                                                     &tp1->sent_rcv_time,
4559                                                                     sctp_align_safe_nocopy,
4560                                                                     SCTP_RTT_FROM_DATA);
4561                                                                 rto_ok = 0;
4562                                                         }
4563                                                         if (tp1->whoTo->rto_needed == 0) {
4564                                                                 tp1->whoTo->rto_needed = 1;
4565                                                         }
4566                                                         tp1->do_rtt = 0;
4567                                                 }
4568                                         }
4569                                         /*
4570                                          * CMT: CUCv2 algorithm. From the
4571                                          * cumack'd TSNs, for each TSN being
4572                                          * acked for the first time, set the
4573                                          * following variables for the
4574                                          * corresp destination.
4575                                          * new_pseudo_cumack will trigger a
4576                                          * cwnd update.
4577                                          * find_(rtx_)pseudo_cumack will
4578                                          * trigger search for the next
4579                                          * expected (rtx-)pseudo-cumack.
4580                                          */
4581                                         tp1->whoTo->new_pseudo_cumack = 1;
4582                                         tp1->whoTo->find_pseudo_cumack = 1;
4583                                         tp1->whoTo->find_rtx_pseudo_cumack = 1;
4584
4585
4586                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
4587                                                 sctp_log_sack(asoc->last_acked_seq,
4588                                                     cum_ack,
4589                                                     tp1->rec.data.TSN_seq,
4590                                                     0,
4591                                                     0,
4592                                                     SCTP_LOG_TSN_ACKED);
4593                                         }
4594                                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
4595                                                 sctp_log_cwnd(stcb, tp1->whoTo, tp1->rec.data.TSN_seq, SCTP_CWND_LOG_FROM_SACK);
4596                                         }
4597                                 }
4598                                 if (tp1->sent == SCTP_DATAGRAM_RESEND) {
4599                                         sctp_ucount_decr(asoc->sent_queue_retran_cnt);
4600 #ifdef SCTP_AUDITING_ENABLED
4601                                         sctp_audit_log(0xB3,
4602                                             (asoc->sent_queue_retran_cnt & 0x000000ff));
4603 #endif
4604                                 }
4605                                 if (tp1->rec.data.chunk_was_revoked) {
4606                                         /* deflate the cwnd */
4607                                         tp1->whoTo->cwnd -= tp1->book_size;
4608                                         tp1->rec.data.chunk_was_revoked = 0;
4609                                 }
4610                                 tp1->sent = SCTP_DATAGRAM_ACKED;
4611                         }
4612                 } else {
4613                         break;
4614                 }
4615         }
4616         biggest_tsn_newly_acked = biggest_tsn_acked = last_tsn;
4617         /* always set this up to cum-ack */
4618         asoc->this_sack_highest_gap = last_tsn;
4619
4620         if ((num_seg > 0) || (num_nr_seg > 0)) {
4621
4622                 /*
4623                  * CMT: SFR algo (and HTNA) - this_sack_highest_newack has
4624                  * to be greater than the cumack. Also reset saw_newack to 0
4625                  * for all dests.
4626                  */
4627                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4628                         net->saw_newack = 0;
4629                         net->this_sack_highest_newack = last_tsn;
4630                 }
4631
4632                 /*
4633                  * thisSackHighestGap will increase while handling NEW
4634                  * segments this_sack_highest_newack will increase while
4635                  * handling NEWLY ACKED chunks. this_sack_lowest_newack is
4636                  * used for CMT DAC algo. saw_newack will also change.
4637                  */
4638                 if (sctp_handle_segments(m, &offset_seg, stcb, asoc, last_tsn, &biggest_tsn_acked,
4639                     &biggest_tsn_newly_acked, &this_sack_lowest_newack,
4640                     num_seg, num_nr_seg, &rto_ok)) {
4641                         wake_him++;
4642                 }
4643                 if (SCTP_BASE_SYSCTL(sctp_strict_sacks)) {
4644                         /*
4645                          * validate the biggest_tsn_acked in the gap acks if
4646                          * strict adherence is wanted.
4647                          */
4648                         if (SCTP_TSN_GE(biggest_tsn_acked, send_s)) {
4649                                 /*
4650                                  * peer is either confused or we are under
4651                                  * attack. We must abort.
4652                                  */
4653                                 SCTP_PRINTF("Hopeless peer! biggest_tsn_acked:%x largest seq:%x\n",
4654                                     biggest_tsn_acked, send_s);
4655                                 goto hopeless_peer;
4656                         }
4657                 }
4658         }
4659         /*******************************************/
4660         /* cancel ALL T3-send timer if accum moved */
4661         /*******************************************/
4662         if (asoc->sctp_cmt_on_off > 0) {
4663                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4664                         if (net->new_pseudo_cumack)
4665                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
4666                                     stcb, net,
4667                                     SCTP_FROM_SCTP_INDATA + SCTP_LOC_27);
4668
4669                 }
4670         } else {
4671                 if (accum_moved) {
4672                         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4673                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
4674                                     stcb, net, SCTP_FROM_SCTP_INDATA + SCTP_LOC_28);
4675                         }
4676                 }
4677         }
4678         /********************************************/
4679         /* drop the acked chunks from the sentqueue */
4680         /********************************************/
4681         asoc->last_acked_seq = cum_ack;
4682
4683         TAILQ_FOREACH_SAFE(tp1, &asoc->sent_queue, sctp_next, tp2) {
4684                 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, cum_ack)) {
4685                         break;
4686                 }
4687                 if (tp1->sent == SCTP_DATAGRAM_UNSENT) {
4688                         /* no more sent on list */
4689                         SCTP_PRINTF("Warning, tp1->sent == %d and its now acked?\n",
4690                             tp1->sent);
4691                 }
4692                 TAILQ_REMOVE(&asoc->sent_queue, tp1, sctp_next);
4693                 if (tp1->pr_sctp_on) {
4694                         if (asoc->pr_sctp_cnt != 0)
4695                                 asoc->pr_sctp_cnt--;
4696                 }
4697                 asoc->sent_queue_cnt--;
4698                 if (tp1->data) {
4699                         /* sa_ignore NO_NULL_CHK */
4700                         sctp_free_bufspace(stcb, asoc, tp1, 1);
4701                         sctp_m_freem(tp1->data);
4702                         tp1->data = NULL;
4703                         if (asoc->peer_supports_prsctp && PR_SCTP_BUF_ENABLED(tp1->flags)) {
4704                                 asoc->sent_queue_cnt_removeable--;
4705                         }
4706                 }
4707                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_LOGGING_ENABLE) {
4708                         sctp_log_sack(asoc->last_acked_seq,
4709                             cum_ack,
4710                             tp1->rec.data.TSN_seq,
4711                             0,
4712                             0,
4713                             SCTP_LOG_FREE_SENT);
4714                 }
4715                 sctp_free_a_chunk(stcb, tp1, SCTP_SO_NOT_LOCKED);
4716                 wake_him++;
4717         }
4718         if (TAILQ_EMPTY(&asoc->sent_queue) && (asoc->total_flight > 0)) {
4719 #ifdef INVARIANTS
4720                 panic("Warning flight size is postive and should be 0");
4721 #else
4722                 SCTP_PRINTF("Warning flight size incorrect should be 0 is %d\n",
4723                     asoc->total_flight);
4724 #endif
4725                 asoc->total_flight = 0;
4726         }
4727         /* sa_ignore NO_NULL_CHK */
4728         if ((wake_him) && (stcb->sctp_socket)) {
4729 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4730                 struct socket *so;
4731
4732 #endif
4733                 SOCKBUF_LOCK(&stcb->sctp_socket->so_snd);
4734                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_WAKE_LOGGING_ENABLE) {
4735                         sctp_wakeup_log(stcb, wake_him, SCTP_WAKESND_FROM_SACK);
4736                 }
4737 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4738                 so = SCTP_INP_SO(stcb->sctp_ep);
4739                 atomic_add_int(&stcb->asoc.refcnt, 1);
4740                 SCTP_TCB_UNLOCK(stcb);
4741                 SCTP_SOCKET_LOCK(so, 1);
4742                 SCTP_TCB_LOCK(stcb);
4743                 atomic_subtract_int(&stcb->asoc.refcnt, 1);
4744                 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) {
4745                         /* assoc was freed while we were unlocked */
4746                         SCTP_SOCKET_UNLOCK(so, 1);
4747                         return;
4748                 }
4749 #endif
4750                 sctp_sowwakeup_locked(stcb->sctp_ep, stcb->sctp_socket);
4751 #if defined (__APPLE__) || defined(SCTP_SO_LOCK_TESTING)
4752                 SCTP_SOCKET_UNLOCK(so, 1);
4753 #endif
4754         } else {
4755                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_WAKE_LOGGING_ENABLE) {
4756                         sctp_wakeup_log(stcb, wake_him, SCTP_NOWAKE_FROM_SACK);
4757                 }
4758         }
4759
4760         if (asoc->fast_retran_loss_recovery && accum_moved) {
4761                 if (SCTP_TSN_GE(asoc->last_acked_seq, asoc->fast_recovery_tsn)) {
4762                         /* Setup so we will exit RFC2582 fast recovery */
4763                         will_exit_fast_recovery = 1;
4764                 }
4765         }
4766         /*
4767          * Check for revoked fragments:
4768          * 
4769          * if Previous sack - Had no frags then we can't have any revoked if
4770          * Previous sack - Had frag's then - If we now have frags aka
4771          * num_seg > 0 call sctp_check_for_revoked() to tell if peer revoked
4772          * some of them. else - The peer revoked all ACKED fragments, since
4773          * we had some before and now we have NONE.
4774          */
4775
4776         if (num_seg) {
4777                 sctp_check_for_revoked(stcb, asoc, cum_ack, biggest_tsn_acked);
4778                 asoc->saw_sack_with_frags = 1;
4779         } else if (asoc->saw_sack_with_frags) {
4780                 int cnt_revoked = 0;
4781
4782                 /* Peer revoked all dg's marked or acked */
4783                 TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
4784                         if (tp1->sent == SCTP_DATAGRAM_ACKED) {
4785                                 tp1->sent = SCTP_DATAGRAM_SENT;
4786                                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
4787                                         sctp_misc_ints(SCTP_FLIGHT_LOG_UP_REVOKE,
4788                                             tp1->whoTo->flight_size,
4789                                             tp1->book_size,
4790                                             (uintptr_t) tp1->whoTo,
4791                                             tp1->rec.data.TSN_seq);
4792                                 }
4793                                 sctp_flight_size_increase(tp1);
4794                                 sctp_total_flight_increase(stcb, tp1);
4795                                 tp1->rec.data.chunk_was_revoked = 1;
4796                                 /*
4797                                  * To ensure that this increase in
4798                                  * flightsize, which is artificial, does not
4799                                  * throttle the sender, we also increase the
4800                                  * cwnd artificially.
4801                                  */
4802                                 tp1->whoTo->cwnd += tp1->book_size;
4803                                 cnt_revoked++;
4804                         }
4805                 }
4806                 if (cnt_revoked) {
4807                         reneged_all = 1;
4808                 }
4809                 asoc->saw_sack_with_frags = 0;
4810         }
4811         if (num_nr_seg > 0)
4812                 asoc->saw_sack_with_nr_frags = 1;
4813         else
4814                 asoc->saw_sack_with_nr_frags = 0;
4815
4816         /* JRS - Use the congestion control given in the CC module */
4817         if (ecne_seen == 0) {
4818                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4819                         if (net->net_ack2 > 0) {
4820                                 /*
4821                                  * Karn's rule applies to clearing error
4822                                  * count, this is optional.
4823                                  */
4824                                 net->error_count = 0;
4825                                 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) {
4826                                         /* addr came good */
4827                                         net->dest_state |= SCTP_ADDR_REACHABLE;
4828                                         sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_UP, stcb,
4829                                             0, (void *)net, SCTP_SO_NOT_LOCKED);
4830                                 }
4831                                 if (net == stcb->asoc.primary_destination) {
4832                                         if (stcb->asoc.alternate) {
4833                                                 /*
4834                                                  * release the alternate,
4835                                                  * primary is good
4836                                                  */
4837                                                 sctp_free_remote_addr(stcb->asoc.alternate);
4838                                                 stcb->asoc.alternate = NULL;
4839                                         }
4840                                 }
4841                                 if (net->dest_state & SCTP_ADDR_PF) {
4842                                         net->dest_state &= ~SCTP_ADDR_PF;
4843                                         sctp_timer_stop(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net, SCTP_FROM_SCTP_INPUT + SCTP_LOC_3);
4844                                         sctp_timer_start(SCTP_TIMER_TYPE_HEARTBEAT, stcb->sctp_ep, stcb, net);
4845                                         asoc->cc_functions.sctp_cwnd_update_exit_pf(stcb, net);
4846                                         /* Done with this net */
4847                                         net->net_ack = 0;
4848                                 }
4849                                 /* restore any doubled timers */
4850                                 net->RTO = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv;
4851                                 if (net->RTO < stcb->asoc.minrto) {
4852                                         net->RTO = stcb->asoc.minrto;
4853                                 }
4854                                 if (net->RTO > stcb->asoc.maxrto) {
4855                                         net->RTO = stcb->asoc.maxrto;
4856                                 }
4857                         }
4858                 }
4859                 asoc->cc_functions.sctp_cwnd_update_after_sack(stcb, asoc, accum_moved, reneged_all, will_exit_fast_recovery);
4860         }
4861         if (TAILQ_EMPTY(&asoc->sent_queue)) {
4862                 /* nothing left in-flight */
4863                 TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4864                         /* stop all timers */
4865                         sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
4866                             stcb, net, SCTP_FROM_SCTP_INDATA + SCTP_LOC_30);
4867                         net->flight_size = 0;
4868                         net->partial_bytes_acked = 0;
4869                 }
4870                 asoc->total_flight = 0;
4871                 asoc->total_flight_count = 0;
4872         }
4873         /**********************************/
4874         /* Now what about shutdown issues */
4875         /**********************************/
4876         if (TAILQ_EMPTY(&asoc->send_queue) && TAILQ_EMPTY(&asoc->sent_queue)) {
4877                 /* nothing left on sendqueue.. consider done */
4878                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
4879                         sctp_log_rwnd_set(SCTP_SET_PEER_RWND_VIA_SACK,
4880                             asoc->peers_rwnd, 0, 0, a_rwnd);
4881                 }
4882                 asoc->peers_rwnd = a_rwnd;
4883                 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
4884                         /* SWS sender side engages */
4885                         asoc->peers_rwnd = 0;
4886                 }
4887                 /* clean up */
4888                 if ((asoc->stream_queue_cnt == 1) &&
4889                     ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) ||
4890                     (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED)) &&
4891                     (asoc->locked_on_sending)
4892                     ) {
4893                         struct sctp_stream_queue_pending *sp;
4894
4895                         /*
4896                          * I may be in a state where we got all across.. but
4897                          * cannot write more due to a shutdown... we abort
4898                          * since the user did not indicate EOR in this case.
4899                          */
4900                         sp = TAILQ_LAST(&((asoc->locked_on_sending)->outqueue),
4901                             sctp_streamhead);
4902                         if ((sp) && (sp->length == 0)) {
4903                                 asoc->locked_on_sending = NULL;
4904                                 if (sp->msg_is_complete) {
4905                                         asoc->stream_queue_cnt--;
4906                                 } else {
4907                                         asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT;
4908                                         asoc->stream_queue_cnt--;
4909                                 }
4910                         }
4911                 }
4912                 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) &&
4913                     (asoc->stream_queue_cnt == 0)) {
4914                         if (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT) {
4915                                 /* Need to abort here */
4916                                 struct mbuf *oper;
4917
4918                 abort_out_now:
4919                                 *abort_now = 1;
4920                                 /* XXX */
4921                                 oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
4922                                     0, M_DONTWAIT, 1, MT_DATA);
4923                                 if (oper) {
4924                                         struct sctp_paramhdr *ph;
4925                                         uint32_t *ippp;
4926
4927                                         SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
4928                                             sizeof(uint32_t);
4929                                         ph = mtod(oper, struct sctp_paramhdr *);
4930                                         ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT);
4931                                         ph->param_length = htons(SCTP_BUF_LEN(oper));
4932                                         ippp = (uint32_t *) (ph + 1);
4933                                         *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_31);
4934                                 }
4935                                 stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_31;
4936                                 sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
4937                                 return;
4938                         } else {
4939                                 struct sctp_nets *netp;
4940
4941                                 if (asoc->alternate) {
4942                                         netp = asoc->alternate;
4943                                 } else {
4944                                         netp = asoc->primary_destination;
4945                                 }
4946                                 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) ||
4947                                     (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) {
4948                                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4949                                 }
4950                                 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
4951                                 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
4952                                 sctp_stop_timers_for_shutdown(stcb);
4953                                 sctp_send_shutdown(stcb, netp);
4954                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN,
4955                                     stcb->sctp_ep, stcb, netp);
4956                                 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD,
4957                                     stcb->sctp_ep, stcb, netp);
4958                         }
4959                         return;
4960                 } else if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) &&
4961                     (asoc->stream_queue_cnt == 0)) {
4962                         struct sctp_nets *netp;
4963
4964                         if (asoc->alternate) {
4965                                 netp = asoc->alternate;
4966                         } else {
4967                                 netp = asoc->primary_destination;
4968                         }
4969                         if (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT) {
4970                                 goto abort_out_now;
4971                         }
4972                         SCTP_STAT_DECR_GAUGE32(sctps_currestab);
4973                         SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_ACK_SENT);
4974                         SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
4975                         sctp_send_shutdown_ack(stcb, netp);
4976                         sctp_stop_timers_for_shutdown(stcb);
4977                         sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK,
4978                             stcb->sctp_ep, stcb, netp);
4979                         return;
4980                 }
4981         }
4982         /*
4983          * Now here we are going to recycle net_ack for a different use...
4984          * HEADS UP.
4985          */
4986         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
4987                 net->net_ack = 0;
4988         }
4989
4990         /*
4991          * CMT DAC algorithm: If SACK DAC flag was 0, then no extra marking
4992          * to be done. Setting this_sack_lowest_newack to the cum_ack will
4993          * automatically ensure that.
4994          */
4995         if ((asoc->sctp_cmt_on_off > 0) &&
4996             SCTP_BASE_SYSCTL(sctp_cmt_use_dac) &&
4997             (cmt_dac_flag == 0)) {
4998                 this_sack_lowest_newack = cum_ack;
4999         }
5000         if ((num_seg > 0) || (num_nr_seg > 0)) {
5001                 sctp_strike_gap_ack_chunks(stcb, asoc, biggest_tsn_acked,
5002                     biggest_tsn_newly_acked, this_sack_lowest_newack, accum_moved);
5003         }
5004         /* JRS - Use the congestion control given in the CC module */
5005         asoc->cc_functions.sctp_cwnd_update_after_fr(stcb, asoc);
5006
5007         /* Now are we exiting loss recovery ? */
5008         if (will_exit_fast_recovery) {
5009                 /* Ok, we must exit fast recovery */
5010                 asoc->fast_retran_loss_recovery = 0;
5011         }
5012         if ((asoc->sat_t3_loss_recovery) &&
5013             SCTP_TSN_GE(asoc->last_acked_seq, asoc->sat_t3_recovery_tsn)) {
5014                 /* end satellite t3 loss recovery */
5015                 asoc->sat_t3_loss_recovery = 0;
5016         }
5017         /*
5018          * CMT Fast recovery
5019          */
5020         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5021                 if (net->will_exit_fast_recovery) {
5022                         /* Ok, we must exit fast recovery */
5023                         net->fast_retran_loss_recovery = 0;
5024                 }
5025         }
5026
5027         /* Adjust and set the new rwnd value */
5028         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) {
5029                 sctp_log_rwnd_set(SCTP_SET_PEER_RWND_VIA_SACK,
5030                     asoc->peers_rwnd, asoc->total_flight, (asoc->total_flight_count * SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)), a_rwnd);
5031         }
5032         asoc->peers_rwnd = sctp_sbspace_sub(a_rwnd,
5033             (uint32_t) (asoc->total_flight + (asoc->total_flight_count * SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))));
5034         if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) {
5035                 /* SWS sender side engages */
5036                 asoc->peers_rwnd = 0;
5037         }
5038         if (asoc->peers_rwnd > old_rwnd) {
5039                 win_probe_recovery = 1;
5040         }
5041         /*
5042          * Now we must setup so we have a timer up for anyone with
5043          * outstanding data.
5044          */
5045         done_once = 0;
5046 again:
5047         j = 0;
5048         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5049                 if (win_probe_recovery && (net->window_probe)) {
5050                         win_probe_recovered = 1;
5051                         /*-
5052                          * Find first chunk that was used with
5053                          * window probe and clear the event. Put
5054                          * it back into the send queue as if has
5055                          * not been sent.
5056                          */
5057                         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
5058                                 if (tp1->window_probe) {
5059                                         sctp_window_probe_recovery(stcb, asoc, tp1);
5060                                         break;
5061                                 }
5062                         }
5063                 }
5064                 if (net->flight_size) {
5065                         j++;
5066                         if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
5067                                 sctp_timer_start(SCTP_TIMER_TYPE_SEND,
5068                                     stcb->sctp_ep, stcb, net);
5069                         }
5070                         if (net->window_probe) {
5071                                 net->window_probe = 0;
5072                         }
5073                 } else {
5074                         if (net->window_probe) {
5075                                 /*
5076                                  * In window probes we must assure a timer
5077                                  * is still running there
5078                                  */
5079                                 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
5080                                         sctp_timer_start(SCTP_TIMER_TYPE_SEND,
5081                                             stcb->sctp_ep, stcb, net);
5082
5083                                 }
5084                         } else if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) {
5085                                 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
5086                                     stcb, net,
5087                                     SCTP_FROM_SCTP_INDATA + SCTP_LOC_22);
5088                         }
5089                 }
5090         }
5091         if ((j == 0) &&
5092             (!TAILQ_EMPTY(&asoc->sent_queue)) &&
5093             (asoc->sent_queue_retran_cnt == 0) &&
5094             (win_probe_recovered == 0) &&
5095             (done_once == 0)) {
5096                 /*
5097                  * huh, this should not happen unless all packets are
5098                  * PR-SCTP and marked to skip of course.
5099                  */
5100                 if (sctp_fs_audit(asoc)) {
5101                         TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
5102                                 net->flight_size = 0;
5103                         }
5104                         asoc->total_flight = 0;
5105                         asoc->total_flight_count = 0;
5106                         asoc->sent_queue_retran_cnt = 0;
5107                         TAILQ_FOREACH(tp1, &asoc->sent_queue, sctp_next) {
5108                                 if (tp1->sent < SCTP_DATAGRAM_RESEND) {
5109                                         sctp_flight_size_increase(tp1);
5110                                         sctp_total_flight_increase(stcb, tp1);
5111                                 } else if (tp1->sent == SCTP_DATAGRAM_RESEND) {
5112                                         sctp_ucount_incr(asoc->sent_queue_retran_cnt);
5113                                 }
5114                         }
5115                 }
5116                 done_once = 1;
5117                 goto again;
5118         }
5119         /*********************************************/
5120         /* Here we perform PR-SCTP procedures        */
5121         /* (section 4.2)                             */
5122         /*********************************************/
5123         /* C1. update advancedPeerAckPoint */
5124         if (SCTP_TSN_GT(cum_ack, asoc->advanced_peer_ack_point)) {
5125                 asoc->advanced_peer_ack_point = cum_ack;
5126         }
5127         /* C2. try to further move advancedPeerAckPoint ahead */
5128         if ((asoc->peer_supports_prsctp) && (asoc->pr_sctp_cnt > 0)) {
5129                 struct sctp_tmit_chunk *lchk;
5130                 uint32_t old_adv_peer_ack_point;
5131
5132                 old_adv_peer_ack_point = asoc->advanced_peer_ack_point;
5133                 lchk = sctp_try_advance_peer_ack_point(stcb, asoc);
5134                 /* C3. See if we need to send a Fwd-TSN */
5135                 if (SCTP_TSN_GT(asoc->advanced_peer_ack_point, cum_ack)) {
5136                         /*
5137                          * ISSUE with ECN, see FWD-TSN processing.
5138                          */
5139                         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) {
5140                                 sctp_misc_ints(SCTP_FWD_TSN_CHECK,
5141                                     0xee, cum_ack, asoc->advanced_peer_ack_point,
5142                                     old_adv_peer_ack_point);
5143                         }
5144                         if (SCTP_TSN_GT(asoc->advanced_peer_ack_point, old_adv_peer_ack_point)) {
5145                                 send_forward_tsn(stcb, asoc);
5146                         } else if (lchk) {
5147                                 /* try to FR fwd-tsn's that get lost too */
5148                                 if (lchk->rec.data.fwd_tsn_cnt >= 3) {
5149                                         send_forward_tsn(stcb, asoc);
5150                                 }
5151                         }
5152                 }
5153                 if (lchk) {
5154                         /* Assure a timer is up */
5155                         sctp_timer_start(SCTP_TIMER_TYPE_SEND,
5156                             stcb->sctp_ep, stcb, lchk->whoTo);
5157                 }
5158         }
5159         if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_SACK_RWND_LOGGING_ENABLE) {
5160                 sctp_misc_ints(SCTP_SACK_RWND_UPDATE,
5161                     a_rwnd,
5162                     stcb->asoc.peers_rwnd,
5163                     stcb->asoc.total_flight,
5164                     stcb->asoc.total_output_queue_size);
5165         }
5166 }
5167
5168 void
5169 sctp_update_acked(struct sctp_tcb *stcb, struct sctp_shutdown_chunk *cp, int *abort_flag)
5170 {
5171         /* Copy cum-ack */
5172         uint32_t cum_ack, a_rwnd;
5173
5174         cum_ack = ntohl(cp->cumulative_tsn_ack);
5175         /* Arrange so a_rwnd does NOT change */
5176         a_rwnd = stcb->asoc.peers_rwnd + stcb->asoc.total_flight;
5177
5178         /* Now call the express sack handling */
5179         sctp_express_handle_sack(stcb, cum_ack, a_rwnd, abort_flag, 0);
5180 }
5181
5182 static void
5183 sctp_kick_prsctp_reorder_queue(struct sctp_tcb *stcb,
5184     struct sctp_stream_in *strmin)
5185 {
5186         struct sctp_queued_to_read *ctl, *nctl;
5187         struct sctp_association *asoc;
5188         uint16_t tt;
5189
5190         asoc = &stcb->asoc;
5191         tt = strmin->last_sequence_delivered;
5192         /*
5193          * First deliver anything prior to and including the stream no that
5194          * came in
5195          */
5196         TAILQ_FOREACH_SAFE(ctl, &strmin->inqueue, next, nctl) {
5197                 if (SCTP_SSN_GE(tt, ctl->sinfo_ssn)) {
5198                         /* this is deliverable now */
5199                         TAILQ_REMOVE(&strmin->inqueue, ctl, next);
5200                         /* subtract pending on streams */
5201                         asoc->size_on_all_streams -= ctl->length;
5202                         sctp_ucount_decr(asoc->cnt_on_all_streams);
5203                         /* deliver it to at least the delivery-q */
5204                         if (stcb->sctp_socket) {
5205                                 sctp_mark_non_revokable(asoc, ctl->sinfo_tsn);
5206                                 sctp_add_to_readq(stcb->sctp_ep, stcb,
5207                                     ctl,
5208                                     &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_HELD, SCTP_SO_NOT_LOCKED);
5209                         }
5210                 } else {
5211                         /* no more delivery now. */
5212                         break;
5213                 }
5214         }
5215         /*
5216          * now we must deliver things in queue the normal way  if any are
5217          * now ready.
5218          */
5219         tt = strmin->last_sequence_delivered + 1;
5220         TAILQ_FOREACH_SAFE(ctl, &strmin->inqueue, next, nctl) {
5221                 if (tt == ctl->sinfo_ssn) {
5222                         /* this is deliverable now */
5223                         TAILQ_REMOVE(&strmin->inqueue, ctl, next);
5224                         /* subtract pending on streams */
5225                         asoc->size_on_all_streams -= ctl->length;
5226                         sctp_ucount_decr(asoc->cnt_on_all_streams);
5227                         /* deliver it to at least the delivery-q */
5228                         strmin->last_sequence_delivered = ctl->sinfo_ssn;
5229                         if (stcb->sctp_socket) {
5230                                 sctp_mark_non_revokable(asoc, ctl->sinfo_tsn);
5231                                 sctp_add_to_readq(stcb->sctp_ep, stcb,
5232                                     ctl,
5233                                     &stcb->sctp_socket->so_rcv, 1, SCTP_READ_LOCK_HELD, SCTP_SO_NOT_LOCKED);
5234
5235                         }
5236                         tt = strmin->last_sequence_delivered + 1;
5237                 } else {
5238                         break;
5239                 }
5240         }
5241 }
5242
5243 static void
5244 sctp_flush_reassm_for_str_seq(struct sctp_tcb *stcb,
5245     struct sctp_association *asoc,
5246     uint16_t stream, uint16_t seq)
5247 {
5248         struct sctp_tmit_chunk *chk, *nchk;
5249
5250         /* For each one on here see if we need to toss it */
5251         /*
5252          * For now large messages held on the reasmqueue that are complete
5253          * will be tossed too. We could in theory do more work to spin
5254          * through and stop after dumping one msg aka seeing the start of a
5255          * new msg at the head, and call the delivery function... to see if
5256          * it can be delivered... But for now we just dump everything on the
5257          * queue.
5258          */
5259         TAILQ_FOREACH_SAFE(chk, &asoc->reasmqueue, sctp_next, nchk) {
5260                 /*
5261                  * Do not toss it if on a different stream or marked for
5262                  * unordered delivery in which case the stream sequence
5263                  * number has no meaning.
5264                  */
5265                 if ((chk->rec.data.stream_number != stream) ||
5266                     ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == SCTP_DATA_UNORDERED)) {
5267                         continue;
5268                 }
5269                 if (chk->rec.data.stream_seq == seq) {
5270                         /* It needs to be tossed */
5271                         TAILQ_REMOVE(&asoc->reasmqueue, chk, sctp_next);
5272                         if (SCTP_TSN_GT(chk->rec.data.TSN_seq, asoc->tsn_last_delivered)) {
5273                                 asoc->tsn_last_delivered = chk->rec.data.TSN_seq;
5274                                 asoc->str_of_pdapi = chk->rec.data.stream_number;
5275                                 asoc->ssn_of_pdapi = chk->rec.data.stream_seq;
5276                                 asoc->fragment_flags = chk->rec.data.rcv_flags;
5277                         }
5278                         asoc->size_on_reasm_queue -= chk->send_size;
5279                         sctp_ucount_decr(asoc->cnt_on_reasm_queue);
5280
5281                         /* Clear up any stream problem */
5282                         if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) != SCTP_DATA_UNORDERED &&
5283                             SCTP_SSN_GT(chk->rec.data.stream_seq, asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered)) {
5284                                 /*
5285                                  * We must dump forward this streams
5286                                  * sequence number if the chunk is not
5287                                  * unordered that is being skipped. There is
5288                                  * a chance that if the peer does not
5289                                  * include the last fragment in its FWD-TSN
5290                                  * we WILL have a problem here since you
5291                                  * would have a partial chunk in queue that
5292                                  * may not be deliverable. Also if a Partial
5293                                  * delivery API as started the user may get
5294                                  * a partial chunk. The next read returning
5295                                  * a new chunk... really ugly but I see no
5296                                  * way around it! Maybe a notify??
5297                                  */
5298                                 asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered = chk->rec.data.stream_seq;
5299                         }
5300                         if (chk->data) {
5301                                 sctp_m_freem(chk->data);
5302                                 chk->data = NULL;
5303                         }
5304                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
5305                 } else if (SCTP_SSN_GT(chk->rec.data.stream_seq, seq)) {
5306                         /*
5307                          * If the stream_seq is > than the purging one, we
5308                          * are done
5309                          */
5310                         break;
5311                 }
5312         }
5313 }
5314
5315
5316 void
5317 sctp_handle_forward_tsn(struct sctp_tcb *stcb,
5318     struct sctp_forward_tsn_chunk *fwd,
5319     int *abort_flag, struct mbuf *m, int offset)
5320 {
5321         /* The pr-sctp fwd tsn */
5322         /*
5323          * here we will perform all the data receiver side steps for
5324          * processing FwdTSN, as required in by pr-sctp draft:
5325          * 
5326          * Assume we get FwdTSN(x):
5327          * 
5328          * 1) update local cumTSN to x 2) try to further advance cumTSN to x +
5329          * others we have 3) examine and update re-ordering queue on
5330          * pr-in-streams 4) clean up re-assembly queue 5) Send a sack to
5331          * report where we are.
5332          */
5333         struct sctp_association *asoc;
5334         uint32_t new_cum_tsn, gap;
5335         unsigned int i, fwd_sz, m_size;
5336         uint32_t str_seq;
5337         struct sctp_stream_in *strm;
5338         struct sctp_tmit_chunk *chk, *nchk;
5339         struct sctp_queued_to_read *ctl, *sv;
5340
5341         asoc = &stcb->asoc;
5342         if ((fwd_sz = ntohs(fwd->ch.chunk_length)) < sizeof(struct sctp_forward_tsn_chunk)) {
5343                 SCTPDBG(SCTP_DEBUG_INDATA1,
5344                     "Bad size too small/big fwd-tsn\n");
5345                 return;
5346         }
5347         m_size = (stcb->asoc.mapping_array_size << 3);
5348         /*************************************************************/
5349         /* 1. Here we update local cumTSN and shift the bitmap array */
5350         /*************************************************************/
5351         new_cum_tsn = ntohl(fwd->new_cumulative_tsn);
5352
5353         if (SCTP_TSN_GE(asoc->cumulative_tsn, new_cum_tsn)) {
5354                 /* Already got there ... */
5355                 return;
5356         }
5357         /*
5358          * now we know the new TSN is more advanced, let's find the actual
5359          * gap
5360          */
5361         SCTP_CALC_TSN_TO_GAP(gap, new_cum_tsn, asoc->mapping_array_base_tsn);
5362         asoc->cumulative_tsn = new_cum_tsn;
5363         if (gap >= m_size) {
5364                 if ((long)gap > sctp_sbspace(&stcb->asoc, &stcb->sctp_socket->so_rcv)) {
5365                         struct mbuf *oper;
5366
5367                         /*
5368                          * out of range (of single byte chunks in the rwnd I
5369                          * give out). This must be an attacker.
5370                          */
5371                         *abort_flag = 1;
5372                         oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + 3 * sizeof(uint32_t)),
5373                             0, M_DONTWAIT, 1, MT_DATA);
5374                         if (oper) {
5375                                 struct sctp_paramhdr *ph;
5376                                 uint32_t *ippp;
5377
5378                                 SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
5379                                     (sizeof(uint32_t) * 3);
5380                                 ph = mtod(oper, struct sctp_paramhdr *);
5381                                 ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
5382                                 ph->param_length = htons(SCTP_BUF_LEN(oper));
5383                                 ippp = (uint32_t *) (ph + 1);
5384                                 *ippp = htonl(SCTP_FROM_SCTP_INDATA + SCTP_LOC_33);
5385                                 ippp++;
5386                                 *ippp = asoc->highest_tsn_inside_map;
5387                                 ippp++;
5388                                 *ippp = new_cum_tsn;
5389                         }
5390                         stcb->sctp_ep->last_abort_code = SCTP_FROM_SCTP_INDATA + SCTP_LOC_33;
5391                         sctp_abort_an_association(stcb->sctp_ep, stcb, oper, SCTP_SO_NOT_LOCKED);
5392                         return;
5393                 }
5394                 SCTP_STAT_INCR(sctps_fwdtsn_map_over);
5395
5396                 memset(stcb->asoc.mapping_array, 0, stcb->asoc.mapping_array_size);
5397                 asoc->mapping_array_base_tsn = new_cum_tsn + 1;
5398                 asoc->highest_tsn_inside_map = new_cum_tsn;
5399
5400                 memset(stcb->asoc.nr_mapping_array, 0, stcb->asoc.mapping_array_size);
5401                 asoc->highest_tsn_inside_nr_map = new_cum_tsn;
5402
5403                 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MAP_LOGGING_ENABLE) {
5404                         sctp_log_map(0, 3, asoc->highest_tsn_inside_map, SCTP_MAP_SLIDE_RESULT);
5405                 }
5406         } else {
5407                 SCTP_TCB_LOCK_ASSERT(stcb);
5408                 for (i = 0; i <= gap; i++) {
5409                         if (!SCTP_IS_TSN_PRESENT(asoc->mapping_array, i) &&
5410                             !SCTP_IS_TSN_PRESENT(asoc->nr_mapping_array, i)) {
5411                                 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, i);
5412                                 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn + i, asoc->highest_tsn_inside_nr_map)) {
5413                                         asoc->highest_tsn_inside_nr_map = asoc->mapping_array_base_tsn + i;
5414                                 }
5415                         }
5416                 }
5417         }
5418         /*************************************************************/
5419         /* 2. Clear up re-assembly queue                             */
5420         /*************************************************************/
5421         /*
5422          * First service it if pd-api is up, just in case we can progress it
5423          * forward
5424          */
5425         if (asoc->fragmented_delivery_inprogress) {
5426                 sctp_service_reassembly(stcb, asoc);
5427         }
5428         /* For each one on here see if we need to toss it */
5429         /*
5430          * For now large messages held on the reasmqueue that are complete
5431          * will be tossed too. We could in theory do more work to spin
5432          * through and stop after dumping one msg aka seeing the start of a
5433          * new msg at the head, and call the delivery function... to see if
5434          * it can be delivered... But for now we just dump everything on the
5435          * queue.
5436          */
5437         TAILQ_FOREACH_SAFE(chk, &asoc->reasmqueue, sctp_next, nchk) {
5438                 if (SCTP_TSN_GE(new_cum_tsn, chk->rec.data.TSN_seq)) {
5439                         /* It needs to be tossed */
5440                         TAILQ_REMOVE(&asoc->reasmqueue, chk, sctp_next);
5441                         if (SCTP_TSN_GT(chk->rec.data.TSN_seq, asoc->tsn_last_delivered)) {
5442                                 asoc->tsn_last_delivered = chk->rec.data.TSN_seq;
5443                                 asoc->str_of_pdapi = chk->rec.data.stream_number;
5444                                 asoc->ssn_of_pdapi = chk->rec.data.stream_seq;
5445                                 asoc->fragment_flags = chk->rec.data.rcv_flags;
5446                         }
5447                         asoc->size_on_reasm_queue -= chk->send_size;
5448                         sctp_ucount_decr(asoc->cnt_on_reasm_queue);
5449
5450                         /* Clear up any stream problem */
5451                         if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) != SCTP_DATA_UNORDERED &&
5452                             SCTP_SSN_GT(chk->rec.data.stream_seq, asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered)) {
5453                                 /*
5454                                  * We must dump forward this streams
5455                                  * sequence number if the chunk is not
5456                                  * unordered that is being skipped. There is
5457                                  * a chance that if the peer does not
5458                                  * include the last fragment in its FWD-TSN
5459                                  * we WILL have a problem here since you
5460                                  * would have a partial chunk in queue that
5461                                  * may not be deliverable. Also if a Partial
5462                                  * delivery API as started the user may get
5463                                  * a partial chunk. The next read returning
5464                                  * a new chunk... really ugly but I see no
5465                                  * way around it! Maybe a notify??
5466                                  */
5467                                 asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered = chk->rec.data.stream_seq;
5468                         }
5469                         if (chk->data) {
5470                                 sctp_m_freem(chk->data);
5471                                 chk->data = NULL;
5472                         }
5473                         sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED);
5474                 } else {
5475                         /*
5476                          * Ok we have gone beyond the end of the fwd-tsn's
5477                          * mark.
5478                          */
5479                         break;
5480                 }
5481         }
5482         /*******************************************************/
5483         /* 3. Update the PR-stream re-ordering queues and fix  */
5484         /* delivery issues as needed.                       */
5485         /*******************************************************/
5486         fwd_sz -= sizeof(*fwd);
5487         if (m && fwd_sz) {
5488                 /* New method. */
5489                 unsigned int num_str;
5490                 struct sctp_strseq *stseq, strseqbuf;
5491
5492                 offset += sizeof(*fwd);
5493
5494                 SCTP_INP_READ_LOCK(stcb->sctp_ep);
5495                 num_str = fwd_sz / sizeof(struct sctp_strseq);
5496                 for (i = 0; i < num_str; i++) {
5497                         uint16_t st;
5498
5499                         stseq = (struct sctp_strseq *)sctp_m_getptr(m, offset,
5500                             sizeof(struct sctp_strseq),
5501                             (uint8_t *) & strseqbuf);
5502                         offset += sizeof(struct sctp_strseq);
5503                         if (stseq == NULL) {
5504                                 break;
5505                         }
5506                         /* Convert */
5507                         st = ntohs(stseq->stream);
5508                         stseq->stream = st;
5509                         st = ntohs(stseq->sequence);
5510                         stseq->sequence = st;
5511
5512                         /* now process */
5513
5514                         /*
5515                          * Ok we now look for the stream/seq on the read
5516                          * queue where its not all delivered. If we find it
5517                          * we transmute the read entry into a PDI_ABORTED.
5518                          */
5519                         if (stseq->stream >= asoc->streamincnt) {
5520                                 /* screwed up streams, stop!  */
5521                                 break;
5522                         }
5523                         if ((asoc->str_of_pdapi == stseq->stream) &&
5524                             (asoc->ssn_of_pdapi == stseq->sequence)) {
5525                                 /*
5526                                  * If this is the one we were partially
5527                                  * delivering now then we no longer are.
5528                                  * Note this will change with the reassembly
5529                                  * re-write.
5530                                  */
5531                                 asoc->fragmented_delivery_inprogress = 0;
5532                         }
5533                         sctp_flush_reassm_for_str_seq(stcb, asoc, stseq->stream, stseq->sequence);
5534                         TAILQ_FOREACH(ctl, &stcb->sctp_ep->read_queue, next) {
5535                                 if ((ctl->sinfo_stream == stseq->stream) &&
5536                                     (ctl->sinfo_ssn == stseq->sequence)) {
5537                                         str_seq = (stseq->stream << 16) | stseq->sequence;
5538                                         ctl->end_added = 1;
5539                                         ctl->pdapi_aborted = 1;
5540                                         sv = stcb->asoc.control_pdapi;
5541                                         stcb->asoc.control_pdapi = ctl;
5542                                         sctp_ulp_notify(SCTP_NOTIFY_PARTIAL_DELVIERY_INDICATION,
5543                                             stcb,
5544                                             SCTP_PARTIAL_DELIVERY_ABORTED,
5545                                             (void *)&str_seq,
5546                                             SCTP_SO_NOT_LOCKED);
5547                                         stcb->asoc.control_pdapi = sv;
5548                                         break;
5549                                 } else if ((ctl->sinfo_stream == stseq->stream) &&
5550                                     SCTP_SSN_GT(ctl->sinfo_ssn, stseq->sequence)) {
5551                                         /* We are past our victim SSN */
5552                                         break;
5553                                 }
5554                         }
5555                         strm = &asoc->strmin[stseq->stream];
5556                         if (SCTP_SSN_GT(stseq->sequence, strm->last_sequence_delivered)) {
5557                                 /* Update the sequence number */
5558                                 strm->last_sequence_delivered = stseq->sequence;
5559                         }
5560                         /* now kick the stream the new way */
5561                         /* sa_ignore NO_NULL_CHK */
5562                         sctp_kick_prsctp_reorder_queue(stcb, strm);
5563                 }
5564                 SCTP_INP_READ_UNLOCK(stcb->sctp_ep);
5565         }
5566         /*
5567          * Now slide thing forward.
5568          */
5569         sctp_slide_mapping_arrays(stcb);
5570
5571         if (!TAILQ_EMPTY(&asoc->reasmqueue)) {
5572                 /* now lets kick out and check for more fragmented delivery */
5573                 /* sa_ignore NO_NULL_CHK */
5574                 sctp_deliver_reasm_check(stcb, &stcb->asoc);
5575         }
5576 }