1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3 * (C) Copyright Red Hat Inc. 2017
5 * This file is part of the SCTP kernel implementation
7 * These functions manipulate sctp stream queue/scheduling.
9 * Please send any bug reports or fixes you make to the
10 * email addresched(es):
11 * lksctp developers <linux-sctp@vger.kernel.org>
13 * Written or modified by:
14 * Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17 #include <linux/list.h>
18 #include <net/sctp/sctp.h>
19 #include <net/sctp/sm.h>
20 #include <net/sctp/stream_sched.h>
23 * RFC DRAFT ndata section 3.4
26 static void sctp_sched_prio_unsched_all(struct sctp_stream
*stream
);
28 static struct sctp_stream_priorities
*sctp_sched_prio_new_head(
29 struct sctp_stream
*stream
, int prio
, gfp_t gfp
)
31 struct sctp_stream_priorities
*p
;
33 p
= kmalloc(sizeof(*p
), gfp
);
37 INIT_LIST_HEAD(&p
->prio_sched
);
38 INIT_LIST_HEAD(&p
->active
);
45 static struct sctp_stream_priorities
*sctp_sched_prio_get_head(
46 struct sctp_stream
*stream
, int prio
, gfp_t gfp
)
48 struct sctp_stream_priorities
*p
;
51 /* Look into scheduled priorities first, as they are sorted and
52 * we can find it fast IF it's scheduled.
54 list_for_each_entry(p
, &stream
->prio_list
, prio_sched
) {
61 /* No luck. So we search on all streams now. */
62 for (i
= 0; i
< stream
->outcnt
; i
++) {
63 if (!SCTP_SO(stream
, i
)->ext
)
66 p
= SCTP_SO(stream
, i
)->ext
->prio_head
;
68 /* Means all other streams won't be initialized
76 /* If not even there, allocate a new one. */
77 return sctp_sched_prio_new_head(stream
, prio
, gfp
);
80 static void sctp_sched_prio_next_stream(struct sctp_stream_priorities
*p
)
82 struct list_head
*pos
;
84 pos
= p
->next
->prio_list
.next
;
85 if (pos
== &p
->active
)
87 p
->next
= list_entry(pos
, struct sctp_stream_out_ext
, prio_list
);
90 static bool sctp_sched_prio_unsched(struct sctp_stream_out_ext
*soute
)
92 bool scheduled
= false;
94 if (!list_empty(&soute
->prio_list
)) {
95 struct sctp_stream_priorities
*prio_head
= soute
->prio_head
;
100 if (prio_head
->next
== soute
)
101 /* Try to move to the next stream */
102 sctp_sched_prio_next_stream(prio_head
);
104 list_del_init(&soute
->prio_list
);
106 /* Also unsched the priority if this was the last stream */
107 if (list_empty(&prio_head
->active
)) {
108 list_del_init(&prio_head
->prio_sched
);
109 /* If there is no stream left, clear next */
110 prio_head
->next
= NULL
;
117 static void sctp_sched_prio_sched(struct sctp_stream
*stream
,
118 struct sctp_stream_out_ext
*soute
)
120 struct sctp_stream_priorities
*prio
, *prio_head
;
122 prio_head
= soute
->prio_head
;
124 /* Nothing to do if already scheduled */
125 if (!list_empty(&soute
->prio_list
))
128 /* Schedule the stream. If there is a next, we schedule the new
129 * one before it, so it's the last in round robin order.
130 * If there isn't, we also have to schedule the priority.
132 if (prio_head
->next
) {
133 list_add(&soute
->prio_list
, prio_head
->next
->prio_list
.prev
);
137 list_add(&soute
->prio_list
, &prio_head
->active
);
138 prio_head
->next
= soute
;
140 list_for_each_entry(prio
, &stream
->prio_list
, prio_sched
) {
141 if (prio
->prio
> prio_head
->prio
) {
142 list_add(&prio_head
->prio_sched
, prio
->prio_sched
.prev
);
147 list_add_tail(&prio_head
->prio_sched
, &stream
->prio_list
);
150 static int sctp_sched_prio_set(struct sctp_stream
*stream
, __u16 sid
,
151 __u16 prio
, gfp_t gfp
)
153 struct sctp_stream_out
*sout
= SCTP_SO(stream
, sid
);
154 struct sctp_stream_out_ext
*soute
= sout
->ext
;
155 struct sctp_stream_priorities
*prio_head
, *old
;
156 bool reschedule
= false;
159 prio_head
= sctp_sched_prio_get_head(stream
, prio
, gfp
);
163 reschedule
= sctp_sched_prio_unsched(soute
);
164 old
= soute
->prio_head
;
165 soute
->prio_head
= prio_head
;
167 sctp_sched_prio_sched(stream
, soute
);
170 /* Happens when we set the priority for the first time */
173 for (i
= 0; i
< stream
->outcnt
; i
++) {
174 soute
= SCTP_SO(stream
, i
)->ext
;
175 if (soute
&& soute
->prio_head
== old
)
176 /* It's still in use, nothing else to do here. */
180 /* No hits, we are good to free it. */
186 static int sctp_sched_prio_get(struct sctp_stream
*stream
, __u16 sid
,
189 *value
= SCTP_SO(stream
, sid
)->ext
->prio_head
->prio
;
193 static int sctp_sched_prio_init(struct sctp_stream
*stream
)
195 INIT_LIST_HEAD(&stream
->prio_list
);
200 static int sctp_sched_prio_init_sid(struct sctp_stream
*stream
, __u16 sid
,
203 INIT_LIST_HEAD(&SCTP_SO(stream
, sid
)->ext
->prio_list
);
204 return sctp_sched_prio_set(stream
, sid
, 0, gfp
);
207 static void sctp_sched_prio_free(struct sctp_stream
*stream
)
209 struct sctp_stream_priorities
*prio
, *n
;
213 /* As we don't keep a list of priorities, to avoid multiple
214 * frees we have to do it in 3 steps:
215 * 1. unsched everyone, so the lists are free to use in 2.
216 * 2. build the list of the priorities
219 sctp_sched_prio_unsched_all(stream
);
220 for (i
= 0; i
< stream
->outcnt
; i
++) {
221 if (!SCTP_SO(stream
, i
)->ext
)
223 prio
= SCTP_SO(stream
, i
)->ext
->prio_head
;
224 if (prio
&& list_empty(&prio
->prio_sched
))
225 list_add(&prio
->prio_sched
, &list
);
227 list_for_each_entry_safe(prio
, n
, &list
, prio_sched
) {
228 list_del_init(&prio
->prio_sched
);
233 static void sctp_sched_prio_enqueue(struct sctp_outq
*q
,
234 struct sctp_datamsg
*msg
)
236 struct sctp_stream
*stream
;
237 struct sctp_chunk
*ch
;
240 ch
= list_first_entry(&msg
->chunks
, struct sctp_chunk
, frag_list
);
241 sid
= sctp_chunk_stream_no(ch
);
242 stream
= &q
->asoc
->stream
;
243 sctp_sched_prio_sched(stream
, SCTP_SO(stream
, sid
)->ext
);
246 static struct sctp_chunk
*sctp_sched_prio_dequeue(struct sctp_outq
*q
)
248 struct sctp_stream
*stream
= &q
->asoc
->stream
;
249 struct sctp_stream_priorities
*prio
;
250 struct sctp_stream_out_ext
*soute
;
251 struct sctp_chunk
*ch
= NULL
;
253 /* Bail out quickly if queue is empty */
254 if (list_empty(&q
->out_chunk_list
))
257 /* Find which chunk is next. It's easy, it's either the current
258 * one or the first chunk on the next active stream.
260 if (stream
->out_curr
) {
261 soute
= stream
->out_curr
->ext
;
263 prio
= list_entry(stream
->prio_list
.next
,
264 struct sctp_stream_priorities
, prio_sched
);
267 ch
= list_entry(soute
->outq
.next
, struct sctp_chunk
, stream_list
);
268 sctp_sched_dequeue_common(q
, ch
);
274 static void sctp_sched_prio_dequeue_done(struct sctp_outq
*q
,
275 struct sctp_chunk
*ch
)
277 struct sctp_stream_priorities
*prio
;
278 struct sctp_stream_out_ext
*soute
;
281 /* Last chunk on that msg, move to the next stream on
284 sid
= sctp_chunk_stream_no(ch
);
285 soute
= SCTP_SO(&q
->asoc
->stream
, sid
)->ext
;
286 prio
= soute
->prio_head
;
288 sctp_sched_prio_next_stream(prio
);
290 if (list_empty(&soute
->outq
))
291 sctp_sched_prio_unsched(soute
);
294 static void sctp_sched_prio_sched_all(struct sctp_stream
*stream
)
296 struct sctp_association
*asoc
;
297 struct sctp_stream_out
*sout
;
298 struct sctp_chunk
*ch
;
300 asoc
= container_of(stream
, struct sctp_association
, stream
);
301 list_for_each_entry(ch
, &asoc
->outqueue
.out_chunk_list
, list
) {
304 sid
= sctp_chunk_stream_no(ch
);
305 sout
= SCTP_SO(stream
, sid
);
307 sctp_sched_prio_sched(stream
, sout
->ext
);
311 static void sctp_sched_prio_unsched_all(struct sctp_stream
*stream
)
313 struct sctp_stream_priorities
*p
, *tmp
;
314 struct sctp_stream_out_ext
*soute
, *souttmp
;
316 list_for_each_entry_safe(p
, tmp
, &stream
->prio_list
, prio_sched
)
317 list_for_each_entry_safe(soute
, souttmp
, &p
->active
, prio_list
)
318 sctp_sched_prio_unsched(soute
);
321 static struct sctp_sched_ops sctp_sched_prio
= {
322 .set
= sctp_sched_prio_set
,
323 .get
= sctp_sched_prio_get
,
324 .init
= sctp_sched_prio_init
,
325 .init_sid
= sctp_sched_prio_init_sid
,
326 .free
= sctp_sched_prio_free
,
327 .enqueue
= sctp_sched_prio_enqueue
,
328 .dequeue
= sctp_sched_prio_dequeue
,
329 .dequeue_done
= sctp_sched_prio_dequeue_done
,
330 .sched_all
= sctp_sched_prio_sched_all
,
331 .unsched_all
= sctp_sched_prio_unsched_all
,
334 void sctp_sched_ops_prio_init(void)
336 sctp_sched_ops_register(SCTP_SS_PRIO
, &sctp_sched_prio
);