blob: a5f67a2c0c7309321bfa4ebc61d726a4cb188c8b [file] [log] [blame]
Thomas Gleixnerfb9e53c2019-05-29 07:12:31 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Michal Kazior557fc4a2016-04-22 14:20:13 +02002/*
3 * Copyright (c) 2016 Qualcomm Atheros, Inc
4 *
Michal Kazior557fc4a2016-04-22 14:20:13 +02005 * Based on net/sched/sch_fq_codel.c
6 */
7#ifndef __NET_SCHED_FQ_IMPL_H
8#define __NET_SCHED_FQ_IMPL_H
9
10#include <net/fq.h>
11
12/* functions that are embedded into includer */
13
Felix Fietkau07be2fe2020-12-18 19:47:13 +010014
15static void
16__fq_adjust_removal(struct fq *fq, struct fq_flow *flow, unsigned int packets,
17 unsigned int bytes, unsigned int truesize)
18{
19 struct fq_tin *tin = flow->tin;
Felix Fietkaud7b64922020-12-18 19:47:15 +010020 int idx;
Felix Fietkau07be2fe2020-12-18 19:47:13 +010021
22 tin->backlog_bytes -= bytes;
23 tin->backlog_packets -= packets;
24 flow->backlog -= bytes;
25 fq->backlog -= packets;
26 fq->memory_usage -= truesize;
Felix Fietkaud7b64922020-12-18 19:47:15 +010027
28 if (flow->backlog)
29 return;
30
31 if (flow == &tin->default_flow) {
32 list_del_init(&tin->tin_list);
33 return;
34 }
35
36 idx = flow - fq->flows;
37 __clear_bit(idx, fq->flows_bitmap);
Felix Fietkau07be2fe2020-12-18 19:47:13 +010038}
39
Johannes Berg8c418b52017-10-06 11:53:32 +020040static void fq_adjust_removal(struct fq *fq,
41 struct fq_flow *flow,
42 struct sk_buff *skb)
Michal Kazior557fc4a2016-04-22 14:20:13 +020043{
Felix Fietkau07be2fe2020-12-18 19:47:13 +010044 __fq_adjust_removal(fq, flow, 1, skb->len, skb->truesize);
Johannes Berg8c418b52017-10-06 11:53:32 +020045}
46
Johannes Berg8c418b52017-10-06 11:53:32 +020047static struct sk_buff *fq_flow_dequeue(struct fq *fq,
48 struct fq_flow *flow)
49{
50 struct sk_buff *skb;
51
52 lockdep_assert_held(&fq->lock);
53
54 skb = __skb_dequeue(&flow->queue);
55 if (!skb)
56 return NULL;
57
58 fq_adjust_removal(fq, flow, skb);
Michal Kazior557fc4a2016-04-22 14:20:13 +020059
60 return skb;
61}
62
Felix Fietkau07be2fe2020-12-18 19:47:13 +010063static int fq_flow_drop(struct fq *fq, struct fq_flow *flow,
64 fq_skb_free_t free_func)
65{
66 unsigned int packets = 0, bytes = 0, truesize = 0;
67 struct fq_tin *tin = flow->tin;
68 struct sk_buff *skb;
69 int pending;
70
71 lockdep_assert_held(&fq->lock);
72
73 pending = min_t(int, 32, skb_queue_len(&flow->queue) / 2);
74 do {
75 skb = __skb_dequeue(&flow->queue);
76 if (!skb)
77 break;
78
79 packets++;
80 bytes += skb->len;
81 truesize += skb->truesize;
82 free_func(fq, tin, flow, skb);
83 } while (packets < pending);
84
85 __fq_adjust_removal(fq, flow, packets, bytes, truesize);
Felix Fietkau07be2fe2020-12-18 19:47:13 +010086
87 return packets;
88}
89
Michal Kazior557fc4a2016-04-22 14:20:13 +020090static struct sk_buff *fq_tin_dequeue(struct fq *fq,
91 struct fq_tin *tin,
92 fq_tin_dequeue_t dequeue_func)
93{
94 struct fq_flow *flow;
95 struct list_head *head;
96 struct sk_buff *skb;
97
98 lockdep_assert_held(&fq->lock);
99
100begin:
101 head = &tin->new_flows;
102 if (list_empty(head)) {
103 head = &tin->old_flows;
104 if (list_empty(head))
105 return NULL;
106 }
107
108 flow = list_first_entry(head, struct fq_flow, flowchain);
109
110 if (flow->deficit <= 0) {
111 flow->deficit += fq->quantum;
112 list_move_tail(&flow->flowchain,
113 &tin->old_flows);
114 goto begin;
115 }
116
117 skb = dequeue_func(fq, tin, flow);
118 if (!skb) {
119 /* force a pass through old_flows to prevent starvation */
120 if ((head == &tin->new_flows) &&
121 !list_empty(&tin->old_flows)) {
122 list_move_tail(&flow->flowchain, &tin->old_flows);
123 } else {
124 list_del_init(&flow->flowchain);
125 flow->tin = NULL;
126 }
127 goto begin;
128 }
129
130 flow->deficit -= skb->len;
131 tin->tx_bytes += skb->len;
132 tin->tx_packets++;
133
134 return skb;
135}
136
Felix Fietkauf2af2df2019-03-16 18:06:32 +0100137static u32 fq_flow_idx(struct fq *fq, struct sk_buff *skb)
138{
Felix Fietkau48a54f6b2020-07-26 15:09:46 +0200139 u32 hash = skb_get_hash(skb);
Felix Fietkauf2af2df2019-03-16 18:06:32 +0100140
141 return reciprocal_scale(hash, fq->flows_cnt);
142}
143
Michal Kazior557fc4a2016-04-22 14:20:13 +0200144static struct fq_flow *fq_flow_classify(struct fq *fq,
Felix Fietkauf2af2df2019-03-16 18:06:32 +0100145 struct fq_tin *tin, u32 idx,
Felix Fietkaubf9009b2020-12-18 19:47:14 +0100146 struct sk_buff *skb)
Michal Kazior557fc4a2016-04-22 14:20:13 +0200147{
148 struct fq_flow *flow;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200149
150 lockdep_assert_held(&fq->lock);
151
Michal Kazior557fc4a2016-04-22 14:20:13 +0200152 flow = &fq->flows[idx];
Michal Kazior557fc4a2016-04-22 14:20:13 +0200153 if (flow->tin && flow->tin != tin) {
Felix Fietkaubf9009b2020-12-18 19:47:14 +0100154 flow = &tin->default_flow;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200155 tin->collisions++;
156 fq->collisions++;
157 }
158
159 if (!flow->tin)
160 tin->flows++;
161
162 return flow;
163}
164
Felix Fietkaud7b64922020-12-18 19:47:15 +0100165static struct fq_flow *fq_find_fattest_flow(struct fq *fq)
Michal Kazior557fc4a2016-04-22 14:20:13 +0200166{
Felix Fietkaud7b64922020-12-18 19:47:15 +0100167 struct fq_tin *tin;
168 struct fq_flow *flow = NULL;
169 u32 len = 0;
170 int i;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200171
Felix Fietkaud7b64922020-12-18 19:47:15 +0100172 for_each_set_bit(i, fq->flows_bitmap, fq->flows_cnt) {
173 struct fq_flow *cur = &fq->flows[i];
174 unsigned int cur_len;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200175
Felix Fietkaud7b64922020-12-18 19:47:15 +0100176 cur_len = cur->backlog;
177 if (cur_len <= len)
178 continue;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200179
Felix Fietkaud7b64922020-12-18 19:47:15 +0100180 flow = cur;
181 len = cur_len;
182 }
183
184 list_for_each_entry(tin, &fq->tin_backlog, tin_list) {
185 unsigned int cur_len = tin->default_flow.backlog;
186
187 if (cur_len <= len)
188 continue;
189
190 flow = &tin->default_flow;
191 len = cur_len;
192 }
193
194 return flow;
Michal Kaziorb43e7192016-04-27 12:59:13 +0200195}
196
197static void fq_tin_enqueue(struct fq *fq,
Felix Fietkauf2af2df2019-03-16 18:06:32 +0100198 struct fq_tin *tin, u32 idx,
Michal Kaziorb43e7192016-04-27 12:59:13 +0200199 struct sk_buff *skb,
Felix Fietkaubf9009b2020-12-18 19:47:14 +0100200 fq_skb_free_t free_func)
Michal Kaziorb43e7192016-04-27 12:59:13 +0200201{
202 struct fq_flow *flow;
Toke Høiland-Jørgensen0bfe6492017-10-16 17:05:57 +0200203 bool oom;
Michal Kaziorb43e7192016-04-27 12:59:13 +0200204
205 lockdep_assert_held(&fq->lock);
206
Felix Fietkaubf9009b2020-12-18 19:47:14 +0100207 flow = fq_flow_classify(fq, tin, idx, skb);
Michal Kaziorb43e7192016-04-27 12:59:13 +0200208
Felix Fietkaud7b64922020-12-18 19:47:15 +0100209 if (!flow->backlog) {
210 if (flow != &tin->default_flow)
211 __set_bit(idx, fq->flows_bitmap);
212 else if (list_empty(&tin->tin_list))
213 list_add(&tin->tin_list, &fq->tin_backlog);
214 }
215
Michal Kaziorb43e7192016-04-27 12:59:13 +0200216 flow->tin = tin;
217 flow->backlog += skb->len;
218 tin->backlog_bytes += skb->len;
219 tin->backlog_packets++;
Toke Høiland-Jørgensen097b0652016-09-23 21:59:09 +0200220 fq->memory_usage += skb->truesize;
Michal Kaziorb43e7192016-04-27 12:59:13 +0200221 fq->backlog++;
222
Michal Kazior557fc4a2016-04-22 14:20:13 +0200223 if (list_empty(&flow->flowchain)) {
224 flow->deficit = fq->quantum;
225 list_add_tail(&flow->flowchain,
226 &tin->new_flows);
227 }
228
229 __skb_queue_tail(&flow->queue, skb);
Toke Høiland-Jørgensen0bfe6492017-10-16 17:05:57 +0200230 oom = (fq->memory_usage > fq->memory_limit);
231 while (fq->backlog > fq->limit || oom) {
Felix Fietkaud7b64922020-12-18 19:47:15 +0100232 flow = fq_find_fattest_flow(fq);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200233 if (!flow)
234 return;
235
Felix Fietkau07be2fe2020-12-18 19:47:13 +0100236 if (!fq_flow_drop(fq, flow, free_func))
Michal Kazior557fc4a2016-04-22 14:20:13 +0200237 return;
238
Michal Kazior557fc4a2016-04-22 14:20:13 +0200239 flow->tin->overlimit++;
240 fq->overlimit++;
Toke Høiland-Jørgensen0bfe6492017-10-16 17:05:57 +0200241 if (oom) {
Toke Høiland-Jørgensen097b0652016-09-23 21:59:09 +0200242 fq->overmemory++;
Toke Høiland-Jørgensen0bfe6492017-10-16 17:05:57 +0200243 oom = (fq->memory_usage > fq->memory_limit);
244 }
Michal Kazior557fc4a2016-04-22 14:20:13 +0200245 }
246}
247
Johannes Berg8c418b52017-10-06 11:53:32 +0200248static void fq_flow_filter(struct fq *fq,
249 struct fq_flow *flow,
250 fq_skb_filter_t filter_func,
251 void *filter_data,
252 fq_skb_free_t free_func)
253{
254 struct fq_tin *tin = flow->tin;
255 struct sk_buff *skb, *tmp;
256
257 lockdep_assert_held(&fq->lock);
258
259 skb_queue_walk_safe(&flow->queue, skb, tmp) {
260 if (!filter_func(fq, tin, flow, skb, filter_data))
261 continue;
262
263 __skb_unlink(skb, &flow->queue);
264 fq_adjust_removal(fq, flow, skb);
265 free_func(fq, tin, flow, skb);
266 }
Johannes Berg8c418b52017-10-06 11:53:32 +0200267}
268
269static void fq_tin_filter(struct fq *fq,
270 struct fq_tin *tin,
271 fq_skb_filter_t filter_func,
272 void *filter_data,
273 fq_skb_free_t free_func)
274{
275 struct fq_flow *flow;
276
277 lockdep_assert_held(&fq->lock);
278
279 list_for_each_entry(flow, &tin->new_flows, flowchain)
280 fq_flow_filter(fq, flow, filter_func, filter_data, free_func);
281 list_for_each_entry(flow, &tin->old_flows, flowchain)
282 fq_flow_filter(fq, flow, filter_func, filter_data, free_func);
283}
284
Michal Kazior557fc4a2016-04-22 14:20:13 +0200285static void fq_flow_reset(struct fq *fq,
286 struct fq_flow *flow,
287 fq_skb_free_t free_func)
288{
Felix Fietkaud7b64922020-12-18 19:47:15 +0100289 struct fq_tin *tin = flow->tin;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200290 struct sk_buff *skb;
291
292 while ((skb = fq_flow_dequeue(fq, flow)))
Felix Fietkaud7b64922020-12-18 19:47:15 +0100293 free_func(fq, tin, flow, skb);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200294
Felix Fietkaud7b64922020-12-18 19:47:15 +0100295 if (!list_empty(&flow->flowchain)) {
Michal Kazior557fc4a2016-04-22 14:20:13 +0200296 list_del_init(&flow->flowchain);
Felix Fietkaud7b64922020-12-18 19:47:15 +0100297 if (list_empty(&tin->new_flows) &&
298 list_empty(&tin->old_flows))
299 list_del_init(&tin->tin_list);
300 }
Michal Kazior557fc4a2016-04-22 14:20:13 +0200301
302 flow->tin = NULL;
303
304 WARN_ON_ONCE(flow->backlog);
305}
306
307static void fq_tin_reset(struct fq *fq,
308 struct fq_tin *tin,
309 fq_skb_free_t free_func)
310{
311 struct list_head *head;
312 struct fq_flow *flow;
313
314 for (;;) {
315 head = &tin->new_flows;
316 if (list_empty(head)) {
317 head = &tin->old_flows;
318 if (list_empty(head))
319 break;
320 }
321
322 flow = list_first_entry(head, struct fq_flow, flowchain);
323 fq_flow_reset(fq, flow, free_func);
324 }
325
Felix Fietkaud7b64922020-12-18 19:47:15 +0100326 WARN_ON_ONCE(!list_empty(&tin->tin_list));
Michal Kazior557fc4a2016-04-22 14:20:13 +0200327 WARN_ON_ONCE(tin->backlog_bytes);
328 WARN_ON_ONCE(tin->backlog_packets);
329}
330
331static void fq_flow_init(struct fq_flow *flow)
332{
333 INIT_LIST_HEAD(&flow->flowchain);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200334 __skb_queue_head_init(&flow->queue);
335}
336
337static void fq_tin_init(struct fq_tin *tin)
338{
339 INIT_LIST_HEAD(&tin->new_flows);
340 INIT_LIST_HEAD(&tin->old_flows);
Felix Fietkaud7b64922020-12-18 19:47:15 +0100341 INIT_LIST_HEAD(&tin->tin_list);
Felix Fietkaubf9009b2020-12-18 19:47:14 +0100342 fq_flow_init(&tin->default_flow);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200343}
344
345static int fq_init(struct fq *fq, int flows_cnt)
346{
347 int i;
348
349 memset(fq, 0, sizeof(fq[0]));
Michal Kazior557fc4a2016-04-22 14:20:13 +0200350 spin_lock_init(&fq->lock);
Felix Fietkaud7b64922020-12-18 19:47:15 +0100351 INIT_LIST_HEAD(&fq->tin_backlog);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200352 fq->flows_cnt = max_t(u32, flows_cnt, 1);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200353 fq->quantum = 300;
354 fq->limit = 8192;
Toke Høiland-Jørgensen097b0652016-09-23 21:59:09 +0200355 fq->memory_limit = 16 << 20; /* 16 MBytes */
Michal Kazior557fc4a2016-04-22 14:20:13 +0200356
Toke Høiland-Jørgensen71e67c32019-11-05 16:57:50 +0100357 fq->flows = kvcalloc(fq->flows_cnt, sizeof(fq->flows[0]), GFP_KERNEL);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200358 if (!fq->flows)
359 return -ENOMEM;
360
Felix Fietkaud7b64922020-12-18 19:47:15 +0100361 fq->flows_bitmap = kcalloc(BITS_TO_LONGS(fq->flows_cnt), sizeof(long),
362 GFP_KERNEL);
363 if (!fq->flows_bitmap) {
364 kvfree(fq->flows);
365 fq->flows = NULL;
366 return -ENOMEM;
367 }
368
Michal Kazior557fc4a2016-04-22 14:20:13 +0200369 for (i = 0; i < fq->flows_cnt; i++)
370 fq_flow_init(&fq->flows[i]);
371
372 return 0;
373}
374
375static void fq_reset(struct fq *fq,
376 fq_skb_free_t free_func)
377{
378 int i;
379
380 for (i = 0; i < fq->flows_cnt; i++)
381 fq_flow_reset(fq, &fq->flows[i], free_func);
382
Toke Høiland-Jørgensen71e67c32019-11-05 16:57:50 +0100383 kvfree(fq->flows);
Michal Kazior557fc4a2016-04-22 14:20:13 +0200384 fq->flows = NULL;
Felix Fietkaud7b64922020-12-18 19:47:15 +0100385
386 kfree(fq->flows_bitmap);
387 fq->flows_bitmap = NULL;
Michal Kazior557fc4a2016-04-22 14:20:13 +0200388}
389
390#endif