blob: 5070643ce534b468a85b3df2f1666d0ae35b08ad [file] [log] [blame]
Stephen Hemminger87990462006-08-10 23:35:16 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Martin Devera, <devik@cdi.cz>
10 *
11 * Credits (in time order) for older HTB versions:
12 * Stef Coene <stef.coene@docum.org>
13 * HTB support at LARTC mailing list
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090014 * Ondrej Kraus, <krauso@barr.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * found missing INIT_QDISC(htb)
16 * Vladimir Smelhaus, Aamer Akhter, Bert Hubert
17 * helped a lot to locate nasty class stall bug
18 * Andi Kleen, Jamal Hadi, Bert Hubert
19 * code review and helpful comments on shaping
20 * Tomasz Wrona, <tw@eter.tym.pl>
21 * created test case so that I was able to fix nasty bug
22 * Wilfried Weissmann
23 * spotted bug in dequeue code and helped with fix
24 * Jiri Fojtasek
25 * fixed requeue routine
26 * and many others. thanks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070029#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/types.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/skbuff.h>
35#include <linux/list.h>
36#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/rbtree.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070038#include <net/netlink.h>
39#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* HTB algorithm.
42 Author: devik@cdi.cz
43 ========================================================================
44 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090045 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 In fact it is another implementation of Floyd's formal sharing.
47
48 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090049 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
51 one less than their parent.
52*/
53
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070054static int htb_hysteresis __read_mostly = 0; /* whether to use mode hysteresis for speedup */
Stephen Hemminger87990462006-08-10 23:35:16 -070055#define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#if HTB_VER >> 16 != TC_HTB_PROTOVER
58#error "Mismatched sch_htb.c and pkt_sch.h"
59#endif
60
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070061/* Module parameter and sysfs export */
62module_param (htb_hysteresis, int, 0640);
63MODULE_PARM_DESC(htb_hysteresis, "Hysteresis mode, less CPU load, less accurate");
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* used internaly to keep status of single class */
66enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070067 HTB_CANT_SEND, /* class can't send and can't borrow */
68 HTB_MAY_BORROW, /* class can't send but may borrow */
69 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070};
71
72/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070073struct htb_class {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -070074 struct Qdisc_class_common common;
Stephen Hemminger87990462006-08-10 23:35:16 -070075 /* general class parameters */
Stephen Hemminger87990462006-08-10 23:35:16 -070076 struct gnet_stats_basic bstats;
77 struct gnet_stats_queue qstats;
78 struct gnet_stats_rate_est rate_est;
79 struct tc_htb_xstats xstats; /* our special stats */
80 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Stephen Hemminger87990462006-08-10 23:35:16 -070082 /* topology */
83 int level; /* our level (see above) */
Patrick McHardy42077592008-07-05 23:22:53 -070084 unsigned int children;
Stephen Hemminger87990462006-08-10 23:35:16 -070085 struct htb_class *parent; /* parent class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jarek Poplawskic19f7a32008-12-03 21:09:45 -080087 int prio; /* these two are used only by leaves... */
88 int quantum; /* but stored for parent-to-leaf return */
89
Stephen Hemminger87990462006-08-10 23:35:16 -070090 union {
91 struct htb_class_leaf {
92 struct Qdisc *q;
Stephen Hemminger87990462006-08-10 23:35:16 -070093 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Stephen Hemminger87990462006-08-10 23:35:16 -0700128struct htb_sched {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700129 struct Qdisc_class_hash clhash;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700130 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Stephen Hemminger87990462006-08-10 23:35:16 -0700132 /* self list - roots of self generating tree */
133 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
134 int row_mask[TC_HTB_MAXDEPTH];
135 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
136 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Stephen Hemminger87990462006-08-10 23:35:16 -0700138 /* self wait list - roots of wait PQs per row */
139 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Stephen Hemminger87990462006-08-10 23:35:16 -0700141 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700142 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger87990462006-08-10 23:35:16 -0700144 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Stephen Hemminger87990462006-08-10 23:35:16 -0700146 /* filters for qdisc itself */
147 struct tcf_proto *filter_list;
Stephen Hemminger87990462006-08-10 23:35:16 -0700148
149 int rate2quantum; /* quant = rate / rate2quantum */
150 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700151 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Stephen Hemminger87990462006-08-10 23:35:16 -0700153 /* non shaped skbs; let them go directly thru */
154 struct sk_buff_head direct_queue;
155 int direct_qlen; /* max qlen of above */
156
157 long direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158};
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700161static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700164 struct Qdisc_class_common *clc;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700165
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700166 clc = qdisc_class_find(&q->clhash, handle);
167 if (clc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return NULL;
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700169 return container_of(clc, struct htb_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
173 * htb_classify - classify a packet into class
174 *
175 * It returns NULL if the packet should be dropped or -1 if the packet
176 * should be passed directly thru. In all other cases leaf class is returned.
177 * We allow direct class selection by classid in priority. The we examine
178 * filters in qdisc and in inner nodes (if higher filter points to the inner
179 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900180 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
182 * then finish and return direct queue.
183 */
184#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Stephen Hemminger87990462006-08-10 23:35:16 -0700186static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
187 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct htb_sched *q = qdisc_priv(sch);
190 struct htb_class *cl;
191 struct tcf_result res;
192 struct tcf_proto *tcf;
193 int result;
194
195 /* allow to select class by setting skb->priority to valid classid;
196 note that nfmark can be used too by attaching filter fw with no
197 rules in it */
198 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700199 return HTB_DIRECT; /* X:0 (direct flow) selected */
200 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return cl;
202
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700203 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 tcf = q->filter_list;
205 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
206#ifdef CONFIG_NET_CLS_ACT
207 switch (result) {
208 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700209 case TC_ACT_STOLEN:
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700210 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 case TC_ACT_SHOT:
212 return NULL;
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700215 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700217 return HTB_DIRECT; /* X:0 (direct flow) */
218 if ((cl = htb_find(res.classid, sch)) == NULL)
219 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700222 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* we have got inner class; apply inner filter chain */
225 tcf = cl->filter_list;
226 }
227 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700228 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700230 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return cl;
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/**
235 * htb_add_to_id_tree - adds class to the round robin list
236 *
237 * Routine adds class to the list (actually tree) sorted by classid.
238 * Make sure that class is not already on such list for given prio.
239 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700240static void htb_add_to_id_tree(struct rb_root *root,
241 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700246 struct htb_class *c;
247 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700249
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700250 if (cl->common.classid > c->common.classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700252 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 p = &parent->rb_left;
254 }
255 rb_link_node(&cl->node[prio], parent, p);
256 rb_insert_color(&cl->node[prio], root);
257}
258
259/**
260 * htb_add_to_wait_tree - adds class to the event queue with delay
261 *
262 * The class is added to priority event queue to indicate that class will
263 * change its mode in cl->pq_key microseconds. Make sure that class is not
264 * already in the queue.
265 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700266static void htb_add_to_wait_tree(struct htb_sched *q,
267 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700270
Patrick McHardyfb983d42007-03-16 01:22:39 -0700271 cl->pq_key = q->now + delay;
272 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 cl->pq_key++;
274
275 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700276 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700280 struct htb_class *c;
281 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700283 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700285 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 p = &parent->rb_left;
287 }
288 rb_link_node(&cl->pq_node, parent, p);
289 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
290}
291
292/**
293 * htb_next_rb_node - finds next node in binary tree
294 *
295 * When we are past last key we return NULL.
296 * Average complexity is 2 steps per call.
297 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700298static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 *n = rb_next(*n);
301}
302
303/**
304 * htb_add_class_to_row - add class to its row
305 *
306 * The class is added to row at priorities marked in mask.
307 * It does nothing if mask == 0.
308 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700309static inline void htb_add_class_to_row(struct htb_sched *q,
310 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 q->row_mask[cl->level] |= mask;
313 while (mask) {
314 int prio = ffz(~mask);
315 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700316 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318}
319
Stephen Hemminger3696f622006-08-10 23:36:01 -0700320/* If this triggers, it is a bug in this code, but it need not be fatal */
321static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
322{
Ismail Donmez81771b32006-10-03 13:49:10 -0700323 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700324 WARN_ON(1);
325 } else {
326 rb_erase(rb, root);
327 RB_CLEAR_NODE(rb);
328 }
329}
330
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/**
333 * htb_remove_class_from_row - removes class from its row
334 *
335 * The class is removed from row at priorities marked in mask.
336 * It does nothing if mask == 0.
337 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700338static inline void htb_remove_class_from_row(struct htb_sched *q,
339 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 while (mask) {
344 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700347 if (q->ptr[cl->level][prio] == cl->node + prio)
348 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700349
350 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700351 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 m |= 1 << prio;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 q->row_mask[cl->level] &= ~m;
355}
356
357/**
358 * htb_activate_prios - creates active classe's feed chain
359 *
360 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900361 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * (activated) mode. It does nothing if cl->prio_activity == 0.
363 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700364static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700367 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700370 m = mask;
371 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 int prio = ffz(~m);
373 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (p->un.inner.feed[prio].rb_node)
376 /* parent already has its feed in use so that
377 reset bit in mask as parent is already ok */
378 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700379
380 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700383 cl = p;
384 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700388 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/**
392 * htb_deactivate_prios - remove class from feed chain
393 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900394 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * nothing if cl->prio_activity == 0. Class is removed from all feed
396 * chains and rows.
397 */
398static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
399{
400 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700401 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700404 m = mask;
405 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 while (m) {
407 int prio = ffz(~m);
408 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700409
410 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* we are removing child which is pointed to from
412 parent feed - forget the pointer but remember
413 classid */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700414 p->un.inner.last_ptr_id[prio] = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 p->un.inner.ptr[prio] = NULL;
416 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700417
Stephen Hemminger3696f622006-08-10 23:36:01 -0700418 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700419
420 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 mask |= 1 << prio;
422 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700425 cl = p;
426 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700429 if (cl->cmode == HTB_CAN_SEND && mask)
430 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700433static inline long htb_lowater(const struct htb_class *cl)
434{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700435 if (htb_hysteresis)
436 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
437 else
438 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700439}
440static inline long htb_hiwater(const struct htb_class *cl)
441{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700442 if (htb_hysteresis)
443 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
444 else
445 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700446}
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700447
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/**
450 * htb_class_mode - computes and returns current class mode
451 *
452 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
453 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900454 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900456 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
458 * mode transitions per time unit. The speed gain is about 1/6.
459 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700460static inline enum htb_cmode
461htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Stephen Hemminger87990462006-08-10 23:35:16 -0700463 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Stephen Hemminger87990462006-08-10 23:35:16 -0700465 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
466 *diff = -toks;
467 return HTB_CANT_SEND;
468 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700469
Stephen Hemminger87990462006-08-10 23:35:16 -0700470 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
471 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Stephen Hemminger87990462006-08-10 23:35:16 -0700473 *diff = -toks;
474 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477/**
478 * htb_change_class_mode - changes classe's mode
479 *
480 * This should be the only way how to change classe's mode under normal
481 * cirsumstances. Routine will update feed lists linkage, change mode
482 * and add class to the wait event queue if appropriate. New mode should
483 * be different from old one and cl->pq_key has to be valid if changing
484 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
485 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700486static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700488{
489 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700492 return;
493
494 if (cl->prio_activity) { /* not necessary: speed optimization */
495 if (cl->cmode != HTB_CANT_SEND)
496 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700498 if (new_mode != HTB_CANT_SEND)
499 htb_activate_prios(q, cl);
500 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 cl->cmode = new_mode;
502}
503
504/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900505 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 *
507 * Routine learns (new) priority of leaf and activates feed chain
508 * for the prio. It can be called on already active leaf safely.
509 * It also adds leaf into droplist.
510 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700511static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700513 WARN_ON(cl->level || !cl->un.leaf.q || !cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (!cl->prio_activity) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800516 cl->prio_activity = 1 << cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700517 htb_activate_prios(q, cl);
518 list_add_tail(&cl->un.leaf.drop_list,
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800519 q->drops + cl->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521}
522
523/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900524 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 *
526 * Make sure that leaf is active. In the other words it can't be called
527 * with non-active leaf. It also removes class from the drop list.
528 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700529static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700531 WARN_ON(!cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700532
Stephen Hemminger87990462006-08-10 23:35:16 -0700533 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 cl->prio_activity = 0;
535 list_del_init(&cl->un.leaf.drop_list);
536}
537
538static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
539{
Jarek Poplawskif30ab412008-11-13 22:56:30 -0800540 int uninitialized_var(ret);
Stephen Hemminger87990462006-08-10 23:35:16 -0700541 struct htb_sched *q = qdisc_priv(sch);
542 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Stephen Hemminger87990462006-08-10 23:35:16 -0700544 if (cl == HTB_DIRECT) {
545 /* enqueue to helper queue */
546 if (q->direct_queue.qlen < q->direct_qlen) {
547 __skb_queue_tail(&q->direct_queue, skb);
548 q->direct_pkts++;
549 } else {
550 kfree_skb(skb);
551 sch->qstats.drops++;
552 return NET_XMIT_DROP;
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700555 } else if (!cl) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700556 if (ret & __NET_XMIT_BYPASS)
Stephen Hemminger87990462006-08-10 23:35:16 -0700557 sch->qstats.drops++;
558 kfree_skb(skb);
559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#endif
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700561 } else if ((ret = qdisc_enqueue(skb, cl->un.leaf.q)) != NET_XMIT_SUCCESS) {
562 if (net_xmit_drop_count(ret)) {
563 sch->qstats.drops++;
564 cl->qstats.drops++;
565 }
David S. Miller69747652008-08-17 23:55:36 -0700566 return ret;
Stephen Hemminger87990462006-08-10 23:35:16 -0700567 } else {
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700568 cl->bstats.packets +=
569 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700570 cl->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700571 htb_activate(q, cl);
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Stephen Hemminger87990462006-08-10 23:35:16 -0700574 sch->q.qlen++;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700575 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700576 sch->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700577 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Jarek Poplawski59e42202008-12-03 21:17:27 -0800580static inline void htb_accnt_tokens(struct htb_class *cl, int bytes, long diff)
581{
582 long toks = diff + cl->tokens;
583
584 if (toks > cl->buffer)
585 toks = cl->buffer;
586 toks -= (long) qdisc_l2t(cl->rate, bytes);
587 if (toks <= -cl->mbuffer)
588 toks = 1 - cl->mbuffer;
589
590 cl->tokens = toks;
591}
592
593static inline void htb_accnt_ctokens(struct htb_class *cl, int bytes, long diff)
594{
595 long toks = diff + cl->ctokens;
596
597 if (toks > cl->cbuffer)
598 toks = cl->cbuffer;
599 toks -= (long) qdisc_l2t(cl->ceil, bytes);
600 if (toks <= -cl->mbuffer)
601 toks = 1 - cl->mbuffer;
602
603 cl->ctokens = toks;
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606/**
607 * htb_charge_class - charges amount "bytes" to leaf and ancestors
608 *
609 * Routine assumes that packet "bytes" long was dequeued from leaf cl
610 * borrowing from "level". It accounts bytes to ceil leaky bucket for
611 * leaf and all ancestors and to rate bucket for ancestors at levels
612 * "level" and higher. It also handles possible change of mode resulting
613 * from the update. Note that mode can also increase here (MAY_BORROW to
614 * CAN_SEND) because we can use more precise clock that event queue here.
615 * In such case we remove class from event queue first.
616 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700617static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700618 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700619{
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700620 int bytes = qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 enum htb_cmode old_mode;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800622 long diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700625 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700627 if (cl->level == level)
628 cl->xstats.lends++;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800629 htb_accnt_tokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 } else {
631 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700632 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Jarek Poplawski59e42202008-12-03 21:17:27 -0800634 htb_accnt_ctokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Stephen Hemminger87990462006-08-10 23:35:16 -0700637 old_mode = cl->cmode;
638 diff = 0;
639 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (old_mode != cl->cmode) {
641 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700642 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700644 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* update byte stats except for leaves which are already updated */
648 if (cl->level) {
649 cl->bstats.bytes += bytes;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700650 cl->bstats.packets += skb_is_gso(skb)?
651 skb_shinfo(skb)->gso_segs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 cl = cl->parent;
654 }
655}
656
657/**
658 * htb_do_events - make mode changes to classes at the level
659 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700660 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700662 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700664static psched_time_t htb_do_events(struct htb_sched *q, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Martin Devera8f3ea332008-03-23 22:00:38 -0700666 /* don't run for longer than 2 jiffies; 2 is used instead of
667 1 to simplify things when jiffy is going to be incremented
668 too soon */
669 unsigned long stop_at = jiffies + 2;
670 while (time_before(jiffies, stop_at)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct htb_class *cl;
672 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700673 struct rb_node *p = rb_first(&q->wait_pq[level]);
674
Stephen Hemminger87990462006-08-10 23:35:16 -0700675 if (!p)
676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700679 if (cl->pq_key > q->now)
680 return cl->pq_key;
681
Stephen Hemminger3696f622006-08-10 23:36:01 -0700682 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700683 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700684 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700686 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Martin Devera8f3ea332008-03-23 22:00:38 -0700688 /* too much load - let's continue on next jiffie */
689 return q->now + PSCHED_TICKS_PER_SEC / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
693 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700694static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
695 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct rb_node *r = NULL;
698 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700699 struct htb_class *cl =
700 rb_entry(n, struct htb_class, node[prio]);
Stephen Hemminger87990462006-08-10 23:35:16 -0700701
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700702 if (id > cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 n = n->rb_right;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800704 } else if (id < cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 r = n;
706 n = n->rb_left;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800707 } else {
708 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710 }
711 return r;
712}
713
714/**
715 * htb_lookup_leaf - returns next leaf class in DRR order
716 *
717 * Find leaf where current feed pointers points to.
718 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700719static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
720 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int i;
723 struct {
724 struct rb_node *root;
725 struct rb_node **pptr;
726 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700727 } stk[TC_HTB_MAXDEPTH], *sp = stk;
728
Jarek Poplawski512bb432008-12-09 22:35:02 -0800729 BUG_ON(!tree->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 sp->root = tree->rb_node;
731 sp->pptr = pptr;
732 sp->pid = pid;
733
734 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700735 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900736 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700738 *sp->pptr =
739 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700741 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
742 can become out of date quickly */
743 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700745 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 *sp->pptr = (*sp->pptr)->rb_left;
747 if (sp > stk) {
748 sp--;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800749 if (!*sp->pptr) {
750 WARN_ON(1);
Stephen Hemminger87990462006-08-10 23:35:16 -0700751 return NULL;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800752 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700753 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 } else {
756 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700757 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
758 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return cl;
760 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700761 sp->pptr = cl->un.inner.ptr + prio;
762 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700765 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return NULL;
767}
768
769/* dequeues packet at given priority and level; call only if
770 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700771static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
772 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700775 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700777 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
778 q->ptr[level] + prio,
779 q->last_ptr_id[level] + prio);
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 do {
782next:
Jarek Poplawski512bb432008-12-09 22:35:02 -0800783 if (unlikely(!cl))
Stephen Hemminger87990462006-08-10 23:35:16 -0700784 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /* class can be empty - it is unlikely but can be true if leaf
787 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900788 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 simply deactivate and skip such class */
790 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
791 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700792 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /* row/level might become empty */
795 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700796 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Stephen Hemminger87990462006-08-10 23:35:16 -0700798 next = htb_lookup_leaf(q->row[level] + prio,
799 prio, q->ptr[level] + prio,
800 q->last_ptr_id[level] + prio);
801
802 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 start = next;
804 cl = next;
805 goto next;
806 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700807
808 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
809 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 break;
811 if (!cl->warned) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700812 printk(KERN_WARNING
813 "htb: class %X isn't work conserving ?!\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700814 cl->common.classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 cl->warned = 1;
816 }
Jarek Poplawski633fe662008-12-03 21:09:10 -0800817
Stephen Hemminger87990462006-08-10 23:35:16 -0700818 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
819 ptr[0]) + prio);
820 cl = htb_lookup_leaf(q->row[level] + prio, prio,
821 q->ptr[level] + prio,
822 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 } while (cl != start);
825
826 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700827 cl->un.leaf.deficit[level] -= qdisc_pkt_len(skb);
828 if (cl->un.leaf.deficit[level] < 0) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800829 cl->un.leaf.deficit[level] += cl->quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700830 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
831 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833 /* this used to be after charge_class but this constelation
834 gives us slightly better performance */
835 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700836 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700837 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 return skb;
840}
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842static struct sk_buff *htb_dequeue(struct Qdisc *sch)
843{
844 struct sk_buff *skb = NULL;
845 struct htb_sched *q = qdisc_priv(sch);
846 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700847 psched_time_t next_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700850 skb = __skb_dequeue(&q->direct_queue);
851 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 sch->flags &= ~TCQ_F_THROTTLED;
853 sch->q.qlen--;
854 return skb;
855 }
856
Stephen Hemminger87990462006-08-10 23:35:16 -0700857 if (!sch->q.qlen)
858 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700859 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Patrick McHardyfb983d42007-03-16 01:22:39 -0700861 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
864 /* common case optimization - skip event handler quickly */
865 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700866 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700867
Patrick McHardyfb983d42007-03-16 01:22:39 -0700868 if (q->now >= q->near_ev_cache[level]) {
869 event = htb_do_events(q, level);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700870 if (!event)
871 event = q->now + PSCHED_TICKS_PER_SEC;
872 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700873 } else
874 event = q->near_ev_cache[level];
875
876 if (event && next_event > event)
877 next_event = event;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 m = ~q->row_mask[level];
880 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700881 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700883 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (likely(skb != NULL)) {
885 sch->q.qlen--;
886 sch->flags &= ~TCQ_F_THROTTLED;
887 goto fin;
888 }
889 }
890 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700891 sch->qstats.overlimits++;
892 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return skb;
895}
896
897/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700898static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 struct htb_sched *q = qdisc_priv(sch);
901 int prio;
902
903 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
904 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700905 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 struct htb_class *cl = list_entry(p, struct htb_class,
907 un.leaf.drop_list);
908 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700909 if (cl->un.leaf.q->ops->drop &&
910 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 sch->q.qlen--;
912 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700913 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return len;
915 }
916 }
917 }
918 return 0;
919}
920
921/* reset all classes */
922/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700923static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
925 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700926 struct htb_class *cl;
927 struct hlist_node *n;
928 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700930 for (i = 0; i < q->clhash.hashsize; i++) {
931 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700933 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700935 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 qdisc_reset(cl->un.leaf.q);
937 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
938 }
939 cl->prio_activity = 0;
940 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 }
943 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700944 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 __skb_queue_purge(&q->direct_queue);
946 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700947 memset(q->row, 0, sizeof(q->row));
948 memset(q->row_mask, 0, sizeof(q->row_mask));
949 memset(q->wait_pq, 0, sizeof(q->wait_pq));
950 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700952 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Patrick McHardy27a34212008-01-23 20:35:39 -0800955static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
956 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
957 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
958 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
959 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
960};
961
Patrick McHardy1e904742008-01-22 22:11:17 -0800962static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800965 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -0800967 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int i;
Patrick McHardycee63722008-01-23 20:33:32 -0800969
970 if (!opt)
971 return -EINVAL;
972
Patrick McHardy27a34212008-01-23 20:35:39 -0800973 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800974 if (err < 0)
975 return err;
976
Patrick McHardy27a34212008-01-23 20:35:39 -0800977 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
979 return -EINVAL;
980 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800981 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700983 printk(KERN_ERR
984 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
985 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return -EINVAL;
987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700989 err = qdisc_class_hash_init(&q->clhash);
990 if (err < 0)
991 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700993 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Patrick McHardyfb983d42007-03-16 01:22:39 -0700995 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 skb_queue_head_init(&q->direct_queue);
997
David S. Miller5ce2d482008-07-08 17:06:30 -0700998 q->direct_qlen = qdisc_dev(sch)->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700999 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1003 q->rate2quantum = 1;
1004 q->defcls = gopt->defcls;
1005
1006 return 0;
1007}
1008
1009static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1010{
Jarek Poplawski102396a2008-08-29 14:21:52 -07001011 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001013 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
David S. Miller7698b4f2008-07-16 01:42:40 -07001016 spin_lock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001017
1018 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 gopt.version = HTB_VER;
1020 gopt.rate2quantum = q->rate2quantum;
1021 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001022 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001023
1024 nest = nla_nest_start(skb, TCA_OPTIONS);
1025 if (nest == NULL)
1026 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001027 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001028 nla_nest_end(skb, nest);
1029
David S. Miller7698b4f2008-07-16 01:42:40 -07001030 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001032
Patrick McHardy1e904742008-01-22 22:11:17 -08001033nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001034 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001035 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return -1;
1037}
1038
1039static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001040 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Stephen Hemminger87990462006-08-10 23:35:16 -07001042 struct htb_class *cl = (struct htb_class *)arg;
Jarek Poplawski102396a2008-08-29 14:21:52 -07001043 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001044 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct tc_htb_opt opt;
1046
David S. Miller7698b4f2008-07-16 01:42:40 -07001047 spin_lock_bh(root_lock);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001048 tcm->tcm_parent = cl->parent ? cl->parent->common.classid : TC_H_ROOT;
1049 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (!cl->level && cl->un.leaf.q)
1051 tcm->tcm_info = cl->un.leaf.q->handle;
1052
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001053 nest = nla_nest_start(skb, TCA_OPTIONS);
1054 if (nest == NULL)
1055 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Stephen Hemminger87990462006-08-10 23:35:16 -07001057 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Stephen Hemminger87990462006-08-10 23:35:16 -07001059 opt.rate = cl->rate->rate;
1060 opt.buffer = cl->buffer;
1061 opt.ceil = cl->ceil->rate;
1062 opt.cbuffer = cl->cbuffer;
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001063 opt.quantum = cl->quantum;
1064 opt.prio = cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -07001065 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001066 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001067
1068 nla_nest_end(skb, nest);
David S. Miller7698b4f2008-07-16 01:42:40 -07001069 spin_unlock_bh(root_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:
David S. Miller7698b4f2008-07-16 01:42:40 -07001073 spin_unlock_bh(root_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
Stephen Hemminger87990462006-08-10 23:35:16 -07001079htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
Stephen Hemminger87990462006-08-10 23:35:16 -07001081 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (!cl->level && cl->un.leaf.q)
1084 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1085 cl->xstats.tokens = cl->tokens;
1086 cl->xstats.ctokens = cl->ctokens;
1087
1088 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1089 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1090 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1091 return -1;
1092
1093 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1094}
1095
1096static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001097 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Stephen Hemminger87990462006-08-10 23:35:16 -07001099 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001102 if (new == NULL &&
David S. Miller5ce2d482008-07-08 17:06:30 -07001103 (new = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001104 &pfifo_qdisc_ops,
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001105 cl->common.classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001106 == NULL)
1107 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 sch_tree_lock(sch);
Patrick McHardyb94c8af2008-11-20 04:11:36 -08001109 *old = cl->un.leaf.q;
1110 cl->un.leaf.q = new;
1111 if (*old != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001112 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 qdisc_reset(*old);
1114 }
1115 sch_tree_unlock(sch);
1116 return 0;
1117 }
1118 return -ENOENT;
1119}
1120
Stephen Hemminger87990462006-08-10 23:35:16 -07001121static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Stephen Hemminger87990462006-08-10 23:35:16 -07001123 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1125}
1126
Patrick McHardy256d61b2006-11-29 17:37:05 -08001127static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1128{
1129 struct htb_class *cl = (struct htb_class *)arg;
1130
1131 if (cl->un.leaf.q->q.qlen == 0)
1132 htb_deactivate(qdisc_priv(sch), cl);
1133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1136{
Stephen Hemminger87990462006-08-10 23:35:16 -07001137 struct htb_class *cl = htb_find(classid, sch);
1138 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 cl->refcnt++;
1140 return (unsigned long)cl;
1141}
1142
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001143static inline int htb_parent_last_child(struct htb_class *cl)
1144{
1145 if (!cl->parent)
1146 /* the root class */
1147 return 0;
Patrick McHardy42077592008-07-05 23:22:53 -07001148 if (cl->parent->children > 1)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001149 /* not the last child */
1150 return 0;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001151 return 1;
1152}
1153
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001154static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl,
1155 struct Qdisc *new_q)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001156{
1157 struct htb_class *parent = cl->parent;
1158
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001159 WARN_ON(cl->level || !cl->un.leaf.q || cl->prio_activity);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001160
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001161 if (parent->cmode != HTB_CAN_SEND)
1162 htb_safe_rb_erase(&parent->pq_node, q->wait_pq + parent->level);
1163
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001164 parent->level = 0;
1165 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1166 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1167 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001168 parent->tokens = parent->buffer;
1169 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001170 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001171 parent->cmode = HTB_CAN_SEND;
1172}
1173
Stephen Hemminger87990462006-08-10 23:35:16 -07001174static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!cl->level) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001177 WARN_ON(!cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 qdisc_destroy(cl->un.leaf.q);
1179 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001180 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 qdisc_put_rtab(cl->rate);
1182 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001183
Patrick McHardyff31ab52008-07-01 19:52:38 -07001184 tcf_destroy_chain(&cl->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 kfree(cl);
1186}
1187
1188/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001189static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001192 struct hlist_node *n, *next;
1193 struct htb_class *cl;
1194 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Patrick McHardyfb983d42007-03-16 01:22:39 -07001196 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001198 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 because filter need its target class alive to be able to call
1200 unbind_filter on it (without Oops). */
Patrick McHardyff31ab52008-07-01 19:52:38 -07001201 tcf_destroy_chain(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001202
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001203 for (i = 0; i < q->clhash.hashsize; i++) {
1204 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001205 tcf_destroy_chain(&cl->filter_list);
1206 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001207 for (i = 0; i < q->clhash.hashsize; i++) {
1208 hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
1209 common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001210 htb_destroy_class(sch, cl);
1211 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001212 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 __skb_queue_purge(&q->direct_queue);
1214}
1215
1216static int htb_delete(struct Qdisc *sch, unsigned long arg)
1217{
1218 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001219 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001220 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001221 struct Qdisc *new_q = NULL;
1222 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 // TODO: why don't allow to delete subtree ? references ? does
1225 // tc subsys quarantee us that in htb_destroy it holds no class
1226 // refs so that we can remove children safely there ?
Patrick McHardy42077592008-07-05 23:22:53 -07001227 if (cl->children || cl->filter_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001229
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001230 if (!cl->level && htb_parent_last_child(cl)) {
David S. Miller5ce2d482008-07-08 17:06:30 -07001231 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001232 &pfifo_qdisc_ops,
1233 cl->parent->common.classid);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001234 last_child = 1;
1235 }
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001238
Patrick McHardy814a175e2006-11-29 17:34:50 -08001239 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001240 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001241 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001242 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001243 }
1244
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001245 /* delete from hash and active; remainder in destroy_class */
1246 qdisc_class_hash_remove(&q->clhash, &cl->common);
Jarek Poplawski26b284d2008-08-13 15:16:43 -07001247 if (cl->parent)
1248 cl->parent->children--;
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001251 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001253 if (cl->cmode != HTB_CAN_SEND)
1254 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1255
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001256 if (last_child)
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001257 htb_parent_to_leaf(q, cl, new_q);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001260 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 sch_tree_unlock(sch);
1263 return 0;
1264}
1265
1266static void htb_put(struct Qdisc *sch, unsigned long arg)
1267{
Stephen Hemminger87990462006-08-10 23:35:16 -07001268 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001271 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Stephen Hemminger87990462006-08-10 23:35:16 -07001274static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001275 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001276 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
1278 int err = -EINVAL;
1279 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001280 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001281 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001283 struct nlattr *tb[TCA_HTB_RTAB + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 struct tc_htb_opt *hopt;
1285
1286 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001287 if (!opt)
1288 goto failure;
1289
Patrick McHardy27a34212008-01-23 20:35:39 -08001290 err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001291 if (err < 0)
1292 goto failure;
1293
1294 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001295 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Stephen Hemminger87990462006-08-10 23:35:16 -07001298 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001299
Patrick McHardy1e904742008-01-22 22:11:17 -08001300 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Patrick McHardy1e904742008-01-22 22:11:17 -08001302 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1303 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001304 if (!rtab || !ctab)
1305 goto failure;
1306
1307 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001309 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001310 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001311 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001312 struct gnet_estimator opt;
1313 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001314 .nla = {
1315 .nla_len = nla_attr_size(sizeof(est.opt)),
1316 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001317 },
1318 .opt = {
1319 /* 4s interval, 16s averaging constant */
1320 .interval = 2,
1321 .ewma_log = 2,
1322 },
1323 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001326 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1327 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 goto failure;
1329
1330 /* check maximal depth */
1331 if (parent && parent->parent && parent->parent->level < 2) {
1332 printk(KERN_ERR "htb: tree is too deep\n");
1333 goto failure;
1334 }
1335 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001336 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001338
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001339 err = gen_new_estimator(&cl->bstats, &cl->rate_est,
1340 qdisc_root_sleeping_lock(sch),
1341 tca[TCA_RATE] ? : &est.nla);
1342 if (err) {
1343 kfree(cl);
1344 goto failure;
1345 }
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 cl->refcnt = 1;
Patrick McHardy42077592008-07-05 23:22:53 -07001348 cl->children = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001350 RB_CLEAR_NODE(&cl->pq_node);
1351
1352 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1353 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1356 so that can't be used inside of sch_tree_lock
1357 -- thanks to Karlis Peisenieks */
David S. Miller5ce2d482008-07-08 17:06:30 -07001358 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001359 &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 sch_tree_lock(sch);
1361 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001362 unsigned int qlen = parent->un.leaf.q->q.qlen;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001365 qdisc_reset(parent->un.leaf.q);
1366 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001367 qdisc_destroy(parent->un.leaf.q);
1368 if (parent->prio_activity)
1369 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 /* remove from evt list because of level change */
1372 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001373 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 parent->cmode = HTB_CAN_SEND;
1375 }
1376 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001377 : TC_HTB_MAXDEPTH) - 1;
1378 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380 /* leaf (we) needs elementary qdisc */
1381 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1382
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001383 cl->common.classid = classid;
Stephen Hemminger87990462006-08-10 23:35:16 -07001384 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* set class to be in HTB_CAN_SEND state */
1387 cl->tokens = hopt->buffer;
1388 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001389 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001390 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 cl->cmode = HTB_CAN_SEND;
1392
1393 /* attach to the hash list and parent's family */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001394 qdisc_class_hash_insert(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001395 if (parent)
1396 parent->children++;
Patrick McHardyee39e102007-07-02 22:48:13 -07001397 } else {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001398 if (tca[TCA_RATE]) {
1399 err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
1400 qdisc_root_sleeping_lock(sch),
1401 tca[TCA_RATE]);
1402 if (err)
1403 return err;
1404 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001405 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001409 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (!cl->level) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001411 cl->quantum = rtab->rate.rate / q->rate2quantum;
1412 if (!hopt->quantum && cl->quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001413 printk(KERN_WARNING
1414 "HTB: quantum of class %X is small. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001415 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001416 cl->quantum = 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001418 if (!hopt->quantum && cl->quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001419 printk(KERN_WARNING
1420 "HTB: quantum of class %X is big. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001421 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001422 cl->quantum = 200000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424 if (hopt->quantum)
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001425 cl->quantum = hopt->quantum;
1426 if ((cl->prio = hopt->prio) >= TC_HTB_NUMPRIO)
1427 cl->prio = TC_HTB_NUMPRIO - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429
1430 cl->buffer = hopt->buffer;
1431 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001432 if (cl->rate)
1433 qdisc_put_rtab(cl->rate);
1434 cl->rate = rtab;
1435 if (cl->ceil)
1436 qdisc_put_rtab(cl->ceil);
1437 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 sch_tree_unlock(sch);
1439
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001440 qdisc_class_hash_grow(sch, &q->clhash);
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 *arg = (unsigned long)cl;
1443 return 0;
1444
1445failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001446 if (rtab)
1447 qdisc_put_rtab(rtab);
1448 if (ctab)
1449 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return err;
1451}
1452
1453static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1454{
1455 struct htb_sched *q = qdisc_priv(sch);
1456 struct htb_class *cl = (struct htb_class *)arg;
1457 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return fl;
1460}
1461
1462static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001463 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Stephen Hemminger87990462006-08-10 23:35:16 -07001465 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001468 The line above used to be there to prevent attaching filters to
1469 leaves. But at least tc_index filter uses this just to get class
1470 for other reasons so that we have to allow for it.
1471 ----
1472 19.6.2002 As Werner explained it is ok - bind filter is just
1473 another way to "lock" the class - unlike "get" this lock can
1474 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001476 if (cl)
1477 cl->filter_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return (unsigned long)cl;
1479}
1480
1481static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001484
Stephen Hemminger87990462006-08-10 23:35:16 -07001485 if (cl)
1486 cl->filter_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1490{
1491 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001492 struct htb_class *cl;
1493 struct hlist_node *n;
1494 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 if (arg->stop)
1497 return;
1498
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001499 for (i = 0; i < q->clhash.hashsize; i++) {
1500 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (arg->count < arg->skip) {
1502 arg->count++;
1503 continue;
1504 }
1505 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1506 arg->stop = 1;
1507 return;
1508 }
1509 arg->count++;
1510 }
1511 }
1512}
1513
Eric Dumazet20fea082007-11-14 01:44:41 -08001514static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 .graft = htb_graft,
1516 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001517 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .get = htb_get,
1519 .put = htb_put,
1520 .change = htb_change_class,
1521 .delete = htb_delete,
1522 .walk = htb_walk,
1523 .tcf_chain = htb_find_tcf,
1524 .bind_tcf = htb_bind_filter,
1525 .unbind_tcf = htb_unbind_filter,
1526 .dump = htb_dump_class,
1527 .dump_stats = htb_dump_class_stats,
1528};
1529
Eric Dumazet20fea082007-11-14 01:44:41 -08001530static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 .next = NULL,
1532 .cl_ops = &htb_class_ops,
1533 .id = "htb",
1534 .priv_size = sizeof(struct htb_sched),
1535 .enqueue = htb_enqueue,
1536 .dequeue = htb_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -07001537 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 .drop = htb_drop,
1539 .init = htb_init,
1540 .reset = htb_reset,
1541 .destroy = htb_destroy,
1542 .change = NULL /* htb_change */,
1543 .dump = htb_dump,
1544 .owner = THIS_MODULE,
1545};
1546
1547static int __init htb_module_init(void)
1548{
Stephen Hemminger87990462006-08-10 23:35:16 -07001549 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550}
Stephen Hemminger87990462006-08-10 23:35:16 -07001551static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Stephen Hemminger87990462006-08-10 23:35:16 -07001553 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
Stephen Hemminger87990462006-08-10 23:35:16 -07001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556module_init(htb_module_init)
1557module_exit(htb_module_exit)
1558MODULE_LICENSE("GPL");