blob: fc12fe6f559796d11aaa8b4e769b26a6a28643e9 [file] [log] [blame]
Stephen Hemminger87990462006-08-10 23:35:16 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Martin Devera, <devik@cdi.cz>
10 *
11 * Credits (in time order) for older HTB versions:
12 * Stef Coene <stef.coene@docum.org>
13 * HTB support at LARTC mailing list
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090014 * Ondrej Kraus, <krauso@barr.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * found missing INIT_QDISC(htb)
16 * Vladimir Smelhaus, Aamer Akhter, Bert Hubert
17 * helped a lot to locate nasty class stall bug
18 * Andi Kleen, Jamal Hadi, Bert Hubert
19 * code review and helpful comments on shaping
20 * Tomasz Wrona, <tw@eter.tym.pl>
21 * created test case so that I was able to fix nasty bug
22 * Wilfried Weissmann
23 * spotted bug in dequeue code and helped with fix
24 * Jiri Fojtasek
25 * fixed requeue routine
26 * and many others. thanks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070029#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/skbuff.h>
35#include <linux/list.h>
36#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/rbtree.h>
Jarek Poplawski12247362009-02-01 01:13:22 -080038#include <linux/workqueue.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070040#include <net/netlink.h>
41#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* HTB algorithm.
44 Author: devik@cdi.cz
45 ========================================================================
46 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090047 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 In fact it is another implementation of Floyd's formal sharing.
49
50 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090051 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
53 one less than their parent.
54*/
55
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070056static int htb_hysteresis __read_mostly = 0; /* whether to use mode hysteresis for speedup */
Stephen Hemminger87990462006-08-10 23:35:16 -070057#define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#if HTB_VER >> 16 != TC_HTB_PROTOVER
60#error "Mismatched sch_htb.c and pkt_sch.h"
61#endif
62
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070063/* Module parameter and sysfs export */
64module_param (htb_hysteresis, int, 0640);
65MODULE_PARM_DESC(htb_hysteresis, "Hysteresis mode, less CPU load, less accurate");
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/* used internaly to keep status of single class */
68enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070069 HTB_CANT_SEND, /* class can't send and can't borrow */
70 HTB_MAY_BORROW, /* class can't send but may borrow */
71 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070075struct htb_class {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -070076 struct Qdisc_class_common common;
Stephen Hemminger87990462006-08-10 23:35:16 -070077 /* general class parameters */
Eric Dumazetc1a8f1f2009-08-16 09:36:49 +000078 struct gnet_stats_basic_packed bstats;
Stephen Hemminger87990462006-08-10 23:35:16 -070079 struct gnet_stats_queue qstats;
80 struct gnet_stats_rate_est rate_est;
81 struct tc_htb_xstats xstats; /* our special stats */
82 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Stephen Hemminger87990462006-08-10 23:35:16 -070084 /* topology */
85 int level; /* our level (see above) */
Patrick McHardy42077592008-07-05 23:22:53 -070086 unsigned int children;
Stephen Hemminger87990462006-08-10 23:35:16 -070087 struct htb_class *parent; /* parent class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Jarek Poplawskic19f7a32008-12-03 21:09:45 -080089 int prio; /* these two are used only by leaves... */
90 int quantum; /* but stored for parent-to-leaf return */
91
Stephen Hemminger87990462006-08-10 23:35:16 -070092 union {
93 struct htb_class_leaf {
94 struct Qdisc *q;
Stephen Hemminger87990462006-08-10 23:35:16 -070095 int deficit[TC_HTB_MAXDEPTH];
96 struct list_head drop_list;
97 } leaf;
98 struct htb_class_inner {
99 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
100 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
101 /* When class changes from state 1->2 and disconnects from
102 parent's feed then we lost ptr value and start from the
103 first child again. Here we store classid of the
104 last valid ptr (used when ptr is NULL). */
105 u32 last_ptr_id[TC_HTB_NUMPRIO];
106 } inner;
107 } un;
108 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
109 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700110 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Stephen Hemminger87990462006-08-10 23:35:16 -0700112 int prio_activity; /* for which prios are we active */
113 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Stephen Hemminger87990462006-08-10 23:35:16 -0700115 /* class attached filters */
116 struct tcf_proto *filter_list;
117 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Stephen Hemminger87990462006-08-10 23:35:16 -0700119 /* token bucket parameters */
120 struct qdisc_rate_table *rate; /* rate table of the class itself */
121 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
122 long buffer, cbuffer; /* token bucket depth/rate */
123 psched_tdiff_t mbuffer; /* max wait time */
124 long tokens, ctokens; /* current number of tokens */
125 psched_time_t t_c; /* checkpoint time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Stephen Hemminger87990462006-08-10 23:35:16 -0700128struct htb_sched {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700129 struct Qdisc_class_hash clhash;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700130 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Stephen Hemminger87990462006-08-10 23:35:16 -0700132 /* self list - roots of self generating tree */
133 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
134 int row_mask[TC_HTB_MAXDEPTH];
135 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
136 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Stephen Hemminger87990462006-08-10 23:35:16 -0700138 /* self wait list - roots of wait PQs per row */
139 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Stephen Hemminger87990462006-08-10 23:35:16 -0700141 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700142 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger87990462006-08-10 23:35:16 -0700144 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Stephen Hemminger87990462006-08-10 23:35:16 -0700146 /* filters for qdisc itself */
147 struct tcf_proto *filter_list;
Stephen Hemminger87990462006-08-10 23:35:16 -0700148
149 int rate2quantum; /* quant = rate / rate2quantum */
150 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700151 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Stephen Hemminger87990462006-08-10 23:35:16 -0700153 /* non shaped skbs; let them go directly thru */
154 struct sk_buff_head direct_queue;
155 int direct_qlen; /* max qlen of above */
156
157 long direct_pkts;
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800158
159#define HTB_WARN_TOOMANYEVENTS 0x1
160 unsigned int warned; /* only one warning */
Jarek Poplawski12247362009-02-01 01:13:22 -0800161 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700165static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700168 struct Qdisc_class_common *clc;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700169
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700170 clc = qdisc_class_find(&q->clhash, handle);
171 if (clc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return NULL;
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700173 return container_of(clc, struct htb_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/**
177 * htb_classify - classify a packet into class
178 *
179 * It returns NULL if the packet should be dropped or -1 if the packet
180 * should be passed directly thru. In all other cases leaf class is returned.
181 * We allow direct class selection by classid in priority. The we examine
182 * filters in qdisc and in inner nodes (if higher filter points to the inner
183 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900184 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
186 * then finish and return direct queue.
187 */
188#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Stephen Hemminger87990462006-08-10 23:35:16 -0700190static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
191 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct htb_sched *q = qdisc_priv(sch);
194 struct htb_class *cl;
195 struct tcf_result res;
196 struct tcf_proto *tcf;
197 int result;
198
199 /* allow to select class by setting skb->priority to valid classid;
200 note that nfmark can be used too by attaching filter fw with no
201 rules in it */
202 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700203 return HTB_DIRECT; /* X:0 (direct flow) selected */
204 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return cl;
206
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700207 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 tcf = q->filter_list;
209 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
210#ifdef CONFIG_NET_CLS_ACT
211 switch (result) {
212 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700213 case TC_ACT_STOLEN:
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700214 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 case TC_ACT_SHOT:
216 return NULL;
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700219 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700221 return HTB_DIRECT; /* X:0 (direct flow) */
222 if ((cl = htb_find(res.classid, sch)) == NULL)
223 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700226 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* we have got inner class; apply inner filter chain */
229 tcf = cl->filter_list;
230 }
231 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700232 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700234 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return cl;
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/**
239 * htb_add_to_id_tree - adds class to the round robin list
240 *
241 * Routine adds class to the list (actually tree) sorted by classid.
242 * Make sure that class is not already on such list for given prio.
243 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700244static void htb_add_to_id_tree(struct rb_root *root,
245 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700250 struct htb_class *c;
251 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700253
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700254 if (cl->common.classid > c->common.classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700256 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 p = &parent->rb_left;
258 }
259 rb_link_node(&cl->node[prio], parent, p);
260 rb_insert_color(&cl->node[prio], root);
261}
262
263/**
264 * htb_add_to_wait_tree - adds class to the event queue with delay
265 *
266 * The class is added to priority event queue to indicate that class will
267 * change its mode in cl->pq_key microseconds. Make sure that class is not
268 * already in the queue.
269 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700270static void htb_add_to_wait_tree(struct htb_sched *q,
271 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700274
Patrick McHardyfb983d42007-03-16 01:22:39 -0700275 cl->pq_key = q->now + delay;
276 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 cl->pq_key++;
278
279 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700280 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700284 struct htb_class *c;
285 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700287 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700289 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 p = &parent->rb_left;
291 }
292 rb_link_node(&cl->pq_node, parent, p);
293 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
294}
295
296/**
297 * htb_next_rb_node - finds next node in binary tree
298 *
299 * When we are past last key we return NULL.
300 * Average complexity is 2 steps per call.
301 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700302static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 *n = rb_next(*n);
305}
306
307/**
308 * htb_add_class_to_row - add class to its row
309 *
310 * The class is added to row at priorities marked in mask.
311 * It does nothing if mask == 0.
312 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700313static inline void htb_add_class_to_row(struct htb_sched *q,
314 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 q->row_mask[cl->level] |= mask;
317 while (mask) {
318 int prio = ffz(~mask);
319 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700320 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322}
323
Stephen Hemminger3696f622006-08-10 23:36:01 -0700324/* If this triggers, it is a bug in this code, but it need not be fatal */
325static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
326{
Ismail Donmez81771b32006-10-03 13:49:10 -0700327 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700328 WARN_ON(1);
329 } else {
330 rb_erase(rb, root);
331 RB_CLEAR_NODE(rb);
332 }
333}
334
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/**
337 * htb_remove_class_from_row - removes class from its row
338 *
339 * The class is removed from row at priorities marked in mask.
340 * It does nothing if mask == 0.
341 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700342static inline void htb_remove_class_from_row(struct htb_sched *q,
343 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 while (mask) {
348 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700351 if (q->ptr[cl->level][prio] == cl->node + prio)
352 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700353
354 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700355 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 m |= 1 << prio;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 q->row_mask[cl->level] &= ~m;
359}
360
361/**
362 * htb_activate_prios - creates active classe's feed chain
363 *
364 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900365 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * (activated) mode. It does nothing if cl->prio_activity == 0.
367 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700368static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700371 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700374 m = mask;
375 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int prio = ffz(~m);
377 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (p->un.inner.feed[prio].rb_node)
380 /* parent already has its feed in use so that
381 reset bit in mask as parent is already ok */
382 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700383
384 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700387 cl = p;
388 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700392 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/**
396 * htb_deactivate_prios - remove class from feed chain
397 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900398 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * nothing if cl->prio_activity == 0. Class is removed from all feed
400 * chains and rows.
401 */
402static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
403{
404 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700405 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700408 m = mask;
409 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 while (m) {
411 int prio = ffz(~m);
412 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700413
414 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* we are removing child which is pointed to from
416 parent feed - forget the pointer but remember
417 classid */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700418 p->un.inner.last_ptr_id[prio] = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 p->un.inner.ptr[prio] = NULL;
420 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700421
Stephen Hemminger3696f622006-08-10 23:36:01 -0700422 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700423
424 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 mask |= 1 << prio;
426 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700429 cl = p;
430 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700433 if (cl->cmode == HTB_CAN_SEND && mask)
434 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700437static inline long htb_lowater(const struct htb_class *cl)
438{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700439 if (htb_hysteresis)
440 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
441 else
442 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700443}
444static inline long htb_hiwater(const struct htb_class *cl)
445{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700446 if (htb_hysteresis)
447 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
448 else
449 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700450}
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700451
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/**
454 * htb_class_mode - computes and returns current class mode
455 *
456 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
457 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900458 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900460 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
462 * mode transitions per time unit. The speed gain is about 1/6.
463 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700464static inline enum htb_cmode
465htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Stephen Hemminger87990462006-08-10 23:35:16 -0700467 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Stephen Hemminger87990462006-08-10 23:35:16 -0700469 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
470 *diff = -toks;
471 return HTB_CANT_SEND;
472 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700473
Stephen Hemminger87990462006-08-10 23:35:16 -0700474 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
475 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Stephen Hemminger87990462006-08-10 23:35:16 -0700477 *diff = -toks;
478 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481/**
482 * htb_change_class_mode - changes classe's mode
483 *
484 * This should be the only way how to change classe's mode under normal
485 * cirsumstances. Routine will update feed lists linkage, change mode
486 * and add class to the wait event queue if appropriate. New mode should
487 * be different from old one and cl->pq_key has to be valid if changing
488 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
489 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700490static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700492{
493 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700496 return;
497
498 if (cl->prio_activity) { /* not necessary: speed optimization */
499 if (cl->cmode != HTB_CANT_SEND)
500 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700502 if (new_mode != HTB_CANT_SEND)
503 htb_activate_prios(q, cl);
504 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 cl->cmode = new_mode;
506}
507
508/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900509 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 *
511 * Routine learns (new) priority of leaf and activates feed chain
512 * for the prio. It can be called on already active leaf safely.
513 * It also adds leaf into droplist.
514 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700515static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700517 WARN_ON(cl->level || !cl->un.leaf.q || !cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!cl->prio_activity) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800520 cl->prio_activity = 1 << cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700521 htb_activate_prios(q, cl);
522 list_add_tail(&cl->un.leaf.drop_list,
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800523 q->drops + cl->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525}
526
527/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900528 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 *
530 * Make sure that leaf is active. In the other words it can't be called
531 * with non-active leaf. It also removes class from the drop list.
532 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700533static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700535 WARN_ON(!cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700536
Stephen Hemminger87990462006-08-10 23:35:16 -0700537 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 cl->prio_activity = 0;
539 list_del_init(&cl->un.leaf.drop_list);
540}
541
542static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
543{
Jarek Poplawskif30ab412008-11-13 22:56:30 -0800544 int uninitialized_var(ret);
Stephen Hemminger87990462006-08-10 23:35:16 -0700545 struct htb_sched *q = qdisc_priv(sch);
546 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Stephen Hemminger87990462006-08-10 23:35:16 -0700548 if (cl == HTB_DIRECT) {
549 /* enqueue to helper queue */
550 if (q->direct_queue.qlen < q->direct_qlen) {
551 __skb_queue_tail(&q->direct_queue, skb);
552 q->direct_pkts++;
553 } else {
554 kfree_skb(skb);
555 sch->qstats.drops++;
556 return NET_XMIT_DROP;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700559 } else if (!cl) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700560 if (ret & __NET_XMIT_BYPASS)
Stephen Hemminger87990462006-08-10 23:35:16 -0700561 sch->qstats.drops++;
562 kfree_skb(skb);
563 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700565 } else if ((ret = qdisc_enqueue(skb, cl->un.leaf.q)) != NET_XMIT_SUCCESS) {
566 if (net_xmit_drop_count(ret)) {
567 sch->qstats.drops++;
568 cl->qstats.drops++;
569 }
David S. Miller69747652008-08-17 23:55:36 -0700570 return ret;
Stephen Hemminger87990462006-08-10 23:35:16 -0700571 } else {
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000572 bstats_update(&cl->bstats, skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700573 htb_activate(q, cl);
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Stephen Hemminger87990462006-08-10 23:35:16 -0700576 sch->q.qlen++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700577 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Jarek Poplawski59e42202008-12-03 21:17:27 -0800580static inline void htb_accnt_tokens(struct htb_class *cl, int bytes, long diff)
581{
582 long toks = diff + cl->tokens;
583
584 if (toks > cl->buffer)
585 toks = cl->buffer;
586 toks -= (long) qdisc_l2t(cl->rate, bytes);
587 if (toks <= -cl->mbuffer)
588 toks = 1 - cl->mbuffer;
589
590 cl->tokens = toks;
591}
592
593static inline void htb_accnt_ctokens(struct htb_class *cl, int bytes, long diff)
594{
595 long toks = diff + cl->ctokens;
596
597 if (toks > cl->cbuffer)
598 toks = cl->cbuffer;
599 toks -= (long) qdisc_l2t(cl->ceil, bytes);
600 if (toks <= -cl->mbuffer)
601 toks = 1 - cl->mbuffer;
602
603 cl->ctokens = toks;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606/**
607 * htb_charge_class - charges amount "bytes" to leaf and ancestors
608 *
609 * Routine assumes that packet "bytes" long was dequeued from leaf cl
610 * borrowing from "level". It accounts bytes to ceil leaky bucket for
611 * leaf and all ancestors and to rate bucket for ancestors at levels
612 * "level" and higher. It also handles possible change of mode resulting
613 * from the update. Note that mode can also increase here (MAY_BORROW to
614 * CAN_SEND) because we can use more precise clock that event queue here.
615 * In such case we remove class from event queue first.
616 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700617static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700618 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700619{
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700620 int bytes = qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 enum htb_cmode old_mode;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800622 long diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700625 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700627 if (cl->level == level)
628 cl->xstats.lends++;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800629 htb_accnt_tokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 } else {
631 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700632 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Jarek Poplawski59e42202008-12-03 21:17:27 -0800634 htb_accnt_ctokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Stephen Hemminger87990462006-08-10 23:35:16 -0700637 old_mode = cl->cmode;
638 diff = 0;
639 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (old_mode != cl->cmode) {
641 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700642 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700644 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Eric Dumazetbfe0d022011-01-09 08:30:54 +0000647 /* update basic stats except for leaves which are already updated */
648 if (cl->level)
649 bstats_update(&cl->bstats, skb);
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 cl = cl->parent;
652 }
653}
654
655/**
656 * htb_do_events - make mode changes to classes at the level
657 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700658 * Scans event queue for pending events and applies them. Returns time of
Jarek Poplawski12247362009-02-01 01:13:22 -0800659 * next pending event (0 for no event in pq, q->now for too many events).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700660 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800662static psched_time_t htb_do_events(struct htb_sched *q, int level,
663 unsigned long start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Martin Devera8f3ea332008-03-23 22:00:38 -0700665 /* don't run for longer than 2 jiffies; 2 is used instead of
666 1 to simplify things when jiffy is going to be incremented
667 too soon */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800668 unsigned long stop_at = start + 2;
Martin Devera8f3ea332008-03-23 22:00:38 -0700669 while (time_before(jiffies, stop_at)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct htb_class *cl;
671 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700672 struct rb_node *p = rb_first(&q->wait_pq[level]);
673
Stephen Hemminger87990462006-08-10 23:35:16 -0700674 if (!p)
675 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700678 if (cl->pq_key > q->now)
679 return cl->pq_key;
680
Stephen Hemminger3696f622006-08-10 23:36:01 -0700681 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700682 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700683 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700685 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 }
Jarek Poplawski12247362009-02-01 01:13:22 -0800687
688 /* too much load - let's continue after a break for scheduling */
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800689 if (!(q->warned & HTB_WARN_TOOMANYEVENTS)) {
690 printk(KERN_WARNING "htb: too many events!\n");
691 q->warned |= HTB_WARN_TOOMANYEVENTS;
692 }
Jarek Poplawski12247362009-02-01 01:13:22 -0800693
694 return q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
697/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
698 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700699static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
700 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct rb_node *r = NULL;
703 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700704 struct htb_class *cl =
705 rb_entry(n, struct htb_class, node[prio]);
Stephen Hemminger87990462006-08-10 23:35:16 -0700706
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700707 if (id > cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 n = n->rb_right;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800709 } else if (id < cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 r = n;
711 n = n->rb_left;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800712 } else {
713 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715 }
716 return r;
717}
718
719/**
720 * htb_lookup_leaf - returns next leaf class in DRR order
721 *
722 * Find leaf where current feed pointers points to.
723 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700724static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
725 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 int i;
728 struct {
729 struct rb_node *root;
730 struct rb_node **pptr;
731 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700732 } stk[TC_HTB_MAXDEPTH], *sp = stk;
733
Jarek Poplawski512bb432008-12-09 22:35:02 -0800734 BUG_ON(!tree->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 sp->root = tree->rb_node;
736 sp->pptr = pptr;
737 sp->pid = pid;
738
739 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700740 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900741 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700743 *sp->pptr =
744 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700746 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
747 can become out of date quickly */
748 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700750 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 *sp->pptr = (*sp->pptr)->rb_left;
752 if (sp > stk) {
753 sp--;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800754 if (!*sp->pptr) {
755 WARN_ON(1);
Stephen Hemminger87990462006-08-10 23:35:16 -0700756 return NULL;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800757 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700758 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 } else {
761 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700762 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
763 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return cl;
765 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700766 sp->pptr = cl->un.inner.ptr + prio;
767 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700770 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return NULL;
772}
773
774/* dequeues packet at given priority and level; call only if
775 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700776static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
777 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700780 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700782 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
783 q->ptr[level] + prio,
784 q->last_ptr_id[level] + prio);
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 do {
787next:
Jarek Poplawski512bb432008-12-09 22:35:02 -0800788 if (unlikely(!cl))
Stephen Hemminger87990462006-08-10 23:35:16 -0700789 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /* class can be empty - it is unlikely but can be true if leaf
792 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900793 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 simply deactivate and skip such class */
795 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
796 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700797 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* row/level might become empty */
800 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700801 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Stephen Hemminger87990462006-08-10 23:35:16 -0700803 next = htb_lookup_leaf(q->row[level] + prio,
804 prio, q->ptr[level] + prio,
805 q->last_ptr_id[level] + prio);
806
807 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 start = next;
809 cl = next;
810 goto next;
811 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700812
813 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
814 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 break;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800816
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800817 qdisc_warn_nonwc("htb", cl->un.leaf.q);
Stephen Hemminger87990462006-08-10 23:35:16 -0700818 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
819 ptr[0]) + prio);
820 cl = htb_lookup_leaf(q->row[level] + prio, prio,
821 q->ptr[level] + prio,
822 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 } while (cl != start);
825
826 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700827 cl->un.leaf.deficit[level] -= qdisc_pkt_len(skb);
828 if (cl->un.leaf.deficit[level] < 0) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800829 cl->un.leaf.deficit[level] += cl->quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700830 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
831 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 /* this used to be after charge_class but this constelation
834 gives us slightly better performance */
835 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700836 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700837 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 return skb;
840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842static struct sk_buff *htb_dequeue(struct Qdisc *sch)
843{
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800844 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct htb_sched *q = qdisc_priv(sch);
846 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700847 psched_time_t next_event;
Jarek Poplawskia73be042009-01-12 21:54:40 -0800848 unsigned long start_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700851 skb = __skb_dequeue(&q->direct_queue);
852 if (skb != NULL) {
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800853ok:
854 qdisc_bstats_update(sch, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 sch->flags &= ~TCQ_F_THROTTLED;
856 sch->q.qlen--;
857 return skb;
858 }
859
Stephen Hemminger87990462006-08-10 23:35:16 -0700860 if (!sch->q.qlen)
861 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700862 q->now = psched_get_time();
Jarek Poplawskia73be042009-01-12 21:54:40 -0800863 start_at = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Patrick McHardyfb983d42007-03-16 01:22:39 -0700865 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
868 /* common case optimization - skip event handler quickly */
869 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700870 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700871
Patrick McHardyfb983d42007-03-16 01:22:39 -0700872 if (q->now >= q->near_ev_cache[level]) {
Jarek Poplawskia73be042009-01-12 21:54:40 -0800873 event = htb_do_events(q, level, start_at);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700874 if (!event)
875 event = q->now + PSCHED_TICKS_PER_SEC;
876 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700877 } else
878 event = q->near_ev_cache[level];
879
Jarek Poplawskic0851342009-01-12 21:54:16 -0800880 if (next_event > event)
Patrick McHardyfb983d42007-03-16 01:22:39 -0700881 next_event = event;
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 m = ~q->row_mask[level];
884 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700885 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700887 skb = htb_dequeue_tree(q, prio, level);
Eric Dumazet9190b3b2011-01-20 23:31:33 -0800888 if (likely(skb != NULL))
889 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700892 sch->qstats.overlimits++;
Jarek Poplawski12247362009-02-01 01:13:22 -0800893 if (likely(next_event > q->now))
894 qdisc_watchdog_schedule(&q->watchdog, next_event);
895 else
896 schedule_work(&q->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return skb;
899}
900
901/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700902static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct htb_sched *q = qdisc_priv(sch);
905 int prio;
906
907 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
908 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700909 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 struct htb_class *cl = list_entry(p, struct htb_class,
911 un.leaf.drop_list);
912 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700913 if (cl->un.leaf.q->ops->drop &&
914 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 sch->q.qlen--;
916 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700917 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return len;
919 }
920 }
921 }
922 return 0;
923}
924
925/* reset all classes */
926/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700927static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700930 struct htb_class *cl;
931 struct hlist_node *n;
932 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700934 for (i = 0; i < q->clhash.hashsize; i++) {
935 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700937 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700939 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 qdisc_reset(cl->un.leaf.q);
941 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
942 }
943 cl->prio_activity = 0;
944 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 }
947 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700948 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 __skb_queue_purge(&q->direct_queue);
950 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700951 memset(q->row, 0, sizeof(q->row));
952 memset(q->row_mask, 0, sizeof(q->row_mask));
953 memset(q->wait_pq, 0, sizeof(q->wait_pq));
954 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700956 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
Patrick McHardy27a34212008-01-23 20:35:39 -0800959static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
960 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
961 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
962 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
963 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
964};
965
Jarek Poplawski12247362009-02-01 01:13:22 -0800966static void htb_work_func(struct work_struct *work)
967{
968 struct htb_sched *q = container_of(work, struct htb_sched, work);
969 struct Qdisc *sch = q->watchdog.qdisc;
970
971 __netif_schedule(qdisc_root(sch));
972}
973
Patrick McHardy1e904742008-01-22 22:11:17 -0800974static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800977 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -0800979 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int i;
Patrick McHardycee63722008-01-23 20:33:32 -0800981
982 if (!opt)
983 return -EINVAL;
984
Patrick McHardy27a34212008-01-23 20:35:39 -0800985 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800986 if (err < 0)
987 return err;
988
Patrick McHardy27a34212008-01-23 20:35:39 -0800989 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
991 return -EINVAL;
992 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800993 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700995 printk(KERN_ERR
996 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
997 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return -EINVAL;
999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001001 err = qdisc_class_hash_init(&q->clhash);
1002 if (err < 0)
1003 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001005 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Patrick McHardyfb983d42007-03-16 01:22:39 -07001007 qdisc_watchdog_init(&q->watchdog, sch);
Jarek Poplawski12247362009-02-01 01:13:22 -08001008 INIT_WORK(&q->work, htb_work_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 skb_queue_head_init(&q->direct_queue);
1010
David S. Miller5ce2d482008-07-08 17:06:30 -07001011 q->direct_qlen = qdisc_dev(sch)->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001012 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1016 q->rate2quantum = 1;
1017 q->defcls = gopt->defcls;
1018
1019 return 0;
1020}
1021
1022static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1023{
Jarek Poplawski102396a2008-08-29 14:21:52 -07001024 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001026 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
David S. Miller7698b4f2008-07-16 01:42:40 -07001029 spin_lock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001030
1031 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 gopt.version = HTB_VER;
1033 gopt.rate2quantum = q->rate2quantum;
1034 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001035 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001036
1037 nest = nla_nest_start(skb, TCA_OPTIONS);
1038 if (nest == NULL)
1039 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001040 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001041 nla_nest_end(skb, nest);
1042
David S. Miller7698b4f2008-07-16 01:42:40 -07001043 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001045
Patrick McHardy1e904742008-01-22 22:11:17 -08001046nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001047 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001048 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return -1;
1050}
1051
1052static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001053 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Stephen Hemminger87990462006-08-10 23:35:16 -07001055 struct htb_class *cl = (struct htb_class *)arg;
Jarek Poplawski102396a2008-08-29 14:21:52 -07001056 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001057 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct tc_htb_opt opt;
1059
David S. Miller7698b4f2008-07-16 01:42:40 -07001060 spin_lock_bh(root_lock);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001061 tcm->tcm_parent = cl->parent ? cl->parent->common.classid : TC_H_ROOT;
1062 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!cl->level && cl->un.leaf.q)
1064 tcm->tcm_info = cl->un.leaf.q->handle;
1065
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001066 nest = nla_nest_start(skb, TCA_OPTIONS);
1067 if (nest == NULL)
1068 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Stephen Hemminger87990462006-08-10 23:35:16 -07001070 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Stephen Hemminger87990462006-08-10 23:35:16 -07001072 opt.rate = cl->rate->rate;
1073 opt.buffer = cl->buffer;
1074 opt.ceil = cl->ceil->rate;
1075 opt.cbuffer = cl->cbuffer;
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001076 opt.quantum = cl->quantum;
1077 opt.prio = cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -07001078 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001079 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001080
1081 nla_nest_end(skb, nest);
David S. Miller7698b4f2008-07-16 01:42:40 -07001082 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001084
Patrick McHardy1e904742008-01-22 22:11:17 -08001085nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001086 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001087 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return -1;
1089}
1090
1091static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001092htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Stephen Hemminger87990462006-08-10 23:35:16 -07001094 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!cl->level && cl->un.leaf.q)
1097 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1098 cl->xstats.tokens = cl->tokens;
1099 cl->xstats.ctokens = cl->ctokens;
1100
1101 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
Eric Dumazetd250a5f2009-10-02 10:32:18 +00001102 gnet_stats_copy_rate_est(d, NULL, &cl->rate_est) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1104 return -1;
1105
1106 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1107}
1108
1109static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001110 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Stephen Hemminger87990462006-08-10 23:35:16 -07001112 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001114 if (cl->level)
1115 return -EINVAL;
1116 if (new == NULL &&
Changli Gao3511c912010-10-16 13:04:08 +00001117 (new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001118 cl->common.classid)) == NULL)
1119 return -ENOBUFS;
1120
1121 sch_tree_lock(sch);
1122 *old = cl->un.leaf.q;
1123 cl->un.leaf.q = new;
1124 if (*old != NULL) {
1125 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
1126 qdisc_reset(*old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001128 sch_tree_unlock(sch);
1129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Stephen Hemminger87990462006-08-10 23:35:16 -07001132static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Stephen Hemminger87990462006-08-10 23:35:16 -07001134 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy5b9a9cc2009-09-04 06:41:17 +00001135 return !cl->level ? cl->un.leaf.q : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Patrick McHardy256d61b2006-11-29 17:37:05 -08001138static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1139{
1140 struct htb_class *cl = (struct htb_class *)arg;
1141
1142 if (cl->un.leaf.q->q.qlen == 0)
1143 htb_deactivate(qdisc_priv(sch), cl);
1144}
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1147{
Stephen Hemminger87990462006-08-10 23:35:16 -07001148 struct htb_class *cl = htb_find(classid, sch);
1149 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 cl->refcnt++;
1151 return (unsigned long)cl;
1152}
1153
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001154static inline int htb_parent_last_child(struct htb_class *cl)
1155{
1156 if (!cl->parent)
1157 /* the root class */
1158 return 0;
Patrick McHardy42077592008-07-05 23:22:53 -07001159 if (cl->parent->children > 1)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001160 /* not the last child */
1161 return 0;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001162 return 1;
1163}
1164
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001165static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl,
1166 struct Qdisc *new_q)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001167{
1168 struct htb_class *parent = cl->parent;
1169
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001170 WARN_ON(cl->level || !cl->un.leaf.q || cl->prio_activity);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001171
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001172 if (parent->cmode != HTB_CAN_SEND)
1173 htb_safe_rb_erase(&parent->pq_node, q->wait_pq + parent->level);
1174
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001175 parent->level = 0;
1176 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1177 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1178 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001179 parent->tokens = parent->buffer;
1180 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001181 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001182 parent->cmode = HTB_CAN_SEND;
1183}
1184
Stephen Hemminger87990462006-08-10 23:35:16 -07001185static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!cl->level) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001188 WARN_ON(!cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 qdisc_destroy(cl->un.leaf.q);
1190 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001191 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 qdisc_put_rtab(cl->rate);
1193 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001194
Patrick McHardyff31ab52008-07-01 19:52:38 -07001195 tcf_destroy_chain(&cl->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 kfree(cl);
1197}
1198
Stephen Hemminger87990462006-08-10 23:35:16 -07001199static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
1201 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001202 struct hlist_node *n, *next;
1203 struct htb_class *cl;
1204 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Jarek Poplawski12247362009-02-01 01:13:22 -08001206 cancel_work_sync(&q->work);
Patrick McHardyfb983d42007-03-16 01:22:39 -07001207 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001209 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 because filter need its target class alive to be able to call
1211 unbind_filter on it (without Oops). */
Patrick McHardyff31ab52008-07-01 19:52:38 -07001212 tcf_destroy_chain(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001213
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001214 for (i = 0; i < q->clhash.hashsize; i++) {
1215 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001216 tcf_destroy_chain(&cl->filter_list);
1217 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001218 for (i = 0; i < q->clhash.hashsize; i++) {
1219 hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
1220 common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001221 htb_destroy_class(sch, cl);
1222 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001223 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 __skb_queue_purge(&q->direct_queue);
1225}
1226
1227static int htb_delete(struct Qdisc *sch, unsigned long arg)
1228{
1229 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001230 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001231 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001232 struct Qdisc *new_q = NULL;
1233 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 // TODO: why don't allow to delete subtree ? references ? does
1236 // tc subsys quarantee us that in htb_destroy it holds no class
1237 // refs so that we can remove children safely there ?
Patrick McHardy42077592008-07-05 23:22:53 -07001238 if (cl->children || cl->filter_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001240
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001241 if (!cl->level && htb_parent_last_child(cl)) {
Changli Gao3511c912010-10-16 13:04:08 +00001242 new_q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
David S. Millerbb949fb2008-07-08 16:55:56 -07001243 cl->parent->common.classid);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001244 last_child = 1;
1245 }
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001248
Patrick McHardy814a175e2006-11-29 17:34:50 -08001249 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001250 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001251 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001252 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001253 }
1254
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001255 /* delete from hash and active; remainder in destroy_class */
1256 qdisc_class_hash_remove(&q->clhash, &cl->common);
Jarek Poplawski26b284d2008-08-13 15:16:43 -07001257 if (cl->parent)
1258 cl->parent->children--;
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001261 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001263 if (cl->cmode != HTB_CAN_SEND)
1264 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1265
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001266 if (last_child)
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001267 htb_parent_to_leaf(q, cl, new_q);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001268
Jarek Poplawski7cd0a632009-03-15 20:00:19 -07001269 BUG_ON(--cl->refcnt == 0);
1270 /*
1271 * This shouldn't happen: we "hold" one cops->get() when called
1272 * from tc_ctl_tclass; the destroy method is done from cops->put().
1273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 sch_tree_unlock(sch);
1276 return 0;
1277}
1278
1279static void htb_put(struct Qdisc *sch, unsigned long arg)
1280{
Stephen Hemminger87990462006-08-10 23:35:16 -07001281 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001284 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
Stephen Hemminger87990462006-08-10 23:35:16 -07001287static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001288 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001289 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 int err = -EINVAL;
1292 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001293 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001294 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Changli Gaoe18434c2010-09-30 06:17:44 +00001296 struct nlattr *tb[__TCA_HTB_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 struct tc_htb_opt *hopt;
1298
1299 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001300 if (!opt)
1301 goto failure;
1302
Changli Gaoe18434c2010-09-30 06:17:44 +00001303 err = nla_parse_nested(tb, TCA_HTB_MAX, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001304 if (err < 0)
1305 goto failure;
1306
1307 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001308 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Stephen Hemminger87990462006-08-10 23:35:16 -07001311 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001312
Patrick McHardy1e904742008-01-22 22:11:17 -08001313 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Patrick McHardy1e904742008-01-22 22:11:17 -08001315 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1316 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001317 if (!rtab || !ctab)
1318 goto failure;
1319
1320 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001322 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001323 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001324 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001325 struct gnet_estimator opt;
1326 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001327 .nla = {
1328 .nla_len = nla_attr_size(sizeof(est.opt)),
1329 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001330 },
1331 .opt = {
1332 /* 4s interval, 16s averaging constant */
1333 .interval = 2,
1334 .ewma_log = 2,
1335 },
1336 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* check for valid classid */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001339 if (!classid || TC_H_MAJ(classid ^ sch->handle) ||
1340 htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 goto failure;
1342
1343 /* check maximal depth */
1344 if (parent && parent->parent && parent->parent->level < 2) {
1345 printk(KERN_ERR "htb: tree is too deep\n");
1346 goto failure;
1347 }
1348 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001349 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001351
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001352 err = gen_new_estimator(&cl->bstats, &cl->rate_est,
1353 qdisc_root_sleeping_lock(sch),
1354 tca[TCA_RATE] ? : &est.nla);
1355 if (err) {
1356 kfree(cl);
1357 goto failure;
1358 }
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 cl->refcnt = 1;
Patrick McHardy42077592008-07-05 23:22:53 -07001361 cl->children = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001363 RB_CLEAR_NODE(&cl->pq_node);
1364
1365 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1366 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1369 so that can't be used inside of sch_tree_lock
1370 -- thanks to Karlis Peisenieks */
Changli Gao3511c912010-10-16 13:04:08 +00001371 new_q = qdisc_create_dflt(sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001372 &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 sch_tree_lock(sch);
1374 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001375 unsigned int qlen = parent->un.leaf.q->q.qlen;
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001378 qdisc_reset(parent->un.leaf.q);
1379 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001380 qdisc_destroy(parent->un.leaf.q);
1381 if (parent->prio_activity)
1382 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* remove from evt list because of level change */
1385 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001386 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 parent->cmode = HTB_CAN_SEND;
1388 }
1389 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001390 : TC_HTB_MAXDEPTH) - 1;
1391 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393 /* leaf (we) needs elementary qdisc */
1394 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1395
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001396 cl->common.classid = classid;
Stephen Hemminger87990462006-08-10 23:35:16 -07001397 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 /* set class to be in HTB_CAN_SEND state */
1400 cl->tokens = hopt->buffer;
1401 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001402 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001403 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 cl->cmode = HTB_CAN_SEND;
1405
1406 /* attach to the hash list and parent's family */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001407 qdisc_class_hash_insert(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001408 if (parent)
1409 parent->children++;
Patrick McHardyee39e102007-07-02 22:48:13 -07001410 } else {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001411 if (tca[TCA_RATE]) {
1412 err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
1413 qdisc_root_sleeping_lock(sch),
1414 tca[TCA_RATE]);
1415 if (err)
1416 return err;
1417 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001418 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001422 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (!cl->level) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001424 cl->quantum = rtab->rate.rate / q->rate2quantum;
1425 if (!hopt->quantum && cl->quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001426 printk(KERN_WARNING
1427 "HTB: quantum of class %X is small. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001428 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001429 cl->quantum = 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001431 if (!hopt->quantum && cl->quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001432 printk(KERN_WARNING
1433 "HTB: quantum of class %X is big. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001434 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001435 cl->quantum = 200000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437 if (hopt->quantum)
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001438 cl->quantum = hopt->quantum;
1439 if ((cl->prio = hopt->prio) >= TC_HTB_NUMPRIO)
1440 cl->prio = TC_HTB_NUMPRIO - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442
1443 cl->buffer = hopt->buffer;
1444 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001445 if (cl->rate)
1446 qdisc_put_rtab(cl->rate);
1447 cl->rate = rtab;
1448 if (cl->ceil)
1449 qdisc_put_rtab(cl->ceil);
1450 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 sch_tree_unlock(sch);
1452
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001453 qdisc_class_hash_grow(sch, &q->clhash);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 *arg = (unsigned long)cl;
1456 return 0;
1457
1458failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001459 if (rtab)
1460 qdisc_put_rtab(rtab);
1461 if (ctab)
1462 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return err;
1464}
1465
1466static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1467{
1468 struct htb_sched *q = qdisc_priv(sch);
1469 struct htb_class *cl = (struct htb_class *)arg;
1470 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return fl;
1473}
1474
1475static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001476 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Stephen Hemminger87990462006-08-10 23:35:16 -07001478 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001481 The line above used to be there to prevent attaching filters to
1482 leaves. But at least tc_index filter uses this just to get class
1483 for other reasons so that we have to allow for it.
1484 ----
1485 19.6.2002 As Werner explained it is ok - bind filter is just
1486 another way to "lock" the class - unlike "get" this lock can
1487 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001489 if (cl)
1490 cl->filter_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return (unsigned long)cl;
1492}
1493
1494static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1495{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001497
Stephen Hemminger87990462006-08-10 23:35:16 -07001498 if (cl)
1499 cl->filter_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1503{
1504 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001505 struct htb_class *cl;
1506 struct hlist_node *n;
1507 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 if (arg->stop)
1510 return;
1511
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001512 for (i = 0; i < q->clhash.hashsize; i++) {
1513 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (arg->count < arg->skip) {
1515 arg->count++;
1516 continue;
1517 }
1518 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1519 arg->stop = 1;
1520 return;
1521 }
1522 arg->count++;
1523 }
1524 }
1525}
1526
Eric Dumazet20fea082007-11-14 01:44:41 -08001527static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 .graft = htb_graft,
1529 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001530 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 .get = htb_get,
1532 .put = htb_put,
1533 .change = htb_change_class,
1534 .delete = htb_delete,
1535 .walk = htb_walk,
1536 .tcf_chain = htb_find_tcf,
1537 .bind_tcf = htb_bind_filter,
1538 .unbind_tcf = htb_unbind_filter,
1539 .dump = htb_dump_class,
1540 .dump_stats = htb_dump_class_stats,
1541};
1542
Eric Dumazet20fea082007-11-14 01:44:41 -08001543static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 .cl_ops = &htb_class_ops,
1545 .id = "htb",
1546 .priv_size = sizeof(struct htb_sched),
1547 .enqueue = htb_enqueue,
1548 .dequeue = htb_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -07001549 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 .drop = htb_drop,
1551 .init = htb_init,
1552 .reset = htb_reset,
1553 .destroy = htb_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 .dump = htb_dump,
1555 .owner = THIS_MODULE,
1556};
1557
1558static int __init htb_module_init(void)
1559{
Stephen Hemminger87990462006-08-10 23:35:16 -07001560 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
Stephen Hemminger87990462006-08-10 23:35:16 -07001562static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Stephen Hemminger87990462006-08-10 23:35:16 -07001564 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
Stephen Hemminger87990462006-08-10 23:35:16 -07001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567module_init(htb_module_init)
1568module_exit(htb_module_exit)
1569MODULE_LICENSE("GPL");