blob: c008a316e94364a3f2e95403b2446362249b40e5 [file] [log] [blame]
David S. Miller6ec1c692009-09-06 01:58:51 -07001/*
2 * net/sched/sch_mq.c Classful multiqueue dummy scheduler
3 *
4 * Copyright (c) 2009 Patrick McHardy <kaber@trash.net>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
9 */
10
11#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
David S. Miller6ec1c692009-09-06 01:58:51 -070013#include <linux/kernel.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040014#include <linux/export.h>
David S. Miller6ec1c692009-09-06 01:58:51 -070015#include <linux/string.h>
16#include <linux/errno.h>
17#include <linux/skbuff.h>
18#include <net/netlink.h>
Jakub Kicinskif971b132018-05-25 21:53:35 -070019#include <net/pkt_cls.h>
David S. Miller6ec1c692009-09-06 01:58:51 -070020#include <net/pkt_sched.h>
John Fastabendb01ac092017-12-07 09:57:20 -080021#include <net/sch_generic.h>
David S. Miller6ec1c692009-09-06 01:58:51 -070022
23struct mq_sched {
24 struct Qdisc **qdiscs;
25};
26
Jakub Kicinskif971b132018-05-25 21:53:35 -070027static int mq_offload(struct Qdisc *sch, enum tc_mq_command cmd)
28{
29 struct net_device *dev = qdisc_dev(sch);
30 struct tc_mq_qopt_offload opt = {
31 .command = cmd,
32 .handle = sch->handle,
33 };
34
35 if (!tc_can_offload(dev) || !dev->netdev_ops->ndo_setup_tc)
36 return -EOPNOTSUPP;
37
38 return dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_QDISC_MQ, &opt);
39}
40
Jakub Kicinski47c669a42018-05-25 21:53:37 -070041static void mq_offload_stats(struct Qdisc *sch)
42{
43 struct net_device *dev = qdisc_dev(sch);
44 struct tc_mq_qopt_offload opt = {
45 .command = TC_MQ_STATS,
46 .handle = sch->handle,
47 .stats = {
48 .bstats = &sch->bstats,
49 .qstats = &sch->qstats,
50 },
51 };
52
53 if (tc_can_offload(dev) && dev->netdev_ops->ndo_setup_tc)
54 dev->netdev_ops->ndo_setup_tc(dev, TC_SETUP_QDISC_MQ, &opt);
55}
56
David S. Miller6ec1c692009-09-06 01:58:51 -070057static void mq_destroy(struct Qdisc *sch)
58{
59 struct net_device *dev = qdisc_dev(sch);
60 struct mq_sched *priv = qdisc_priv(sch);
61 unsigned int ntx;
62
Jakub Kicinskif971b132018-05-25 21:53:35 -070063 mq_offload(sch, TC_MQ_DESTROY);
64
David S. Miller6ec1c692009-09-06 01:58:51 -070065 if (!priv->qdiscs)
66 return;
67 for (ntx = 0; ntx < dev->num_tx_queues && priv->qdiscs[ntx]; ntx++)
68 qdisc_destroy(priv->qdiscs[ntx]);
69 kfree(priv->qdiscs);
70}
71
Alexander Aringe63d7df2017-12-20 12:35:13 -050072static int mq_init(struct Qdisc *sch, struct nlattr *opt,
73 struct netlink_ext_ack *extack)
David S. Miller6ec1c692009-09-06 01:58:51 -070074{
75 struct net_device *dev = qdisc_dev(sch);
76 struct mq_sched *priv = qdisc_priv(sch);
77 struct netdev_queue *dev_queue;
78 struct Qdisc *qdisc;
79 unsigned int ntx;
80
81 if (sch->parent != TC_H_ROOT)
82 return -EOPNOTSUPP;
83
84 if (!netif_is_multiqueue(dev))
85 return -EOPNOTSUPP;
86
87 /* pre-allocate qdiscs, attachment can't fail */
88 priv->qdiscs = kcalloc(dev->num_tx_queues, sizeof(priv->qdiscs[0]),
89 GFP_KERNEL);
Eric Dumazet87b60cf2017-02-10 10:31:49 -080090 if (!priv->qdiscs)
David S. Miller6ec1c692009-09-06 01:58:51 -070091 return -ENOMEM;
92
93 for (ntx = 0; ntx < dev->num_tx_queues; ntx++) {
94 dev_queue = netdev_get_tx_queue(dev, ntx);
Eric Dumazet1f27cde2016-03-02 08:21:43 -080095 qdisc = qdisc_create_dflt(dev_queue, get_default_qdisc_ops(dev, ntx),
David S. Miller6ec1c692009-09-06 01:58:51 -070096 TC_H_MAKE(TC_H_MAJ(sch->handle),
Alexander Aringa38a9882017-12-20 12:35:21 -050097 TC_H_MIN(ntx + 1)),
98 extack);
Eric Dumazet87b60cf2017-02-10 10:31:49 -080099 if (!qdisc)
100 return -ENOMEM;
David S. Miller6ec1c692009-09-06 01:58:51 -0700101 priv->qdiscs[ntx] = qdisc;
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800102 qdisc->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT;
David S. Miller6ec1c692009-09-06 01:58:51 -0700103 }
104
Patrick McHardy23bcf632009-09-09 18:11:23 -0700105 sch->flags |= TCQ_F_MQROOT;
Jakub Kicinskif971b132018-05-25 21:53:35 -0700106
107 mq_offload(sch, TC_MQ_CREATE);
David S. Miller6ec1c692009-09-06 01:58:51 -0700108 return 0;
David S. Miller6ec1c692009-09-06 01:58:51 -0700109}
110
111static void mq_attach(struct Qdisc *sch)
112{
113 struct net_device *dev = qdisc_dev(sch);
114 struct mq_sched *priv = qdisc_priv(sch);
Eric Dumazet95dc1922013-12-05 11:12:02 -0800115 struct Qdisc *qdisc, *old;
David S. Miller6ec1c692009-09-06 01:58:51 -0700116 unsigned int ntx;
117
118 for (ntx = 0; ntx < dev->num_tx_queues; ntx++) {
119 qdisc = priv->qdiscs[ntx];
Eric Dumazet95dc1922013-12-05 11:12:02 -0800120 old = dev_graft_qdisc(qdisc->dev_queue, qdisc);
121 if (old)
122 qdisc_destroy(old);
123#ifdef CONFIG_NET_SCHED
124 if (ntx < dev->real_num_tx_queues)
Jiri Kosina49b49972017-03-08 16:03:32 +0100125 qdisc_hash_add(qdisc, false);
Eric Dumazet95dc1922013-12-05 11:12:02 -0800126#endif
127
David S. Miller6ec1c692009-09-06 01:58:51 -0700128 }
129 kfree(priv->qdiscs);
130 priv->qdiscs = NULL;
131}
132
133static int mq_dump(struct Qdisc *sch, struct sk_buff *skb)
134{
135 struct net_device *dev = qdisc_dev(sch);
136 struct Qdisc *qdisc;
137 unsigned int ntx;
John Fastabendce679e82017-12-07 09:57:39 -0800138 __u32 qlen = 0;
David S. Miller6ec1c692009-09-06 01:58:51 -0700139
140 sch->q.qlen = 0;
141 memset(&sch->bstats, 0, sizeof(sch->bstats));
142 memset(&sch->qstats, 0, sizeof(sch->qstats));
143
John Fastabendce679e82017-12-07 09:57:39 -0800144 /* MQ supports lockless qdiscs. However, statistics accounting needs
145 * to account for all, none, or a mix of locked and unlocked child
146 * qdiscs. Percpu stats are added to counters in-band and locking
147 * qdisc totals are added at end.
148 */
David S. Miller6ec1c692009-09-06 01:58:51 -0700149 for (ntx = 0; ntx < dev->num_tx_queues; ntx++) {
150 qdisc = netdev_get_tx_queue(dev, ntx)->qdisc_sleeping;
151 spin_lock_bh(qdisc_lock(qdisc));
John Fastabendb01ac092017-12-07 09:57:20 -0800152
153 if (qdisc_is_percpu_stats(qdisc)) {
John Fastabendce679e82017-12-07 09:57:39 -0800154 qlen = qdisc_qlen_sum(qdisc);
155 __gnet_stats_copy_basic(NULL, &sch->bstats,
156 qdisc->cpu_bstats,
157 &qdisc->bstats);
158 __gnet_stats_copy_queue(&sch->qstats,
159 qdisc->cpu_qstats,
160 &qdisc->qstats, qlen);
Dust Li0c5a4dd2019-12-03 11:17:40 +0800161 sch->q.qlen += qlen;
John Fastabendce679e82017-12-07 09:57:39 -0800162 } else {
163 sch->q.qlen += qdisc->q.qlen;
164 sch->bstats.bytes += qdisc->bstats.bytes;
165 sch->bstats.packets += qdisc->bstats.packets;
Jakub Kicinski47c669a42018-05-25 21:53:37 -0700166 sch->qstats.qlen += qdisc->qstats.qlen;
John Fastabendce679e82017-12-07 09:57:39 -0800167 sch->qstats.backlog += qdisc->qstats.backlog;
168 sch->qstats.drops += qdisc->qstats.drops;
169 sch->qstats.requeues += qdisc->qstats.requeues;
170 sch->qstats.overlimits += qdisc->qstats.overlimits;
John Fastabendb01ac092017-12-07 09:57:20 -0800171 }
172
David S. Miller6ec1c692009-09-06 01:58:51 -0700173 spin_unlock_bh(qdisc_lock(qdisc));
174 }
Jakub Kicinski47c669a42018-05-25 21:53:37 -0700175 mq_offload_stats(sch);
John Fastabendce679e82017-12-07 09:57:39 -0800176
David S. Miller6ec1c692009-09-06 01:58:51 -0700177 return 0;
178}
179
180static struct netdev_queue *mq_queue_get(struct Qdisc *sch, unsigned long cl)
181{
182 struct net_device *dev = qdisc_dev(sch);
183 unsigned long ntx = cl - 1;
184
185 if (ntx >= dev->num_tx_queues)
186 return NULL;
187 return netdev_get_tx_queue(dev, ntx);
188}
189
Jarek Poplawski926e61b2009-09-15 02:53:07 -0700190static struct netdev_queue *mq_select_queue(struct Qdisc *sch,
191 struct tcmsg *tcm)
David S. Miller6ec1c692009-09-06 01:58:51 -0700192{
Jesus Sanchez-Palenciace8a75f2017-10-16 18:01:24 -0700193 return mq_queue_get(sch, TC_H_MIN(tcm->tcm_parent));
David S. Miller6ec1c692009-09-06 01:58:51 -0700194}
195
196static int mq_graft(struct Qdisc *sch, unsigned long cl, struct Qdisc *new,
Alexander Aring653d6fd2017-12-20 12:35:17 -0500197 struct Qdisc **old, struct netlink_ext_ack *extack)
David S. Miller6ec1c692009-09-06 01:58:51 -0700198{
199 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
200 struct net_device *dev = qdisc_dev(sch);
201
202 if (dev->flags & IFF_UP)
203 dev_deactivate(dev);
204
205 *old = dev_graft_qdisc(dev_queue, new);
Eric Dumazet1abbe132012-12-11 15:54:33 +0000206 if (new)
Eric Dumazet4eaf3b82015-12-01 20:08:51 -0800207 new->flags |= TCQ_F_ONETXQUEUE | TCQ_F_NOPARENT;
David S. Miller6ec1c692009-09-06 01:58:51 -0700208 if (dev->flags & IFF_UP)
209 dev_activate(dev);
210 return 0;
211}
212
213static struct Qdisc *mq_leaf(struct Qdisc *sch, unsigned long cl)
214{
215 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
216
217 return dev_queue->qdisc_sleeping;
218}
219
WANG Cong143976c2017-08-24 16:51:29 -0700220static unsigned long mq_find(struct Qdisc *sch, u32 classid)
David S. Miller6ec1c692009-09-06 01:58:51 -0700221{
222 unsigned int ntx = TC_H_MIN(classid);
223
224 if (!mq_queue_get(sch, ntx))
225 return 0;
226 return ntx;
227}
228
David S. Miller6ec1c692009-09-06 01:58:51 -0700229static int mq_dump_class(struct Qdisc *sch, unsigned long cl,
230 struct sk_buff *skb, struct tcmsg *tcm)
231{
232 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
233
234 tcm->tcm_parent = TC_H_ROOT;
235 tcm->tcm_handle |= TC_H_MIN(cl);
236 tcm->tcm_info = dev_queue->qdisc_sleeping->handle;
237 return 0;
238}
239
240static int mq_dump_class_stats(struct Qdisc *sch, unsigned long cl,
241 struct gnet_dump *d)
242{
243 struct netdev_queue *dev_queue = mq_queue_get(sch, cl);
244
245 sch = dev_queue->qdisc_sleeping;
Dust Li50ee7a42019-11-28 14:29:09 +0800246 if (gnet_stats_copy_basic(&sch->running, d, sch->cpu_bstats,
247 &sch->bstats) < 0 ||
John Fastabendb0ab6f92014-09-28 11:54:24 -0700248 gnet_stats_copy_queue(d, NULL, &sch->qstats, sch->q.qlen) < 0)
David S. Miller6ec1c692009-09-06 01:58:51 -0700249 return -1;
250 return 0;
251}
252
253static void mq_walk(struct Qdisc *sch, struct qdisc_walker *arg)
254{
255 struct net_device *dev = qdisc_dev(sch);
256 unsigned int ntx;
257
258 if (arg->stop)
259 return;
260
261 arg->count = arg->skip;
262 for (ntx = arg->skip; ntx < dev->num_tx_queues; ntx++) {
263 if (arg->fn(sch, ntx + 1, arg) < 0) {
264 arg->stop = 1;
265 break;
266 }
267 arg->count++;
268 }
269}
270
271static const struct Qdisc_class_ops mq_class_ops = {
272 .select_queue = mq_select_queue,
273 .graft = mq_graft,
274 .leaf = mq_leaf,
WANG Cong143976c2017-08-24 16:51:29 -0700275 .find = mq_find,
David S. Miller6ec1c692009-09-06 01:58:51 -0700276 .walk = mq_walk,
277 .dump = mq_dump_class,
278 .dump_stats = mq_dump_class_stats,
279};
280
281struct Qdisc_ops mq_qdisc_ops __read_mostly = {
282 .cl_ops = &mq_class_ops,
283 .id = "mq",
284 .priv_size = sizeof(struct mq_sched),
285 .init = mq_init,
286 .destroy = mq_destroy,
287 .attach = mq_attach,
288 .dump = mq_dump,
289 .owner = THIS_MODULE,
290};