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