Skip to content

Commit 181d8d2

Browse files
lxinkuba-moo
authored andcommitted
sctp: leave the err path free in sctp_stream_init to sctp_stream_free
A NULL pointer dereference was reported by Wei Chen: BUG: kernel NULL pointer dereference, address: 0000000000000000 RIP: 0010:__list_del_entry_valid+0x26/0x80 Call Trace: <TASK> sctp_sched_dequeue_common+0x1c/0x90 sctp_sched_prio_dequeue+0x67/0x80 __sctp_outq_teardown+0x299/0x380 sctp_outq_free+0x15/0x20 sctp_association_free+0xc3/0x440 sctp_do_sm+0x1ca7/0x2210 sctp_assoc_bh_rcv+0x1f6/0x340 This happens when calling sctp_sendmsg without connecting to server first. In this case, a data chunk already queues up in send queue of client side when processing the INIT_ACK from server in sctp_process_init() where it calls sctp_stream_init() to alloc stream_in. If it fails to alloc stream_in all stream_out will be freed in sctp_stream_init's err path. Then in the asoc freeing it will crash when dequeuing this data chunk as stream_out is missing. As we can't free stream out before dequeuing all data from send queue, and this patch is to fix it by moving the err path stream_out/in freeing in sctp_stream_init() to sctp_stream_free() which is eventually called when freeing the asoc in sctp_association_free(). This fix also makes the code in sctp_process_init() more clear. Note that in sctp_association_init() when it fails in sctp_stream_init(), sctp_association_free() will not be called, and in that case it should go to 'stream_free' err path to free stream instead of 'fail_init'. Fixes: 5bbbbe3 ("sctp: introduce stream scheduler foundations") Reported-by: Wei Chen <[email protected]> Signed-off-by: Xin Long <[email protected]> Link: https://lore.kernel.org/r/831a3dc100c4908ff76e5bcc363be97f2778bc0b.1658787066.git.lucien.xin@gmail.com Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 67c3b61 commit 181d8d2

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

net/sctp/associola.c

+2-3
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,8 @@ static struct sctp_association *sctp_association_init(
229229
if (!sctp_ulpq_init(&asoc->ulpq, asoc))
230230
goto fail_init;
231231

232-
if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams,
233-
0, gfp))
234-
goto fail_init;
232+
if (sctp_stream_init(&asoc->stream, asoc->c.sinit_num_ostreams, 0, gfp))
233+
goto stream_free;
235234

236235
/* Initialize default path MTU. */
237236
asoc->pathmtu = sp->pathmtu;

net/sctp/stream.c

+3-16
Original file line numberDiff line numberDiff line change
@@ -137,30 +137,17 @@ int sctp_stream_init(struct sctp_stream *stream, __u16 outcnt, __u16 incnt,
137137

138138
ret = sctp_stream_alloc_out(stream, outcnt, gfp);
139139
if (ret)
140-
goto out_err;
140+
return ret;
141141

142142
for (i = 0; i < stream->outcnt; i++)
143143
SCTP_SO(stream, i)->state = SCTP_STREAM_OPEN;
144144

145145
handle_in:
146146
sctp_stream_interleave_init(stream);
147147
if (!incnt)
148-
goto out;
149-
150-
ret = sctp_stream_alloc_in(stream, incnt, gfp);
151-
if (ret)
152-
goto in_err;
153-
154-
goto out;
148+
return 0;
155149

156-
in_err:
157-
sched->free(stream);
158-
genradix_free(&stream->in);
159-
out_err:
160-
genradix_free(&stream->out);
161-
stream->outcnt = 0;
162-
out:
163-
return ret;
150+
return sctp_stream_alloc_in(stream, incnt, gfp);
164151
}
165152

166153
int sctp_stream_init_ext(struct sctp_stream *stream, __u16 sid)

0 commit comments

Comments
 (0)