blob: e1a579efc215a930d3ece2d3f4938446550f57f0 [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.
27 *
28 * $Id: sch_htb.c,v 1.25 2003/12/07 11:08:25 devik Exp devik $
29 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/types.h>
32#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/skbuff.h>
36#include <linux/list.h>
37#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/rbtree.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070039#include <net/netlink.h>
40#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* HTB algorithm.
43 Author: devik@cdi.cz
44 ========================================================================
45 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090046 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 In fact it is another implementation of Floyd's formal sharing.
48
49 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090050 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
52 one less than their parent.
53*/
54
Stephen Hemminger87990462006-08-10 23:35:16 -070055#define HTB_HSIZE 16 /* classid hash size */
Stephen Hemminger87990462006-08-10 23:35:16 -070056#define HTB_HYSTERESIS 1 /* whether to use mode hysteresis for speedup */
57#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* used internaly to keep status of single class */
64enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070065 HTB_CANT_SEND, /* class can't send and can't borrow */
66 HTB_MAY_BORROW, /* class can't send but may borrow */
67 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070071struct htb_class {
72 /* general class parameters */
73 u32 classid;
74 struct gnet_stats_basic bstats;
75 struct gnet_stats_queue qstats;
76 struct gnet_stats_rate_est rate_est;
77 struct tc_htb_xstats xstats; /* our special stats */
78 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Stephen Hemminger87990462006-08-10 23:35:16 -070080 /* topology */
81 int level; /* our level (see above) */
82 struct htb_class *parent; /* parent class */
Stephen Hemminger0cef2962006-08-10 23:35:38 -070083 struct hlist_node hlist; /* classid hash list item */
Stephen Hemminger87990462006-08-10 23:35:16 -070084 struct list_head sibling; /* sibling list item */
85 struct list_head children; /* children list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Stephen Hemminger87990462006-08-10 23:35:16 -070087 union {
88 struct htb_class_leaf {
89 struct Qdisc *q;
90 int prio;
91 int aprio;
92 int quantum;
93 int deficit[TC_HTB_MAXDEPTH];
94 struct list_head drop_list;
95 } leaf;
96 struct htb_class_inner {
97 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
98 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
99 /* When class changes from state 1->2 and disconnects from
100 parent's feed then we lost ptr value and start from the
101 first child again. Here we store classid of the
102 last valid ptr (used when ptr is NULL). */
103 u32 last_ptr_id[TC_HTB_NUMPRIO];
104 } inner;
105 } un;
106 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
107 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700108 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Stephen Hemminger87990462006-08-10 23:35:16 -0700110 int prio_activity; /* for which prios are we active */
111 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Stephen Hemminger87990462006-08-10 23:35:16 -0700113 /* class attached filters */
114 struct tcf_proto *filter_list;
115 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Stephen Hemminger87990462006-08-10 23:35:16 -0700117 int warned; /* only one warning about non work conserving .. */
118
119 /* 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 */
Jarek Poplawski160d5e12006-12-08 00:26:56 -0800126
127 int prio; /* For parent to leaf return possible here */
128 int quantum; /* we do backup. Finally full replacement */
129 /* of un.leaf originals should be done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Stephen Hemminger87990462006-08-10 23:35:16 -0700132static inline long L2T(struct htb_class *cl, struct qdisc_rate_table *rate,
133 int size)
134{
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200135 long result = qdisc_l2t(rate, size);
136 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Stephen Hemminger87990462006-08-10 23:35:16 -0700139struct htb_sched {
140 struct list_head root; /* root classes list */
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700141 struct hlist_head hash[HTB_HSIZE]; /* hashed by classid */
142 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger87990462006-08-10 23:35:16 -0700144 /* self list - roots of self generating tree */
145 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
146 int row_mask[TC_HTB_MAXDEPTH];
147 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
148 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Stephen Hemminger87990462006-08-10 23:35:16 -0700150 /* self wait list - roots of wait PQs per row */
151 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Stephen Hemminger87990462006-08-10 23:35:16 -0700153 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700154 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Stephen Hemminger87990462006-08-10 23:35:16 -0700156 /* whether we hit non-work conserving class during this dequeue; we use */
157 int nwc_hit; /* this to disable mindelay complaint in dequeue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Stephen Hemminger87990462006-08-10 23:35:16 -0700159 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Stephen Hemminger87990462006-08-10 23:35:16 -0700161 /* filters for qdisc itself */
162 struct tcf_proto *filter_list;
163 int filter_cnt;
164
165 int rate2quantum; /* quant = rate / rate2quantum */
166 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700167 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Stephen Hemminger87990462006-08-10 23:35:16 -0700169 /* non shaped skbs; let them go directly thru */
170 struct sk_buff_head direct_queue;
171 int direct_qlen; /* max qlen of above */
172
173 long direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
176/* compute hash of size HTB_HSIZE for given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700177static inline int htb_hash(u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179#if HTB_HSIZE != 16
Stephen Hemminger87990462006-08-10 23:35:16 -0700180#error "Declare new hash for your HTB_HSIZE"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700182 h ^= h >> 8; /* stolen from cbq_hash */
183 h ^= h >> 4;
184 return h & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700188static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700191 struct hlist_node *p;
192 struct htb_class *cl;
193
Stephen Hemminger87990462006-08-10 23:35:16 -0700194 if (TC_H_MAJ(handle) != sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700196
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700197 hlist_for_each_entry(cl, p, q->hash + htb_hash(handle), hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (cl->classid == handle)
199 return cl;
200 }
201 return NULL;
202}
203
204/**
205 * htb_classify - classify a packet into class
206 *
207 * It returns NULL if the packet should be dropped or -1 if the packet
208 * should be passed directly thru. In all other cases leaf class is returned.
209 * We allow direct class selection by classid in priority. The we examine
210 * filters in qdisc and in inner nodes (if higher filter points to the inner
211 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900212 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
214 * then finish and return direct queue.
215 */
216#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Stephen Hemminger87990462006-08-10 23:35:16 -0700218static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
219 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct htb_sched *q = qdisc_priv(sch);
222 struct htb_class *cl;
223 struct tcf_result res;
224 struct tcf_proto *tcf;
225 int result;
226
227 /* allow to select class by setting skb->priority to valid classid;
228 note that nfmark can be used too by attaching filter fw with no
229 rules in it */
230 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700231 return HTB_DIRECT; /* X:0 (direct flow) selected */
232 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return cl;
234
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -0800235 *qerr = NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 tcf = q->filter_list;
237 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
238#ifdef CONFIG_NET_CLS_ACT
239 switch (result) {
240 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700241 case TC_ACT_STOLEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *qerr = NET_XMIT_SUCCESS;
243 case TC_ACT_SHOT:
244 return NULL;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700247 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700249 return HTB_DIRECT; /* X:0 (direct flow) */
250 if ((cl = htb_find(res.classid, sch)) == NULL)
251 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700254 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /* we have got inner class; apply inner filter chain */
257 tcf = cl->filter_list;
258 }
259 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700260 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700262 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return cl;
264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/**
267 * htb_add_to_id_tree - adds class to the round robin list
268 *
269 * Routine adds class to the list (actually tree) sorted by classid.
270 * Make sure that class is not already on such list for given prio.
271 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700272static void htb_add_to_id_tree(struct rb_root *root,
273 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700278 struct htb_class *c;
279 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (cl->classid > c->classid)
283 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700284 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 p = &parent->rb_left;
286 }
287 rb_link_node(&cl->node[prio], parent, p);
288 rb_insert_color(&cl->node[prio], root);
289}
290
291/**
292 * htb_add_to_wait_tree - adds class to the event queue with delay
293 *
294 * The class is added to priority event queue to indicate that class will
295 * change its mode in cl->pq_key microseconds. Make sure that class is not
296 * already in the queue.
297 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700298static void htb_add_to_wait_tree(struct htb_sched *q,
299 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700302
Patrick McHardyfb983d42007-03-16 01:22:39 -0700303 cl->pq_key = q->now + delay;
304 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 cl->pq_key++;
306
307 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700308 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700312 struct htb_class *c;
313 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700315 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700317 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 p = &parent->rb_left;
319 }
320 rb_link_node(&cl->pq_node, parent, p);
321 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
322}
323
324/**
325 * htb_next_rb_node - finds next node in binary tree
326 *
327 * When we are past last key we return NULL.
328 * Average complexity is 2 steps per call.
329 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700330static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 *n = rb_next(*n);
333}
334
335/**
336 * htb_add_class_to_row - add class to its row
337 *
338 * The class is added to row at priorities marked in mask.
339 * It does nothing if mask == 0.
340 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700341static inline void htb_add_class_to_row(struct htb_sched *q,
342 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 q->row_mask[cl->level] |= mask;
345 while (mask) {
346 int prio = ffz(~mask);
347 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700348 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350}
351
Stephen Hemminger3696f622006-08-10 23:36:01 -0700352/* If this triggers, it is a bug in this code, but it need not be fatal */
353static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
354{
Ismail Donmez81771b32006-10-03 13:49:10 -0700355 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700356 WARN_ON(1);
357 } else {
358 rb_erase(rb, root);
359 RB_CLEAR_NODE(rb);
360 }
361}
362
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/**
365 * htb_remove_class_from_row - removes class from its row
366 *
367 * The class is removed from row at priorities marked in mask.
368 * It does nothing if mask == 0.
369 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700370static inline void htb_remove_class_from_row(struct htb_sched *q,
371 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 while (mask) {
376 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700379 if (q->ptr[cl->level][prio] == cl->node + prio)
380 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700381
382 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700383 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 m |= 1 << prio;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 q->row_mask[cl->level] &= ~m;
387}
388
389/**
390 * htb_activate_prios - creates active classe's feed chain
391 *
392 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900393 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * (activated) mode. It does nothing if cl->prio_activity == 0.
395 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700396static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700399 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700402 m = mask;
403 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 int prio = ffz(~m);
405 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (p->un.inner.feed[prio].rb_node)
408 /* parent already has its feed in use so that
409 reset bit in mask as parent is already ok */
410 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700411
412 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700415 cl = p;
416 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700420 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423/**
424 * htb_deactivate_prios - remove class from feed chain
425 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900426 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * nothing if cl->prio_activity == 0. Class is removed from all feed
428 * chains and rows.
429 */
430static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
431{
432 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700433 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700436 m = mask;
437 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 while (m) {
439 int prio = ffz(~m);
440 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700441
442 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* we are removing child which is pointed to from
444 parent feed - forget the pointer but remember
445 classid */
446 p->un.inner.last_ptr_id[prio] = cl->classid;
447 p->un.inner.ptr[prio] = NULL;
448 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700449
Stephen Hemminger3696f622006-08-10 23:36:01 -0700450 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700451
452 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 mask |= 1 << prio;
454 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700457 cl = p;
458 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700461 if (cl->cmode == HTB_CAN_SEND && mask)
462 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700465#if HTB_HYSTERESIS
466static inline long htb_lowater(const struct htb_class *cl)
467{
468 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
469}
470static inline long htb_hiwater(const struct htb_class *cl)
471{
472 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
473}
474#else
475#define htb_lowater(cl) (0)
476#define htb_hiwater(cl) (0)
477#endif
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/**
480 * htb_class_mode - computes and returns current class mode
481 *
482 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
483 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900484 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900486 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
488 * mode transitions per time unit. The speed gain is about 1/6.
489 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700490static inline enum htb_cmode
491htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Stephen Hemminger87990462006-08-10 23:35:16 -0700493 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Stephen Hemminger87990462006-08-10 23:35:16 -0700495 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
496 *diff = -toks;
497 return HTB_CANT_SEND;
498 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700499
Stephen Hemminger87990462006-08-10 23:35:16 -0700500 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
501 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Stephen Hemminger87990462006-08-10 23:35:16 -0700503 *diff = -toks;
504 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/**
508 * htb_change_class_mode - changes classe's mode
509 *
510 * This should be the only way how to change classe's mode under normal
511 * cirsumstances. Routine will update feed lists linkage, change mode
512 * and add class to the wait event queue if appropriate. New mode should
513 * be different from old one and cl->pq_key has to be valid if changing
514 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
515 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700516static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700518{
519 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700522 return;
523
524 if (cl->prio_activity) { /* not necessary: speed optimization */
525 if (cl->cmode != HTB_CANT_SEND)
526 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700528 if (new_mode != HTB_CANT_SEND)
529 htb_activate_prios(q, cl);
530 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 cl->cmode = new_mode;
532}
533
534/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900535 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 *
537 * Routine learns (new) priority of leaf and activates feed chain
538 * for the prio. It can be called on already active leaf safely.
539 * It also adds leaf into droplist.
540 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700541static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!cl->prio_activity) {
546 cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700547 htb_activate_prios(q, cl);
548 list_add_tail(&cl->un.leaf.drop_list,
549 q->drops + cl->un.leaf.aprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551}
552
553/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900554 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 *
556 * Make sure that leaf is active. In the other words it can't be called
557 * with non-active leaf. It also removes class from the drop list.
558 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700559static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 BUG_TRAP(cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700562
Stephen Hemminger87990462006-08-10 23:35:16 -0700563 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 cl->prio_activity = 0;
565 list_del_init(&cl->un.leaf.drop_list);
566}
567
568static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
569{
Stephen Hemminger87990462006-08-10 23:35:16 -0700570 int ret;
571 struct htb_sched *q = qdisc_priv(sch);
572 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Stephen Hemminger87990462006-08-10 23:35:16 -0700574 if (cl == HTB_DIRECT) {
575 /* enqueue to helper queue */
576 if (q->direct_queue.qlen < q->direct_qlen) {
577 __skb_queue_tail(&q->direct_queue, skb);
578 q->direct_pkts++;
579 } else {
580 kfree_skb(skb);
581 sch->qstats.drops++;
582 return NET_XMIT_DROP;
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700585 } else if (!cl) {
586 if (ret == NET_XMIT_BYPASS)
587 sch->qstats.drops++;
588 kfree_skb(skb);
589 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700591 } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) !=
592 NET_XMIT_SUCCESS) {
593 sch->qstats.drops++;
594 cl->qstats.drops++;
595 return NET_XMIT_DROP;
596 } else {
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700597 cl->bstats.packets +=
598 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Stephen Hemminger87990462006-08-10 23:35:16 -0700599 cl->bstats.bytes += skb->len;
600 htb_activate(q, cl);
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Stephen Hemminger87990462006-08-10 23:35:16 -0700603 sch->q.qlen++;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700604 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Stephen Hemminger87990462006-08-10 23:35:16 -0700605 sch->bstats.bytes += skb->len;
606 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/* TODO: requeuing packet charges it to policers again !! */
610static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
611{
Stephen Hemminger87990462006-08-10 23:35:16 -0700612 struct htb_sched *q = qdisc_priv(sch);
613 int ret = NET_XMIT_SUCCESS;
614 struct htb_class *cl = htb_classify(skb, sch, &ret);
615 struct sk_buff *tskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Stephen Hemminger87990462006-08-10 23:35:16 -0700617 if (cl == HTB_DIRECT || !cl) {
618 /* enqueue to helper queue */
619 if (q->direct_queue.qlen < q->direct_qlen && cl) {
620 __skb_queue_head(&q->direct_queue, skb);
621 } else {
622 __skb_queue_head(&q->direct_queue, skb);
623 tskb = __skb_dequeue_tail(&q->direct_queue);
624 kfree_skb(tskb);
625 sch->qstats.drops++;
626 return NET_XMIT_CN;
627 }
628 } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) !=
629 NET_XMIT_SUCCESS) {
630 sch->qstats.drops++;
631 cl->qstats.drops++;
632 return NET_XMIT_DROP;
633 } else
634 htb_activate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Stephen Hemminger87990462006-08-10 23:35:16 -0700636 sch->q.qlen++;
637 sch->qstats.requeues++;
638 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/**
642 * htb_charge_class - charges amount "bytes" to leaf and ancestors
643 *
644 * Routine assumes that packet "bytes" long was dequeued from leaf cl
645 * borrowing from "level". It accounts bytes to ceil leaky bucket for
646 * leaf and all ancestors and to rate bucket for ancestors at levels
647 * "level" and higher. It also handles possible change of mode resulting
648 * from the update. Note that mode can also increase here (MAY_BORROW to
649 * CAN_SEND) because we can use more precise clock that event queue here.
650 * In such case we remove class from event queue first.
651 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700652static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700653 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700654{
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700655 int bytes = skb->len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700656 long toks, diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 enum htb_cmode old_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659#define HTB_ACCNT(T,B,R) toks = diff + cl->T; \
660 if (toks > cl->B) toks = cl->B; \
661 toks -= L2T(cl, cl->R, bytes); \
662 if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; \
663 cl->T = toks
664
665 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700666 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700668 if (cl->level == level)
669 cl->xstats.lends++;
670 HTB_ACCNT(tokens, buffer, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 } else {
672 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700673 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700675 HTB_ACCNT(ctokens, cbuffer, ceil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Stephen Hemminger87990462006-08-10 23:35:16 -0700678 old_mode = cl->cmode;
679 diff = 0;
680 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (old_mode != cl->cmode) {
682 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700683 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 /* update byte stats except for leaves which are already updated */
689 if (cl->level) {
690 cl->bstats.bytes += bytes;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700691 cl->bstats.packets += skb_is_gso(skb)?
692 skb_shinfo(skb)->gso_segs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 cl = cl->parent;
695 }
696}
697
698/**
699 * htb_do_events - make mode changes to classes at the level
700 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700701 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700703 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700705static psched_time_t htb_do_events(struct htb_sched *q, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 int i;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 for (i = 0; i < 500; i++) {
710 struct htb_class *cl;
711 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700712 struct rb_node *p = rb_first(&q->wait_pq[level]);
713
Stephen Hemminger87990462006-08-10 23:35:16 -0700714 if (!p)
715 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700718 if (cl->pq_key > q->now)
719 return cl->pq_key;
720
Stephen Hemminger3696f622006-08-10 23:36:01 -0700721 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700722 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700723 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700725 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727 if (net_ratelimit())
728 printk(KERN_WARNING "htb: too many events !\n");
Patrick McHardyfb983d42007-03-16 01:22:39 -0700729 return q->now + PSCHED_TICKS_PER_SEC / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
733 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700734static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
735 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 struct rb_node *r = NULL;
738 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700739 struct htb_class *cl =
740 rb_entry(n, struct htb_class, node[prio]);
741 if (id == cl->classid)
742 return n;
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (id > cl->classid) {
745 n = n->rb_right;
746 } else {
747 r = n;
748 n = n->rb_left;
749 }
750 }
751 return r;
752}
753
754/**
755 * htb_lookup_leaf - returns next leaf class in DRR order
756 *
757 * Find leaf where current feed pointers points to.
758 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700759static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
760 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 int i;
763 struct {
764 struct rb_node *root;
765 struct rb_node **pptr;
766 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700767 } stk[TC_HTB_MAXDEPTH], *sp = stk;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 BUG_TRAP(tree->rb_node);
770 sp->root = tree->rb_node;
771 sp->pptr = pptr;
772 sp->pid = pid;
773
774 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700775 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900776 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700778 *sp->pptr =
779 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700781 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
782 can become out of date quickly */
783 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700785 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 *sp->pptr = (*sp->pptr)->rb_left;
787 if (sp > stk) {
788 sp--;
Stephen Hemminger87990462006-08-10 23:35:16 -0700789 BUG_TRAP(*sp->pptr);
790 if (!*sp->pptr)
791 return NULL;
792 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794 } else {
795 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700796 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
797 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return cl;
799 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700800 sp->pptr = cl->un.inner.ptr + prio;
801 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 }
803 }
804 BUG_TRAP(0);
805 return NULL;
806}
807
808/* dequeues packet at given priority and level; call only if
809 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700810static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
811 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700814 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700816 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
817 q->ptr[level] + prio,
818 q->last_ptr_id[level] + prio);
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 do {
821next:
Stephen Hemminger87990462006-08-10 23:35:16 -0700822 BUG_TRAP(cl);
823 if (!cl)
824 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 /* class can be empty - it is unlikely but can be true if leaf
827 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900828 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 simply deactivate and skip such class */
830 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
831 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700832 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* row/level might become empty */
835 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700836 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Stephen Hemminger87990462006-08-10 23:35:16 -0700838 next = htb_lookup_leaf(q->row[level] + prio,
839 prio, q->ptr[level] + prio,
840 q->last_ptr_id[level] + prio);
841
842 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 start = next;
844 cl = next;
845 goto next;
846 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700847
848 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
849 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 break;
851 if (!cl->warned) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700852 printk(KERN_WARNING
853 "htb: class %X isn't work conserving ?!\n",
854 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 cl->warned = 1;
856 }
857 q->nwc_hit++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700858 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
859 ptr[0]) + prio);
860 cl = htb_lookup_leaf(q->row[level] + prio, prio,
861 q->ptr[level] + prio,
862 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 } while (cl != start);
865
866 if (likely(skb != NULL)) {
867 if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700869 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
870 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 /* this used to be after charge_class but this constelation
873 gives us slightly better performance */
874 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700875 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700876 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878 return skb;
879}
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881static struct sk_buff *htb_dequeue(struct Qdisc *sch)
882{
883 struct sk_buff *skb = NULL;
884 struct htb_sched *q = qdisc_priv(sch);
885 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700886 psched_time_t next_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700889 skb = __skb_dequeue(&q->direct_queue);
890 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 sch->flags &= ~TCQ_F_THROTTLED;
892 sch->q.qlen--;
893 return skb;
894 }
895
Stephen Hemminger87990462006-08-10 23:35:16 -0700896 if (!sch->q.qlen)
897 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700898 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Patrick McHardyfb983d42007-03-16 01:22:39 -0700900 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 q->nwc_hit = 0;
902 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
903 /* common case optimization - skip event handler quickly */
904 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700905 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700906
Patrick McHardyfb983d42007-03-16 01:22:39 -0700907 if (q->now >= q->near_ev_cache[level]) {
908 event = htb_do_events(q, level);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700909 if (!event)
910 event = q->now + PSCHED_TICKS_PER_SEC;
911 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700912 } else
913 event = q->near_ev_cache[level];
914
915 if (event && next_event > event)
916 next_event = event;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 m = ~q->row_mask[level];
919 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700920 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700922 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (likely(skb != NULL)) {
924 sch->q.qlen--;
925 sch->flags &= ~TCQ_F_THROTTLED;
926 goto fin;
927 }
928 }
929 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700930 sch->qstats.overlimits++;
931 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return skb;
934}
935
936/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700937static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 struct htb_sched *q = qdisc_priv(sch);
940 int prio;
941
942 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
943 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700944 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 struct htb_class *cl = list_entry(p, struct htb_class,
946 un.leaf.drop_list);
947 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700948 if (cl->un.leaf.q->ops->drop &&
949 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 sch->q.qlen--;
951 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700952 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return len;
954 }
955 }
956 }
957 return 0;
958}
959
960/* reset all classes */
961/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700962static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct htb_sched *q = qdisc_priv(sch);
965 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700968 struct hlist_node *p;
969 struct htb_class *cl;
970
971 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700973 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700975 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 qdisc_reset(cl->un.leaf.q);
977 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
978 }
979 cl->prio_activity = 0;
980 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 }
983 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700984 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 __skb_queue_purge(&q->direct_queue);
986 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700987 memset(q->row, 0, sizeof(q->row));
988 memset(q->row_mask, 0, sizeof(q->row_mask));
989 memset(q->wait_pq, 0, sizeof(q->wait_pq));
990 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700992 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Patrick McHardy27a34212008-01-23 20:35:39 -0800995static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
996 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
997 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
998 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
999 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
1000};
1001
Patrick McHardy1e904742008-01-22 22:11:17 -08001002static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -08001005 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -08001007 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 int i;
Patrick McHardycee63722008-01-23 20:33:32 -08001009
1010 if (!opt)
1011 return -EINVAL;
1012
Patrick McHardy27a34212008-01-23 20:35:39 -08001013 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001014 if (err < 0)
1015 return err;
1016
Patrick McHardy27a34212008-01-23 20:35:39 -08001017 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
1019 return -EINVAL;
1020 }
Patrick McHardy1e904742008-01-22 22:11:17 -08001021 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001023 printk(KERN_ERR
1024 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1025 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return -EINVAL;
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 INIT_LIST_HEAD(&q->root);
1030 for (i = 0; i < HTB_HSIZE; i++)
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001031 INIT_HLIST_HEAD(q->hash + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001033 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Patrick McHardyfb983d42007-03-16 01:22:39 -07001035 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 skb_queue_head_init(&q->direct_queue);
1037
1038 q->direct_qlen = sch->dev->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001039 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1043 q->rate2quantum = 1;
1044 q->defcls = gopt->defcls;
1045
1046 return 0;
1047}
1048
1049static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1050{
1051 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001052 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001055 spin_lock_bh(&sch->dev->queue_lock);
1056
1057 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 gopt.version = HTB_VER;
1059 gopt.rate2quantum = q->rate2quantum;
1060 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001061 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001062
1063 nest = nla_nest_start(skb, TCA_OPTIONS);
1064 if (nest == NULL)
1065 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001066 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001067 nla_nest_end(skb, nest);
1068
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001069 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001071
Patrick McHardy1e904742008-01-22 22:11:17 -08001072nla_put_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001073 spin_unlock_bh(&sch->dev->queue_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001074 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return -1;
1076}
1077
1078static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001079 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Stephen Hemminger87990462006-08-10 23:35:16 -07001081 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001082 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 struct tc_htb_opt opt;
1084
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001085 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 tcm->tcm_parent = cl->parent ? cl->parent->classid : TC_H_ROOT;
1087 tcm->tcm_handle = cl->classid;
1088 if (!cl->level && cl->un.leaf.q)
1089 tcm->tcm_info = cl->un.leaf.q->handle;
1090
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001091 nest = nla_nest_start(skb, TCA_OPTIONS);
1092 if (nest == NULL)
1093 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Stephen Hemminger87990462006-08-10 23:35:16 -07001095 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Stephen Hemminger87990462006-08-10 23:35:16 -07001097 opt.rate = cl->rate->rate;
1098 opt.buffer = cl->buffer;
1099 opt.ceil = cl->ceil->rate;
1100 opt.cbuffer = cl->cbuffer;
1101 opt.quantum = cl->un.leaf.quantum;
1102 opt.prio = cl->un.leaf.prio;
1103 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001104 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001105
1106 nla_nest_end(skb, nest);
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001107 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001109
Patrick McHardy1e904742008-01-22 22:11:17 -08001110nla_put_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001111 spin_unlock_bh(&sch->dev->queue_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001112 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return -1;
1114}
1115
1116static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001117htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Stephen Hemminger87990462006-08-10 23:35:16 -07001119 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (!cl->level && cl->un.leaf.q)
1122 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1123 cl->xstats.tokens = cl->tokens;
1124 cl->xstats.ctokens = cl->ctokens;
1125
1126 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1127 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1128 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1129 return -1;
1130
1131 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1132}
1133
1134static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001135 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Stephen Hemminger87990462006-08-10 23:35:16 -07001137 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001140 if (new == NULL &&
1141 (new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001142 cl->classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001143 == NULL)
1144 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 sch_tree_lock(sch);
1146 if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001147 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 qdisc_reset(*old);
1149 }
1150 sch_tree_unlock(sch);
1151 return 0;
1152 }
1153 return -ENOENT;
1154}
1155
Stephen Hemminger87990462006-08-10 23:35:16 -07001156static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Stephen Hemminger87990462006-08-10 23:35:16 -07001158 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1160}
1161
Patrick McHardy256d61b2006-11-29 17:37:05 -08001162static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1163{
1164 struct htb_class *cl = (struct htb_class *)arg;
1165
1166 if (cl->un.leaf.q->q.qlen == 0)
1167 htb_deactivate(qdisc_priv(sch), cl);
1168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1171{
Stephen Hemminger87990462006-08-10 23:35:16 -07001172 struct htb_class *cl = htb_find(classid, sch);
1173 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 cl->refcnt++;
1175 return (unsigned long)cl;
1176}
1177
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001178static inline int htb_parent_last_child(struct htb_class *cl)
1179{
1180 if (!cl->parent)
1181 /* the root class */
1182 return 0;
1183
1184 if (!(cl->parent->children.next == &cl->sibling &&
1185 cl->parent->children.prev == &cl->sibling))
1186 /* not the last child */
1187 return 0;
1188
1189 return 1;
1190}
1191
1192static void htb_parent_to_leaf(struct htb_class *cl, struct Qdisc *new_q)
1193{
1194 struct htb_class *parent = cl->parent;
1195
1196 BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
1197
1198 parent->level = 0;
1199 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1200 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1201 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
1202 parent->un.leaf.quantum = parent->quantum;
1203 parent->un.leaf.prio = parent->prio;
1204 parent->tokens = parent->buffer;
1205 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001206 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001207 parent->cmode = HTB_CAN_SEND;
1208}
1209
Stephen Hemminger87990462006-08-10 23:35:16 -07001210static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (!cl->level) {
1215 BUG_TRAP(cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 qdisc_destroy(cl->un.leaf.q);
1217 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001218 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 qdisc_put_rtab(cl->rate);
1220 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001221
Patrick McHardya48b5a62007-03-23 11:29:43 -07001222 tcf_destroy_chain(cl->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001223
1224 while (!list_empty(&cl->children))
1225 htb_destroy_class(sch, list_entry(cl->children.next,
1226 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 /* note: this delete may happen twice (see htb_delete) */
Stephen Hemmingerda33e3e2006-11-07 14:54:46 -08001229 hlist_del_init(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 list_del(&cl->sibling);
Stephen Hemminger87990462006-08-10 23:35:16 -07001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001233 htb_deactivate(q, cl);
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -07001236 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Stephen Hemminger87990462006-08-10 23:35:16 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 kfree(cl);
1239}
1240
1241/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001242static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct htb_sched *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Patrick McHardyfb983d42007-03-16 01:22:39 -07001246 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001248 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 because filter need its target class alive to be able to call
1250 unbind_filter on it (without Oops). */
Patrick McHardya48b5a62007-03-23 11:29:43 -07001251 tcf_destroy_chain(q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001252
1253 while (!list_empty(&q->root))
1254 htb_destroy_class(sch, list_entry(q->root.next,
1255 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 __skb_queue_purge(&q->direct_queue);
1258}
1259
1260static int htb_delete(struct Qdisc *sch, unsigned long arg)
1261{
1262 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001263 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001264 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001265 struct Qdisc *new_q = NULL;
1266 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 // TODO: why don't allow to delete subtree ? references ? does
1269 // tc subsys quarantee us that in htb_destroy it holds no class
1270 // refs so that we can remove children safely there ?
1271 if (!list_empty(&cl->children) || cl->filter_cnt)
1272 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001273
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001274 if (!cl->level && htb_parent_last_child(cl)) {
1275 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
1276 cl->parent->classid);
1277 last_child = 1;
1278 }
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001281
Patrick McHardy814a175e2006-11-29 17:34:50 -08001282 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001283 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001284 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001285 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001286 }
1287
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001288 /* delete from hash and active; remainder in destroy_class */
1289 hlist_del_init(&cl->hlist);
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001292 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001294 if (last_child)
1295 htb_parent_to_leaf(cl, new_q);
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001298 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 sch_tree_unlock(sch);
1301 return 0;
1302}
1303
1304static void htb_put(struct Qdisc *sch, unsigned long arg)
1305{
Stephen Hemminger87990462006-08-10 23:35:16 -07001306 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001309 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
Stephen Hemminger87990462006-08-10 23:35:16 -07001312static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001313 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001314 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 int err = -EINVAL;
1317 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001318 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001319 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001321 struct nlattr *tb[TCA_HTB_RTAB + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct tc_htb_opt *hopt;
1323
1324 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001325 if (!opt)
1326 goto failure;
1327
Patrick McHardy27a34212008-01-23 20:35:39 -08001328 err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001329 if (err < 0)
1330 goto failure;
1331
1332 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001333 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Stephen Hemminger87990462006-08-10 23:35:16 -07001336 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001337
Patrick McHardy1e904742008-01-22 22:11:17 -08001338 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Patrick McHardy1e904742008-01-22 22:11:17 -08001340 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1341 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001342 if (!rtab || !ctab)
1343 goto failure;
1344
1345 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001347 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001348 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001349 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001350 struct gnet_estimator opt;
1351 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001352 .nla = {
1353 .nla_len = nla_attr_size(sizeof(est.opt)),
1354 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001355 },
1356 .opt = {
1357 /* 4s interval, 16s averaging constant */
1358 .interval = 2,
1359 .ewma_log = 2,
1360 },
1361 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001364 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1365 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 goto failure;
1367
1368 /* check maximal depth */
1369 if (parent && parent->parent && parent->parent->level < 2) {
1370 printk(KERN_ERR "htb: tree is too deep\n");
1371 goto failure;
1372 }
1373 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001374 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001376
Patrick McHardyee39e102007-07-02 22:48:13 -07001377 gen_new_estimator(&cl->bstats, &cl->rate_est,
1378 &sch->dev->queue_lock,
Patrick McHardy1e904742008-01-22 22:11:17 -08001379 tca[TCA_RATE] ? : &est.nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 cl->refcnt = 1;
1381 INIT_LIST_HEAD(&cl->sibling);
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001382 INIT_HLIST_NODE(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 INIT_LIST_HEAD(&cl->children);
1384 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001385 RB_CLEAR_NODE(&cl->pq_node);
1386
1387 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1388 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1391 so that can't be used inside of sch_tree_lock
1392 -- thanks to Karlis Peisenieks */
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001393 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 sch_tree_lock(sch);
1395 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001396 unsigned int qlen = parent->un.leaf.q->q.qlen;
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001399 qdisc_reset(parent->un.leaf.q);
1400 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001401 qdisc_destroy(parent->un.leaf.q);
1402 if (parent->prio_activity)
1403 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 /* remove from evt list because of level change */
1406 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001407 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 parent->cmode = HTB_CAN_SEND;
1409 }
1410 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001411 : TC_HTB_MAXDEPTH) - 1;
1412 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
1414 /* leaf (we) needs elementary qdisc */
1415 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1416
Stephen Hemminger87990462006-08-10 23:35:16 -07001417 cl->classid = classid;
1418 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /* set class to be in HTB_CAN_SEND state */
1421 cl->tokens = hopt->buffer;
1422 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001423 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001424 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 cl->cmode = HTB_CAN_SEND;
1426
1427 /* attach to the hash list and parent's family */
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001428 hlist_add_head(&cl->hlist, q->hash + htb_hash(classid));
Stephen Hemminger87990462006-08-10 23:35:16 -07001429 list_add_tail(&cl->sibling,
1430 parent ? &parent->children : &q->root);
Patrick McHardyee39e102007-07-02 22:48:13 -07001431 } else {
Patrick McHardy1e904742008-01-22 22:11:17 -08001432 if (tca[TCA_RATE])
Patrick McHardyee39e102007-07-02 22:48:13 -07001433 gen_replace_estimator(&cl->bstats, &cl->rate_est,
1434 &sch->dev->queue_lock,
Patrick McHardy1e904742008-01-22 22:11:17 -08001435 tca[TCA_RATE]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001436 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001440 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (!cl->level) {
1442 cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
1443 if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001444 printk(KERN_WARNING
1445 "HTB: quantum of class %X is small. Consider r2q change.\n",
1446 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 cl->un.leaf.quantum = 1000;
1448 }
1449 if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001450 printk(KERN_WARNING
1451 "HTB: quantum of class %X is big. Consider r2q change.\n",
1452 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 cl->un.leaf.quantum = 200000;
1454 }
1455 if (hopt->quantum)
1456 cl->un.leaf.quantum = hopt->quantum;
1457 if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
1458 cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001459
1460 /* backup for htb_parent_to_leaf */
1461 cl->quantum = cl->un.leaf.quantum;
1462 cl->prio = cl->un.leaf.prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464
1465 cl->buffer = hopt->buffer;
1466 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001467 if (cl->rate)
1468 qdisc_put_rtab(cl->rate);
1469 cl->rate = rtab;
1470 if (cl->ceil)
1471 qdisc_put_rtab(cl->ceil);
1472 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 sch_tree_unlock(sch);
1474
1475 *arg = (unsigned long)cl;
1476 return 0;
1477
1478failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001479 if (rtab)
1480 qdisc_put_rtab(rtab);
1481 if (ctab)
1482 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return err;
1484}
1485
1486static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1487{
1488 struct htb_sched *q = qdisc_priv(sch);
1489 struct htb_class *cl = (struct htb_class *)arg;
1490 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return fl;
1493}
1494
1495static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001496 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001499 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001502 The line above used to be there to prevent attaching filters to
1503 leaves. But at least tc_index filter uses this just to get class
1504 for other reasons so that we have to allow for it.
1505 ----
1506 19.6.2002 As Werner explained it is ok - bind filter is just
1507 another way to "lock" the class - unlike "get" this lock can
1508 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001510 if (cl)
1511 cl->filter_cnt++;
1512 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 q->filter_cnt++;
1514 return (unsigned long)cl;
1515}
1516
1517static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1518{
1519 struct htb_sched *q = qdisc_priv(sch);
1520 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001521
Stephen Hemminger87990462006-08-10 23:35:16 -07001522 if (cl)
1523 cl->filter_cnt--;
1524 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 q->filter_cnt--;
1526}
1527
1528static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1529{
1530 struct htb_sched *q = qdisc_priv(sch);
1531 int i;
1532
1533 if (arg->stop)
1534 return;
1535
1536 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001537 struct hlist_node *p;
1538 struct htb_class *cl;
1539
1540 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (arg->count < arg->skip) {
1542 arg->count++;
1543 continue;
1544 }
1545 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1546 arg->stop = 1;
1547 return;
1548 }
1549 arg->count++;
1550 }
1551 }
1552}
1553
Eric Dumazet20fea082007-11-14 01:44:41 -08001554static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 .graft = htb_graft,
1556 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001557 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .get = htb_get,
1559 .put = htb_put,
1560 .change = htb_change_class,
1561 .delete = htb_delete,
1562 .walk = htb_walk,
1563 .tcf_chain = htb_find_tcf,
1564 .bind_tcf = htb_bind_filter,
1565 .unbind_tcf = htb_unbind_filter,
1566 .dump = htb_dump_class,
1567 .dump_stats = htb_dump_class_stats,
1568};
1569
Eric Dumazet20fea082007-11-14 01:44:41 -08001570static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 .next = NULL,
1572 .cl_ops = &htb_class_ops,
1573 .id = "htb",
1574 .priv_size = sizeof(struct htb_sched),
1575 .enqueue = htb_enqueue,
1576 .dequeue = htb_dequeue,
1577 .requeue = htb_requeue,
1578 .drop = htb_drop,
1579 .init = htb_init,
1580 .reset = htb_reset,
1581 .destroy = htb_destroy,
1582 .change = NULL /* htb_change */,
1583 .dump = htb_dump,
1584 .owner = THIS_MODULE,
1585};
1586
1587static int __init htb_module_init(void)
1588{
Stephen Hemminger87990462006-08-10 23:35:16 -07001589 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
Stephen Hemminger87990462006-08-10 23:35:16 -07001591static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Stephen Hemminger87990462006-08-10 23:35:16 -07001593 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
Stephen Hemminger87990462006-08-10 23:35:16 -07001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596module_init(htb_module_init)
1597module_exit(htb_module_exit)
1598MODULE_LICENSE("GPL");