Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 2 | /* |
| 3 | * net/sched/sch_drr.c Deficit Round Robin scheduler |
| 4 | * |
| 5 | * Copyright (c) 2008 Patrick McHardy <kaber@trash.net> |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 9 | #include <linux/slab.h> |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 10 | #include <linux/init.h> |
| 11 | #include <linux/errno.h> |
| 12 | #include <linux/netdevice.h> |
| 13 | #include <linux/pkt_sched.h> |
| 14 | #include <net/sch_generic.h> |
| 15 | #include <net/pkt_sched.h> |
| 16 | #include <net/pkt_cls.h> |
| 17 | |
| 18 | struct drr_class { |
| 19 | struct Qdisc_class_common common; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 20 | unsigned int filter_cnt; |
| 21 | |
Eric Dumazet | c1a8f1f | 2009-08-16 09:36:49 +0000 | [diff] [blame] | 22 | struct gnet_stats_basic_packed bstats; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 23 | struct gnet_stats_queue qstats; |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 24 | struct net_rate_estimator __rcu *rate_est; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 25 | struct list_head alist; |
| 26 | struct Qdisc *qdisc; |
| 27 | |
| 28 | u32 quantum; |
| 29 | u32 deficit; |
| 30 | }; |
| 31 | |
| 32 | struct drr_sched { |
| 33 | struct list_head active; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 34 | struct tcf_proto __rcu *filter_list; |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 35 | struct tcf_block *block; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 36 | struct Qdisc_class_hash clhash; |
| 37 | }; |
| 38 | |
| 39 | static struct drr_class *drr_find_class(struct Qdisc *sch, u32 classid) |
| 40 | { |
| 41 | struct drr_sched *q = qdisc_priv(sch); |
| 42 | struct Qdisc_class_common *clc; |
| 43 | |
| 44 | clc = qdisc_class_find(&q->clhash, classid); |
| 45 | if (clc == NULL) |
| 46 | return NULL; |
| 47 | return container_of(clc, struct drr_class, common); |
| 48 | } |
| 49 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 50 | static const struct nla_policy drr_policy[TCA_DRR_MAX + 1] = { |
| 51 | [TCA_DRR_QUANTUM] = { .type = NLA_U32 }, |
| 52 | }; |
| 53 | |
| 54 | static int drr_change_class(struct Qdisc *sch, u32 classid, u32 parentid, |
Alexander Aring | 793d81d | 2017-12-20 12:35:15 -0500 | [diff] [blame] | 55 | struct nlattr **tca, unsigned long *arg, |
| 56 | struct netlink_ext_ack *extack) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 57 | { |
| 58 | struct drr_sched *q = qdisc_priv(sch); |
| 59 | struct drr_class *cl = (struct drr_class *)*arg; |
Jarek Poplawski | 1844f74 | 2009-02-27 02:42:38 -0800 | [diff] [blame] | 60 | struct nlattr *opt = tca[TCA_OPTIONS]; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 61 | struct nlattr *tb[TCA_DRR_MAX + 1]; |
| 62 | u32 quantum; |
| 63 | int err; |
| 64 | |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 65 | if (!opt) { |
| 66 | NL_SET_ERR_MSG(extack, "DRR options are required for this operation"); |
Jarek Poplawski | 1844f74 | 2009-02-27 02:42:38 -0800 | [diff] [blame] | 67 | return -EINVAL; |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 68 | } |
Jarek Poplawski | 1844f74 | 2009-02-27 02:42:38 -0800 | [diff] [blame] | 69 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 70 | err = nla_parse_nested_deprecated(tb, TCA_DRR_MAX, opt, drr_policy, |
| 71 | extack); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 72 | if (err < 0) |
| 73 | return err; |
| 74 | |
| 75 | if (tb[TCA_DRR_QUANTUM]) { |
| 76 | quantum = nla_get_u32(tb[TCA_DRR_QUANTUM]); |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 77 | if (quantum == 0) { |
| 78 | NL_SET_ERR_MSG(extack, "Specified DRR quantum cannot be zero"); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 79 | return -EINVAL; |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 80 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 81 | } else |
| 82 | quantum = psched_mtu(qdisc_dev(sch)); |
| 83 | |
| 84 | if (cl != NULL) { |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 85 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 86 | err = gen_replace_estimator(&cl->bstats, NULL, |
| 87 | &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 88 | NULL, |
| 89 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 90 | tca[TCA_RATE]); |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 91 | if (err) { |
| 92 | NL_SET_ERR_MSG(extack, "Failed to replace estimator"); |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 93 | return err; |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 94 | } |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 95 | } |
| 96 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 97 | sch_tree_lock(sch); |
| 98 | if (tb[TCA_DRR_QUANTUM]) |
| 99 | cl->quantum = quantum; |
| 100 | sch_tree_unlock(sch); |
| 101 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | cl = kzalloc(sizeof(struct drr_class), GFP_KERNEL); |
| 106 | if (cl == NULL) |
| 107 | return -ENOBUFS; |
| 108 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 109 | cl->common.classid = classid; |
| 110 | cl->quantum = quantum; |
Changli Gao | 3511c91 | 2010-10-16 13:04:08 +0000 | [diff] [blame] | 111 | cl->qdisc = qdisc_create_dflt(sch->dev_queue, |
Alexander Aring | a38a9882 | 2017-12-20 12:35:21 -0500 | [diff] [blame] | 112 | &pfifo_qdisc_ops, classid, |
| 113 | NULL); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 114 | if (cl->qdisc == NULL) |
| 115 | cl->qdisc = &noop_qdisc; |
Jiri Kosina | 49b4997 | 2017-03-08 16:03:32 +0100 | [diff] [blame] | 116 | else |
| 117 | qdisc_hash_add(cl->qdisc, true); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 118 | |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 119 | if (tca[TCA_RATE]) { |
John Fastabend | 22e0f8b | 2014-09-28 11:52:56 -0700 | [diff] [blame] | 120 | err = gen_replace_estimator(&cl->bstats, NULL, &cl->rate_est, |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 121 | NULL, |
| 122 | qdisc_root_sleeping_running(sch), |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 123 | tca[TCA_RATE]); |
| 124 | if (err) { |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 125 | NL_SET_ERR_MSG(extack, "Failed to replace estimator"); |
Vlad Buslov | 86bd446 | 2018-09-24 19:22:50 +0300 | [diff] [blame] | 126 | qdisc_put(cl->qdisc); |
Stephen Hemminger | 71bcb09 | 2008-11-25 21:13:31 -0800 | [diff] [blame] | 127 | kfree(cl); |
| 128 | return err; |
| 129 | } |
| 130 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 131 | |
| 132 | sch_tree_lock(sch); |
| 133 | qdisc_class_hash_insert(&q->clhash, &cl->common); |
| 134 | sch_tree_unlock(sch); |
| 135 | |
| 136 | qdisc_class_hash_grow(sch, &q->clhash); |
| 137 | |
| 138 | *arg = (unsigned long)cl; |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | static void drr_destroy_class(struct Qdisc *sch, struct drr_class *cl) |
| 143 | { |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 144 | gen_kill_estimator(&cl->rate_est); |
Vlad Buslov | 86bd446 | 2018-09-24 19:22:50 +0300 | [diff] [blame] | 145 | qdisc_put(cl->qdisc); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 146 | kfree(cl); |
| 147 | } |
| 148 | |
| 149 | static int drr_delete_class(struct Qdisc *sch, unsigned long arg) |
| 150 | { |
| 151 | struct drr_sched *q = qdisc_priv(sch); |
| 152 | struct drr_class *cl = (struct drr_class *)arg; |
| 153 | |
| 154 | if (cl->filter_cnt > 0) |
| 155 | return -EBUSY; |
| 156 | |
| 157 | sch_tree_lock(sch); |
| 158 | |
Paolo Abeni | e5f0e8f | 2019-03-28 16:53:13 +0100 | [diff] [blame] | 159 | qdisc_purge_queue(cl->qdisc); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 160 | qdisc_class_hash_remove(&q->clhash, &cl->common); |
| 161 | |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 162 | sch_tree_unlock(sch); |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 163 | |
| 164 | drr_destroy_class(sch, cl); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 165 | return 0; |
| 166 | } |
| 167 | |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 168 | static unsigned long drr_search_class(struct Qdisc *sch, u32 classid) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 169 | { |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 170 | return (unsigned long)drr_find_class(sch, classid); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 171 | } |
| 172 | |
Alexander Aring | cbaacc4 | 2017-12-20 12:35:16 -0500 | [diff] [blame] | 173 | static struct tcf_block *drr_tcf_block(struct Qdisc *sch, unsigned long cl, |
| 174 | struct netlink_ext_ack *extack) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 175 | { |
| 176 | struct drr_sched *q = qdisc_priv(sch); |
| 177 | |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 178 | if (cl) { |
| 179 | NL_SET_ERR_MSG(extack, "DRR classid must be zero"); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 180 | return NULL; |
Alexander Aring | a7c3169 | 2017-12-20 12:35:24 -0500 | [diff] [blame] | 181 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 182 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 183 | return q->block; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | static unsigned long drr_bind_tcf(struct Qdisc *sch, unsigned long parent, |
| 187 | u32 classid) |
| 188 | { |
| 189 | struct drr_class *cl = drr_find_class(sch, classid); |
| 190 | |
| 191 | if (cl != NULL) |
| 192 | cl->filter_cnt++; |
| 193 | |
| 194 | return (unsigned long)cl; |
| 195 | } |
| 196 | |
| 197 | static void drr_unbind_tcf(struct Qdisc *sch, unsigned long arg) |
| 198 | { |
| 199 | struct drr_class *cl = (struct drr_class *)arg; |
| 200 | |
| 201 | cl->filter_cnt--; |
| 202 | } |
| 203 | |
| 204 | static int drr_graft_class(struct Qdisc *sch, unsigned long arg, |
Alexander Aring | 653d6fd | 2017-12-20 12:35:17 -0500 | [diff] [blame] | 205 | struct Qdisc *new, struct Qdisc **old, |
| 206 | struct netlink_ext_ack *extack) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 207 | { |
| 208 | struct drr_class *cl = (struct drr_class *)arg; |
| 209 | |
| 210 | if (new == NULL) { |
Alexander Aring | a38a9882 | 2017-12-20 12:35:21 -0500 | [diff] [blame] | 211 | new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, |
| 212 | cl->common.classid, NULL); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 213 | if (new == NULL) |
| 214 | new = &noop_qdisc; |
| 215 | } |
| 216 | |
WANG Cong | 86a7996 | 2016-02-25 14:55:00 -0800 | [diff] [blame] | 217 | *old = qdisc_replace(sch, new, &cl->qdisc); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | static struct Qdisc *drr_class_leaf(struct Qdisc *sch, unsigned long arg) |
| 222 | { |
| 223 | struct drr_class *cl = (struct drr_class *)arg; |
| 224 | |
| 225 | return cl->qdisc; |
| 226 | } |
| 227 | |
| 228 | static void drr_qlen_notify(struct Qdisc *csh, unsigned long arg) |
| 229 | { |
| 230 | struct drr_class *cl = (struct drr_class *)arg; |
| 231 | |
Konstantin Khlebnikov | 9594665 | 2017-08-15 16:39:59 +0300 | [diff] [blame] | 232 | list_del(&cl->alist); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | static int drr_dump_class(struct Qdisc *sch, unsigned long arg, |
| 236 | struct sk_buff *skb, struct tcmsg *tcm) |
| 237 | { |
| 238 | struct drr_class *cl = (struct drr_class *)arg; |
| 239 | struct nlattr *nest; |
| 240 | |
| 241 | tcm->tcm_parent = TC_H_ROOT; |
| 242 | tcm->tcm_handle = cl->common.classid; |
| 243 | tcm->tcm_info = cl->qdisc->handle; |
| 244 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 245 | nest = nla_nest_start_noflag(skb, TCA_OPTIONS); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 246 | if (nest == NULL) |
| 247 | goto nla_put_failure; |
David S. Miller | 1b34ec4 | 2012-03-29 05:11:39 -0400 | [diff] [blame] | 248 | if (nla_put_u32(skb, TCA_DRR_QUANTUM, cl->quantum)) |
| 249 | goto nla_put_failure; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 250 | return nla_nest_end(skb, nest); |
| 251 | |
| 252 | nla_put_failure: |
| 253 | nla_nest_cancel(skb, nest); |
| 254 | return -EMSGSIZE; |
| 255 | } |
| 256 | |
| 257 | static int drr_dump_class_stats(struct Qdisc *sch, unsigned long arg, |
| 258 | struct gnet_dump *d) |
| 259 | { |
| 260 | struct drr_class *cl = (struct drr_class *)arg; |
Paolo Abeni | 5dd431b | 2019-03-28 16:53:12 +0100 | [diff] [blame] | 261 | __u32 qlen = qdisc_qlen_sum(cl->qdisc); |
| 262 | struct Qdisc *cl_q = cl->qdisc; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 263 | struct tc_drr_stats xstats; |
| 264 | |
| 265 | memset(&xstats, 0, sizeof(xstats)); |
John Fastabend | 6401585 | 2014-09-28 11:53:57 -0700 | [diff] [blame] | 266 | if (qlen) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 267 | xstats.deficit = cl->deficit; |
| 268 | |
Eric Dumazet | edb09eb | 2016-06-06 09:37:16 -0700 | [diff] [blame] | 269 | if (gnet_stats_copy_basic(qdisc_root_sleeping_running(sch), |
| 270 | d, NULL, &cl->bstats) < 0 || |
Eric Dumazet | 1c0d32f | 2016-12-04 09:48:16 -0800 | [diff] [blame] | 271 | gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 || |
Paolo Abeni | 5dd431b | 2019-03-28 16:53:12 +0100 | [diff] [blame] | 272 | gnet_stats_copy_queue(d, cl_q->cpu_qstats, &cl_q->qstats, qlen) < 0) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 273 | return -1; |
| 274 | |
| 275 | return gnet_stats_copy_app(d, &xstats, sizeof(xstats)); |
| 276 | } |
| 277 | |
| 278 | static void drr_walk(struct Qdisc *sch, struct qdisc_walker *arg) |
| 279 | { |
| 280 | struct drr_sched *q = qdisc_priv(sch); |
| 281 | struct drr_class *cl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 282 | unsigned int i; |
| 283 | |
| 284 | if (arg->stop) |
| 285 | return; |
| 286 | |
| 287 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 288 | hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 289 | if (arg->count < arg->skip) { |
| 290 | arg->count++; |
| 291 | continue; |
| 292 | } |
| 293 | if (arg->fn(sch, (unsigned long)cl, arg) < 0) { |
| 294 | arg->stop = 1; |
| 295 | return; |
| 296 | } |
| 297 | arg->count++; |
| 298 | } |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | static struct drr_class *drr_classify(struct sk_buff *skb, struct Qdisc *sch, |
| 303 | int *qerr) |
| 304 | { |
| 305 | struct drr_sched *q = qdisc_priv(sch); |
| 306 | struct drr_class *cl; |
| 307 | struct tcf_result res; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 308 | struct tcf_proto *fl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 309 | int result; |
| 310 | |
| 311 | if (TC_H_MAJ(skb->priority ^ sch->handle) == 0) { |
| 312 | cl = drr_find_class(sch, skb->priority); |
| 313 | if (cl != NULL) |
| 314 | return cl; |
| 315 | } |
| 316 | |
| 317 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; |
John Fastabend | 25d8c0d | 2014-09-12 20:05:27 -0700 | [diff] [blame] | 318 | fl = rcu_dereference_bh(q->filter_list); |
Jiri Pirko | 87d8309 | 2017-05-17 11:07:54 +0200 | [diff] [blame] | 319 | result = tcf_classify(skb, fl, &res, false); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 320 | if (result >= 0) { |
| 321 | #ifdef CONFIG_NET_CLS_ACT |
| 322 | switch (result) { |
| 323 | case TC_ACT_QUEUED: |
| 324 | case TC_ACT_STOLEN: |
Jiri Pirko | e25ea21 | 2017-06-06 14:12:02 +0200 | [diff] [blame] | 325 | case TC_ACT_TRAP: |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 326 | *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; |
Gustavo A. R. Silva | 964201d | 2020-07-07 12:21:38 -0500 | [diff] [blame] | 327 | fallthrough; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 328 | case TC_ACT_SHOT: |
| 329 | return NULL; |
| 330 | } |
| 331 | #endif |
| 332 | cl = (struct drr_class *)res.class; |
| 333 | if (cl == NULL) |
| 334 | cl = drr_find_class(sch, res.classid); |
| 335 | return cl; |
| 336 | } |
| 337 | return NULL; |
| 338 | } |
| 339 | |
Petr Machata | ac5c66f | 2020-07-14 20:03:08 +0300 | [diff] [blame] | 340 | static int drr_enqueue(struct sk_buff *skb, struct Qdisc *sch, |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 341 | struct sk_buff **to_free) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 342 | { |
Toke Høiland-Jørgensen | f6bab19 | 2019-01-09 17:09:42 +0100 | [diff] [blame] | 343 | unsigned int len = qdisc_pkt_len(skb); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 344 | struct drr_sched *q = qdisc_priv(sch); |
| 345 | struct drr_class *cl; |
David S. Miller | f54ba77 | 2012-09-27 18:35:47 -0400 | [diff] [blame] | 346 | int err = 0; |
Toke Høiland-Jørgensen | 37d9cf1 | 2019-01-09 17:09:43 +0100 | [diff] [blame] | 347 | bool first; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 348 | |
| 349 | cl = drr_classify(skb, sch, &err); |
| 350 | if (cl == NULL) { |
| 351 | if (err & __NET_XMIT_BYPASS) |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 352 | qdisc_qstats_drop(sch); |
Eric Dumazet | 520ac30 | 2016-06-21 23:16:49 -0700 | [diff] [blame] | 353 | __qdisc_drop(skb, to_free); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 354 | return err; |
| 355 | } |
| 356 | |
Toke Høiland-Jørgensen | 37d9cf1 | 2019-01-09 17:09:43 +0100 | [diff] [blame] | 357 | first = !cl->qdisc->q.qlen; |
Petr Machata | ac5c66f | 2020-07-14 20:03:08 +0300 | [diff] [blame] | 358 | err = qdisc_enqueue(skb, cl->qdisc, to_free); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 359 | if (unlikely(err != NET_XMIT_SUCCESS)) { |
| 360 | if (net_xmit_drop_count(err)) { |
| 361 | cl->qstats.drops++; |
John Fastabend | 25331d6 | 2014-09-28 11:53:29 -0700 | [diff] [blame] | 362 | qdisc_qstats_drop(sch); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 363 | } |
| 364 | return err; |
| 365 | } |
| 366 | |
Toke Høiland-Jørgensen | 37d9cf1 | 2019-01-09 17:09:43 +0100 | [diff] [blame] | 367 | if (first) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 368 | list_add_tail(&cl->alist, &q->active); |
| 369 | cl->deficit = cl->quantum; |
| 370 | } |
| 371 | |
Toke Høiland-Jørgensen | f6bab19 | 2019-01-09 17:09:42 +0100 | [diff] [blame] | 372 | sch->qstats.backlog += len; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 373 | sch->q.qlen++; |
| 374 | return err; |
| 375 | } |
| 376 | |
| 377 | static struct sk_buff *drr_dequeue(struct Qdisc *sch) |
| 378 | { |
| 379 | struct drr_sched *q = qdisc_priv(sch); |
| 380 | struct drr_class *cl; |
| 381 | struct sk_buff *skb; |
| 382 | unsigned int len; |
| 383 | |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 384 | if (list_empty(&q->active)) |
| 385 | goto out; |
| 386 | while (1) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 387 | cl = list_first_entry(&q->active, struct drr_class, alist); |
| 388 | skb = cl->qdisc->ops->peek(cl->qdisc); |
Florian Westphal | 6e765a0 | 2014-06-11 20:35:18 +0200 | [diff] [blame] | 389 | if (skb == NULL) { |
| 390 | qdisc_warn_nonwc(__func__, cl->qdisc); |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 391 | goto out; |
Florian Westphal | 6e765a0 | 2014-06-11 20:35:18 +0200 | [diff] [blame] | 392 | } |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 393 | |
| 394 | len = qdisc_pkt_len(skb); |
| 395 | if (len <= cl->deficit) { |
| 396 | cl->deficit -= len; |
| 397 | skb = qdisc_dequeue_peeked(cl->qdisc); |
Bernie Harris | df3eb6c | 2016-01-28 16:30:51 +1300 | [diff] [blame] | 398 | if (unlikely(skb == NULL)) |
| 399 | goto out; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 400 | if (cl->qdisc->q.qlen == 0) |
| 401 | list_del(&cl->alist); |
Eric Dumazet | 2dd875f | 2012-05-10 05:36:34 +0000 | [diff] [blame] | 402 | |
| 403 | bstats_update(&cl->bstats, skb); |
Eric Dumazet | 9190b3b | 2011-01-20 23:31:33 -0800 | [diff] [blame] | 404 | qdisc_bstats_update(sch, skb); |
WANG Cong | 6a73b57 | 2016-06-01 16:15:17 -0700 | [diff] [blame] | 405 | qdisc_qstats_backlog_dec(sch, skb); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 406 | sch->q.qlen--; |
| 407 | return skb; |
| 408 | } |
| 409 | |
| 410 | cl->deficit += cl->quantum; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 411 | list_move_tail(&cl->alist, &q->active); |
| 412 | } |
Patrick McHardy | 3f0947c | 2008-11-24 15:46:08 -0800 | [diff] [blame] | 413 | out: |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 414 | return NULL; |
| 415 | } |
| 416 | |
Alexander Aring | e63d7df | 2017-12-20 12:35:13 -0500 | [diff] [blame] | 417 | static int drr_init_qdisc(struct Qdisc *sch, struct nlattr *opt, |
| 418 | struct netlink_ext_ack *extack) |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 419 | { |
| 420 | struct drr_sched *q = qdisc_priv(sch); |
| 421 | int err; |
| 422 | |
Alexander Aring | 8d1a77f | 2017-12-20 12:35:19 -0500 | [diff] [blame] | 423 | err = tcf_block_get(&q->block, &q->filter_list, sch, extack); |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 424 | if (err) |
| 425 | return err; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 426 | err = qdisc_class_hash_init(&q->clhash); |
| 427 | if (err < 0) |
| 428 | return err; |
| 429 | INIT_LIST_HEAD(&q->active); |
| 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | static void drr_reset_qdisc(struct Qdisc *sch) |
| 434 | { |
| 435 | struct drr_sched *q = qdisc_priv(sch); |
| 436 | struct drr_class *cl; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 437 | unsigned int i; |
| 438 | |
| 439 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 440 | hlist_for_each_entry(cl, &q->clhash.hash[i], common.hnode) { |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 441 | if (cl->qdisc->q.qlen) |
| 442 | list_del(&cl->alist); |
| 443 | qdisc_reset(cl->qdisc); |
| 444 | } |
| 445 | } |
WANG Cong | 6a73b57 | 2016-06-01 16:15:17 -0700 | [diff] [blame] | 446 | sch->qstats.backlog = 0; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 447 | sch->q.qlen = 0; |
| 448 | } |
| 449 | |
| 450 | static void drr_destroy_qdisc(struct Qdisc *sch) |
| 451 | { |
| 452 | struct drr_sched *q = qdisc_priv(sch); |
| 453 | struct drr_class *cl; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 454 | struct hlist_node *next; |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 455 | unsigned int i; |
| 456 | |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 457 | tcf_block_put(q->block); |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 458 | |
| 459 | for (i = 0; i < q->clhash.hashsize; i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 460 | hlist_for_each_entry_safe(cl, next, &q->clhash.hash[i], |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 461 | common.hnode) |
| 462 | drr_destroy_class(sch, cl); |
| 463 | } |
| 464 | qdisc_class_hash_destroy(&q->clhash); |
| 465 | } |
| 466 | |
| 467 | static const struct Qdisc_class_ops drr_class_ops = { |
| 468 | .change = drr_change_class, |
| 469 | .delete = drr_delete_class, |
WANG Cong | 143976c | 2017-08-24 16:51:29 -0700 | [diff] [blame] | 470 | .find = drr_search_class, |
Jiri Pirko | 6529eab | 2017-05-17 11:07:55 +0200 | [diff] [blame] | 471 | .tcf_block = drr_tcf_block, |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 472 | .bind_tcf = drr_bind_tcf, |
| 473 | .unbind_tcf = drr_unbind_tcf, |
| 474 | .graft = drr_graft_class, |
| 475 | .leaf = drr_class_leaf, |
| 476 | .qlen_notify = drr_qlen_notify, |
| 477 | .dump = drr_dump_class, |
| 478 | .dump_stats = drr_dump_class_stats, |
| 479 | .walk = drr_walk, |
| 480 | }; |
| 481 | |
| 482 | static struct Qdisc_ops drr_qdisc_ops __read_mostly = { |
| 483 | .cl_ops = &drr_class_ops, |
| 484 | .id = "drr", |
| 485 | .priv_size = sizeof(struct drr_sched), |
| 486 | .enqueue = drr_enqueue, |
| 487 | .dequeue = drr_dequeue, |
| 488 | .peek = qdisc_peek_dequeued, |
Patrick McHardy | 13d2a1d | 2008-11-20 04:10:00 -0800 | [diff] [blame] | 489 | .init = drr_init_qdisc, |
| 490 | .reset = drr_reset_qdisc, |
| 491 | .destroy = drr_destroy_qdisc, |
| 492 | .owner = THIS_MODULE, |
| 493 | }; |
| 494 | |
| 495 | static int __init drr_init(void) |
| 496 | { |
| 497 | return register_qdisc(&drr_qdisc_ops); |
| 498 | } |
| 499 | |
| 500 | static void __exit drr_exit(void) |
| 501 | { |
| 502 | unregister_qdisc(&drr_qdisc_ops); |
| 503 | } |
| 504 | |
| 505 | module_init(drr_init); |
| 506 | module_exit(drr_exit); |
| 507 | MODULE_LICENSE("GPL"); |