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, NULL, 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]);
140 static int prio_offload(struct Qdisc *sch, struct tc_prio_qopt *qopt)
142 struct net_device *dev = qdisc_dev(sch);
143 struct tc_prio_qopt_offload opt = {
144 .handle = sch->handle,
145 .parent = sch->parent,
148 if (!tc_can_offload(dev) || !dev->netdev_ops->ndo_setup_tc)
152 opt.command = TC_PRIO_REPLACE;
153 opt.replace_params.bands = qopt->bands;
154 memcpy(&opt.replace_params.priomap, qopt->priomap,
156 opt.replace_params.qstats = &sch->qstats;
158 opt.command = TC_PRIO_DESTROY;
161 return dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_QDISC_PRIO, &opt);
165 prio_destroy(struct Qdisc *sch)
168 struct prio_sched_data *q = qdisc_priv(sch);
170 tcf_block_put(q->block);
171 prio_offload(sch, NULL);
172 for (prio = 0; prio < q->bands; prio++)
173 qdisc_put(q->queues[prio]);
176 static int prio_tune(struct Qdisc *sch, struct nlattr *opt,
177 struct netlink_ext_ack *extack)
179 struct prio_sched_data *q = qdisc_priv(sch);
180 struct Qdisc *queues[TCQ_PRIO_BANDS];
181 int oldbands = q->bands, i;
182 struct tc_prio_qopt *qopt;
184 if (nla_len(opt) < sizeof(*qopt))
186 qopt = nla_data(opt);
188 if (qopt->bands > TCQ_PRIO_BANDS || qopt->bands < TCQ_MIN_PRIO_BANDS)
191 for (i = 0; i <= TC_PRIO_MAX; i++) {
192 if (qopt->priomap[i] >= qopt->bands)
196 /* Before commit, make sure we can allocate all new qdiscs */
197 for (i = oldbands; i < qopt->bands; i++) {
198 queues[i] = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
199 TC_H_MAKE(sch->handle, i + 1),
203 qdisc_put(queues[--i]);
208 prio_offload(sch, qopt);
210 q->bands = qopt->bands;
211 memcpy(q->prio2band, qopt->priomap, TC_PRIO_MAX+1);
213 for (i = q->bands; i < oldbands; i++)
214 qdisc_tree_flush_backlog(q->queues[i]);
216 for (i = oldbands; i < q->bands; i++) {
217 q->queues[i] = queues[i];
218 if (q->queues[i] != &noop_qdisc)
219 qdisc_hash_add(q->queues[i], true);
222 sch_tree_unlock(sch);
224 for (i = q->bands; i < oldbands; i++)
225 qdisc_put(q->queues[i]);
229 static int prio_init(struct Qdisc *sch, struct nlattr *opt,
230 struct netlink_ext_ack *extack)
232 struct prio_sched_data *q = qdisc_priv(sch);
238 err = tcf_block_get(&q->block, &q->filter_list, sch, extack);
242 return prio_tune(sch, opt, extack);
245 static int prio_dump_offload(struct Qdisc *sch)
247 struct tc_prio_qopt_offload hw_stats = {
248 .command = TC_PRIO_STATS,
249 .handle = sch->handle,
250 .parent = sch->parent,
253 .bstats = &sch->bstats,
254 .qstats = &sch->qstats,
259 return qdisc_offload_dump_helper(sch, TC_SETUP_QDISC_PRIO, &hw_stats);
262 static int prio_dump(struct Qdisc *sch, struct sk_buff *skb)
264 struct prio_sched_data *q = qdisc_priv(sch);
265 unsigned char *b = skb_tail_pointer(skb);
266 struct tc_prio_qopt opt;
269 opt.bands = q->bands;
270 memcpy(&opt.priomap, q->prio2band, TC_PRIO_MAX + 1);
272 err = prio_dump_offload(sch);
274 goto nla_put_failure;
276 if (nla_put(skb, TCA_OPTIONS, sizeof(opt), &opt))
277 goto nla_put_failure;
286 static int prio_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
287 struct Qdisc **old, struct netlink_ext_ack *extack)
289 struct prio_sched_data *q = qdisc_priv(sch);
290 struct tc_prio_qopt_offload graft_offload;
291 unsigned long band = arg - 1;
294 new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
295 TC_H_MAKE(sch->handle, arg), extack);
299 qdisc_hash_add(new, true);
302 *old = qdisc_replace(sch, new, &q->queues[band]);
304 graft_offload.handle = sch->handle;
305 graft_offload.parent = sch->parent;
306 graft_offload.graft_params.band = band;
307 graft_offload.graft_params.child_handle = new->handle;
308 graft_offload.command = TC_PRIO_GRAFT;
310 qdisc_offload_graft_helper(qdisc_dev(sch), sch, new, *old,
311 TC_SETUP_QDISC_PRIO, &graft_offload,
316 static struct Qdisc *
317 prio_leaf(struct Qdisc *sch, unsigned long arg)
319 struct prio_sched_data *q = qdisc_priv(sch);
320 unsigned long band = arg - 1;
322 return q->queues[band];
325 static unsigned long prio_find(struct Qdisc *sch, u32 classid)
327 struct prio_sched_data *q = qdisc_priv(sch);
328 unsigned long band = TC_H_MIN(classid);
330 if (band - 1 >= q->bands)
335 static unsigned long prio_bind(struct Qdisc *sch, unsigned long parent, u32 classid)
337 return prio_find(sch, classid);
341 static void prio_unbind(struct Qdisc *q, unsigned long cl)
345 static int prio_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb,
348 struct prio_sched_data *q = qdisc_priv(sch);
350 tcm->tcm_handle |= TC_H_MIN(cl);
351 tcm->tcm_info = q->queues[cl-1]->handle;
355 static int prio_dump_class_stats(struct Qdisc *sch, unsigned long cl,
358 struct prio_sched_data *q = qdisc_priv(sch);
361 cl_q = q->queues[cl - 1];
362 if (gnet_stats_copy_basic(d, cl_q->cpu_bstats,
363 &cl_q->bstats, true) < 0 ||
364 qdisc_qstats_copy(d, cl_q) < 0)
370 static void prio_walk(struct Qdisc *sch, struct qdisc_walker *arg)
372 struct prio_sched_data *q = qdisc_priv(sch);
378 for (prio = 0; prio < q->bands; prio++) {
379 if (!tc_qdisc_stats_dump(sch, prio + 1, arg))
384 static struct tcf_block *prio_tcf_block(struct Qdisc *sch, unsigned long cl,
385 struct netlink_ext_ack *extack)
387 struct prio_sched_data *q = qdisc_priv(sch);
394 static const struct Qdisc_class_ops prio_class_ops = {
399 .tcf_block = prio_tcf_block,
400 .bind_tcf = prio_bind,
401 .unbind_tcf = prio_unbind,
402 .dump = prio_dump_class,
403 .dump_stats = prio_dump_class_stats,
406 static struct Qdisc_ops prio_qdisc_ops __read_mostly = {
408 .cl_ops = &prio_class_ops,
410 .priv_size = sizeof(struct prio_sched_data),
411 .enqueue = prio_enqueue,
412 .dequeue = prio_dequeue,
416 .destroy = prio_destroy,
419 .owner = THIS_MODULE,
422 static int __init prio_module_init(void)
424 return register_qdisc(&prio_qdisc_ops);
427 static void __exit prio_module_exit(void)
429 unregister_qdisc(&prio_qdisc_ops);
432 module_init(prio_module_init)
433 module_exit(prio_module_exit)
435 MODULE_LICENSE("GPL");