blob: 128a5ab2e3761e548bc932312f1276c56ff54edb [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
Stephen Hemminger87990462006-08-10 23:35:16 -070087 union {
88 struct htb_class_leaf {
89 struct Qdisc *q;
90 int prio;
91 int aprio;
92 int quantum;
93 int deficit[TC_HTB_MAXDEPTH];
94 struct list_head drop_list;
95 } leaf;
96 struct htb_class_inner {
97 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
98 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
99 /* When class changes from state 1->2 and disconnects from
100 parent's feed then we lost ptr value and start from the
101 first child again. Here we store classid of the
102 last valid ptr (used when ptr is NULL). */
103 u32 last_ptr_id[TC_HTB_NUMPRIO];
104 } inner;
105 } un;
106 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
107 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700108 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Stephen Hemminger87990462006-08-10 23:35:16 -0700110 int prio_activity; /* for which prios are we active */
111 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Stephen Hemminger87990462006-08-10 23:35:16 -0700113 /* class attached filters */
114 struct tcf_proto *filter_list;
115 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Stephen Hemminger87990462006-08-10 23:35:16 -0700117 int warned; /* only one warning about non work conserving .. */
118
119 /* token bucket parameters */
120 struct qdisc_rate_table *rate; /* rate table of the class itself */
121 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
122 long buffer, cbuffer; /* token bucket depth/rate */
123 psched_tdiff_t mbuffer; /* max wait time */
124 long tokens, ctokens; /* current number of tokens */
125 psched_time_t t_c; /* checkpoint time */
Jarek Poplawski160d5e12006-12-08 00:26:56 -0800126
127 int prio; /* For parent to leaf return possible here */
128 int quantum; /* we do backup. Finally full replacement */
129 /* of un.leaf originals should be done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Stephen Hemminger87990462006-08-10 23:35:16 -0700132static inline long L2T(struct htb_class *cl, struct qdisc_rate_table *rate,
133 int size)
134{
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200135 long result = qdisc_l2t(rate, size);
136 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Stephen Hemminger87990462006-08-10 23:35:16 -0700139struct htb_sched {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700140 struct Qdisc_class_hash clhash;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700141 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Stephen Hemminger87990462006-08-10 23:35:16 -0700143 /* self list - roots of self generating tree */
144 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
145 int row_mask[TC_HTB_MAXDEPTH];
146 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
147 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Stephen Hemminger87990462006-08-10 23:35:16 -0700149 /* self wait list - roots of wait PQs per row */
150 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Stephen Hemminger87990462006-08-10 23:35:16 -0700152 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700153 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Stephen Hemminger87990462006-08-10 23:35:16 -0700155 /* whether we hit non-work conserving class during this dequeue; we use */
156 int nwc_hit; /* this to disable mindelay complaint in dequeue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Stephen Hemminger87990462006-08-10 23:35:16 -0700158 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Stephen Hemminger87990462006-08-10 23:35:16 -0700160 /* filters for qdisc itself */
161 struct tcf_proto *filter_list;
162 int filter_cnt;
163
164 int rate2quantum; /* quant = rate / rate2quantum */
165 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700166 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Stephen Hemminger87990462006-08-10 23:35:16 -0700168 /* non shaped skbs; let them go directly thru */
169 struct sk_buff_head direct_queue;
170 int direct_qlen; /* max qlen of above */
171
172 long direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700176static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700179 struct Qdisc_class_common *clc;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700180
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700181 clc = qdisc_class_find(&q->clhash, handle);
182 if (clc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return NULL;
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700184 return container_of(clc, struct htb_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
187/**
188 * htb_classify - classify a packet into class
189 *
190 * It returns NULL if the packet should be dropped or -1 if the packet
191 * should be passed directly thru. In all other cases leaf class is returned.
192 * We allow direct class selection by classid in priority. The we examine
193 * filters in qdisc and in inner nodes (if higher filter points to the inner
194 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900195 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
197 * then finish and return direct queue.
198 */
199#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Stephen Hemminger87990462006-08-10 23:35:16 -0700201static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
202 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 struct htb_sched *q = qdisc_priv(sch);
205 struct htb_class *cl;
206 struct tcf_result res;
207 struct tcf_proto *tcf;
208 int result;
209
210 /* allow to select class by setting skb->priority to valid classid;
211 note that nfmark can be used too by attaching filter fw with no
212 rules in it */
213 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700214 return HTB_DIRECT; /* X:0 (direct flow) selected */
215 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return cl;
217
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -0800218 *qerr = NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 tcf = q->filter_list;
220 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
221#ifdef CONFIG_NET_CLS_ACT
222 switch (result) {
223 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700224 case TC_ACT_STOLEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 *qerr = NET_XMIT_SUCCESS;
226 case TC_ACT_SHOT:
227 return NULL;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700230 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700232 return HTB_DIRECT; /* X:0 (direct flow) */
233 if ((cl = htb_find(res.classid, sch)) == NULL)
234 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700237 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* we have got inner class; apply inner filter chain */
240 tcf = cl->filter_list;
241 }
242 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700243 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700245 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return cl;
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/**
250 * htb_add_to_id_tree - adds class to the round robin list
251 *
252 * Routine adds class to the list (actually tree) sorted by classid.
253 * Make sure that class is not already on such list for given prio.
254 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700255static void htb_add_to_id_tree(struct rb_root *root,
256 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700261 struct htb_class *c;
262 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700264
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700265 if (cl->common.classid > c->common.classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700267 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 p = &parent->rb_left;
269 }
270 rb_link_node(&cl->node[prio], parent, p);
271 rb_insert_color(&cl->node[prio], root);
272}
273
274/**
275 * htb_add_to_wait_tree - adds class to the event queue with delay
276 *
277 * The class is added to priority event queue to indicate that class will
278 * change its mode in cl->pq_key microseconds. Make sure that class is not
279 * already in the queue.
280 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700281static void htb_add_to_wait_tree(struct htb_sched *q,
282 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700285
Patrick McHardyfb983d42007-03-16 01:22:39 -0700286 cl->pq_key = q->now + delay;
287 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 cl->pq_key++;
289
290 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700291 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700295 struct htb_class *c;
296 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700298 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700300 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 p = &parent->rb_left;
302 }
303 rb_link_node(&cl->pq_node, parent, p);
304 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
305}
306
307/**
308 * htb_next_rb_node - finds next node in binary tree
309 *
310 * When we are past last key we return NULL.
311 * Average complexity is 2 steps per call.
312 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700313static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 *n = rb_next(*n);
316}
317
318/**
319 * htb_add_class_to_row - add class to its row
320 *
321 * The class is added to row at priorities marked in mask.
322 * It does nothing if mask == 0.
323 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700324static inline void htb_add_class_to_row(struct htb_sched *q,
325 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 q->row_mask[cl->level] |= mask;
328 while (mask) {
329 int prio = ffz(~mask);
330 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700331 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333}
334
Stephen Hemminger3696f622006-08-10 23:36:01 -0700335/* If this triggers, it is a bug in this code, but it need not be fatal */
336static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
337{
Ismail Donmez81771b32006-10-03 13:49:10 -0700338 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700339 WARN_ON(1);
340 } else {
341 rb_erase(rb, root);
342 RB_CLEAR_NODE(rb);
343 }
344}
345
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/**
348 * htb_remove_class_from_row - removes class from its row
349 *
350 * The class is removed from row at priorities marked in mask.
351 * It does nothing if mask == 0.
352 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700353static inline void htb_remove_class_from_row(struct htb_sched *q,
354 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 while (mask) {
359 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700362 if (q->ptr[cl->level][prio] == cl->node + prio)
363 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700364
365 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700366 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 m |= 1 << prio;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 q->row_mask[cl->level] &= ~m;
370}
371
372/**
373 * htb_activate_prios - creates active classe's feed chain
374 *
375 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900376 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * (activated) mode. It does nothing if cl->prio_activity == 0.
378 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700379static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700382 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700385 m = mask;
386 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 int prio = ffz(~m);
388 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (p->un.inner.feed[prio].rb_node)
391 /* parent already has its feed in use so that
392 reset bit in mask as parent is already ok */
393 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700394
395 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700398 cl = p;
399 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700403 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/**
407 * htb_deactivate_prios - remove class from feed chain
408 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900409 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * nothing if cl->prio_activity == 0. Class is removed from all feed
411 * chains and rows.
412 */
413static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
414{
415 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700416 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700419 m = mask;
420 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 while (m) {
422 int prio = ffz(~m);
423 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700424
425 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* we are removing child which is pointed to from
427 parent feed - forget the pointer but remember
428 classid */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700429 p->un.inner.last_ptr_id[prio] = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 p->un.inner.ptr[prio] = NULL;
431 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700432
Stephen Hemminger3696f622006-08-10 23:36:01 -0700433 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700434
435 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 mask |= 1 << prio;
437 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700440 cl = p;
441 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700444 if (cl->cmode == HTB_CAN_SEND && mask)
445 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700448static inline long htb_lowater(const struct htb_class *cl)
449{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700450 if (htb_hysteresis)
451 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
452 else
453 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700454}
455static inline long htb_hiwater(const struct htb_class *cl)
456{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700457 if (htb_hysteresis)
458 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
459 else
460 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700461}
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700462
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/**
465 * htb_class_mode - computes and returns current class mode
466 *
467 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
468 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900469 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900471 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
473 * mode transitions per time unit. The speed gain is about 1/6.
474 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700475static inline enum htb_cmode
476htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Stephen Hemminger87990462006-08-10 23:35:16 -0700478 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Stephen Hemminger87990462006-08-10 23:35:16 -0700480 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
481 *diff = -toks;
482 return HTB_CANT_SEND;
483 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700484
Stephen Hemminger87990462006-08-10 23:35:16 -0700485 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
486 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Stephen Hemminger87990462006-08-10 23:35:16 -0700488 *diff = -toks;
489 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492/**
493 * htb_change_class_mode - changes classe's mode
494 *
495 * This should be the only way how to change classe's mode under normal
496 * cirsumstances. Routine will update feed lists linkage, change mode
497 * and add class to the wait event queue if appropriate. New mode should
498 * be different from old one and cl->pq_key has to be valid if changing
499 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
500 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700501static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700503{
504 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700507 return;
508
509 if (cl->prio_activity) { /* not necessary: speed optimization */
510 if (cl->cmode != HTB_CANT_SEND)
511 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700513 if (new_mode != HTB_CANT_SEND)
514 htb_activate_prios(q, cl);
515 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 cl->cmode = new_mode;
517}
518
519/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900520 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 *
522 * Routine learns (new) priority of leaf and activates feed chain
523 * for the prio. It can be called on already active leaf safely.
524 * It also adds leaf into droplist.
525 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700526static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (!cl->prio_activity) {
531 cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700532 htb_activate_prios(q, cl);
533 list_add_tail(&cl->un.leaf.drop_list,
534 q->drops + cl->un.leaf.aprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536}
537
538/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900539 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 *
541 * Make sure that leaf is active. In the other words it can't be called
542 * with non-active leaf. It also removes class from the drop list.
543 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700544static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 BUG_TRAP(cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700547
Stephen Hemminger87990462006-08-10 23:35:16 -0700548 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 cl->prio_activity = 0;
550 list_del_init(&cl->un.leaf.drop_list);
551}
552
553static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
554{
Stephen Hemminger87990462006-08-10 23:35:16 -0700555 int ret;
556 struct htb_sched *q = qdisc_priv(sch);
557 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Stephen Hemminger87990462006-08-10 23:35:16 -0700559 if (cl == HTB_DIRECT) {
560 /* enqueue to helper queue */
561 if (q->direct_queue.qlen < q->direct_qlen) {
562 __skb_queue_tail(&q->direct_queue, skb);
563 q->direct_pkts++;
564 } else {
565 kfree_skb(skb);
566 sch->qstats.drops++;
567 return NET_XMIT_DROP;
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700570 } else if (!cl) {
571 if (ret == NET_XMIT_BYPASS)
572 sch->qstats.drops++;
573 kfree_skb(skb);
574 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700576 } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) !=
577 NET_XMIT_SUCCESS) {
578 sch->qstats.drops++;
579 cl->qstats.drops++;
580 return NET_XMIT_DROP;
581 } else {
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700582 cl->bstats.packets +=
583 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Stephen Hemminger87990462006-08-10 23:35:16 -0700584 cl->bstats.bytes += skb->len;
585 htb_activate(q, cl);
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Stephen Hemminger87990462006-08-10 23:35:16 -0700588 sch->q.qlen++;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700589 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Stephen Hemminger87990462006-08-10 23:35:16 -0700590 sch->bstats.bytes += skb->len;
591 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/* TODO: requeuing packet charges it to policers again !! */
595static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
596{
Jarek Poplawski21347452008-02-09 23:44:00 -0800597 int ret;
Stephen Hemminger87990462006-08-10 23:35:16 -0700598 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -0700599 struct htb_class *cl = htb_classify(skb, sch, &ret);
600 struct sk_buff *tskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Jarek Poplawski21347452008-02-09 23:44:00 -0800602 if (cl == HTB_DIRECT) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700603 /* enqueue to helper queue */
Jarek Poplawski21347452008-02-09 23:44:00 -0800604 if (q->direct_queue.qlen < q->direct_qlen) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700605 __skb_queue_head(&q->direct_queue, skb);
606 } else {
607 __skb_queue_head(&q->direct_queue, skb);
608 tskb = __skb_dequeue_tail(&q->direct_queue);
609 kfree_skb(tskb);
610 sch->qstats.drops++;
611 return NET_XMIT_CN;
612 }
Jarek Poplawski21347452008-02-09 23:44:00 -0800613#ifdef CONFIG_NET_CLS_ACT
614 } else if (!cl) {
615 if (ret == NET_XMIT_BYPASS)
616 sch->qstats.drops++;
617 kfree_skb(skb);
618 return ret;
619#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700620 } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) !=
621 NET_XMIT_SUCCESS) {
622 sch->qstats.drops++;
623 cl->qstats.drops++;
624 return NET_XMIT_DROP;
625 } else
626 htb_activate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Stephen Hemminger87990462006-08-10 23:35:16 -0700628 sch->q.qlen++;
629 sch->qstats.requeues++;
630 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/**
634 * htb_charge_class - charges amount "bytes" to leaf and ancestors
635 *
636 * Routine assumes that packet "bytes" long was dequeued from leaf cl
637 * borrowing from "level". It accounts bytes to ceil leaky bucket for
638 * leaf and all ancestors and to rate bucket for ancestors at levels
639 * "level" and higher. It also handles possible change of mode resulting
640 * from the update. Note that mode can also increase here (MAY_BORROW to
641 * CAN_SEND) because we can use more precise clock that event queue here.
642 * In such case we remove class from event queue first.
643 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700644static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700645 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700646{
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700647 int bytes = skb->len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700648 long toks, diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 enum htb_cmode old_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#define HTB_ACCNT(T,B,R) toks = diff + cl->T; \
652 if (toks > cl->B) toks = cl->B; \
653 toks -= L2T(cl, cl->R, bytes); \
654 if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; \
655 cl->T = toks
656
657 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700658 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700660 if (cl->level == level)
661 cl->xstats.lends++;
662 HTB_ACCNT(tokens, buffer, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 } else {
664 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700665 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700667 HTB_ACCNT(ctokens, cbuffer, ceil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Stephen Hemminger87990462006-08-10 23:35:16 -0700670 old_mode = cl->cmode;
671 diff = 0;
672 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (old_mode != cl->cmode) {
674 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700675 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700677 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 /* update byte stats except for leaves which are already updated */
681 if (cl->level) {
682 cl->bstats.bytes += bytes;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700683 cl->bstats.packets += skb_is_gso(skb)?
684 skb_shinfo(skb)->gso_segs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 cl = cl->parent;
687 }
688}
689
690/**
691 * htb_do_events - make mode changes to classes at the level
692 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700693 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700695 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700697static psched_time_t htb_do_events(struct htb_sched *q, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Martin Devera8f3ea332008-03-23 22:00:38 -0700699 /* don't run for longer than 2 jiffies; 2 is used instead of
700 1 to simplify things when jiffy is going to be incremented
701 too soon */
702 unsigned long stop_at = jiffies + 2;
703 while (time_before(jiffies, stop_at)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 struct htb_class *cl;
705 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700706 struct rb_node *p = rb_first(&q->wait_pq[level]);
707
Stephen Hemminger87990462006-08-10 23:35:16 -0700708 if (!p)
709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700712 if (cl->pq_key > q->now)
713 return cl->pq_key;
714
Stephen Hemminger3696f622006-08-10 23:36:01 -0700715 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700716 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700717 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700719 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Martin Devera8f3ea332008-03-23 22:00:38 -0700721 /* too much load - let's continue on next jiffie */
722 return q->now + PSCHED_TICKS_PER_SEC / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
726 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700727static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
728 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct rb_node *r = NULL;
731 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700732 struct htb_class *cl =
733 rb_entry(n, struct htb_class, node[prio]);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700734 if (id == cl->common.classid)
Stephen Hemminger87990462006-08-10 23:35:16 -0700735 return n;
736
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700737 if (id > cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 n = n->rb_right;
739 } else {
740 r = n;
741 n = n->rb_left;
742 }
743 }
744 return r;
745}
746
747/**
748 * htb_lookup_leaf - returns next leaf class in DRR order
749 *
750 * Find leaf where current feed pointers points to.
751 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700752static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
753 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 int i;
756 struct {
757 struct rb_node *root;
758 struct rb_node **pptr;
759 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700760 } stk[TC_HTB_MAXDEPTH], *sp = stk;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 BUG_TRAP(tree->rb_node);
763 sp->root = tree->rb_node;
764 sp->pptr = pptr;
765 sp->pid = pid;
766
767 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700768 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900769 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700771 *sp->pptr =
772 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700774 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
775 can become out of date quickly */
776 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700778 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *sp->pptr = (*sp->pptr)->rb_left;
780 if (sp > stk) {
781 sp--;
Stephen Hemminger87990462006-08-10 23:35:16 -0700782 BUG_TRAP(*sp->pptr);
783 if (!*sp->pptr)
784 return NULL;
785 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 } else {
788 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700789 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
790 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return cl;
792 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700793 sp->pptr = cl->un.inner.ptr + prio;
794 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 }
797 BUG_TRAP(0);
798 return NULL;
799}
800
801/* dequeues packet at given priority and level; call only if
802 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700803static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
804 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700807 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700809 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
810 q->ptr[level] + prio,
811 q->last_ptr_id[level] + prio);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 do {
814next:
Stephen Hemminger87990462006-08-10 23:35:16 -0700815 BUG_TRAP(cl);
816 if (!cl)
817 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /* class can be empty - it is unlikely but can be true if leaf
820 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900821 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 simply deactivate and skip such class */
823 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
824 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700825 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* row/level might become empty */
828 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700829 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Stephen Hemminger87990462006-08-10 23:35:16 -0700831 next = htb_lookup_leaf(q->row[level] + prio,
832 prio, q->ptr[level] + prio,
833 q->last_ptr_id[level] + prio);
834
835 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 start = next;
837 cl = next;
838 goto next;
839 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700840
841 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
842 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 break;
844 if (!cl->warned) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700845 printk(KERN_WARNING
846 "htb: class %X isn't work conserving ?!\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700847 cl->common.classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 cl->warned = 1;
849 }
850 q->nwc_hit++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700851 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
852 ptr[0]) + prio);
853 cl = htb_lookup_leaf(q->row[level] + prio, prio,
854 q->ptr[level] + prio,
855 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 } while (cl != start);
858
859 if (likely(skb != NULL)) {
860 if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700862 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
863 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 /* this used to be after charge_class but this constelation
866 gives us slightly better performance */
867 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700868 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700869 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 return skb;
872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874static struct sk_buff *htb_dequeue(struct Qdisc *sch)
875{
876 struct sk_buff *skb = NULL;
877 struct htb_sched *q = qdisc_priv(sch);
878 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700879 psched_time_t next_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700882 skb = __skb_dequeue(&q->direct_queue);
883 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 sch->flags &= ~TCQ_F_THROTTLED;
885 sch->q.qlen--;
886 return skb;
887 }
888
Stephen Hemminger87990462006-08-10 23:35:16 -0700889 if (!sch->q.qlen)
890 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700891 q->now = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Patrick McHardyfb983d42007-03-16 01:22:39 -0700893 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 q->nwc_hit = 0;
895 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
896 /* common case optimization - skip event handler quickly */
897 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700898 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700899
Patrick McHardyfb983d42007-03-16 01:22:39 -0700900 if (q->now >= q->near_ev_cache[level]) {
901 event = htb_do_events(q, level);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700902 if (!event)
903 event = q->now + PSCHED_TICKS_PER_SEC;
904 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700905 } else
906 event = q->near_ev_cache[level];
907
908 if (event && next_event > event)
909 next_event = event;
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 m = ~q->row_mask[level];
912 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700913 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700915 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (likely(skb != NULL)) {
917 sch->q.qlen--;
918 sch->flags &= ~TCQ_F_THROTTLED;
919 goto fin;
920 }
921 }
922 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700923 sch->qstats.overlimits++;
924 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return skb;
927}
928
929/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700930static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
932 struct htb_sched *q = qdisc_priv(sch);
933 int prio;
934
935 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
936 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700937 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct htb_class *cl = list_entry(p, struct htb_class,
939 un.leaf.drop_list);
940 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700941 if (cl->un.leaf.q->ops->drop &&
942 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 sch->q.qlen--;
944 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700945 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return len;
947 }
948 }
949 }
950 return 0;
951}
952
953/* reset all classes */
954/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700955static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700958 struct htb_class *cl;
959 struct hlist_node *n;
960 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700962 for (i = 0; i < q->clhash.hashsize; i++) {
963 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700965 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700967 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 qdisc_reset(cl->un.leaf.q);
969 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
970 }
971 cl->prio_activity = 0;
972 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 }
975 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700976 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 __skb_queue_purge(&q->direct_queue);
978 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700979 memset(q->row, 0, sizeof(q->row));
980 memset(q->row_mask, 0, sizeof(q->row_mask));
981 memset(q->wait_pq, 0, sizeof(q->wait_pq));
982 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700984 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Patrick McHardy27a34212008-01-23 20:35:39 -0800987static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
988 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
989 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
990 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
991 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
992};
993
Patrick McHardy1e904742008-01-22 22:11:17 -0800994static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
996 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800997 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -0800999 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 int i;
Patrick McHardycee63722008-01-23 20:33:32 -08001001
1002 if (!opt)
1003 return -EINVAL;
1004
Patrick McHardy27a34212008-01-23 20:35:39 -08001005 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001006 if (err < 0)
1007 return err;
1008
Patrick McHardy27a34212008-01-23 20:35:39 -08001009 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
1011 return -EINVAL;
1012 }
Patrick McHardy1e904742008-01-22 22:11:17 -08001013 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001015 printk(KERN_ERR
1016 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1017 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return -EINVAL;
1019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001021 err = qdisc_class_hash_init(&q->clhash);
1022 if (err < 0)
1023 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001025 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Patrick McHardyfb983d42007-03-16 01:22:39 -07001027 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 skb_queue_head_init(&q->direct_queue);
1029
1030 q->direct_qlen = sch->dev->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001031 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1035 q->rate2quantum = 1;
1036 q->defcls = gopt->defcls;
1037
1038 return 0;
1039}
1040
1041static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1042{
1043 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001044 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001047 spin_lock_bh(&sch->dev->queue_lock);
1048
1049 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 gopt.version = HTB_VER;
1051 gopt.rate2quantum = q->rate2quantum;
1052 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001053 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001054
1055 nest = nla_nest_start(skb, TCA_OPTIONS);
1056 if (nest == NULL)
1057 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001058 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001059 nla_nest_end(skb, nest);
1060
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001061 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001063
Patrick McHardy1e904742008-01-22 22:11:17 -08001064nla_put_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001065 spin_unlock_bh(&sch->dev->queue_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001066 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return -1;
1068}
1069
1070static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001071 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Stephen Hemminger87990462006-08-10 23:35:16 -07001073 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001074 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 struct tc_htb_opt opt;
1076
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001077 spin_lock_bh(&sch->dev->queue_lock);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001078 tcm->tcm_parent = cl->parent ? cl->parent->common.classid : TC_H_ROOT;
1079 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!cl->level && cl->un.leaf.q)
1081 tcm->tcm_info = cl->un.leaf.q->handle;
1082
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001083 nest = nla_nest_start(skb, TCA_OPTIONS);
1084 if (nest == NULL)
1085 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Stephen Hemminger87990462006-08-10 23:35:16 -07001087 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Stephen Hemminger87990462006-08-10 23:35:16 -07001089 opt.rate = cl->rate->rate;
1090 opt.buffer = cl->buffer;
1091 opt.ceil = cl->ceil->rate;
1092 opt.cbuffer = cl->cbuffer;
1093 opt.quantum = cl->un.leaf.quantum;
1094 opt.prio = cl->un.leaf.prio;
1095 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001096 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001097
1098 nla_nest_end(skb, nest);
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001099 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001101
Patrick McHardy1e904742008-01-22 22:11:17 -08001102nla_put_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001103 spin_unlock_bh(&sch->dev->queue_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001104 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return -1;
1106}
1107
1108static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001109htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Stephen Hemminger87990462006-08-10 23:35:16 -07001111 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (!cl->level && cl->un.leaf.q)
1114 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1115 cl->xstats.tokens = cl->tokens;
1116 cl->xstats.ctokens = cl->ctokens;
1117
1118 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1119 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1120 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1121 return -1;
1122
1123 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1124}
1125
1126static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001127 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Stephen Hemminger87990462006-08-10 23:35:16 -07001129 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001132 if (new == NULL &&
1133 (new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001134 cl->common.classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001135 == NULL)
1136 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 sch_tree_lock(sch);
1138 if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001139 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 qdisc_reset(*old);
1141 }
1142 sch_tree_unlock(sch);
1143 return 0;
1144 }
1145 return -ENOENT;
1146}
1147
Stephen Hemminger87990462006-08-10 23:35:16 -07001148static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Stephen Hemminger87990462006-08-10 23:35:16 -07001150 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1152}
1153
Patrick McHardy256d61b2006-11-29 17:37:05 -08001154static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1155{
1156 struct htb_class *cl = (struct htb_class *)arg;
1157
1158 if (cl->un.leaf.q->q.qlen == 0)
1159 htb_deactivate(qdisc_priv(sch), cl);
1160}
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1163{
Stephen Hemminger87990462006-08-10 23:35:16 -07001164 struct htb_class *cl = htb_find(classid, sch);
1165 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 cl->refcnt++;
1167 return (unsigned long)cl;
1168}
1169
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001170static inline int htb_parent_last_child(struct htb_class *cl)
1171{
1172 if (!cl->parent)
1173 /* the root class */
1174 return 0;
Patrick McHardy42077592008-07-05 23:22:53 -07001175 if (cl->parent->children > 1)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001176 /* not the last child */
1177 return 0;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001178 return 1;
1179}
1180
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001181static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl,
1182 struct Qdisc *new_q)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001183{
1184 struct htb_class *parent = cl->parent;
1185
1186 BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
1187
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001188 if (parent->cmode != HTB_CAN_SEND)
1189 htb_safe_rb_erase(&parent->pq_node, q->wait_pq + parent->level);
1190
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001191 parent->level = 0;
1192 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1193 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1194 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
1195 parent->un.leaf.quantum = parent->quantum;
1196 parent->un.leaf.prio = parent->prio;
1197 parent->tokens = parent->buffer;
1198 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001199 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001200 parent->cmode = HTB_CAN_SEND;
1201}
1202
Stephen Hemminger87990462006-08-10 23:35:16 -07001203static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (!cl->level) {
1206 BUG_TRAP(cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 qdisc_destroy(cl->un.leaf.q);
1208 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001209 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 qdisc_put_rtab(cl->rate);
1211 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001212
Patrick McHardyff31ab52008-07-01 19:52:38 -07001213 tcf_destroy_chain(&cl->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 kfree(cl);
1215}
1216
1217/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001218static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001221 struct hlist_node *n, *next;
1222 struct htb_class *cl;
1223 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Patrick McHardyfb983d42007-03-16 01:22:39 -07001225 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001227 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 because filter need its target class alive to be able to call
1229 unbind_filter on it (without Oops). */
Patrick McHardyff31ab52008-07-01 19:52:38 -07001230 tcf_destroy_chain(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001231
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001232 for (i = 0; i < q->clhash.hashsize; i++) {
1233 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001234 tcf_destroy_chain(&cl->filter_list);
1235 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001236 for (i = 0; i < q->clhash.hashsize; i++) {
1237 hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
1238 common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001239 htb_destroy_class(sch, cl);
1240 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001241 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 __skb_queue_purge(&q->direct_queue);
1243}
1244
1245static int htb_delete(struct Qdisc *sch, unsigned long arg)
1246{
1247 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001248 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001249 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001250 struct Qdisc *new_q = NULL;
1251 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 // TODO: why don't allow to delete subtree ? references ? does
1254 // tc subsys quarantee us that in htb_destroy it holds no class
1255 // refs so that we can remove children safely there ?
Patrick McHardy42077592008-07-05 23:22:53 -07001256 if (cl->children || cl->filter_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001258
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001259 if (!cl->level && htb_parent_last_child(cl)) {
1260 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001261 cl->parent->common.classid);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001262 last_child = 1;
1263 }
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001266
Patrick McHardy814a175e2006-11-29 17:34:50 -08001267 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001268 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001269 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001270 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001271 }
1272
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001273 /* delete from hash and active; remainder in destroy_class */
1274 qdisc_class_hash_remove(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001275 cl->parent->children--;
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001278 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001280 if (cl->cmode != HTB_CAN_SEND)
1281 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1282
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001283 if (last_child)
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001284 htb_parent_to_leaf(q, cl, new_q);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001287 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 sch_tree_unlock(sch);
1290 return 0;
1291}
1292
1293static void htb_put(struct Qdisc *sch, unsigned long arg)
1294{
Stephen Hemminger87990462006-08-10 23:35:16 -07001295 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001298 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Stephen Hemminger87990462006-08-10 23:35:16 -07001301static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001302 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001303 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 int err = -EINVAL;
1306 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001307 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001308 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001310 struct nlattr *tb[TCA_HTB_RTAB + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct tc_htb_opt *hopt;
1312
1313 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001314 if (!opt)
1315 goto failure;
1316
Patrick McHardy27a34212008-01-23 20:35:39 -08001317 err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001318 if (err < 0)
1319 goto failure;
1320
1321 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001322 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Stephen Hemminger87990462006-08-10 23:35:16 -07001325 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001326
Patrick McHardy1e904742008-01-22 22:11:17 -08001327 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Patrick McHardy1e904742008-01-22 22:11:17 -08001329 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1330 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001331 if (!rtab || !ctab)
1332 goto failure;
1333
1334 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001336 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001337 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001338 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001339 struct gnet_estimator opt;
1340 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001341 .nla = {
1342 .nla_len = nla_attr_size(sizeof(est.opt)),
1343 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001344 },
1345 .opt = {
1346 /* 4s interval, 16s averaging constant */
1347 .interval = 2,
1348 .ewma_log = 2,
1349 },
1350 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001353 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1354 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 goto failure;
1356
1357 /* check maximal depth */
1358 if (parent && parent->parent && parent->parent->level < 2) {
1359 printk(KERN_ERR "htb: tree is too deep\n");
1360 goto failure;
1361 }
1362 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001363 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001365
Patrick McHardyee39e102007-07-02 22:48:13 -07001366 gen_new_estimator(&cl->bstats, &cl->rate_est,
1367 &sch->dev->queue_lock,
Patrick McHardy1e904742008-01-22 22:11:17 -08001368 tca[TCA_RATE] ? : &est.nla);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 cl->refcnt = 1;
Patrick McHardy42077592008-07-05 23:22:53 -07001370 cl->children = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001372 RB_CLEAR_NODE(&cl->pq_node);
1373
1374 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1375 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1378 so that can't be used inside of sch_tree_lock
1379 -- thanks to Karlis Peisenieks */
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001380 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 sch_tree_lock(sch);
1382 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001383 unsigned int qlen = parent->un.leaf.q->q.qlen;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001386 qdisc_reset(parent->un.leaf.q);
1387 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001388 qdisc_destroy(parent->un.leaf.q);
1389 if (parent->prio_activity)
1390 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /* remove from evt list because of level change */
1393 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001394 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 parent->cmode = HTB_CAN_SEND;
1396 }
1397 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001398 : TC_HTB_MAXDEPTH) - 1;
1399 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401 /* leaf (we) needs elementary qdisc */
1402 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1403
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001404 cl->common.classid = classid;
Stephen Hemminger87990462006-08-10 23:35:16 -07001405 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 /* set class to be in HTB_CAN_SEND state */
1408 cl->tokens = hopt->buffer;
1409 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001410 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001411 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 cl->cmode = HTB_CAN_SEND;
1413
1414 /* attach to the hash list and parent's family */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001415 qdisc_class_hash_insert(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001416 if (parent)
1417 parent->children++;
Patrick McHardyee39e102007-07-02 22:48:13 -07001418 } else {
Patrick McHardy1e904742008-01-22 22:11:17 -08001419 if (tca[TCA_RATE])
Patrick McHardyee39e102007-07-02 22:48:13 -07001420 gen_replace_estimator(&cl->bstats, &cl->rate_est,
1421 &sch->dev->queue_lock,
Patrick McHardy1e904742008-01-22 22:11:17 -08001422 tca[TCA_RATE]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001423 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001427 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (!cl->level) {
1429 cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
1430 if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001431 printk(KERN_WARNING
1432 "HTB: quantum of class %X is small. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001433 cl->common.classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 cl->un.leaf.quantum = 1000;
1435 }
1436 if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001437 printk(KERN_WARNING
1438 "HTB: quantum of class %X is big. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001439 cl->common.classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 cl->un.leaf.quantum = 200000;
1441 }
1442 if (hopt->quantum)
1443 cl->un.leaf.quantum = hopt->quantum;
1444 if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
1445 cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001446
1447 /* backup for htb_parent_to_leaf */
1448 cl->quantum = cl->un.leaf.quantum;
1449 cl->prio = cl->un.leaf.prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
1452 cl->buffer = hopt->buffer;
1453 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001454 if (cl->rate)
1455 qdisc_put_rtab(cl->rate);
1456 cl->rate = rtab;
1457 if (cl->ceil)
1458 qdisc_put_rtab(cl->ceil);
1459 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 sch_tree_unlock(sch);
1461
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001462 qdisc_class_hash_grow(sch, &q->clhash);
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 *arg = (unsigned long)cl;
1465 return 0;
1466
1467failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001468 if (rtab)
1469 qdisc_put_rtab(rtab);
1470 if (ctab)
1471 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return err;
1473}
1474
1475static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1476{
1477 struct htb_sched *q = qdisc_priv(sch);
1478 struct htb_class *cl = (struct htb_class *)arg;
1479 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return fl;
1482}
1483
1484static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001485 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001488 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001491 The line above used to be there to prevent attaching filters to
1492 leaves. But at least tc_index filter uses this just to get class
1493 for other reasons so that we have to allow for it.
1494 ----
1495 19.6.2002 As Werner explained it is ok - bind filter is just
1496 another way to "lock" the class - unlike "get" this lock can
1497 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001499 if (cl)
1500 cl->filter_cnt++;
1501 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 q->filter_cnt++;
1503 return (unsigned long)cl;
1504}
1505
1506static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1507{
1508 struct htb_sched *q = qdisc_priv(sch);
1509 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001510
Stephen Hemminger87990462006-08-10 23:35:16 -07001511 if (cl)
1512 cl->filter_cnt--;
1513 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 q->filter_cnt--;
1515}
1516
1517static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1518{
1519 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001520 struct htb_class *cl;
1521 struct hlist_node *n;
1522 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 if (arg->stop)
1525 return;
1526
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001527 for (i = 0; i < q->clhash.hashsize; i++) {
1528 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (arg->count < arg->skip) {
1530 arg->count++;
1531 continue;
1532 }
1533 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1534 arg->stop = 1;
1535 return;
1536 }
1537 arg->count++;
1538 }
1539 }
1540}
1541
Eric Dumazet20fea082007-11-14 01:44:41 -08001542static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 .graft = htb_graft,
1544 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001545 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 .get = htb_get,
1547 .put = htb_put,
1548 .change = htb_change_class,
1549 .delete = htb_delete,
1550 .walk = htb_walk,
1551 .tcf_chain = htb_find_tcf,
1552 .bind_tcf = htb_bind_filter,
1553 .unbind_tcf = htb_unbind_filter,
1554 .dump = htb_dump_class,
1555 .dump_stats = htb_dump_class_stats,
1556};
1557
Eric Dumazet20fea082007-11-14 01:44:41 -08001558static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 .next = NULL,
1560 .cl_ops = &htb_class_ops,
1561 .id = "htb",
1562 .priv_size = sizeof(struct htb_sched),
1563 .enqueue = htb_enqueue,
1564 .dequeue = htb_dequeue,
1565 .requeue = htb_requeue,
1566 .drop = htb_drop,
1567 .init = htb_init,
1568 .reset = htb_reset,
1569 .destroy = htb_destroy,
1570 .change = NULL /* htb_change */,
1571 .dump = htb_dump,
1572 .owner = THIS_MODULE,
1573};
1574
1575static int __init htb_module_init(void)
1576{
Stephen Hemminger87990462006-08-10 23:35:16 -07001577 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
Stephen Hemminger87990462006-08-10 23:35:16 -07001579static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Stephen Hemminger87990462006-08-10 23:35:16 -07001581 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
Stephen Hemminger87990462006-08-10 23:35:16 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584module_init(htb_module_init)
1585module_exit(htb_module_exit)
1586MODULE_LICENSE("GPL");