1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * net/sched/sch_prio.c Simple 3-band priority "scheduler".
5 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 * Fixes: 19990609: J Hadi Salim <hadi@nortelnetworks.com>:
7 * Init -- EINVAL when opt undefined
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/string.h>
15 #include <linux/errno.h>
16 #include <linux/skbuff.h>
17 #include <net/netlink.h>
18 #include <net/pkt_sched.h>
19 #include <net/pkt_cls.h>
21 struct prio_sched_data
{
23 struct tcf_proto __rcu
*filter_list
;
24 struct tcf_block
*block
;
25 u8 prio2band
[TC_PRIO_MAX
+1];
26 struct Qdisc
*queues
[TCQ_PRIO_BANDS
];
31 prio_classify(struct sk_buff
*skb
, struct Qdisc
*sch
, int *qerr
)
33 struct prio_sched_data
*q
= qdisc_priv(sch
);
34 u32 band
= skb
->priority
;
35 struct tcf_result res
;
39 *qerr
= NET_XMIT_SUCCESS
| __NET_XMIT_BYPASS
;
40 if (TC_H_MAJ(skb
->priority
) != sch
->handle
) {
41 fl
= rcu_dereference_bh(q
->filter_list
);
42 err
= tcf_classify(skb
, fl
, &res
, false);
43 #ifdef CONFIG_NET_CLS_ACT
48 *qerr
= NET_XMIT_SUCCESS
| __NET_XMIT_STOLEN
;
57 return q
->queues
[q
->prio2band
[band
& TC_PRIO_MAX
]];
61 band
= TC_H_MIN(band
) - 1;
63 return q
->queues
[q
->prio2band
[0]];
65 return q
->queues
[band
];
69 prio_enqueue(struct sk_buff
*skb
, struct Qdisc
*sch
, struct sk_buff
**to_free
)
71 unsigned int len
= qdisc_pkt_len(skb
);
75 qdisc
= prio_classify(skb
, sch
, &ret
);
76 #ifdef CONFIG_NET_CLS_ACT
79 if (ret
& __NET_XMIT_BYPASS
)
80 qdisc_qstats_drop(sch
);
81 __qdisc_drop(skb
, to_free
);
86 ret
= qdisc_enqueue(skb
, qdisc
, to_free
);
87 if (ret
== NET_XMIT_SUCCESS
) {
88 sch
->qstats
.backlog
+= len
;
90 return NET_XMIT_SUCCESS
;
92 if (net_xmit_drop_count(ret
))
93 qdisc_qstats_drop(sch
);
97 static struct sk_buff
*prio_peek(struct Qdisc
*sch
)
99 struct prio_sched_data
*q
= qdisc_priv(sch
);
102 for (prio
= 0; prio
< q
->bands
; prio
++) {
103 struct Qdisc
*qdisc
= q
->queues
[prio
];
104 struct sk_buff
*skb
= qdisc
->ops
->peek(qdisc
);
111 static struct sk_buff
*prio_dequeue(struct Qdisc
*sch
)
113 struct prio_sched_data
*q
= qdisc_priv(sch
);
116 for (prio
= 0; prio
< q
->bands
; prio
++) {
117 struct Qdisc
*qdisc
= q
->queues
[prio
];
118 struct sk_buff
*skb
= qdisc_dequeue_peeked(qdisc
);
120 qdisc_bstats_update(sch
, skb
);
121 qdisc_qstats_backlog_dec(sch
, skb
);
131 prio_reset(struct Qdisc
*sch
)
134 struct prio_sched_data
*q
= qdisc_priv(sch
);
136 for (prio
= 0; prio
< q
->bands
; prio
++)
137 qdisc_reset(q
->queues
[prio
]);
138 sch
->qstats
.backlog
= 0;
142 static int prio_offload(struct Qdisc
*sch
, struct tc_prio_qopt
*qopt
)
144 struct net_device
*dev
= qdisc_dev(sch
);
145 struct tc_prio_qopt_offload opt
= {
146 .handle
= sch
->handle
,
147 .parent
= sch
->parent
,
150 if (!tc_can_offload(dev
) || !dev
->netdev_ops
->ndo_setup_tc
)
154 opt
.command
= TC_PRIO_REPLACE
;
155 opt
.replace_params
.bands
= qopt
->bands
;
156 memcpy(&opt
.replace_params
.priomap
, qopt
->priomap
,
158 opt
.replace_params
.qstats
= &sch
->qstats
;
160 opt
.command
= TC_PRIO_DESTROY
;
163 return dev
->netdev_ops
->ndo_setup_tc(dev
, TC_SETUP_QDISC_PRIO
, &opt
);
167 prio_destroy(struct Qdisc
*sch
)
170 struct prio_sched_data
*q
= qdisc_priv(sch
);
172 tcf_block_put(q
->block
);
173 prio_offload(sch
, NULL
);
174 for (prio
= 0; prio
< q
->bands
; prio
++)
175 qdisc_put(q
->queues
[prio
]);
178 static int prio_tune(struct Qdisc
*sch
, struct nlattr
*opt
,
179 struct netlink_ext_ack
*extack
)
181 struct prio_sched_data
*q
= qdisc_priv(sch
);
182 struct Qdisc
*queues
[TCQ_PRIO_BANDS
];
183 int oldbands
= q
->bands
, i
;
184 struct tc_prio_qopt
*qopt
;
186 if (nla_len(opt
) < sizeof(*qopt
))
188 qopt
= nla_data(opt
);
190 if (qopt
->bands
> TCQ_PRIO_BANDS
|| qopt
->bands
< 2)
193 for (i
= 0; i
<= TC_PRIO_MAX
; i
++) {
194 if (qopt
->priomap
[i
] >= qopt
->bands
)
198 /* Before commit, make sure we can allocate all new qdiscs */
199 for (i
= oldbands
; i
< qopt
->bands
; i
++) {
200 queues
[i
] = qdisc_create_dflt(sch
->dev_queue
, &pfifo_qdisc_ops
,
201 TC_H_MAKE(sch
->handle
, i
+ 1),
205 qdisc_put(queues
[--i
]);
210 prio_offload(sch
, qopt
);
212 q
->bands
= qopt
->bands
;
213 memcpy(q
->prio2band
, qopt
->priomap
, TC_PRIO_MAX
+1);
215 for (i
= q
->bands
; i
< oldbands
; i
++)
216 qdisc_tree_flush_backlog(q
->queues
[i
]);
218 for (i
= oldbands
; i
< q
->bands
; i
++) {
219 q
->queues
[i
] = queues
[i
];
220 if (q
->queues
[i
] != &noop_qdisc
)
221 qdisc_hash_add(q
->queues
[i
], true);
224 sch_tree_unlock(sch
);
226 for (i
= q
->bands
; i
< oldbands
; i
++)
227 qdisc_put(q
->queues
[i
]);
231 static int prio_init(struct Qdisc
*sch
, struct nlattr
*opt
,
232 struct netlink_ext_ack
*extack
)
234 struct prio_sched_data
*q
= qdisc_priv(sch
);
240 err
= tcf_block_get(&q
->block
, &q
->filter_list
, sch
, extack
);
244 return prio_tune(sch
, opt
, extack
);
247 static int prio_dump_offload(struct Qdisc
*sch
)
249 struct tc_prio_qopt_offload hw_stats
= {
250 .command
= TC_PRIO_STATS
,
251 .handle
= sch
->handle
,
252 .parent
= sch
->parent
,
255 .bstats
= &sch
->bstats
,
256 .qstats
= &sch
->qstats
,
261 return qdisc_offload_dump_helper(sch
, TC_SETUP_QDISC_PRIO
, &hw_stats
);
264 static int prio_dump(struct Qdisc
*sch
, struct sk_buff
*skb
)
266 struct prio_sched_data
*q
= qdisc_priv(sch
);
267 unsigned char *b
= skb_tail_pointer(skb
);
268 struct tc_prio_qopt opt
;
271 opt
.bands
= q
->bands
;
272 memcpy(&opt
.priomap
, q
->prio2band
, TC_PRIO_MAX
+ 1);
274 err
= prio_dump_offload(sch
);
276 goto nla_put_failure
;
278 if (nla_put(skb
, TCA_OPTIONS
, sizeof(opt
), &opt
))
279 goto nla_put_failure
;
288 static int prio_graft(struct Qdisc
*sch
, unsigned long arg
, struct Qdisc
*new,
289 struct Qdisc
**old
, struct netlink_ext_ack
*extack
)
291 struct prio_sched_data
*q
= qdisc_priv(sch
);
292 struct tc_prio_qopt_offload graft_offload
;
293 unsigned long band
= arg
- 1;
296 new = qdisc_create_dflt(sch
->dev_queue
, &pfifo_qdisc_ops
,
297 TC_H_MAKE(sch
->handle
, arg
), extack
);
301 qdisc_hash_add(new, true);
304 *old
= qdisc_replace(sch
, new, &q
->queues
[band
]);
306 graft_offload
.handle
= sch
->handle
;
307 graft_offload
.parent
= sch
->parent
;
308 graft_offload
.graft_params
.band
= band
;
309 graft_offload
.graft_params
.child_handle
= new->handle
;
310 graft_offload
.command
= TC_PRIO_GRAFT
;
312 qdisc_offload_graft_helper(qdisc_dev(sch
), sch
, new, *old
,
313 TC_SETUP_QDISC_PRIO
, &graft_offload
,
318 static struct Qdisc
*
319 prio_leaf(struct Qdisc
*sch
, unsigned long arg
)
321 struct prio_sched_data
*q
= qdisc_priv(sch
);
322 unsigned long band
= arg
- 1;
324 return q
->queues
[band
];
327 static unsigned long prio_find(struct Qdisc
*sch
, u32 classid
)
329 struct prio_sched_data
*q
= qdisc_priv(sch
);
330 unsigned long band
= TC_H_MIN(classid
);
332 if (band
- 1 >= q
->bands
)
337 static unsigned long prio_bind(struct Qdisc
*sch
, unsigned long parent
, u32 classid
)
339 return prio_find(sch
, classid
);
343 static void prio_unbind(struct Qdisc
*q
, unsigned long cl
)
347 static int prio_dump_class(struct Qdisc
*sch
, unsigned long cl
, struct sk_buff
*skb
,
350 struct prio_sched_data
*q
= qdisc_priv(sch
);
352 tcm
->tcm_handle
|= TC_H_MIN(cl
);
353 tcm
->tcm_info
= q
->queues
[cl
-1]->handle
;
357 static int prio_dump_class_stats(struct Qdisc
*sch
, unsigned long cl
,
360 struct prio_sched_data
*q
= qdisc_priv(sch
);
363 cl_q
= q
->queues
[cl
- 1];
364 if (gnet_stats_copy_basic(qdisc_root_sleeping_running(sch
),
365 d
, cl_q
->cpu_bstats
, &cl_q
->bstats
) < 0 ||
366 qdisc_qstats_copy(d
, cl_q
) < 0)
372 static void prio_walk(struct Qdisc
*sch
, struct qdisc_walker
*arg
)
374 struct prio_sched_data
*q
= qdisc_priv(sch
);
380 for (prio
= 0; prio
< q
->bands
; prio
++) {
381 if (arg
->count
< arg
->skip
) {
385 if (arg
->fn(sch
, prio
+ 1, arg
) < 0) {
393 static struct tcf_block
*prio_tcf_block(struct Qdisc
*sch
, unsigned long cl
,
394 struct netlink_ext_ack
*extack
)
396 struct prio_sched_data
*q
= qdisc_priv(sch
);
403 static const struct Qdisc_class_ops prio_class_ops
= {
408 .tcf_block
= prio_tcf_block
,
409 .bind_tcf
= prio_bind
,
410 .unbind_tcf
= prio_unbind
,
411 .dump
= prio_dump_class
,
412 .dump_stats
= prio_dump_class_stats
,
415 static struct Qdisc_ops prio_qdisc_ops __read_mostly
= {
417 .cl_ops
= &prio_class_ops
,
419 .priv_size
= sizeof(struct prio_sched_data
),
420 .enqueue
= prio_enqueue
,
421 .dequeue
= prio_dequeue
,
425 .destroy
= prio_destroy
,
428 .owner
= THIS_MODULE
,
431 static int __init
prio_module_init(void)
433 return register_qdisc(&prio_qdisc_ops
);
436 static void __exit
prio_module_exit(void)
438 unregister_qdisc(&prio_qdisc_ops
);
441 module_init(prio_module_init
)
442 module_exit(prio_module_exit
)
444 MODULE_LICENSE("GPL");