blob: 826f92145261d746565dee6dce7ac9d032332736 [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 /* token bucket parameters */
118 struct qdisc_rate_table *rate; /* rate table of the class itself */
119 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
120 long buffer, cbuffer; /* token bucket depth/rate */
121 psched_tdiff_t mbuffer; /* max wait time */
122 long tokens, ctokens; /* current number of tokens */
123 psched_time_t t_c; /* checkpoint time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Stephen Hemminger87990462006-08-10 23:35:16 -0700126struct htb_sched {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700127 struct Qdisc_class_hash clhash;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700128 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Stephen Hemminger87990462006-08-10 23:35:16 -0700130 /* self list - roots of self generating tree */
131 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
132 int row_mask[TC_HTB_MAXDEPTH];
133 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
134 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Stephen Hemminger87990462006-08-10 23:35:16 -0700136 /* self wait list - roots of wait PQs per row */
137 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Stephen Hemminger87990462006-08-10 23:35:16 -0700139 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700140 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Stephen Hemminger87990462006-08-10 23:35:16 -0700142 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger87990462006-08-10 23:35:16 -0700144 /* filters for qdisc itself */
145 struct tcf_proto *filter_list;
Stephen Hemminger87990462006-08-10 23:35:16 -0700146
147 int rate2quantum; /* quant = rate / rate2quantum */
148 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700149 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Stephen Hemminger87990462006-08-10 23:35:16 -0700151 /* non shaped skbs; let them go directly thru */
152 struct sk_buff_head direct_queue;
153 int direct_qlen; /* max qlen of above */
154
155 long direct_pkts;
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800156
157#define HTB_WARN_TOOMANYEVENTS 0x1
158 unsigned int warned; /* only one warning */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700162static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700165 struct Qdisc_class_common *clc;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700166
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700167 clc = qdisc_class_find(&q->clhash, handle);
168 if (clc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return NULL;
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700170 return container_of(clc, struct htb_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/**
174 * htb_classify - classify a packet into class
175 *
176 * It returns NULL if the packet should be dropped or -1 if the packet
177 * should be passed directly thru. In all other cases leaf class is returned.
178 * We allow direct class selection by classid in priority. The we examine
179 * filters in qdisc and in inner nodes (if higher filter points to the inner
180 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900181 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
183 * then finish and return direct queue.
184 */
185#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Stephen Hemminger87990462006-08-10 23:35:16 -0700187static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
188 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct htb_sched *q = qdisc_priv(sch);
191 struct htb_class *cl;
192 struct tcf_result res;
193 struct tcf_proto *tcf;
194 int result;
195
196 /* allow to select class by setting skb->priority to valid classid;
197 note that nfmark can be used too by attaching filter fw with no
198 rules in it */
199 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700200 return HTB_DIRECT; /* X:0 (direct flow) selected */
201 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return cl;
203
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700204 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 tcf = q->filter_list;
206 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
207#ifdef CONFIG_NET_CLS_ACT
208 switch (result) {
209 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700210 case TC_ACT_STOLEN:
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700211 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 case TC_ACT_SHOT:
213 return NULL;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700216 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700218 return HTB_DIRECT; /* X:0 (direct flow) */
219 if ((cl = htb_find(res.classid, sch)) == NULL)
220 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700223 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* we have got inner class; apply inner filter chain */
226 tcf = cl->filter_list;
227 }
228 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700229 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700231 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return cl;
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/**
236 * htb_add_to_id_tree - adds class to the round robin list
237 *
238 * Routine adds class to the list (actually tree) sorted by classid.
239 * Make sure that class is not already on such list for given prio.
240 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700241static void htb_add_to_id_tree(struct rb_root *root,
242 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700247 struct htb_class *c;
248 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700250
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700251 if (cl->common.classid > c->common.classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700253 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 p = &parent->rb_left;
255 }
256 rb_link_node(&cl->node[prio], parent, p);
257 rb_insert_color(&cl->node[prio], root);
258}
259
260/**
261 * htb_add_to_wait_tree - adds class to the event queue with delay
262 *
263 * The class is added to priority event queue to indicate that class will
264 * change its mode in cl->pq_key microseconds. Make sure that class is not
265 * already in the queue.
266 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700267static void htb_add_to_wait_tree(struct htb_sched *q,
268 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700271
Patrick McHardyfb983d42007-03-16 01:22:39 -0700272 cl->pq_key = q->now + delay;
273 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 cl->pq_key++;
275
276 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700277 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700281 struct htb_class *c;
282 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700284 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700286 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 p = &parent->rb_left;
288 }
289 rb_link_node(&cl->pq_node, parent, p);
290 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
291}
292
293/**
294 * htb_next_rb_node - finds next node in binary tree
295 *
296 * When we are past last key we return NULL.
297 * Average complexity is 2 steps per call.
298 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700299static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 *n = rb_next(*n);
302}
303
304/**
305 * htb_add_class_to_row - add class to its row
306 *
307 * The class is added to row at priorities marked in mask.
308 * It does nothing if mask == 0.
309 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700310static inline void htb_add_class_to_row(struct htb_sched *q,
311 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 q->row_mask[cl->level] |= mask;
314 while (mask) {
315 int prio = ffz(~mask);
316 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700317 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319}
320
Stephen Hemminger3696f622006-08-10 23:36:01 -0700321/* If this triggers, it is a bug in this code, but it need not be fatal */
322static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
323{
Ismail Donmez81771b32006-10-03 13:49:10 -0700324 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700325 WARN_ON(1);
326 } else {
327 rb_erase(rb, root);
328 RB_CLEAR_NODE(rb);
329 }
330}
331
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/**
334 * htb_remove_class_from_row - removes class from its row
335 *
336 * The class is removed from row at priorities marked in mask.
337 * It does nothing if mask == 0.
338 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700339static inline void htb_remove_class_from_row(struct htb_sched *q,
340 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 while (mask) {
345 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700348 if (q->ptr[cl->level][prio] == cl->node + prio)
349 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700350
351 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700352 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 m |= 1 << prio;
354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 q->row_mask[cl->level] &= ~m;
356}
357
358/**
359 * htb_activate_prios - creates active classe's feed chain
360 *
361 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900362 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * (activated) mode. It does nothing if cl->prio_activity == 0.
364 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700365static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700368 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700371 m = mask;
372 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 int prio = ffz(~m);
374 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (p->un.inner.feed[prio].rb_node)
377 /* parent already has its feed in use so that
378 reset bit in mask as parent is already ok */
379 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700380
381 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700384 cl = p;
385 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700389 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392/**
393 * htb_deactivate_prios - remove class from feed chain
394 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900395 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * nothing if cl->prio_activity == 0. Class is removed from all feed
397 * chains and rows.
398 */
399static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
400{
401 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700402 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700405 m = mask;
406 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 while (m) {
408 int prio = ffz(~m);
409 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700410
411 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* we are removing child which is pointed to from
413 parent feed - forget the pointer but remember
414 classid */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700415 p->un.inner.last_ptr_id[prio] = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 p->un.inner.ptr[prio] = NULL;
417 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700418
Stephen Hemminger3696f622006-08-10 23:36:01 -0700419 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700420
421 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 mask |= 1 << prio;
423 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700426 cl = p;
427 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700430 if (cl->cmode == HTB_CAN_SEND && mask)
431 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700434static inline long htb_lowater(const struct htb_class *cl)
435{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700436 if (htb_hysteresis)
437 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
438 else
439 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700440}
441static inline long htb_hiwater(const struct htb_class *cl)
442{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700443 if (htb_hysteresis)
444 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
445 else
446 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700447}
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700448
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/**
451 * htb_class_mode - computes and returns current class mode
452 *
453 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
454 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900455 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900457 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
459 * mode transitions per time unit. The speed gain is about 1/6.
460 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700461static inline enum htb_cmode
462htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Stephen Hemminger87990462006-08-10 23:35:16 -0700464 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Stephen Hemminger87990462006-08-10 23:35:16 -0700466 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
467 *diff = -toks;
468 return HTB_CANT_SEND;
469 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700470
Stephen Hemminger87990462006-08-10 23:35:16 -0700471 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
472 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Stephen Hemminger87990462006-08-10 23:35:16 -0700474 *diff = -toks;
475 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478/**
479 * htb_change_class_mode - changes classe's mode
480 *
481 * This should be the only way how to change classe's mode under normal
482 * cirsumstances. Routine will update feed lists linkage, change mode
483 * and add class to the wait event queue if appropriate. New mode should
484 * be different from old one and cl->pq_key has to be valid if changing
485 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
486 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700487static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700489{
490 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700493 return;
494
495 if (cl->prio_activity) { /* not necessary: speed optimization */
496 if (cl->cmode != HTB_CANT_SEND)
497 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700499 if (new_mode != HTB_CANT_SEND)
500 htb_activate_prios(q, cl);
501 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 cl->cmode = new_mode;
503}
504
505/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900506 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 *
508 * Routine learns (new) priority of leaf and activates feed chain
509 * for the prio. It can be called on already active leaf safely.
510 * It also adds leaf into droplist.
511 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700512static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700514 WARN_ON(cl->level || !cl->un.leaf.q || !cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!cl->prio_activity) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800517 cl->prio_activity = 1 << cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700518 htb_activate_prios(q, cl);
519 list_add_tail(&cl->un.leaf.drop_list,
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800520 q->drops + cl->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522}
523
524/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900525 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 *
527 * Make sure that leaf is active. In the other words it can't be called
528 * with non-active leaf. It also removes class from the drop list.
529 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700530static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700532 WARN_ON(!cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700533
Stephen Hemminger87990462006-08-10 23:35:16 -0700534 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 cl->prio_activity = 0;
536 list_del_init(&cl->un.leaf.drop_list);
537}
538
539static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
540{
Jarek Poplawskif30ab412008-11-13 22:56:30 -0800541 int uninitialized_var(ret);
Stephen Hemminger87990462006-08-10 23:35:16 -0700542 struct htb_sched *q = qdisc_priv(sch);
543 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Stephen Hemminger87990462006-08-10 23:35:16 -0700545 if (cl == HTB_DIRECT) {
546 /* enqueue to helper queue */
547 if (q->direct_queue.qlen < q->direct_qlen) {
548 __skb_queue_tail(&q->direct_queue, skb);
549 q->direct_pkts++;
550 } else {
551 kfree_skb(skb);
552 sch->qstats.drops++;
553 return NET_XMIT_DROP;
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700556 } else if (!cl) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700557 if (ret & __NET_XMIT_BYPASS)
Stephen Hemminger87990462006-08-10 23:35:16 -0700558 sch->qstats.drops++;
559 kfree_skb(skb);
560 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#endif
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700562 } else if ((ret = qdisc_enqueue(skb, cl->un.leaf.q)) != NET_XMIT_SUCCESS) {
563 if (net_xmit_drop_count(ret)) {
564 sch->qstats.drops++;
565 cl->qstats.drops++;
566 }
David S. Miller69747652008-08-17 23:55:36 -0700567 return ret;
Stephen Hemminger87990462006-08-10 23:35:16 -0700568 } else {
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700569 cl->bstats.packets +=
570 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700571 cl->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700572 htb_activate(q, cl);
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Stephen Hemminger87990462006-08-10 23:35:16 -0700575 sch->q.qlen++;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700576 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700577 sch->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700578 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Jarek Poplawski59e42202008-12-03 21:17:27 -0800581static inline void htb_accnt_tokens(struct htb_class *cl, int bytes, long diff)
582{
583 long toks = diff + cl->tokens;
584
585 if (toks > cl->buffer)
586 toks = cl->buffer;
587 toks -= (long) qdisc_l2t(cl->rate, bytes);
588 if (toks <= -cl->mbuffer)
589 toks = 1 - cl->mbuffer;
590
591 cl->tokens = toks;
592}
593
594static inline void htb_accnt_ctokens(struct htb_class *cl, int bytes, long diff)
595{
596 long toks = diff + cl->ctokens;
597
598 if (toks > cl->cbuffer)
599 toks = cl->cbuffer;
600 toks -= (long) qdisc_l2t(cl->ceil, bytes);
601 if (toks <= -cl->mbuffer)
602 toks = 1 - cl->mbuffer;
603
604 cl->ctokens = toks;
605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/**
608 * htb_charge_class - charges amount "bytes" to leaf and ancestors
609 *
610 * Routine assumes that packet "bytes" long was dequeued from leaf cl
611 * borrowing from "level". It accounts bytes to ceil leaky bucket for
612 * leaf and all ancestors and to rate bucket for ancestors at levels
613 * "level" and higher. It also handles possible change of mode resulting
614 * from the update. Note that mode can also increase here (MAY_BORROW to
615 * CAN_SEND) because we can use more precise clock that event queue here.
616 * In such case we remove class from event queue first.
617 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700618static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700619 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700620{
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700621 int bytes = qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 enum htb_cmode old_mode;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800623 long diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700626 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700628 if (cl->level == level)
629 cl->xstats.lends++;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800630 htb_accnt_tokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 } else {
632 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700633 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
Jarek Poplawski59e42202008-12-03 21:17:27 -0800635 htb_accnt_ctokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Stephen Hemminger87990462006-08-10 23:35:16 -0700638 old_mode = cl->cmode;
639 diff = 0;
640 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (old_mode != cl->cmode) {
642 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700643 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700645 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /* update byte stats except for leaves which are already updated */
649 if (cl->level) {
650 cl->bstats.bytes += bytes;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700651 cl->bstats.packets += skb_is_gso(skb)?
652 skb_shinfo(skb)->gso_segs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 cl = cl->parent;
655 }
656}
657
658/**
659 * htb_do_events - make mode changes to classes at the level
660 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700661 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700663 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800665static psched_time_t htb_do_events(struct htb_sched *q, int level,
666 unsigned long start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Martin Devera8f3ea332008-03-23 22:00:38 -0700668 /* don't run for longer than 2 jiffies; 2 is used instead of
669 1 to simplify things when jiffy is going to be incremented
670 too soon */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800671 unsigned long stop_at = start + 2;
Martin Devera8f3ea332008-03-23 22:00:38 -0700672 while (time_before(jiffies, stop_at)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 struct htb_class *cl;
674 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700675 struct rb_node *p = rb_first(&q->wait_pq[level]);
676
Stephen Hemminger87990462006-08-10 23:35:16 -0700677 if (!p)
678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700681 if (cl->pq_key > q->now)
682 return cl->pq_key;
683
Stephen Hemminger3696f622006-08-10 23:36:01 -0700684 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700685 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700686 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700688 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
Jarek Poplawskic0851342009-01-12 21:54:16 -0800690 /* too much load - let's continue on next jiffie (including above) */
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800691 if (!(q->warned & HTB_WARN_TOOMANYEVENTS)) {
692 printk(KERN_WARNING "htb: too many events!\n");
693 q->warned |= HTB_WARN_TOOMANYEVENTS;
694 }
Jarek Poplawskic0851342009-01-12 21:54:16 -0800695 return q->now + 2 * PSCHED_TICKS_PER_SEC / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
699 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700700static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
701 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 struct rb_node *r = NULL;
704 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700705 struct htb_class *cl =
706 rb_entry(n, struct htb_class, node[prio]);
Stephen Hemminger87990462006-08-10 23:35:16 -0700707
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700708 if (id > cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 n = n->rb_right;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800710 } else if (id < cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 r = n;
712 n = n->rb_left;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800713 } else {
714 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 }
717 return r;
718}
719
720/**
721 * htb_lookup_leaf - returns next leaf class in DRR order
722 *
723 * Find leaf where current feed pointers points to.
724 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700725static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
726 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 int i;
729 struct {
730 struct rb_node *root;
731 struct rb_node **pptr;
732 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700733 } stk[TC_HTB_MAXDEPTH], *sp = stk;
734
Jarek Poplawski512bb432008-12-09 22:35:02 -0800735 BUG_ON(!tree->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 sp->root = tree->rb_node;
737 sp->pptr = pptr;
738 sp->pid = pid;
739
740 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700741 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900742 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700744 *sp->pptr =
745 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700747 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
748 can become out of date quickly */
749 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700751 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 *sp->pptr = (*sp->pptr)->rb_left;
753 if (sp > stk) {
754 sp--;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800755 if (!*sp->pptr) {
756 WARN_ON(1);
Stephen Hemminger87990462006-08-10 23:35:16 -0700757 return NULL;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800758 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700759 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761 } else {
762 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700763 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
764 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return cl;
766 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700767 sp->pptr = cl->un.inner.ptr + prio;
768 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700771 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return NULL;
773}
774
775/* dequeues packet at given priority and level; call only if
776 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700777static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
778 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700781 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700783 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
784 q->ptr[level] + prio,
785 q->last_ptr_id[level] + prio);
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 do {
788next:
Jarek Poplawski512bb432008-12-09 22:35:02 -0800789 if (unlikely(!cl))
Stephen Hemminger87990462006-08-10 23:35:16 -0700790 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /* class can be empty - it is unlikely but can be true if leaf
793 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900794 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 simply deactivate and skip such class */
796 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
797 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700798 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 /* row/level might become empty */
801 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700802 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Stephen Hemminger87990462006-08-10 23:35:16 -0700804 next = htb_lookup_leaf(q->row[level] + prio,
805 prio, q->ptr[level] + prio,
806 q->last_ptr_id[level] + prio);
807
808 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 start = next;
810 cl = next;
811 goto next;
812 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700813
814 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
815 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 break;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800817
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800818 qdisc_warn_nonwc("htb", cl->un.leaf.q);
Stephen Hemminger87990462006-08-10 23:35:16 -0700819 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
820 ptr[0]) + prio);
821 cl = htb_lookup_leaf(q->row[level] + prio, prio,
822 q->ptr[level] + prio,
823 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 } while (cl != start);
826
827 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700828 cl->un.leaf.deficit[level] -= qdisc_pkt_len(skb);
829 if (cl->un.leaf.deficit[level] < 0) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800830 cl->un.leaf.deficit[level] += cl->quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700831 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
832 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834 /* this used to be after charge_class but this constelation
835 gives us slightly better performance */
836 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700837 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700838 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 return skb;
841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843static struct sk_buff *htb_dequeue(struct Qdisc *sch)
844{
845 struct sk_buff *skb = NULL;
846 struct htb_sched *q = qdisc_priv(sch);
847 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700848 psched_time_t next_event;
Jarek Poplawskia73be042009-01-12 21:54:40 -0800849 unsigned long start_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700852 skb = __skb_dequeue(&q->direct_queue);
853 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 sch->flags &= ~TCQ_F_THROTTLED;
855 sch->q.qlen--;
856 return skb;
857 }
858
Stephen Hemminger87990462006-08-10 23:35:16 -0700859 if (!sch->q.qlen)
860 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700861 q->now = psched_get_time();
Jarek Poplawskia73be042009-01-12 21:54:40 -0800862 start_at = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Patrick McHardyfb983d42007-03-16 01:22:39 -0700864 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
867 /* common case optimization - skip event handler quickly */
868 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700869 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700870
Patrick McHardyfb983d42007-03-16 01:22:39 -0700871 if (q->now >= q->near_ev_cache[level]) {
Jarek Poplawskia73be042009-01-12 21:54:40 -0800872 event = htb_do_events(q, level, start_at);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700873 if (!event)
874 event = q->now + PSCHED_TICKS_PER_SEC;
875 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700876 } else
877 event = q->near_ev_cache[level];
878
Jarek Poplawskic0851342009-01-12 21:54:16 -0800879 if (next_event > event)
Patrick McHardyfb983d42007-03-16 01:22:39 -0700880 next_event = event;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 m = ~q->row_mask[level];
883 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700884 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700886 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (likely(skb != NULL)) {
888 sch->q.qlen--;
889 sch->flags &= ~TCQ_F_THROTTLED;
890 goto fin;
891 }
892 }
893 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700894 sch->qstats.overlimits++;
895 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return skb;
898}
899
900/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700901static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
903 struct htb_sched *q = qdisc_priv(sch);
904 int prio;
905
906 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
907 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700908 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct htb_class *cl = list_entry(p, struct htb_class,
910 un.leaf.drop_list);
911 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700912 if (cl->un.leaf.q->ops->drop &&
913 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 sch->q.qlen--;
915 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700916 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return len;
918 }
919 }
920 }
921 return 0;
922}
923
924/* reset all classes */
925/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700926static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700929 struct htb_class *cl;
930 struct hlist_node *n;
931 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700933 for (i = 0; i < q->clhash.hashsize; i++) {
934 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700936 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700938 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 qdisc_reset(cl->un.leaf.q);
940 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
941 }
942 cl->prio_activity = 0;
943 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 }
946 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700947 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 __skb_queue_purge(&q->direct_queue);
949 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700950 memset(q->row, 0, sizeof(q->row));
951 memset(q->row_mask, 0, sizeof(q->row_mask));
952 memset(q->wait_pq, 0, sizeof(q->wait_pq));
953 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700955 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
Patrick McHardy27a34212008-01-23 20:35:39 -0800958static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
959 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
960 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
961 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
962 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
963};
964
Patrick McHardy1e904742008-01-22 22:11:17 -0800965static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800968 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -0800970 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 int i;
Patrick McHardycee63722008-01-23 20:33:32 -0800972
973 if (!opt)
974 return -EINVAL;
975
Patrick McHardy27a34212008-01-23 20:35:39 -0800976 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800977 if (err < 0)
978 return err;
979
Patrick McHardy27a34212008-01-23 20:35:39 -0800980 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
982 return -EINVAL;
983 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800984 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700986 printk(KERN_ERR
987 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
988 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return -EINVAL;
990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700992 err = qdisc_class_hash_init(&q->clhash);
993 if (err < 0)
994 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700996 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Patrick McHardyfb983d42007-03-16 01:22:39 -0700998 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 skb_queue_head_init(&q->direct_queue);
1000
David S. Miller5ce2d482008-07-08 17:06:30 -07001001 q->direct_qlen = qdisc_dev(sch)->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001002 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1006 q->rate2quantum = 1;
1007 q->defcls = gopt->defcls;
1008
1009 return 0;
1010}
1011
1012static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1013{
Jarek Poplawski102396a2008-08-29 14:21:52 -07001014 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001016 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
David S. Miller7698b4f2008-07-16 01:42:40 -07001019 spin_lock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001020
1021 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 gopt.version = HTB_VER;
1023 gopt.rate2quantum = q->rate2quantum;
1024 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001025 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001026
1027 nest = nla_nest_start(skb, TCA_OPTIONS);
1028 if (nest == NULL)
1029 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001030 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001031 nla_nest_end(skb, nest);
1032
David S. Miller7698b4f2008-07-16 01:42:40 -07001033 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001035
Patrick McHardy1e904742008-01-22 22:11:17 -08001036nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001037 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001038 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return -1;
1040}
1041
1042static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001043 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Stephen Hemminger87990462006-08-10 23:35:16 -07001045 struct htb_class *cl = (struct htb_class *)arg;
Jarek Poplawski102396a2008-08-29 14:21:52 -07001046 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001047 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 struct tc_htb_opt opt;
1049
David S. Miller7698b4f2008-07-16 01:42:40 -07001050 spin_lock_bh(root_lock);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001051 tcm->tcm_parent = cl->parent ? cl->parent->common.classid : TC_H_ROOT;
1052 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (!cl->level && cl->un.leaf.q)
1054 tcm->tcm_info = cl->un.leaf.q->handle;
1055
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001056 nest = nla_nest_start(skb, TCA_OPTIONS);
1057 if (nest == NULL)
1058 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Stephen Hemminger87990462006-08-10 23:35:16 -07001060 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Stephen Hemminger87990462006-08-10 23:35:16 -07001062 opt.rate = cl->rate->rate;
1063 opt.buffer = cl->buffer;
1064 opt.ceil = cl->ceil->rate;
1065 opt.cbuffer = cl->cbuffer;
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001066 opt.quantum = cl->quantum;
1067 opt.prio = cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -07001068 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001069 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001070
1071 nla_nest_end(skb, nest);
David S. Miller7698b4f2008-07-16 01:42:40 -07001072 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001074
Patrick McHardy1e904742008-01-22 22:11:17 -08001075nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001076 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001077 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return -1;
1079}
1080
1081static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001082htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Stephen Hemminger87990462006-08-10 23:35:16 -07001084 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (!cl->level && cl->un.leaf.q)
1087 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1088 cl->xstats.tokens = cl->tokens;
1089 cl->xstats.ctokens = cl->ctokens;
1090
1091 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1092 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1093 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1094 return -1;
1095
1096 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1097}
1098
1099static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001100 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Stephen Hemminger87990462006-08-10 23:35:16 -07001102 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001105 if (new == NULL &&
David S. Miller5ce2d482008-07-08 17:06:30 -07001106 (new = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001107 &pfifo_qdisc_ops,
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001108 cl->common.classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001109 == NULL)
1110 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 sch_tree_lock(sch);
Patrick McHardyb94c8af2008-11-20 04:11:36 -08001112 *old = cl->un.leaf.q;
1113 cl->un.leaf.q = new;
1114 if (*old != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001115 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 qdisc_reset(*old);
1117 }
1118 sch_tree_unlock(sch);
1119 return 0;
1120 }
1121 return -ENOENT;
1122}
1123
Stephen Hemminger87990462006-08-10 23:35:16 -07001124static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Stephen Hemminger87990462006-08-10 23:35:16 -07001126 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1128}
1129
Patrick McHardy256d61b2006-11-29 17:37:05 -08001130static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1131{
1132 struct htb_class *cl = (struct htb_class *)arg;
1133
1134 if (cl->un.leaf.q->q.qlen == 0)
1135 htb_deactivate(qdisc_priv(sch), cl);
1136}
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1139{
Stephen Hemminger87990462006-08-10 23:35:16 -07001140 struct htb_class *cl = htb_find(classid, sch);
1141 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 cl->refcnt++;
1143 return (unsigned long)cl;
1144}
1145
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001146static inline int htb_parent_last_child(struct htb_class *cl)
1147{
1148 if (!cl->parent)
1149 /* the root class */
1150 return 0;
Patrick McHardy42077592008-07-05 23:22:53 -07001151 if (cl->parent->children > 1)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001152 /* not the last child */
1153 return 0;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001154 return 1;
1155}
1156
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001157static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl,
1158 struct Qdisc *new_q)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001159{
1160 struct htb_class *parent = cl->parent;
1161
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001162 WARN_ON(cl->level || !cl->un.leaf.q || cl->prio_activity);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001163
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001164 if (parent->cmode != HTB_CAN_SEND)
1165 htb_safe_rb_erase(&parent->pq_node, q->wait_pq + parent->level);
1166
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001167 parent->level = 0;
1168 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1169 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1170 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001171 parent->tokens = parent->buffer;
1172 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001173 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001174 parent->cmode = HTB_CAN_SEND;
1175}
1176
Stephen Hemminger87990462006-08-10 23:35:16 -07001177static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (!cl->level) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001180 WARN_ON(!cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 qdisc_destroy(cl->un.leaf.q);
1182 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001183 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 qdisc_put_rtab(cl->rate);
1185 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001186
Patrick McHardyff31ab52008-07-01 19:52:38 -07001187 tcf_destroy_chain(&cl->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 kfree(cl);
1189}
1190
1191/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001192static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001195 struct hlist_node *n, *next;
1196 struct htb_class *cl;
1197 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Patrick McHardyfb983d42007-03-16 01:22:39 -07001199 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001201 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 because filter need its target class alive to be able to call
1203 unbind_filter on it (without Oops). */
Patrick McHardyff31ab52008-07-01 19:52:38 -07001204 tcf_destroy_chain(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001205
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001206 for (i = 0; i < q->clhash.hashsize; i++) {
1207 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001208 tcf_destroy_chain(&cl->filter_list);
1209 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001210 for (i = 0; i < q->clhash.hashsize; i++) {
1211 hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
1212 common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001213 htb_destroy_class(sch, cl);
1214 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001215 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 __skb_queue_purge(&q->direct_queue);
1217}
1218
1219static int htb_delete(struct Qdisc *sch, unsigned long arg)
1220{
1221 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001222 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001223 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001224 struct Qdisc *new_q = NULL;
1225 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 // TODO: why don't allow to delete subtree ? references ? does
1228 // tc subsys quarantee us that in htb_destroy it holds no class
1229 // refs so that we can remove children safely there ?
Patrick McHardy42077592008-07-05 23:22:53 -07001230 if (cl->children || cl->filter_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001232
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001233 if (!cl->level && htb_parent_last_child(cl)) {
David S. Miller5ce2d482008-07-08 17:06:30 -07001234 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001235 &pfifo_qdisc_ops,
1236 cl->parent->common.classid);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001237 last_child = 1;
1238 }
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001241
Patrick McHardy814a175e2006-11-29 17:34:50 -08001242 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001243 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001244 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001245 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001246 }
1247
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001248 /* delete from hash and active; remainder in destroy_class */
1249 qdisc_class_hash_remove(&q->clhash, &cl->common);
Jarek Poplawski26b284d2008-08-13 15:16:43 -07001250 if (cl->parent)
1251 cl->parent->children--;
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001254 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001256 if (cl->cmode != HTB_CAN_SEND)
1257 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1258
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001259 if (last_child)
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001260 htb_parent_to_leaf(q, cl, new_q);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001263 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 sch_tree_unlock(sch);
1266 return 0;
1267}
1268
1269static void htb_put(struct Qdisc *sch, unsigned long arg)
1270{
Stephen Hemminger87990462006-08-10 23:35:16 -07001271 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001274 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
Stephen Hemminger87990462006-08-10 23:35:16 -07001277static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001278 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001279 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 int err = -EINVAL;
1282 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001283 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001284 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001286 struct nlattr *tb[TCA_HTB_RTAB + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 struct tc_htb_opt *hopt;
1288
1289 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001290 if (!opt)
1291 goto failure;
1292
Patrick McHardy27a34212008-01-23 20:35:39 -08001293 err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001294 if (err < 0)
1295 goto failure;
1296
1297 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001298 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Stephen Hemminger87990462006-08-10 23:35:16 -07001301 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001302
Patrick McHardy1e904742008-01-22 22:11:17 -08001303 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Patrick McHardy1e904742008-01-22 22:11:17 -08001305 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1306 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001307 if (!rtab || !ctab)
1308 goto failure;
1309
1310 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001312 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001313 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001314 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001315 struct gnet_estimator opt;
1316 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001317 .nla = {
1318 .nla_len = nla_attr_size(sizeof(est.opt)),
1319 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001320 },
1321 .opt = {
1322 /* 4s interval, 16s averaging constant */
1323 .interval = 2,
1324 .ewma_log = 2,
1325 },
1326 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001329 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1330 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 goto failure;
1332
1333 /* check maximal depth */
1334 if (parent && parent->parent && parent->parent->level < 2) {
1335 printk(KERN_ERR "htb: tree is too deep\n");
1336 goto failure;
1337 }
1338 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001339 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001341
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001342 err = gen_new_estimator(&cl->bstats, &cl->rate_est,
1343 qdisc_root_sleeping_lock(sch),
1344 tca[TCA_RATE] ? : &est.nla);
1345 if (err) {
1346 kfree(cl);
1347 goto failure;
1348 }
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 cl->refcnt = 1;
Patrick McHardy42077592008-07-05 23:22:53 -07001351 cl->children = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001353 RB_CLEAR_NODE(&cl->pq_node);
1354
1355 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1356 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1359 so that can't be used inside of sch_tree_lock
1360 -- thanks to Karlis Peisenieks */
David S. Miller5ce2d482008-07-08 17:06:30 -07001361 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001362 &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 sch_tree_lock(sch);
1364 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001365 unsigned int qlen = parent->un.leaf.q->q.qlen;
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001368 qdisc_reset(parent->un.leaf.q);
1369 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001370 qdisc_destroy(parent->un.leaf.q);
1371 if (parent->prio_activity)
1372 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 /* remove from evt list because of level change */
1375 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001376 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 parent->cmode = HTB_CAN_SEND;
1378 }
1379 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001380 : TC_HTB_MAXDEPTH) - 1;
1381 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383 /* leaf (we) needs elementary qdisc */
1384 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1385
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001386 cl->common.classid = classid;
Stephen Hemminger87990462006-08-10 23:35:16 -07001387 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /* set class to be in HTB_CAN_SEND state */
1390 cl->tokens = hopt->buffer;
1391 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001392 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001393 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 cl->cmode = HTB_CAN_SEND;
1395
1396 /* attach to the hash list and parent's family */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001397 qdisc_class_hash_insert(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001398 if (parent)
1399 parent->children++;
Patrick McHardyee39e102007-07-02 22:48:13 -07001400 } else {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001401 if (tca[TCA_RATE]) {
1402 err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
1403 qdisc_root_sleeping_lock(sch),
1404 tca[TCA_RATE]);
1405 if (err)
1406 return err;
1407 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001408 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001412 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!cl->level) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001414 cl->quantum = rtab->rate.rate / q->rate2quantum;
1415 if (!hopt->quantum && cl->quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001416 printk(KERN_WARNING
1417 "HTB: quantum of class %X is small. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001418 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001419 cl->quantum = 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001421 if (!hopt->quantum && cl->quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001422 printk(KERN_WARNING
1423 "HTB: quantum of class %X is big. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001424 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001425 cl->quantum = 200000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 }
1427 if (hopt->quantum)
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001428 cl->quantum = hopt->quantum;
1429 if ((cl->prio = hopt->prio) >= TC_HTB_NUMPRIO)
1430 cl->prio = TC_HTB_NUMPRIO - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
1433 cl->buffer = hopt->buffer;
1434 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001435 if (cl->rate)
1436 qdisc_put_rtab(cl->rate);
1437 cl->rate = rtab;
1438 if (cl->ceil)
1439 qdisc_put_rtab(cl->ceil);
1440 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 sch_tree_unlock(sch);
1442
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001443 qdisc_class_hash_grow(sch, &q->clhash);
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 *arg = (unsigned long)cl;
1446 return 0;
1447
1448failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001449 if (rtab)
1450 qdisc_put_rtab(rtab);
1451 if (ctab)
1452 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return err;
1454}
1455
1456static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1457{
1458 struct htb_sched *q = qdisc_priv(sch);
1459 struct htb_class *cl = (struct htb_class *)arg;
1460 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return fl;
1463}
1464
1465static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001466 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Stephen Hemminger87990462006-08-10 23:35:16 -07001468 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001471 The line above used to be there to prevent attaching filters to
1472 leaves. But at least tc_index filter uses this just to get class
1473 for other reasons so that we have to allow for it.
1474 ----
1475 19.6.2002 As Werner explained it is ok - bind filter is just
1476 another way to "lock" the class - unlike "get" this lock can
1477 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001479 if (cl)
1480 cl->filter_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 return (unsigned long)cl;
1482}
1483
1484static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1485{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001487
Stephen Hemminger87990462006-08-10 23:35:16 -07001488 if (cl)
1489 cl->filter_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1493{
1494 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001495 struct htb_class *cl;
1496 struct hlist_node *n;
1497 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if (arg->stop)
1500 return;
1501
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001502 for (i = 0; i < q->clhash.hashsize; i++) {
1503 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (arg->count < arg->skip) {
1505 arg->count++;
1506 continue;
1507 }
1508 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1509 arg->stop = 1;
1510 return;
1511 }
1512 arg->count++;
1513 }
1514 }
1515}
1516
Eric Dumazet20fea082007-11-14 01:44:41 -08001517static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .graft = htb_graft,
1519 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001520 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 .get = htb_get,
1522 .put = htb_put,
1523 .change = htb_change_class,
1524 .delete = htb_delete,
1525 .walk = htb_walk,
1526 .tcf_chain = htb_find_tcf,
1527 .bind_tcf = htb_bind_filter,
1528 .unbind_tcf = htb_unbind_filter,
1529 .dump = htb_dump_class,
1530 .dump_stats = htb_dump_class_stats,
1531};
1532
Eric Dumazet20fea082007-11-14 01:44:41 -08001533static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 .next = NULL,
1535 .cl_ops = &htb_class_ops,
1536 .id = "htb",
1537 .priv_size = sizeof(struct htb_sched),
1538 .enqueue = htb_enqueue,
1539 .dequeue = htb_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -07001540 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 .drop = htb_drop,
1542 .init = htb_init,
1543 .reset = htb_reset,
1544 .destroy = htb_destroy,
1545 .change = NULL /* htb_change */,
1546 .dump = htb_dump,
1547 .owner = THIS_MODULE,
1548};
1549
1550static int __init htb_module_init(void)
1551{
Stephen Hemminger87990462006-08-10 23:35:16 -07001552 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
Stephen Hemminger87990462006-08-10 23:35:16 -07001554static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Stephen Hemminger87990462006-08-10 23:35:16 -07001556 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
Stephen Hemminger87990462006-08-10 23:35:16 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559module_init(htb_module_init)
1560module_exit(htb_module_exit)
1561MODULE_LICENSE("GPL");