blob: 035788c5b7f8a75c07961c0694df50aeaa9ecef1 [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>
31#include <asm/uaccess.h>
32#include <asm/system.h>
33#include <linux/bitops.h>
34#include <linux/types.h>
35#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/string.h>
37#include <linux/mm.h>
38#include <linux/socket.h>
39#include <linux/sockios.h>
40#include <linux/in.h>
41#include <linux/errno.h>
42#include <linux/interrupt.h>
43#include <linux/if_ether.h>
44#include <linux/inet.h>
45#include <linux/netdevice.h>
46#include <linux/etherdevice.h>
47#include <linux/notifier.h>
48#include <net/ip.h>
49#include <net/route.h>
50#include <linux/skbuff.h>
51#include <linux/list.h>
52#include <linux/compiler.h>
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -070053#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/sock.h>
55#include <net/pkt_sched.h>
56#include <linux/rbtree.h>
57
58/* HTB algorithm.
59 Author: devik@cdi.cz
60 ========================================================================
61 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090062 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 In fact it is another implementation of Floyd's formal sharing.
64
65 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090066 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
68 one less than their parent.
69*/
70
Stephen Hemminger87990462006-08-10 23:35:16 -070071#define HTB_HSIZE 16 /* classid hash size */
72#define HTB_EWMAC 2 /* rate average over HTB_EWMAC*HTB_HSIZE sec */
73#define HTB_RATECM 1 /* whether to use rate computer */
74#define HTB_HYSTERESIS 1 /* whether to use mode hysteresis for speedup */
75#define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#if HTB_VER >> 16 != TC_HTB_PROTOVER
78#error "Mismatched sch_htb.c and pkt_sch.h"
79#endif
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* used internaly to keep status of single class */
82enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070083 HTB_CANT_SEND, /* class can't send and can't borrow */
84 HTB_MAY_BORROW, /* class can't send but may borrow */
85 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
88/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070089struct htb_class {
90 /* general class parameters */
91 u32 classid;
92 struct gnet_stats_basic bstats;
93 struct gnet_stats_queue qstats;
94 struct gnet_stats_rate_est rate_est;
95 struct tc_htb_xstats xstats; /* our special stats */
96 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -070099 /* rate measurement counters */
100 unsigned long rate_bytes, sum_bytes;
101 unsigned long rate_packets, sum_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#endif
103
Stephen Hemminger87990462006-08-10 23:35:16 -0700104 /* topology */
105 int level; /* our level (see above) */
106 struct htb_class *parent; /* parent class */
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700107 struct hlist_node hlist; /* classid hash list item */
Stephen Hemminger87990462006-08-10 23:35:16 -0700108 struct list_head sibling; /* sibling list item */
109 struct list_head children; /* children list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Stephen Hemminger87990462006-08-10 23:35:16 -0700111 union {
112 struct htb_class_leaf {
113 struct Qdisc *q;
114 int prio;
115 int aprio;
116 int quantum;
117 int deficit[TC_HTB_MAXDEPTH];
118 struct list_head drop_list;
119 } leaf;
120 struct htb_class_inner {
121 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
122 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
123 /* When class changes from state 1->2 and disconnects from
124 parent's feed then we lost ptr value and start from the
125 first child again. Here we store classid of the
126 last valid ptr (used when ptr is NULL). */
127 u32 last_ptr_id[TC_HTB_NUMPRIO];
128 } inner;
129 } un;
130 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
131 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700132 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Stephen Hemminger87990462006-08-10 23:35:16 -0700134 int prio_activity; /* for which prios are we active */
135 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Stephen Hemminger87990462006-08-10 23:35:16 -0700137 /* class attached filters */
138 struct tcf_proto *filter_list;
139 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Stephen Hemminger87990462006-08-10 23:35:16 -0700141 int warned; /* only one warning about non work conserving .. */
142
143 /* token bucket parameters */
144 struct qdisc_rate_table *rate; /* rate table of the class itself */
145 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
146 long buffer, cbuffer; /* token bucket depth/rate */
147 psched_tdiff_t mbuffer; /* max wait time */
148 long tokens, ctokens; /* current number of tokens */
149 psched_time_t t_c; /* checkpoint time */
Jarek Poplawski160d5e12006-12-08 00:26:56 -0800150
151 int prio; /* For parent to leaf return possible here */
152 int quantum; /* we do backup. Finally full replacement */
153 /* of un.leaf originals should be done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
156/* TODO: maybe compute rate when size is too large .. or drop ? */
Stephen Hemminger87990462006-08-10 23:35:16 -0700157static inline long L2T(struct htb_class *cl, struct qdisc_rate_table *rate,
158 int size)
159{
160 int slot = size >> rate->rate.cell_log;
161 if (slot > 255) {
162 cl->xstats.giants++;
163 slot = 255;
164 }
165 return rate->data[slot];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Stephen Hemminger87990462006-08-10 23:35:16 -0700168struct htb_sched {
169 struct list_head root; /* root classes list */
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700170 struct hlist_head hash[HTB_HSIZE]; /* hashed by classid */
171 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Stephen Hemminger87990462006-08-10 23:35:16 -0700173 /* self list - roots of self generating tree */
174 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
175 int row_mask[TC_HTB_MAXDEPTH];
176 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
177 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Stephen Hemminger87990462006-08-10 23:35:16 -0700179 /* self wait list - roots of wait PQs per row */
180 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger87990462006-08-10 23:35:16 -0700182 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700183 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Stephen Hemminger87990462006-08-10 23:35:16 -0700185 /* whether we hit non-work conserving class during this dequeue; we use */
186 int nwc_hit; /* this to disable mindelay complaint in dequeue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Stephen Hemminger87990462006-08-10 23:35:16 -0700188 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Stephen Hemminger87990462006-08-10 23:35:16 -0700190 /* filters for qdisc itself */
191 struct tcf_proto *filter_list;
192 int filter_cnt;
193
194 int rate2quantum; /* quant = rate / rate2quantum */
195 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700196 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -0700198 struct timer_list rttim; /* rate computer timer */
199 int recmp_bucket; /* which hash bucket to recompute next */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Stephen Hemminger87990462006-08-10 23:35:16 -0700202 /* non shaped skbs; let them go directly thru */
203 struct sk_buff_head direct_queue;
204 int direct_qlen; /* max qlen of above */
205
206 long direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209/* compute hash of size HTB_HSIZE for given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700210static inline int htb_hash(u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212#if HTB_HSIZE != 16
Stephen Hemminger87990462006-08-10 23:35:16 -0700213#error "Declare new hash for your HTB_HSIZE"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700215 h ^= h >> 8; /* stolen from cbq_hash */
216 h ^= h >> 4;
217 return h & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700221static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700224 struct hlist_node *p;
225 struct htb_class *cl;
226
Stephen Hemminger87990462006-08-10 23:35:16 -0700227 if (TC_H_MAJ(handle) != sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700229
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700230 hlist_for_each_entry(cl, p, q->hash + htb_hash(handle), hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (cl->classid == handle)
232 return cl;
233 }
234 return NULL;
235}
236
237/**
238 * htb_classify - classify a packet into class
239 *
240 * It returns NULL if the packet should be dropped or -1 if the packet
241 * should be passed directly thru. In all other cases leaf class is returned.
242 * We allow direct class selection by classid in priority. The we examine
243 * filters in qdisc and in inner nodes (if higher filter points to the inner
244 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900245 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
247 * then finish and return direct queue.
248 */
249#define HTB_DIRECT (struct htb_class*)-1
250static inline u32 htb_classid(struct htb_class *cl)
251{
252 return (cl && cl != HTB_DIRECT) ? cl->classid : TC_H_UNSPEC;
253}
254
Stephen Hemminger87990462006-08-10 23:35:16 -0700255static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
256 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct htb_sched *q = qdisc_priv(sch);
259 struct htb_class *cl;
260 struct tcf_result res;
261 struct tcf_proto *tcf;
262 int result;
263
264 /* allow to select class by setting skb->priority to valid classid;
265 note that nfmark can be used too by attaching filter fw with no
266 rules in it */
267 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700268 return HTB_DIRECT; /* X:0 (direct flow) selected */
269 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return cl;
271
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -0800272 *qerr = NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 tcf = q->filter_list;
274 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
275#ifdef CONFIG_NET_CLS_ACT
276 switch (result) {
277 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700278 case TC_ACT_STOLEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *qerr = NET_XMIT_SUCCESS;
280 case TC_ACT_SHOT:
281 return NULL;
282 }
283#elif defined(CONFIG_NET_CLS_POLICE)
284 if (result == TC_POLICE_SHOT)
285 return HTB_DIRECT;
286#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700287 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700289 return HTB_DIRECT; /* X:0 (direct flow) */
290 if ((cl = htb_find(res.classid, sch)) == NULL)
291 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700294 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* we have got inner class; apply inner filter chain */
297 tcf = cl->filter_list;
298 }
299 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700300 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700302 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return cl;
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/**
307 * htb_add_to_id_tree - adds class to the round robin list
308 *
309 * Routine adds class to the list (actually tree) sorted by classid.
310 * Make sure that class is not already on such list for given prio.
311 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700312static void htb_add_to_id_tree(struct rb_root *root,
313 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700318 struct htb_class *c;
319 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (cl->classid > c->classid)
323 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700324 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 p = &parent->rb_left;
326 }
327 rb_link_node(&cl->node[prio], parent, p);
328 rb_insert_color(&cl->node[prio], root);
329}
330
331/**
332 * htb_add_to_wait_tree - adds class to the event queue with delay
333 *
334 * The class is added to priority event queue to indicate that class will
335 * change its mode in cl->pq_key microseconds. Make sure that class is not
336 * already in the queue.
337 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700338static void htb_add_to_wait_tree(struct htb_sched *q,
339 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700342
Patrick McHardyfb983d42007-03-16 01:22:39 -0700343 cl->pq_key = q->now + delay;
344 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 cl->pq_key++;
346
347 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700348 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700352 struct htb_class *c;
353 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700355 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700357 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 p = &parent->rb_left;
359 }
360 rb_link_node(&cl->pq_node, parent, p);
361 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
362}
363
364/**
365 * htb_next_rb_node - finds next node in binary tree
366 *
367 * When we are past last key we return NULL.
368 * Average complexity is 2 steps per call.
369 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700370static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 *n = rb_next(*n);
373}
374
375/**
376 * htb_add_class_to_row - add class to its row
377 *
378 * The class is added to row at priorities marked in mask.
379 * It does nothing if mask == 0.
380 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700381static inline void htb_add_class_to_row(struct htb_sched *q,
382 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 q->row_mask[cl->level] |= mask;
385 while (mask) {
386 int prio = ffz(~mask);
387 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700388 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390}
391
Stephen Hemminger3696f622006-08-10 23:36:01 -0700392/* If this triggers, it is a bug in this code, but it need not be fatal */
393static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
394{
Ismail Donmez81771b32006-10-03 13:49:10 -0700395 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700396 WARN_ON(1);
397 } else {
398 rb_erase(rb, root);
399 RB_CLEAR_NODE(rb);
400 }
401}
402
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/**
405 * htb_remove_class_from_row - removes class from its row
406 *
407 * The class is removed from row at priorities marked in mask.
408 * It does nothing if mask == 0.
409 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700410static inline void htb_remove_class_from_row(struct htb_sched *q,
411 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 while (mask) {
416 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700419 if (q->ptr[cl->level][prio] == cl->node + prio)
420 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700421
422 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700423 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 m |= 1 << prio;
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 q->row_mask[cl->level] &= ~m;
427}
428
429/**
430 * htb_activate_prios - creates active classe's feed chain
431 *
432 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900433 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * (activated) mode. It does nothing if cl->prio_activity == 0.
435 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700436static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700439 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700442 m = mask;
443 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int prio = ffz(~m);
445 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (p->un.inner.feed[prio].rb_node)
448 /* parent already has its feed in use so that
449 reset bit in mask as parent is already ok */
450 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700451
452 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700455 cl = p;
456 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700460 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463/**
464 * htb_deactivate_prios - remove class from feed chain
465 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900466 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * nothing if cl->prio_activity == 0. Class is removed from all feed
468 * chains and rows.
469 */
470static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
471{
472 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700473 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700476 m = mask;
477 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 while (m) {
479 int prio = ffz(~m);
480 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700481
482 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* we are removing child which is pointed to from
484 parent feed - forget the pointer but remember
485 classid */
486 p->un.inner.last_ptr_id[prio] = cl->classid;
487 p->un.inner.ptr[prio] = NULL;
488 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700489
Stephen Hemminger3696f622006-08-10 23:36:01 -0700490 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700491
492 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 mask |= 1 << prio;
494 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700497 cl = p;
498 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700501 if (cl->cmode == HTB_CAN_SEND && mask)
502 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700505#if HTB_HYSTERESIS
506static inline long htb_lowater(const struct htb_class *cl)
507{
508 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
509}
510static inline long htb_hiwater(const struct htb_class *cl)
511{
512 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
513}
514#else
515#define htb_lowater(cl) (0)
516#define htb_hiwater(cl) (0)
517#endif
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/**
520 * htb_class_mode - computes and returns current class mode
521 *
522 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
523 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900524 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900526 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
528 * mode transitions per time unit. The speed gain is about 1/6.
529 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700530static inline enum htb_cmode
531htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Stephen Hemminger87990462006-08-10 23:35:16 -0700533 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Stephen Hemminger87990462006-08-10 23:35:16 -0700535 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
536 *diff = -toks;
537 return HTB_CANT_SEND;
538 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700539
Stephen Hemminger87990462006-08-10 23:35:16 -0700540 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
541 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Stephen Hemminger87990462006-08-10 23:35:16 -0700543 *diff = -toks;
544 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547/**
548 * htb_change_class_mode - changes classe's mode
549 *
550 * This should be the only way how to change classe's mode under normal
551 * cirsumstances. Routine will update feed lists linkage, change mode
552 * and add class to the wait event queue if appropriate. New mode should
553 * be different from old one and cl->pq_key has to be valid if changing
554 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
555 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700556static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700558{
559 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700562 return;
563
564 if (cl->prio_activity) { /* not necessary: speed optimization */
565 if (cl->cmode != HTB_CANT_SEND)
566 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700568 if (new_mode != HTB_CANT_SEND)
569 htb_activate_prios(q, cl);
570 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 cl->cmode = new_mode;
572}
573
574/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900575 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 *
577 * Routine learns (new) priority of leaf and activates feed chain
578 * for the prio. It can be called on already active leaf safely.
579 * It also adds leaf into droplist.
580 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700581static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (!cl->prio_activity) {
586 cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700587 htb_activate_prios(q, cl);
588 list_add_tail(&cl->un.leaf.drop_list,
589 q->drops + cl->un.leaf.aprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591}
592
593/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900594 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 *
596 * Make sure that leaf is active. In the other words it can't be called
597 * with non-active leaf. It also removes class from the drop list.
598 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700599static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 BUG_TRAP(cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700602
Stephen Hemminger87990462006-08-10 23:35:16 -0700603 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 cl->prio_activity = 0;
605 list_del_init(&cl->un.leaf.drop_list);
606}
607
608static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
609{
Stephen Hemminger87990462006-08-10 23:35:16 -0700610 int ret;
611 struct htb_sched *q = qdisc_priv(sch);
612 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Stephen Hemminger87990462006-08-10 23:35:16 -0700614 if (cl == HTB_DIRECT) {
615 /* enqueue to helper queue */
616 if (q->direct_queue.qlen < q->direct_qlen) {
617 __skb_queue_tail(&q->direct_queue, skb);
618 q->direct_pkts++;
619 } else {
620 kfree_skb(skb);
621 sch->qstats.drops++;
622 return NET_XMIT_DROP;
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700625 } else if (!cl) {
626 if (ret == NET_XMIT_BYPASS)
627 sch->qstats.drops++;
628 kfree_skb(skb);
629 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700631 } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) !=
632 NET_XMIT_SUCCESS) {
633 sch->qstats.drops++;
634 cl->qstats.drops++;
635 return NET_XMIT_DROP;
636 } else {
637 cl->bstats.packets++;
638 cl->bstats.bytes += skb->len;
639 htb_activate(q, cl);
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Stephen Hemminger87990462006-08-10 23:35:16 -0700642 sch->q.qlen++;
643 sch->bstats.packets++;
644 sch->bstats.bytes += skb->len;
645 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648/* TODO: requeuing packet charges it to policers again !! */
649static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
650{
Stephen Hemminger87990462006-08-10 23:35:16 -0700651 struct htb_sched *q = qdisc_priv(sch);
652 int ret = NET_XMIT_SUCCESS;
653 struct htb_class *cl = htb_classify(skb, sch, &ret);
654 struct sk_buff *tskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Stephen Hemminger87990462006-08-10 23:35:16 -0700656 if (cl == HTB_DIRECT || !cl) {
657 /* enqueue to helper queue */
658 if (q->direct_queue.qlen < q->direct_qlen && cl) {
659 __skb_queue_head(&q->direct_queue, skb);
660 } else {
661 __skb_queue_head(&q->direct_queue, skb);
662 tskb = __skb_dequeue_tail(&q->direct_queue);
663 kfree_skb(tskb);
664 sch->qstats.drops++;
665 return NET_XMIT_CN;
666 }
667 } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) !=
668 NET_XMIT_SUCCESS) {
669 sch->qstats.drops++;
670 cl->qstats.drops++;
671 return NET_XMIT_DROP;
672 } else
673 htb_activate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Stephen Hemminger87990462006-08-10 23:35:16 -0700675 sch->q.qlen++;
676 sch->qstats.requeues++;
677 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#ifdef HTB_RATECM
681#define RT_GEN(D,R) R+=D-(R/HTB_EWMAC);D=0
682static void htb_rate_timer(unsigned long arg)
683{
Stephen Hemminger87990462006-08-10 23:35:16 -0700684 struct Qdisc *sch = (struct Qdisc *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700686 struct hlist_node *p;
687 struct htb_class *cl;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* lock queue so that we can muck with it */
Stephen Hemminger9ac961e2006-08-10 23:33:16 -0700691 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 q->rttim.expires = jiffies + HZ;
694 add_timer(&q->rttim);
695
696 /* scan and recompute one bucket at time */
Stephen Hemminger87990462006-08-10 23:35:16 -0700697 if (++q->recmp_bucket >= HTB_HSIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 q->recmp_bucket = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700699
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700700 hlist_for_each_entry(cl,p, q->hash + q->recmp_bucket, hlist) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700701 RT_GEN(cl->sum_bytes, cl->rate_bytes);
702 RT_GEN(cl->sum_packets, cl->rate_packets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Stephen Hemminger9ac961e2006-08-10 23:33:16 -0700704 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706#endif
707
708/**
709 * htb_charge_class - charges amount "bytes" to leaf and ancestors
710 *
711 * Routine assumes that packet "bytes" long was dequeued from leaf cl
712 * borrowing from "level". It accounts bytes to ceil leaky bucket for
713 * leaf and all ancestors and to rate bucket for ancestors at levels
714 * "level" and higher. It also handles possible change of mode resulting
715 * from the update. Note that mode can also increase here (MAY_BORROW to
716 * CAN_SEND) because we can use more precise clock that event queue here.
717 * In such case we remove class from event queue first.
718 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700719static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
720 int level, int bytes)
721{
722 long toks, diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 enum htb_cmode old_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725#define HTB_ACCNT(T,B,R) toks = diff + cl->T; \
726 if (toks > cl->B) toks = cl->B; \
727 toks -= L2T(cl, cl->R, bytes); \
728 if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; \
729 cl->T = toks
730
731 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700732 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700734 if (cl->level == level)
735 cl->xstats.lends++;
736 HTB_ACCNT(tokens, buffer, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 } else {
738 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700739 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700741 HTB_ACCNT(ctokens, cbuffer, ceil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Stephen Hemminger87990462006-08-10 23:35:16 -0700744 old_mode = cl->cmode;
745 diff = 0;
746 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (old_mode != cl->cmode) {
748 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700749 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700751 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753#ifdef HTB_RATECM
754 /* update rate counters */
Stephen Hemminger87990462006-08-10 23:35:16 -0700755 cl->sum_bytes += bytes;
756 cl->sum_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757#endif
758
759 /* update byte stats except for leaves which are already updated */
760 if (cl->level) {
761 cl->bstats.bytes += bytes;
762 cl->bstats.packets++;
763 }
764 cl = cl->parent;
765 }
766}
767
768/**
769 * htb_do_events - make mode changes to classes at the level
770 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700771 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700773 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700775static psched_time_t htb_do_events(struct htb_sched *q, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 int i;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 for (i = 0; i < 500; i++) {
780 struct htb_class *cl;
781 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700782 struct rb_node *p = rb_first(&q->wait_pq[level]);
783
Stephen Hemminger87990462006-08-10 23:35:16 -0700784 if (!p)
785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700788 if (cl->pq_key > q->now)
789 return cl->pq_key;
790
Stephen Hemminger3696f622006-08-10 23:36:01 -0700791 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700792 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700793 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700795 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 if (net_ratelimit())
798 printk(KERN_WARNING "htb: too many events !\n");
Patrick McHardyfb983d42007-03-16 01:22:39 -0700799 return q->now + PSCHED_TICKS_PER_SEC / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
803 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700804static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
805 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 struct rb_node *r = NULL;
808 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700809 struct htb_class *cl =
810 rb_entry(n, struct htb_class, node[prio]);
811 if (id == cl->classid)
812 return n;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (id > cl->classid) {
815 n = n->rb_right;
816 } else {
817 r = n;
818 n = n->rb_left;
819 }
820 }
821 return r;
822}
823
824/**
825 * htb_lookup_leaf - returns next leaf class in DRR order
826 *
827 * Find leaf where current feed pointers points to.
828 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700829static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
830 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 int i;
833 struct {
834 struct rb_node *root;
835 struct rb_node **pptr;
836 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700837 } stk[TC_HTB_MAXDEPTH], *sp = stk;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 BUG_TRAP(tree->rb_node);
840 sp->root = tree->rb_node;
841 sp->pptr = pptr;
842 sp->pid = pid;
843
844 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700845 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900846 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700848 *sp->pptr =
849 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700851 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
852 can become out of date quickly */
853 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700855 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 *sp->pptr = (*sp->pptr)->rb_left;
857 if (sp > stk) {
858 sp--;
Stephen Hemminger87990462006-08-10 23:35:16 -0700859 BUG_TRAP(*sp->pptr);
860 if (!*sp->pptr)
861 return NULL;
862 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
864 } else {
865 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700866 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
867 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return cl;
869 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700870 sp->pptr = cl->un.inner.ptr + prio;
871 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873 }
874 BUG_TRAP(0);
875 return NULL;
876}
877
878/* dequeues packet at given priority and level; call only if
879 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700880static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
881 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700884 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700886 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
887 q->ptr[level] + prio,
888 q->last_ptr_id[level] + prio);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 do {
891next:
Stephen Hemminger87990462006-08-10 23:35:16 -0700892 BUG_TRAP(cl);
893 if (!cl)
894 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 /* class can be empty - it is unlikely but can be true if leaf
897 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900898 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 simply deactivate and skip such class */
900 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
901 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700902 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 /* row/level might become empty */
905 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700906 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Stephen Hemminger87990462006-08-10 23:35:16 -0700908 next = htb_lookup_leaf(q->row[level] + prio,
909 prio, q->ptr[level] + prio,
910 q->last_ptr_id[level] + prio);
911
912 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 start = next;
914 cl = next;
915 goto next;
916 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700917
918 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
919 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 break;
921 if (!cl->warned) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700922 printk(KERN_WARNING
923 "htb: class %X isn't work conserving ?!\n",
924 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 cl->warned = 1;
926 }
927 q->nwc_hit++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700928 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
929 ptr[0]) + prio);
930 cl = htb_lookup_leaf(q->row[level] + prio, prio,
931 q->ptr[level] + prio,
932 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 } while (cl != start);
935
936 if (likely(skb != NULL)) {
937 if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700939 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
940 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942 /* this used to be after charge_class but this constelation
943 gives us slightly better performance */
944 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700945 htb_deactivate(q, cl);
946 htb_charge_class(q, cl, level, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948 return skb;
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static struct sk_buff *htb_dequeue(struct Qdisc *sch)
952{
953 struct sk_buff *skb = NULL;
954 struct htb_sched *q = qdisc_priv(sch);
955 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700956 psched_time_t next_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700959 skb = __skb_dequeue(&q->direct_queue);
960 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 sch->flags &= ~TCQ_F_THROTTLED;
962 sch->q.qlen--;
963 return skb;
964 }
965
Stephen Hemminger87990462006-08-10 23:35:16 -0700966 if (!sch->q.qlen)
967 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700968 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Patrick McHardyfb983d42007-03-16 01:22:39 -0700970 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 q->nwc_hit = 0;
972 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
973 /* common case optimization - skip event handler quickly */
974 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700975 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700976
Patrick McHardyfb983d42007-03-16 01:22:39 -0700977 if (q->now >= q->near_ev_cache[level]) {
978 event = htb_do_events(q, level);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700979 if (!event)
980 event = q->now + PSCHED_TICKS_PER_SEC;
981 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700982 } else
983 event = q->near_ev_cache[level];
984
985 if (event && next_event > event)
986 next_event = event;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 m = ~q->row_mask[level];
989 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700990 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700992 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (likely(skb != NULL)) {
994 sch->q.qlen--;
995 sch->flags &= ~TCQ_F_THROTTLED;
996 goto fin;
997 }
998 }
999 }
Patrick McHardyfb983d42007-03-16 01:22:39 -07001000 sch->qstats.overlimits++;
1001 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return skb;
1004}
1005
1006/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -07001007static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct htb_sched *q = qdisc_priv(sch);
1010 int prio;
1011
1012 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
1013 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -07001014 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct htb_class *cl = list_entry(p, struct htb_class,
1016 un.leaf.drop_list);
1017 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001018 if (cl->un.leaf.q->ops->drop &&
1019 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 sch->q.qlen--;
1021 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -07001022 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 return len;
1024 }
1025 }
1026 }
1027 return 0;
1028}
1029
1030/* reset all classes */
1031/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001032static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 struct htb_sched *q = qdisc_priv(sch);
1035 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001038 struct hlist_node *p;
1039 struct htb_class *cl;
1040
1041 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -07001043 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 else {
Stephen Hemminger87990462006-08-10 23:35:16 -07001045 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 qdisc_reset(cl->un.leaf.q);
1047 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
1048 }
1049 cl->prio_activity = 0;
1050 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 }
1053 }
Patrick McHardyfb983d42007-03-16 01:22:39 -07001054 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 __skb_queue_purge(&q->direct_queue);
1056 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001057 memset(q->row, 0, sizeof(q->row));
1058 memset(q->row_mask, 0, sizeof(q->row_mask));
1059 memset(q->wait_pq, 0, sizeof(q->wait_pq));
1060 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001062 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065static int htb_init(struct Qdisc *sch, struct rtattr *opt)
1066{
1067 struct htb_sched *q = qdisc_priv(sch);
1068 struct rtattr *tb[TCA_HTB_INIT];
1069 struct tc_htb_glob *gopt;
1070 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (!opt || rtattr_parse_nested(tb, TCA_HTB_INIT, opt) ||
Stephen Hemminger87990462006-08-10 23:35:16 -07001072 tb[TCA_HTB_INIT - 1] == NULL ||
1073 RTA_PAYLOAD(tb[TCA_HTB_INIT - 1]) < sizeof(*gopt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
1075 return -EINVAL;
1076 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001077 gopt = RTA_DATA(tb[TCA_HTB_INIT - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001079 printk(KERN_ERR
1080 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1081 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -EINVAL;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 INIT_LIST_HEAD(&q->root);
1086 for (i = 0; i < HTB_HSIZE; i++)
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001087 INIT_HLIST_HEAD(q->hash + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001089 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Patrick McHardyfb983d42007-03-16 01:22:39 -07001091 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 skb_queue_head_init(&q->direct_queue);
1093
1094 q->direct_qlen = sch->dev->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001095 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098#ifdef HTB_RATECM
1099 init_timer(&q->rttim);
1100 q->rttim.function = htb_rate_timer;
1101 q->rttim.data = (unsigned long)sch;
1102 q->rttim.expires = jiffies + HZ;
1103 add_timer(&q->rttim);
1104#endif
1105 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1106 q->rate2quantum = 1;
1107 q->defcls = gopt->defcls;
1108
1109 return 0;
1110}
1111
1112static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1113{
1114 struct htb_sched *q = qdisc_priv(sch);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001115 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct rtattr *rta;
1117 struct tc_htb_glob gopt;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001118 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 gopt.direct_pkts = q->direct_pkts;
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 gopt.version = HTB_VER;
1122 gopt.rate2quantum = q->rate2quantum;
1123 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001124 gopt.debug = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001125 rta = (struct rtattr *)b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1127 RTA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001128 rta->rta_len = skb_tail_pointer(skb) - b;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001129 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return skb->len;
1131rtattr_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001132 spin_unlock_bh(&sch->dev->queue_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001133 nlmsg_trim(skb, skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return -1;
1135}
1136
1137static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001138 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Stephen Hemminger87990462006-08-10 23:35:16 -07001140 struct htb_class *cl = (struct htb_class *)arg;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001141 unsigned char *b = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct rtattr *rta;
1143 struct tc_htb_opt opt;
1144
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001145 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 tcm->tcm_parent = cl->parent ? cl->parent->classid : TC_H_ROOT;
1147 tcm->tcm_handle = cl->classid;
1148 if (!cl->level && cl->un.leaf.q)
1149 tcm->tcm_info = cl->un.leaf.q->handle;
1150
Stephen Hemminger87990462006-08-10 23:35:16 -07001151 rta = (struct rtattr *)b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1153
Stephen Hemminger87990462006-08-10 23:35:16 -07001154 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Stephen Hemminger87990462006-08-10 23:35:16 -07001156 opt.rate = cl->rate->rate;
1157 opt.buffer = cl->buffer;
1158 opt.ceil = cl->ceil->rate;
1159 opt.cbuffer = cl->cbuffer;
1160 opt.quantum = cl->un.leaf.quantum;
1161 opt.prio = cl->un.leaf.prio;
1162 opt.level = cl->level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 RTA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001164 rta->rta_len = skb_tail_pointer(skb) - b;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001165 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return skb->len;
1167rtattr_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001168 spin_unlock_bh(&sch->dev->queue_lock);
Arnaldo Carvalho de Melodc5fc572007-03-25 23:06:12 -07001169 nlmsg_trim(skb, b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return -1;
1171}
1172
1173static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001174htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Stephen Hemminger87990462006-08-10 23:35:16 -07001176 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -07001179 cl->rate_est.bps = cl->rate_bytes / (HTB_EWMAC * HTB_HSIZE);
1180 cl->rate_est.pps = cl->rate_packets / (HTB_EWMAC * HTB_HSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181#endif
1182
1183 if (!cl->level && cl->un.leaf.q)
1184 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1185 cl->xstats.tokens = cl->tokens;
1186 cl->xstats.ctokens = cl->ctokens;
1187
1188 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1189 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1190 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1191 return -1;
1192
1193 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1194}
1195
1196static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001197 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Stephen Hemminger87990462006-08-10 23:35:16 -07001199 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001202 if (new == NULL &&
1203 (new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001204 cl->classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001205 == NULL)
1206 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 sch_tree_lock(sch);
1208 if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001209 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 qdisc_reset(*old);
1211 }
1212 sch_tree_unlock(sch);
1213 return 0;
1214 }
1215 return -ENOENT;
1216}
1217
Stephen Hemminger87990462006-08-10 23:35:16 -07001218static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Stephen Hemminger87990462006-08-10 23:35:16 -07001220 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1222}
1223
Patrick McHardy256d61b2006-11-29 17:37:05 -08001224static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1225{
1226 struct htb_class *cl = (struct htb_class *)arg;
1227
1228 if (cl->un.leaf.q->q.qlen == 0)
1229 htb_deactivate(qdisc_priv(sch), cl);
1230}
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1233{
Stephen Hemminger87990462006-08-10 23:35:16 -07001234 struct htb_class *cl = htb_find(classid, sch);
1235 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 cl->refcnt++;
1237 return (unsigned long)cl;
1238}
1239
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001240static inline int htb_parent_last_child(struct htb_class *cl)
1241{
1242 if (!cl->parent)
1243 /* the root class */
1244 return 0;
1245
1246 if (!(cl->parent->children.next == &cl->sibling &&
1247 cl->parent->children.prev == &cl->sibling))
1248 /* not the last child */
1249 return 0;
1250
1251 return 1;
1252}
1253
1254static void htb_parent_to_leaf(struct htb_class *cl, struct Qdisc *new_q)
1255{
1256 struct htb_class *parent = cl->parent;
1257
1258 BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
1259
1260 parent->level = 0;
1261 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1262 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1263 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
1264 parent->un.leaf.quantum = parent->quantum;
1265 parent->un.leaf.prio = parent->prio;
1266 parent->tokens = parent->buffer;
1267 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001268 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001269 parent->cmode = HTB_CAN_SEND;
1270}
1271
Stephen Hemminger87990462006-08-10 23:35:16 -07001272static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (!cl->level) {
1277 BUG_TRAP(cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 qdisc_destroy(cl->un.leaf.q);
1279 }
1280 qdisc_put_rtab(cl->rate);
1281 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001282
Patrick McHardya48b5a62007-03-23 11:29:43 -07001283 tcf_destroy_chain(cl->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001284
1285 while (!list_empty(&cl->children))
1286 htb_destroy_class(sch, list_entry(cl->children.next,
1287 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 /* note: this delete may happen twice (see htb_delete) */
Stephen Hemmingerda33e3e2006-11-07 14:54:46 -08001290 hlist_del_init(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 list_del(&cl->sibling);
Stephen Hemminger87990462006-08-10 23:35:16 -07001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001294 htb_deactivate(q, cl);
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -07001297 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Stephen Hemminger87990462006-08-10 23:35:16 -07001298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 kfree(cl);
1300}
1301
1302/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001303static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct htb_sched *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Patrick McHardyfb983d42007-03-16 01:22:39 -07001307 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -07001309 del_timer_sync(&q->rttim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310#endif
1311 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001312 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 because filter need its target class alive to be able to call
1314 unbind_filter on it (without Oops). */
Patrick McHardya48b5a62007-03-23 11:29:43 -07001315 tcf_destroy_chain(q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001316
1317 while (!list_empty(&q->root))
1318 htb_destroy_class(sch, list_entry(q->root.next,
1319 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 __skb_queue_purge(&q->direct_queue);
1322}
1323
1324static int htb_delete(struct Qdisc *sch, unsigned long arg)
1325{
1326 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001327 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001328 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001329 struct Qdisc *new_q = NULL;
1330 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 // TODO: why don't allow to delete subtree ? references ? does
1333 // tc subsys quarantee us that in htb_destroy it holds no class
1334 // refs so that we can remove children safely there ?
1335 if (!list_empty(&cl->children) || cl->filter_cnt)
1336 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001337
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001338 if (!cl->level && htb_parent_last_child(cl)) {
1339 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
1340 cl->parent->classid);
1341 last_child = 1;
1342 }
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001345
Patrick McHardy814a175e2006-11-29 17:34:50 -08001346 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001347 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001348 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001349 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001350 }
1351
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001352 /* delete from hash and active; remainder in destroy_class */
1353 hlist_del_init(&cl->hlist);
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001356 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001358 if (last_child)
1359 htb_parent_to_leaf(cl, new_q);
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001362 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 sch_tree_unlock(sch);
1365 return 0;
1366}
1367
1368static void htb_put(struct Qdisc *sch, unsigned long arg)
1369{
Stephen Hemminger87990462006-08-10 23:35:16 -07001370 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001373 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Stephen Hemminger87990462006-08-10 23:35:16 -07001376static int htb_change_class(struct Qdisc *sch, u32 classid,
1377 u32 parentid, struct rtattr **tca,
1378 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 int err = -EINVAL;
1381 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001382 struct htb_class *cl = (struct htb_class *)*arg, *parent;
1383 struct rtattr *opt = tca[TCA_OPTIONS - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
1385 struct rtattr *tb[TCA_HTB_RTAB];
1386 struct tc_htb_opt *hopt;
1387
1388 /* extract all subattrs from opt attr */
1389 if (!opt || rtattr_parse_nested(tb, TCA_HTB_RTAB, opt) ||
Stephen Hemminger87990462006-08-10 23:35:16 -07001390 tb[TCA_HTB_PARMS - 1] == NULL ||
1391 RTA_PAYLOAD(tb[TCA_HTB_PARMS - 1]) < sizeof(*hopt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Stephen Hemminger87990462006-08-10 23:35:16 -07001394 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001395
Stephen Hemminger87990462006-08-10 23:35:16 -07001396 hopt = RTA_DATA(tb[TCA_HTB_PARMS - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Stephen Hemminger87990462006-08-10 23:35:16 -07001398 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB - 1]);
1399 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB - 1]);
1400 if (!rtab || !ctab)
1401 goto failure;
1402
1403 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001405 int prio;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001408 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1409 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 goto failure;
1411
1412 /* check maximal depth */
1413 if (parent && parent->parent && parent->parent->level < 2) {
1414 printk(KERN_ERR "htb: tree is too deep\n");
1415 goto failure;
1416 }
1417 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001418 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 cl->refcnt = 1;
1422 INIT_LIST_HEAD(&cl->sibling);
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001423 INIT_HLIST_NODE(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 INIT_LIST_HEAD(&cl->children);
1425 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001426 RB_CLEAR_NODE(&cl->pq_node);
1427
1428 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1429 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1432 so that can't be used inside of sch_tree_lock
1433 -- thanks to Karlis Peisenieks */
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001434 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 sch_tree_lock(sch);
1436 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001437 unsigned int qlen = parent->un.leaf.q->q.qlen;
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001440 qdisc_reset(parent->un.leaf.q);
1441 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001442 qdisc_destroy(parent->un.leaf.q);
1443 if (parent->prio_activity)
1444 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 /* remove from evt list because of level change */
1447 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001448 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 parent->cmode = HTB_CAN_SEND;
1450 }
1451 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001452 : TC_HTB_MAXDEPTH) - 1;
1453 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 }
1455 /* leaf (we) needs elementary qdisc */
1456 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1457
Stephen Hemminger87990462006-08-10 23:35:16 -07001458 cl->classid = classid;
1459 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 /* set class to be in HTB_CAN_SEND state */
1462 cl->tokens = hopt->buffer;
1463 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001464 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001465 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 cl->cmode = HTB_CAN_SEND;
1467
1468 /* attach to the hash list and parent's family */
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001469 hlist_add_head(&cl->hlist, q->hash + htb_hash(classid));
Stephen Hemminger87990462006-08-10 23:35:16 -07001470 list_add_tail(&cl->sibling,
1471 parent ? &parent->children : &q->root);
1472 } else
1473 sch_tree_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001476 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (!cl->level) {
1478 cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
1479 if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001480 printk(KERN_WARNING
1481 "HTB: quantum of class %X is small. Consider r2q change.\n",
1482 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 cl->un.leaf.quantum = 1000;
1484 }
1485 if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001486 printk(KERN_WARNING
1487 "HTB: quantum of class %X is big. Consider r2q change.\n",
1488 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 cl->un.leaf.quantum = 200000;
1490 }
1491 if (hopt->quantum)
1492 cl->un.leaf.quantum = hopt->quantum;
1493 if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
1494 cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001495
1496 /* backup for htb_parent_to_leaf */
1497 cl->quantum = cl->un.leaf.quantum;
1498 cl->prio = cl->un.leaf.prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500
1501 cl->buffer = hopt->buffer;
1502 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001503 if (cl->rate)
1504 qdisc_put_rtab(cl->rate);
1505 cl->rate = rtab;
1506 if (cl->ceil)
1507 qdisc_put_rtab(cl->ceil);
1508 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 sch_tree_unlock(sch);
1510
1511 *arg = (unsigned long)cl;
1512 return 0;
1513
1514failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001515 if (rtab)
1516 qdisc_put_rtab(rtab);
1517 if (ctab)
1518 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return err;
1520}
1521
1522static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1523{
1524 struct htb_sched *q = qdisc_priv(sch);
1525 struct htb_class *cl = (struct htb_class *)arg;
1526 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return fl;
1529}
1530
1531static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001532 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001535 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001538 The line above used to be there to prevent attaching filters to
1539 leaves. But at least tc_index filter uses this just to get class
1540 for other reasons so that we have to allow for it.
1541 ----
1542 19.6.2002 As Werner explained it is ok - bind filter is just
1543 another way to "lock" the class - unlike "get" this lock can
1544 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001546 if (cl)
1547 cl->filter_cnt++;
1548 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 q->filter_cnt++;
1550 return (unsigned long)cl;
1551}
1552
1553static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1554{
1555 struct htb_sched *q = qdisc_priv(sch);
1556 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001557
Stephen Hemminger87990462006-08-10 23:35:16 -07001558 if (cl)
1559 cl->filter_cnt--;
1560 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 q->filter_cnt--;
1562}
1563
1564static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1565{
1566 struct htb_sched *q = qdisc_priv(sch);
1567 int i;
1568
1569 if (arg->stop)
1570 return;
1571
1572 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001573 struct hlist_node *p;
1574 struct htb_class *cl;
1575
1576 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (arg->count < arg->skip) {
1578 arg->count++;
1579 continue;
1580 }
1581 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1582 arg->stop = 1;
1583 return;
1584 }
1585 arg->count++;
1586 }
1587 }
1588}
1589
1590static struct Qdisc_class_ops htb_class_ops = {
1591 .graft = htb_graft,
1592 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001593 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 .get = htb_get,
1595 .put = htb_put,
1596 .change = htb_change_class,
1597 .delete = htb_delete,
1598 .walk = htb_walk,
1599 .tcf_chain = htb_find_tcf,
1600 .bind_tcf = htb_bind_filter,
1601 .unbind_tcf = htb_unbind_filter,
1602 .dump = htb_dump_class,
1603 .dump_stats = htb_dump_class_stats,
1604};
1605
1606static struct Qdisc_ops htb_qdisc_ops = {
1607 .next = NULL,
1608 .cl_ops = &htb_class_ops,
1609 .id = "htb",
1610 .priv_size = sizeof(struct htb_sched),
1611 .enqueue = htb_enqueue,
1612 .dequeue = htb_dequeue,
1613 .requeue = htb_requeue,
1614 .drop = htb_drop,
1615 .init = htb_init,
1616 .reset = htb_reset,
1617 .destroy = htb_destroy,
1618 .change = NULL /* htb_change */,
1619 .dump = htb_dump,
1620 .owner = THIS_MODULE,
1621};
1622
1623static int __init htb_module_init(void)
1624{
Stephen Hemminger87990462006-08-10 23:35:16 -07001625 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
Stephen Hemminger87990462006-08-10 23:35:16 -07001627static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Stephen Hemminger87990462006-08-10 23:35:16 -07001629 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
Stephen Hemminger87990462006-08-10 23:35:16 -07001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632module_init(htb_module_init)
1633module_exit(htb_module_exit)
1634MODULE_LICENSE("GPL");