|
@@ -303,13 +303,14 @@ out:
|
|
|
}
|
|
|
|
|
|
static sctp_paramhdr_t *sctp_chunk_lookup_strreset_param(
|
|
|
- struct sctp_association *asoc, __u32 resp_seq)
|
|
|
+ struct sctp_association *asoc, __u32 resp_seq,
|
|
|
+ __be16 type)
|
|
|
{
|
|
|
struct sctp_chunk *chunk = asoc->strreset_chunk;
|
|
|
struct sctp_reconf_chunk *hdr;
|
|
|
union sctp_params param;
|
|
|
|
|
|
- if (ntohl(resp_seq) != asoc->strreset_outseq || !chunk)
|
|
|
+ if (!chunk)
|
|
|
return NULL;
|
|
|
|
|
|
hdr = (struct sctp_reconf_chunk *)chunk->chunk_hdr;
|
|
@@ -320,7 +321,8 @@ static sctp_paramhdr_t *sctp_chunk_lookup_strreset_param(
|
|
|
*/
|
|
|
struct sctp_strreset_tsnreq *req = param.v;
|
|
|
|
|
|
- if (req->request_seq == resp_seq)
|
|
|
+ if ((!resp_seq || req->request_seq == resp_seq) &&
|
|
|
+ (!type || type == req->param_hdr.type))
|
|
|
return param.v;
|
|
|
}
|
|
|
|
|
@@ -361,13 +363,9 @@ struct sctp_chunk *sctp_process_strreset_outreq(
|
|
|
goto out;
|
|
|
|
|
|
if (asoc->strreset_chunk) {
|
|
|
- sctp_paramhdr_t *param_hdr;
|
|
|
- struct sctp_transport *t;
|
|
|
-
|
|
|
- param_hdr = sctp_chunk_lookup_strreset_param(
|
|
|
- asoc, outreq->response_seq);
|
|
|
- if (!param_hdr || param_hdr->type !=
|
|
|
- SCTP_PARAM_RESET_IN_REQUEST) {
|
|
|
+ if (!sctp_chunk_lookup_strreset_param(
|
|
|
+ asoc, outreq->response_seq,
|
|
|
+ SCTP_PARAM_RESET_IN_REQUEST)) {
|
|
|
/* same process with outstanding isn't 0 */
|
|
|
result = SCTP_STRRESET_ERR_IN_PROGRESS;
|
|
|
goto out;
|
|
@@ -377,6 +375,8 @@ struct sctp_chunk *sctp_process_strreset_outreq(
|
|
|
asoc->strreset_outseq++;
|
|
|
|
|
|
if (!asoc->strreset_outstanding) {
|
|
|
+ struct sctp_transport *t;
|
|
|
+
|
|
|
t = asoc->strreset_chunk->transport;
|
|
|
if (del_timer(&t->reconf_timer))
|
|
|
sctp_transport_put(t);
|
|
@@ -556,3 +556,72 @@ out:
|
|
|
return sctp_make_strreset_tsnresp(asoc, result, request_seq,
|
|
|
next_tsn, init_tsn);
|
|
|
}
|
|
|
+
|
|
|
+struct sctp_chunk *sctp_process_strreset_addstrm_out(
|
|
|
+ struct sctp_association *asoc,
|
|
|
+ union sctp_params param,
|
|
|
+ struct sctp_ulpevent **evp)
|
|
|
+{
|
|
|
+ struct sctp_strreset_addstrm *addstrm = param.v;
|
|
|
+ struct sctp_stream *stream = asoc->stream;
|
|
|
+ __u32 result = SCTP_STRRESET_DENIED;
|
|
|
+ struct sctp_stream_in *streamin;
|
|
|
+ __u32 request_seq, incnt;
|
|
|
+ __u16 in;
|
|
|
+
|
|
|
+ request_seq = ntohl(addstrm->request_seq);
|
|
|
+ if (request_seq > asoc->strreset_inseq) {
|
|
|
+ result = SCTP_STRRESET_ERR_BAD_SEQNO;
|
|
|
+ goto out;
|
|
|
+ } else if (request_seq == asoc->strreset_inseq) {
|
|
|
+ asoc->strreset_inseq++;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!(asoc->strreset_enable & SCTP_ENABLE_CHANGE_ASSOC_REQ))
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ if (asoc->strreset_chunk) {
|
|
|
+ if (!sctp_chunk_lookup_strreset_param(
|
|
|
+ asoc, 0, SCTP_PARAM_RESET_ADD_IN_STREAMS)) {
|
|
|
+ /* same process with outstanding isn't 0 */
|
|
|
+ result = SCTP_STRRESET_ERR_IN_PROGRESS;
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
+
|
|
|
+ asoc->strreset_outstanding--;
|
|
|
+ asoc->strreset_outseq++;
|
|
|
+
|
|
|
+ if (!asoc->strreset_outstanding) {
|
|
|
+ struct sctp_transport *t;
|
|
|
+
|
|
|
+ t = asoc->strreset_chunk->transport;
|
|
|
+ if (del_timer(&t->reconf_timer))
|
|
|
+ sctp_transport_put(t);
|
|
|
+
|
|
|
+ sctp_chunk_put(asoc->strreset_chunk);
|
|
|
+ asoc->strreset_chunk = NULL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ in = ntohs(addstrm->number_of_streams);
|
|
|
+ incnt = stream->incnt + in;
|
|
|
+ if (!in || incnt > SCTP_MAX_STREAM)
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ streamin = krealloc(stream->in, incnt * sizeof(*streamin),
|
|
|
+ GFP_ATOMIC);
|
|
|
+ if (!streamin)
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ memset(streamin + stream->incnt, 0, in * sizeof(*streamin));
|
|
|
+ stream->in = streamin;
|
|
|
+ stream->incnt = incnt;
|
|
|
+
|
|
|
+ result = SCTP_STRRESET_PERFORMED;
|
|
|
+
|
|
|
+ *evp = sctp_ulpevent_make_stream_change_event(asoc,
|
|
|
+ 0, ntohs(addstrm->number_of_streams), 0, GFP_ATOMIC);
|
|
|
+
|
|
|
+out:
|
|
|
+ return sctp_make_strreset_resp(asoc, result, request_seq);
|
|
|
+}
|