blob: 88cd0262662138f02fa18393a72667fc172e91c1 [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>
Jarek Poplawski12247362009-02-01 01:13:22 -080038#include <linux/workqueue.h>
Patrick McHardy0ba48052007-07-02 22:49:07 -070039#include <net/netlink.h>
40#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* HTB algorithm.
43 Author: devik@cdi.cz
44 ========================================================================
45 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090046 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 In fact it is another implementation of Floyd's formal sharing.
48
49 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090050 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
52 one less than their parent.
53*/
54
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070055static int htb_hysteresis __read_mostly = 0; /* whether to use mode hysteresis for speedup */
Stephen Hemminger87990462006-08-10 23:35:16 -070056#define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#if HTB_VER >> 16 != TC_HTB_PROTOVER
59#error "Mismatched sch_htb.c and pkt_sch.h"
60#endif
61
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -070062/* Module parameter and sysfs export */
63module_param (htb_hysteresis, int, 0640);
64MODULE_PARM_DESC(htb_hysteresis, "Hysteresis mode, less CPU load, less accurate");
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* used internaly to keep status of single class */
67enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070068 HTB_CANT_SEND, /* class can't send and can't borrow */
69 HTB_MAY_BORROW, /* class can't send but may borrow */
70 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070074struct htb_class {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -070075 struct Qdisc_class_common common;
Stephen Hemminger87990462006-08-10 23:35:16 -070076 /* general class parameters */
Stephen Hemminger87990462006-08-10 23:35:16 -070077 struct gnet_stats_basic bstats;
78 struct gnet_stats_queue qstats;
79 struct gnet_stats_rate_est rate_est;
80 struct tc_htb_xstats xstats; /* our special stats */
81 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Stephen Hemminger87990462006-08-10 23:35:16 -070083 /* topology */
84 int level; /* our level (see above) */
Patrick McHardy42077592008-07-05 23:22:53 -070085 unsigned int children;
Stephen Hemminger87990462006-08-10 23:35:16 -070086 struct htb_class *parent; /* parent class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Jarek Poplawskic19f7a32008-12-03 21:09:45 -080088 int prio; /* these two are used only by leaves... */
89 int quantum; /* but stored for parent-to-leaf return */
90
Stephen Hemminger87990462006-08-10 23:35:16 -070091 union {
92 struct htb_class_leaf {
93 struct Qdisc *q;
Stephen Hemminger87990462006-08-10 23:35:16 -070094 int deficit[TC_HTB_MAXDEPTH];
95 struct list_head drop_list;
96 } leaf;
97 struct htb_class_inner {
98 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
99 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
100 /* When class changes from state 1->2 and disconnects from
101 parent's feed then we lost ptr value and start from the
102 first child again. Here we store classid of the
103 last valid ptr (used when ptr is NULL). */
104 u32 last_ptr_id[TC_HTB_NUMPRIO];
105 } inner;
106 } un;
107 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
108 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700109 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Stephen Hemminger87990462006-08-10 23:35:16 -0700111 int prio_activity; /* for which prios are we active */
112 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Stephen Hemminger87990462006-08-10 23:35:16 -0700114 /* class attached filters */
115 struct tcf_proto *filter_list;
116 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Stephen Hemminger87990462006-08-10 23:35:16 -0700118 /* token bucket parameters */
119 struct qdisc_rate_table *rate; /* rate table of the class itself */
120 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
121 long buffer, cbuffer; /* token bucket depth/rate */
122 psched_tdiff_t mbuffer; /* max wait time */
123 long tokens, ctokens; /* current number of tokens */
124 psched_time_t t_c; /* checkpoint time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Stephen Hemminger87990462006-08-10 23:35:16 -0700127struct htb_sched {
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700128 struct Qdisc_class_hash clhash;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700129 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Stephen Hemminger87990462006-08-10 23:35:16 -0700131 /* self list - roots of self generating tree */
132 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
133 int row_mask[TC_HTB_MAXDEPTH];
134 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
135 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Stephen Hemminger87990462006-08-10 23:35:16 -0700137 /* self wait list - roots of wait PQs per row */
138 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Stephen Hemminger87990462006-08-10 23:35:16 -0700140 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700141 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Stephen Hemminger87990462006-08-10 23:35:16 -0700143 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Stephen Hemminger87990462006-08-10 23:35:16 -0700145 /* filters for qdisc itself */
146 struct tcf_proto *filter_list;
Stephen Hemminger87990462006-08-10 23:35:16 -0700147
148 int rate2quantum; /* quant = rate / rate2quantum */
149 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700150 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Stephen Hemminger87990462006-08-10 23:35:16 -0700152 /* non shaped skbs; let them go directly thru */
153 struct sk_buff_head direct_queue;
154 int direct_qlen; /* max qlen of above */
155
156 long direct_pkts;
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800157
158#define HTB_WARN_TOOMANYEVENTS 0x1
159 unsigned int warned; /* only one warning */
Jarek Poplawski12247362009-02-01 01:13:22 -0800160 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161};
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700164static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700167 struct Qdisc_class_common *clc;
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700168
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700169 clc = qdisc_class_find(&q->clhash, handle);
170 if (clc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return NULL;
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700172 return container_of(clc, struct htb_class, common);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/**
176 * htb_classify - classify a packet into class
177 *
178 * It returns NULL if the packet should be dropped or -1 if the packet
179 * should be passed directly thru. In all other cases leaf class is returned.
180 * We allow direct class selection by classid in priority. The we examine
181 * filters in qdisc and in inner nodes (if higher filter points to the inner
182 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900183 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
185 * then finish and return direct queue.
186 */
187#define HTB_DIRECT (struct htb_class*)-1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Stephen Hemminger87990462006-08-10 23:35:16 -0700189static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
190 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct htb_sched *q = qdisc_priv(sch);
193 struct htb_class *cl;
194 struct tcf_result res;
195 struct tcf_proto *tcf;
196 int result;
197
198 /* allow to select class by setting skb->priority to valid classid;
199 note that nfmark can be used too by attaching filter fw with no
200 rules in it */
201 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700202 return HTB_DIRECT; /* X:0 (direct flow) selected */
203 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return cl;
205
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700206 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 tcf = q->filter_list;
208 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
209#ifdef CONFIG_NET_CLS_ACT
210 switch (result) {
211 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700212 case TC_ACT_STOLEN:
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700213 *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 case TC_ACT_SHOT:
215 return NULL;
216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700218 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700220 return HTB_DIRECT; /* X:0 (direct flow) */
221 if ((cl = htb_find(res.classid, sch)) == NULL)
222 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700225 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* we have got inner class; apply inner filter chain */
228 tcf = cl->filter_list;
229 }
230 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700231 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700233 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return cl;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/**
238 * htb_add_to_id_tree - adds class to the round robin list
239 *
240 * Routine adds class to the list (actually tree) sorted by classid.
241 * Make sure that class is not already on such list for given prio.
242 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700243static void htb_add_to_id_tree(struct rb_root *root,
244 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700249 struct htb_class *c;
250 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700252
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700253 if (cl->common.classid > c->common.classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700255 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 p = &parent->rb_left;
257 }
258 rb_link_node(&cl->node[prio], parent, p);
259 rb_insert_color(&cl->node[prio], root);
260}
261
262/**
263 * htb_add_to_wait_tree - adds class to the event queue with delay
264 *
265 * The class is added to priority event queue to indicate that class will
266 * change its mode in cl->pq_key microseconds. Make sure that class is not
267 * already in the queue.
268 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700269static void htb_add_to_wait_tree(struct htb_sched *q,
270 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700273
Patrick McHardyfb983d42007-03-16 01:22:39 -0700274 cl->pq_key = q->now + delay;
275 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 cl->pq_key++;
277
278 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700279 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700283 struct htb_class *c;
284 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700286 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700288 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 p = &parent->rb_left;
290 }
291 rb_link_node(&cl->pq_node, parent, p);
292 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
293}
294
295/**
296 * htb_next_rb_node - finds next node in binary tree
297 *
298 * When we are past last key we return NULL.
299 * Average complexity is 2 steps per call.
300 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700301static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 *n = rb_next(*n);
304}
305
306/**
307 * htb_add_class_to_row - add class to its row
308 *
309 * The class is added to row at priorities marked in mask.
310 * It does nothing if mask == 0.
311 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700312static inline void htb_add_class_to_row(struct htb_sched *q,
313 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 q->row_mask[cl->level] |= mask;
316 while (mask) {
317 int prio = ffz(~mask);
318 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700319 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321}
322
Stephen Hemminger3696f622006-08-10 23:36:01 -0700323/* If this triggers, it is a bug in this code, but it need not be fatal */
324static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
325{
Ismail Donmez81771b32006-10-03 13:49:10 -0700326 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700327 WARN_ON(1);
328 } else {
329 rb_erase(rb, root);
330 RB_CLEAR_NODE(rb);
331 }
332}
333
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/**
336 * htb_remove_class_from_row - removes class from its row
337 *
338 * The class is removed from row at priorities marked in mask.
339 * It does nothing if mask == 0.
340 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700341static inline void htb_remove_class_from_row(struct htb_sched *q,
342 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 while (mask) {
347 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700350 if (q->ptr[cl->level][prio] == cl->node + prio)
351 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700352
353 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700354 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 m |= 1 << prio;
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 q->row_mask[cl->level] &= ~m;
358}
359
360/**
361 * htb_activate_prios - creates active classe's feed chain
362 *
363 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900364 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * (activated) mode. It does nothing if cl->prio_activity == 0.
366 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700367static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700370 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700373 m = mask;
374 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 int prio = ffz(~m);
376 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (p->un.inner.feed[prio].rb_node)
379 /* parent already has its feed in use so that
380 reset bit in mask as parent is already ok */
381 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700382
383 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700386 cl = p;
387 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700391 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394/**
395 * htb_deactivate_prios - remove class from feed chain
396 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900397 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * nothing if cl->prio_activity == 0. Class is removed from all feed
399 * chains and rows.
400 */
401static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
402{
403 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700404 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700407 m = mask;
408 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 while (m) {
410 int prio = ffz(~m);
411 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700412
413 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /* we are removing child which is pointed to from
415 parent feed - forget the pointer but remember
416 classid */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700417 p->un.inner.last_ptr_id[prio] = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 p->un.inner.ptr[prio] = NULL;
419 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700420
Stephen Hemminger3696f622006-08-10 23:36:01 -0700421 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700422
423 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 mask |= 1 << prio;
425 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700428 cl = p;
429 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700432 if (cl->cmode == HTB_CAN_SEND && mask)
433 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700436static inline long htb_lowater(const struct htb_class *cl)
437{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700438 if (htb_hysteresis)
439 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
440 else
441 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700442}
443static inline long htb_hiwater(const struct htb_class *cl)
444{
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700445 if (htb_hysteresis)
446 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
447 else
448 return 0;
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700449}
Jesper Dangaard Brouer47083fc2008-06-16 16:39:32 -0700450
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/**
453 * htb_class_mode - computes and returns current class mode
454 *
455 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
456 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900457 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900459 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
461 * mode transitions per time unit. The speed gain is about 1/6.
462 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700463static inline enum htb_cmode
464htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Stephen Hemminger87990462006-08-10 23:35:16 -0700466 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Stephen Hemminger87990462006-08-10 23:35:16 -0700468 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
469 *diff = -toks;
470 return HTB_CANT_SEND;
471 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700472
Stephen Hemminger87990462006-08-10 23:35:16 -0700473 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
474 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Stephen Hemminger87990462006-08-10 23:35:16 -0700476 *diff = -toks;
477 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480/**
481 * htb_change_class_mode - changes classe's mode
482 *
483 * This should be the only way how to change classe's mode under normal
484 * cirsumstances. Routine will update feed lists linkage, change mode
485 * and add class to the wait event queue if appropriate. New mode should
486 * be different from old one and cl->pq_key has to be valid if changing
487 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
488 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700489static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700491{
492 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700495 return;
496
497 if (cl->prio_activity) { /* not necessary: speed optimization */
498 if (cl->cmode != HTB_CANT_SEND)
499 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700501 if (new_mode != HTB_CANT_SEND)
502 htb_activate_prios(q, cl);
503 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 cl->cmode = new_mode;
505}
506
507/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900508 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 *
510 * Routine learns (new) priority of leaf and activates feed chain
511 * for the prio. It can be called on already active leaf safely.
512 * It also adds leaf into droplist.
513 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700514static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700516 WARN_ON(cl->level || !cl->un.leaf.q || !cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (!cl->prio_activity) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800519 cl->prio_activity = 1 << cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700520 htb_activate_prios(q, cl);
521 list_add_tail(&cl->un.leaf.drop_list,
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800522 q->drops + cl->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524}
525
526/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900527 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
529 * Make sure that leaf is active. In the other words it can't be called
530 * with non-active leaf. It also removes class from the drop list.
531 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700532static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700534 WARN_ON(!cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700535
Stephen Hemminger87990462006-08-10 23:35:16 -0700536 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 cl->prio_activity = 0;
538 list_del_init(&cl->un.leaf.drop_list);
539}
540
541static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
542{
Jarek Poplawskif30ab412008-11-13 22:56:30 -0800543 int uninitialized_var(ret);
Stephen Hemminger87990462006-08-10 23:35:16 -0700544 struct htb_sched *q = qdisc_priv(sch);
545 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Stephen Hemminger87990462006-08-10 23:35:16 -0700547 if (cl == HTB_DIRECT) {
548 /* enqueue to helper queue */
549 if (q->direct_queue.qlen < q->direct_qlen) {
550 __skb_queue_tail(&q->direct_queue, skb);
551 q->direct_pkts++;
552 } else {
553 kfree_skb(skb);
554 sch->qstats.drops++;
555 return NET_XMIT_DROP;
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700558 } else if (!cl) {
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700559 if (ret & __NET_XMIT_BYPASS)
Stephen Hemminger87990462006-08-10 23:35:16 -0700560 sch->qstats.drops++;
561 kfree_skb(skb);
562 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#endif
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700564 } else if ((ret = qdisc_enqueue(skb, cl->un.leaf.q)) != NET_XMIT_SUCCESS) {
565 if (net_xmit_drop_count(ret)) {
566 sch->qstats.drops++;
567 cl->qstats.drops++;
568 }
David S. Miller69747652008-08-17 23:55:36 -0700569 return ret;
Stephen Hemminger87990462006-08-10 23:35:16 -0700570 } else {
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700571 cl->bstats.packets +=
572 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700573 cl->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700574 htb_activate(q, cl);
575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Stephen Hemminger87990462006-08-10 23:35:16 -0700577 sch->q.qlen++;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700578 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700579 sch->bstats.bytes += qdisc_pkt_len(skb);
Stephen Hemminger87990462006-08-10 23:35:16 -0700580 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Jarek Poplawski59e42202008-12-03 21:17:27 -0800583static inline void htb_accnt_tokens(struct htb_class *cl, int bytes, long diff)
584{
585 long toks = diff + cl->tokens;
586
587 if (toks > cl->buffer)
588 toks = cl->buffer;
589 toks -= (long) qdisc_l2t(cl->rate, bytes);
590 if (toks <= -cl->mbuffer)
591 toks = 1 - cl->mbuffer;
592
593 cl->tokens = toks;
594}
595
596static inline void htb_accnt_ctokens(struct htb_class *cl, int bytes, long diff)
597{
598 long toks = diff + cl->ctokens;
599
600 if (toks > cl->cbuffer)
601 toks = cl->cbuffer;
602 toks -= (long) qdisc_l2t(cl->ceil, bytes);
603 if (toks <= -cl->mbuffer)
604 toks = 1 - cl->mbuffer;
605
606 cl->ctokens = toks;
607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609/**
610 * htb_charge_class - charges amount "bytes" to leaf and ancestors
611 *
612 * Routine assumes that packet "bytes" long was dequeued from leaf cl
613 * borrowing from "level". It accounts bytes to ceil leaky bucket for
614 * leaf and all ancestors and to rate bucket for ancestors at levels
615 * "level" and higher. It also handles possible change of mode resulting
616 * from the update. Note that mode can also increase here (MAY_BORROW to
617 * CAN_SEND) because we can use more precise clock that event queue here.
618 * In such case we remove class from event queue first.
619 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700620static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700621 int level, struct sk_buff *skb)
Stephen Hemminger87990462006-08-10 23:35:16 -0700622{
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700623 int bytes = qdisc_pkt_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 enum htb_cmode old_mode;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800625 long diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 while (cl) {
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700628 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700630 if (cl->level == level)
631 cl->xstats.lends++;
Jarek Poplawski59e42202008-12-03 21:17:27 -0800632 htb_accnt_tokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 } else {
634 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700635 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Jarek Poplawski59e42202008-12-03 21:17:27 -0800637 htb_accnt_ctokens(cl, bytes, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Stephen Hemminger87990462006-08-10 23:35:16 -0700640 old_mode = cl->cmode;
641 diff = 0;
642 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (old_mode != cl->cmode) {
644 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700645 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700647 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /* update byte stats except for leaves which are already updated */
651 if (cl->level) {
652 cl->bstats.bytes += bytes;
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700653 cl->bstats.packets += skb_is_gso(skb)?
654 skb_shinfo(skb)->gso_segs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 cl = cl->parent;
657 }
658}
659
660/**
661 * htb_do_events - make mode changes to classes at the level
662 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700663 * Scans event queue for pending events and applies them. Returns time of
Jarek Poplawski12247362009-02-01 01:13:22 -0800664 * next pending event (0 for no event in pq, q->now for too many events).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700665 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800667static psched_time_t htb_do_events(struct htb_sched *q, int level,
668 unsigned long start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Martin Devera8f3ea332008-03-23 22:00:38 -0700670 /* don't run for longer than 2 jiffies; 2 is used instead of
671 1 to simplify things when jiffy is going to be incremented
672 too soon */
Jarek Poplawskia73be042009-01-12 21:54:40 -0800673 unsigned long stop_at = start + 2;
Martin Devera8f3ea332008-03-23 22:00:38 -0700674 while (time_before(jiffies, stop_at)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct htb_class *cl;
676 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700677 struct rb_node *p = rb_first(&q->wait_pq[level]);
678
Stephen Hemminger87990462006-08-10 23:35:16 -0700679 if (!p)
680 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700683 if (cl->pq_key > q->now)
684 return cl->pq_key;
685
Stephen Hemminger3696f622006-08-10 23:36:01 -0700686 htb_safe_rb_erase(p, q->wait_pq + level);
Patrick McHardy03cc45c2007-03-23 11:29:11 -0700687 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
Stephen Hemminger87990462006-08-10 23:35:16 -0700688 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700690 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
Jarek Poplawski12247362009-02-01 01:13:22 -0800692
693 /* too much load - let's continue after a break for scheduling */
Jarek Poplawskie82181d2009-02-01 01:13:05 -0800694 if (!(q->warned & HTB_WARN_TOOMANYEVENTS)) {
695 printk(KERN_WARNING "htb: too many events!\n");
696 q->warned |= HTB_WARN_TOOMANYEVENTS;
697 }
Jarek Poplawski12247362009-02-01 01:13:22 -0800698
699 return q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
703 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700704static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
705 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 struct rb_node *r = NULL;
708 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700709 struct htb_class *cl =
710 rb_entry(n, struct htb_class, node[prio]);
Stephen Hemminger87990462006-08-10 23:35:16 -0700711
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700712 if (id > cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 n = n->rb_right;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800714 } else if (id < cl->common.classid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 r = n;
716 n = n->rb_left;
Jarek Poplawski1b5c0072008-12-09 22:34:40 -0800717 } else {
718 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 }
721 return r;
722}
723
724/**
725 * htb_lookup_leaf - returns next leaf class in DRR order
726 *
727 * Find leaf where current feed pointers points to.
728 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700729static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
730 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 int i;
733 struct {
734 struct rb_node *root;
735 struct rb_node **pptr;
736 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700737 } stk[TC_HTB_MAXDEPTH], *sp = stk;
738
Jarek Poplawski512bb432008-12-09 22:35:02 -0800739 BUG_ON(!tree->rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 sp->root = tree->rb_node;
741 sp->pptr = pptr;
742 sp->pid = pid;
743
744 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700745 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900746 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700748 *sp->pptr =
749 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700751 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
752 can become out of date quickly */
753 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700755 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 *sp->pptr = (*sp->pptr)->rb_left;
757 if (sp > stk) {
758 sp--;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800759 if (!*sp->pptr) {
760 WARN_ON(1);
Stephen Hemminger87990462006-08-10 23:35:16 -0700761 return NULL;
Jarek Poplawski512bb432008-12-09 22:35:02 -0800762 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700763 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765 } else {
766 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700767 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
768 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return cl;
770 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700771 sp->pptr = cl->un.inner.ptr + prio;
772 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774 }
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700775 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return NULL;
777}
778
779/* dequeues packet at given priority and level; call only if
780 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700781static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
782 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700785 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700787 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
788 q->ptr[level] + prio,
789 q->last_ptr_id[level] + prio);
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 do {
792next:
Jarek Poplawski512bb432008-12-09 22:35:02 -0800793 if (unlikely(!cl))
Stephen Hemminger87990462006-08-10 23:35:16 -0700794 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 /* class can be empty - it is unlikely but can be true if leaf
797 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900798 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 simply deactivate and skip such class */
800 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
801 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700802 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /* row/level might become empty */
805 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700806 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Stephen Hemminger87990462006-08-10 23:35:16 -0700808 next = htb_lookup_leaf(q->row[level] + prio,
809 prio, q->ptr[level] + prio,
810 q->last_ptr_id[level] + prio);
811
812 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 start = next;
814 cl = next;
815 goto next;
816 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700817
818 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
819 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 break;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800821
Jarek Poplawskib00355d2009-02-01 01:12:42 -0800822 qdisc_warn_nonwc("htb", cl->un.leaf.q);
Stephen Hemminger87990462006-08-10 23:35:16 -0700823 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
824 ptr[0]) + prio);
825 cl = htb_lookup_leaf(q->row[level] + prio, prio,
826 q->ptr[level] + prio,
827 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 } while (cl != start);
830
831 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700832 cl->un.leaf.deficit[level] -= qdisc_pkt_len(skb);
833 if (cl->un.leaf.deficit[level] < 0) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -0800834 cl->un.leaf.deficit[level] += cl->quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700835 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
836 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 /* this used to be after charge_class but this constelation
839 gives us slightly better performance */
840 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700841 htb_deactivate(q, cl);
Ranjit Manomohanc9726d62007-07-10 22:43:16 -0700842 htb_charge_class(q, cl, level, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 return skb;
845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847static struct sk_buff *htb_dequeue(struct Qdisc *sch)
848{
849 struct sk_buff *skb = NULL;
850 struct htb_sched *q = qdisc_priv(sch);
851 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700852 psched_time_t next_event;
Jarek Poplawskia73be042009-01-12 21:54:40 -0800853 unsigned long start_at;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700856 skb = __skb_dequeue(&q->direct_queue);
857 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 sch->flags &= ~TCQ_F_THROTTLED;
859 sch->q.qlen--;
860 return skb;
861 }
862
Stephen Hemminger87990462006-08-10 23:35:16 -0700863 if (!sch->q.qlen)
864 goto fin;
Patrick McHardy3bebcda2007-03-23 11:29:25 -0700865 q->now = psched_get_time();
Jarek Poplawskia73be042009-01-12 21:54:40 -0800866 start_at = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Patrick McHardyfb983d42007-03-16 01:22:39 -0700868 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Jarek Poplawski633fe662008-12-03 21:09:10 -0800869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
871 /* common case optimization - skip event handler quickly */
872 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700873 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700874
Patrick McHardyfb983d42007-03-16 01:22:39 -0700875 if (q->now >= q->near_ev_cache[level]) {
Jarek Poplawskia73be042009-01-12 21:54:40 -0800876 event = htb_do_events(q, level, start_at);
Patrick McHardy2e4b3b02007-05-23 23:39:54 -0700877 if (!event)
878 event = q->now + PSCHED_TICKS_PER_SEC;
879 q->near_ev_cache[level] = event;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700880 } else
881 event = q->near_ev_cache[level];
882
Jarek Poplawskic0851342009-01-12 21:54:16 -0800883 if (next_event > event)
Patrick McHardyfb983d42007-03-16 01:22:39 -0700884 next_event = event;
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 m = ~q->row_mask[level];
887 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700888 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700890 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (likely(skb != NULL)) {
892 sch->q.qlen--;
893 sch->flags &= ~TCQ_F_THROTTLED;
894 goto fin;
895 }
896 }
897 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700898 sch->qstats.overlimits++;
Jarek Poplawski12247362009-02-01 01:13:22 -0800899 if (likely(next_event > q->now))
900 qdisc_watchdog_schedule(&q->watchdog, next_event);
901 else
902 schedule_work(&q->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return skb;
905}
906
907/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -0700908static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct htb_sched *q = qdisc_priv(sch);
911 int prio;
912
913 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
914 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -0700915 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 struct htb_class *cl = list_entry(p, struct htb_class,
917 un.leaf.drop_list);
918 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -0700919 if (cl->un.leaf.q->ops->drop &&
920 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 sch->q.qlen--;
922 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700923 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return len;
925 }
926 }
927 }
928 return 0;
929}
930
931/* reset all classes */
932/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -0700933static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700936 struct htb_class *cl;
937 struct hlist_node *n;
938 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -0700940 for (i = 0; i < q->clhash.hashsize; i++) {
941 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700943 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 else {
Stephen Hemminger87990462006-08-10 23:35:16 -0700945 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 qdisc_reset(cl->un.leaf.q);
947 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
948 }
949 cl->prio_activity = 0;
950 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 }
953 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700954 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 __skb_queue_purge(&q->direct_queue);
956 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -0700957 memset(q->row, 0, sizeof(q->row));
958 memset(q->row_mask, 0, sizeof(q->row_mask));
959 memset(q->wait_pq, 0, sizeof(q->wait_pq));
960 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -0700962 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Patrick McHardy27a34212008-01-23 20:35:39 -0800965static const struct nla_policy htb_policy[TCA_HTB_MAX + 1] = {
966 [TCA_HTB_PARMS] = { .len = sizeof(struct tc_htb_opt) },
967 [TCA_HTB_INIT] = { .len = sizeof(struct tc_htb_glob) },
968 [TCA_HTB_CTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
969 [TCA_HTB_RTAB] = { .type = NLA_BINARY, .len = TC_RTAB_SIZE },
970};
971
Jarek Poplawski12247362009-02-01 01:13:22 -0800972static void htb_work_func(struct work_struct *work)
973{
974 struct htb_sched *q = container_of(work, struct htb_sched, work);
975 struct Qdisc *sch = q->watchdog.qdisc;
976
977 __netif_schedule(qdisc_root(sch));
978}
979
Patrick McHardy1e904742008-01-22 22:11:17 -0800980static int htb_init(struct Qdisc *sch, struct nlattr *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy1e904742008-01-22 22:11:17 -0800983 struct nlattr *tb[TCA_HTB_INIT + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 struct tc_htb_glob *gopt;
Patrick McHardycee63722008-01-23 20:33:32 -0800985 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 int i;
Patrick McHardycee63722008-01-23 20:33:32 -0800987
988 if (!opt)
989 return -EINVAL;
990
Patrick McHardy27a34212008-01-23 20:35:39 -0800991 err = nla_parse_nested(tb, TCA_HTB_INIT, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -0800992 if (err < 0)
993 return err;
994
Patrick McHardy27a34212008-01-23 20:35:39 -0800995 if (tb[TCA_HTB_INIT] == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
997 return -EINVAL;
998 }
Patrick McHardy1e904742008-01-22 22:11:17 -0800999 gopt = nla_data(tb[TCA_HTB_INIT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001001 printk(KERN_ERR
1002 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1003 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return -EINVAL;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001007 err = qdisc_class_hash_init(&q->clhash);
1008 if (err < 0)
1009 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001011 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Patrick McHardyfb983d42007-03-16 01:22:39 -07001013 qdisc_watchdog_init(&q->watchdog, sch);
Jarek Poplawski12247362009-02-01 01:13:22 -08001014 INIT_WORK(&q->work, htb_work_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 skb_queue_head_init(&q->direct_queue);
1016
David S. Miller5ce2d482008-07-08 17:06:30 -07001017 q->direct_qlen = qdisc_dev(sch)->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001018 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1022 q->rate2quantum = 1;
1023 q->defcls = gopt->defcls;
1024
1025 return 0;
1026}
1027
1028static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1029{
Jarek Poplawski102396a2008-08-29 14:21:52 -07001030 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001032 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct tc_htb_glob gopt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
David S. Miller7698b4f2008-07-16 01:42:40 -07001035 spin_lock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001036
1037 gopt.direct_pkts = q->direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 gopt.version = HTB_VER;
1039 gopt.rate2quantum = q->rate2quantum;
1040 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001041 gopt.debug = 0;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001042
1043 nest = nla_nest_start(skb, TCA_OPTIONS);
1044 if (nest == NULL)
1045 goto nla_put_failure;
Patrick McHardy1e904742008-01-22 22:11:17 -08001046 NLA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001047 nla_nest_end(skb, nest);
1048
David S. Miller7698b4f2008-07-16 01:42:40 -07001049 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001051
Patrick McHardy1e904742008-01-22 22:11:17 -08001052nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001053 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001054 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return -1;
1056}
1057
1058static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001059 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Stephen Hemminger87990462006-08-10 23:35:16 -07001061 struct htb_class *cl = (struct htb_class *)arg;
Jarek Poplawski102396a2008-08-29 14:21:52 -07001062 spinlock_t *root_lock = qdisc_root_sleeping_lock(sch);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001063 struct nlattr *nest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct tc_htb_opt opt;
1065
David S. Miller7698b4f2008-07-16 01:42:40 -07001066 spin_lock_bh(root_lock);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001067 tcm->tcm_parent = cl->parent ? cl->parent->common.classid : TC_H_ROOT;
1068 tcm->tcm_handle = cl->common.classid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (!cl->level && cl->un.leaf.q)
1070 tcm->tcm_info = cl->un.leaf.q->handle;
1071
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001072 nest = nla_nest_start(skb, TCA_OPTIONS);
1073 if (nest == NULL)
1074 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Stephen Hemminger87990462006-08-10 23:35:16 -07001076 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Stephen Hemminger87990462006-08-10 23:35:16 -07001078 opt.rate = cl->rate->rate;
1079 opt.buffer = cl->buffer;
1080 opt.ceil = cl->ceil->rate;
1081 opt.cbuffer = cl->cbuffer;
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001082 opt.quantum = cl->quantum;
1083 opt.prio = cl->prio;
Stephen Hemminger87990462006-08-10 23:35:16 -07001084 opt.level = cl->level;
Patrick McHardy1e904742008-01-22 22:11:17 -08001085 NLA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001086
1087 nla_nest_end(skb, nest);
David S. Miller7698b4f2008-07-16 01:42:40 -07001088 spin_unlock_bh(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return skb->len;
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001090
Patrick McHardy1e904742008-01-22 22:11:17 -08001091nla_put_failure:
David S. Miller7698b4f2008-07-16 01:42:40 -07001092 spin_unlock_bh(root_lock);
Patrick McHardy4b3550ef2008-01-23 20:34:11 -08001093 nla_nest_cancel(skb, nest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return -1;
1095}
1096
1097static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001098htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Stephen Hemminger87990462006-08-10 23:35:16 -07001100 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (!cl->level && cl->un.leaf.q)
1103 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1104 cl->xstats.tokens = cl->tokens;
1105 cl->xstats.ctokens = cl->ctokens;
1106
1107 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1108 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1109 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1110 return -1;
1111
1112 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1113}
1114
1115static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001116 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Stephen Hemminger87990462006-08-10 23:35:16 -07001118 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001121 if (new == NULL &&
David S. Miller5ce2d482008-07-08 17:06:30 -07001122 (new = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001123 &pfifo_qdisc_ops,
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001124 cl->common.classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001125 == NULL)
1126 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 sch_tree_lock(sch);
Patrick McHardyb94c8af2008-11-20 04:11:36 -08001128 *old = cl->un.leaf.q;
1129 cl->un.leaf.q = new;
1130 if (*old != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001131 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 qdisc_reset(*old);
1133 }
1134 sch_tree_unlock(sch);
1135 return 0;
1136 }
1137 return -ENOENT;
1138}
1139
Stephen Hemminger87990462006-08-10 23:35:16 -07001140static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
Stephen Hemminger87990462006-08-10 23:35:16 -07001142 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1144}
1145
Patrick McHardy256d61b2006-11-29 17:37:05 -08001146static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1147{
1148 struct htb_class *cl = (struct htb_class *)arg;
1149
1150 if (cl->un.leaf.q->q.qlen == 0)
1151 htb_deactivate(qdisc_priv(sch), cl);
1152}
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1155{
Stephen Hemminger87990462006-08-10 23:35:16 -07001156 struct htb_class *cl = htb_find(classid, sch);
1157 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 cl->refcnt++;
1159 return (unsigned long)cl;
1160}
1161
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001162static inline int htb_parent_last_child(struct htb_class *cl)
1163{
1164 if (!cl->parent)
1165 /* the root class */
1166 return 0;
Patrick McHardy42077592008-07-05 23:22:53 -07001167 if (cl->parent->children > 1)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001168 /* not the last child */
1169 return 0;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001170 return 1;
1171}
1172
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001173static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl,
1174 struct Qdisc *new_q)
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001175{
1176 struct htb_class *parent = cl->parent;
1177
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001178 WARN_ON(cl->level || !cl->un.leaf.q || cl->prio_activity);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001179
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001180 if (parent->cmode != HTB_CAN_SEND)
1181 htb_safe_rb_erase(&parent->pq_node, q->wait_pq + parent->level);
1182
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001183 parent->level = 0;
1184 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1185 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1186 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001187 parent->tokens = parent->buffer;
1188 parent->ctokens = parent->cbuffer;
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001189 parent->t_c = psched_get_time();
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001190 parent->cmode = HTB_CAN_SEND;
1191}
1192
Stephen Hemminger87990462006-08-10 23:35:16 -07001193static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (!cl->level) {
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001196 WARN_ON(!cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 qdisc_destroy(cl->un.leaf.q);
1198 }
Patrick McHardyee39e102007-07-02 22:48:13 -07001199 gen_kill_estimator(&cl->bstats, &cl->rate_est);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 qdisc_put_rtab(cl->rate);
1201 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001202
Patrick McHardyff31ab52008-07-01 19:52:38 -07001203 tcf_destroy_chain(&cl->filter_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 kfree(cl);
1205}
1206
Stephen Hemminger87990462006-08-10 23:35:16 -07001207static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001210 struct hlist_node *n, *next;
1211 struct htb_class *cl;
1212 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jarek Poplawski12247362009-02-01 01:13:22 -08001214 cancel_work_sync(&q->work);
Patrick McHardyfb983d42007-03-16 01:22:39 -07001215 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001217 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 because filter need its target class alive to be able to call
1219 unbind_filter on it (without Oops). */
Patrick McHardyff31ab52008-07-01 19:52:38 -07001220 tcf_destroy_chain(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001221
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001222 for (i = 0; i < q->clhash.hashsize; i++) {
1223 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001224 tcf_destroy_chain(&cl->filter_list);
1225 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001226 for (i = 0; i < q->clhash.hashsize; i++) {
1227 hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
1228 common.hnode)
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001229 htb_destroy_class(sch, cl);
1230 }
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001231 qdisc_class_hash_destroy(&q->clhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 __skb_queue_purge(&q->direct_queue);
1233}
1234
1235static int htb_delete(struct Qdisc *sch, unsigned long arg)
1236{
1237 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001238 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001239 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001240 struct Qdisc *new_q = NULL;
1241 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 // TODO: why don't allow to delete subtree ? references ? does
1244 // tc subsys quarantee us that in htb_destroy it holds no class
1245 // refs so that we can remove children safely there ?
Patrick McHardy42077592008-07-05 23:22:53 -07001246 if (cl->children || cl->filter_cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001248
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001249 if (!cl->level && htb_parent_last_child(cl)) {
David S. Miller5ce2d482008-07-08 17:06:30 -07001250 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001251 &pfifo_qdisc_ops,
1252 cl->parent->common.classid);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001253 last_child = 1;
1254 }
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001257
Patrick McHardy814a175e2006-11-29 17:34:50 -08001258 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001259 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001260 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001261 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001262 }
1263
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001264 /* delete from hash and active; remainder in destroy_class */
1265 qdisc_class_hash_remove(&q->clhash, &cl->common);
Jarek Poplawski26b284d2008-08-13 15:16:43 -07001266 if (cl->parent)
1267 cl->parent->children--;
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001270 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Patrick McHardyfbd8f132008-07-05 23:22:19 -07001272 if (cl->cmode != HTB_CAN_SEND)
1273 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1274
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001275 if (last_child)
Jarek Poplawski3ba08b02008-05-03 20:46:29 -07001276 htb_parent_to_leaf(q, cl, new_q);
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001277
Jarek Poplawski7cd0a632009-03-15 20:00:19 -07001278 BUG_ON(--cl->refcnt == 0);
1279 /*
1280 * This shouldn't happen: we "hold" one cops->get() when called
1281 * from tc_ctl_tclass; the destroy method is done from cops->put().
1282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 sch_tree_unlock(sch);
1285 return 0;
1286}
1287
1288static void htb_put(struct Qdisc *sch, unsigned long arg)
1289{
Stephen Hemminger87990462006-08-10 23:35:16 -07001290 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001293 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Stephen Hemminger87990462006-08-10 23:35:16 -07001296static int htb_change_class(struct Qdisc *sch, u32 classid,
Patrick McHardy1e904742008-01-22 22:11:17 -08001297 u32 parentid, struct nlattr **tca,
Stephen Hemminger87990462006-08-10 23:35:16 -07001298 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 int err = -EINVAL;
1301 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001302 struct htb_class *cl = (struct htb_class *)*arg, *parent;
Patrick McHardy1e904742008-01-22 22:11:17 -08001303 struct nlattr *opt = tca[TCA_OPTIONS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
Patrick McHardy1e904742008-01-22 22:11:17 -08001305 struct nlattr *tb[TCA_HTB_RTAB + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 struct tc_htb_opt *hopt;
1307
1308 /* extract all subattrs from opt attr */
Patrick McHardycee63722008-01-23 20:33:32 -08001309 if (!opt)
1310 goto failure;
1311
Patrick McHardy27a34212008-01-23 20:35:39 -08001312 err = nla_parse_nested(tb, TCA_HTB_RTAB, opt, htb_policy);
Patrick McHardycee63722008-01-23 20:33:32 -08001313 if (err < 0)
1314 goto failure;
1315
1316 err = -EINVAL;
Patrick McHardy27a34212008-01-23 20:35:39 -08001317 if (tb[TCA_HTB_PARMS] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Stephen Hemminger87990462006-08-10 23:35:16 -07001320 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001321
Patrick McHardy1e904742008-01-22 22:11:17 -08001322 hopt = nla_data(tb[TCA_HTB_PARMS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Patrick McHardy1e904742008-01-22 22:11:17 -08001324 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB]);
1325 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB]);
Stephen Hemminger87990462006-08-10 23:35:16 -07001326 if (!rtab || !ctab)
1327 goto failure;
1328
1329 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001331 int prio;
Patrick McHardyee39e102007-07-02 22:48:13 -07001332 struct {
Patrick McHardy1e904742008-01-22 22:11:17 -08001333 struct nlattr nla;
Patrick McHardyee39e102007-07-02 22:48:13 -07001334 struct gnet_estimator opt;
1335 } est = {
Patrick McHardy1e904742008-01-22 22:11:17 -08001336 .nla = {
1337 .nla_len = nla_attr_size(sizeof(est.opt)),
1338 .nla_type = TCA_RATE,
Patrick McHardyee39e102007-07-02 22:48:13 -07001339 },
1340 .opt = {
1341 /* 4s interval, 16s averaging constant */
1342 .interval = 2,
1343 .ewma_log = 2,
1344 },
1345 };
Stephen Hemminger3696f622006-08-10 23:36:01 -07001346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001348 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1349 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto failure;
1351
1352 /* check maximal depth */
1353 if (parent && parent->parent && parent->parent->level < 2) {
1354 printk(KERN_ERR "htb: tree is too deep\n");
1355 goto failure;
1356 }
1357 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001358 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001360
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001361 err = gen_new_estimator(&cl->bstats, &cl->rate_est,
1362 qdisc_root_sleeping_lock(sch),
1363 tca[TCA_RATE] ? : &est.nla);
1364 if (err) {
1365 kfree(cl);
1366 goto failure;
1367 }
1368
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 */
David S. Miller5ce2d482008-07-08 17:06:30 -07001380 new_q = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -07001381 &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 sch_tree_lock(sch);
1383 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001384 unsigned int qlen = parent->un.leaf.q->q.qlen;
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001387 qdisc_reset(parent->un.leaf.q);
1388 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001389 qdisc_destroy(parent->un.leaf.q);
1390 if (parent->prio_activity)
1391 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /* remove from evt list because of level change */
1394 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001395 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 parent->cmode = HTB_CAN_SEND;
1397 }
1398 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001399 : TC_HTB_MAXDEPTH) - 1;
1400 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402 /* leaf (we) needs elementary qdisc */
1403 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1404
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001405 cl->common.classid = classid;
Stephen Hemminger87990462006-08-10 23:35:16 -07001406 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /* set class to be in HTB_CAN_SEND state */
1409 cl->tokens = hopt->buffer;
1410 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001411 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Patrick McHardy3bebcda2007-03-23 11:29:25 -07001412 cl->t_c = psched_get_time();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 cl->cmode = HTB_CAN_SEND;
1414
1415 /* attach to the hash list and parent's family */
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001416 qdisc_class_hash_insert(&q->clhash, &cl->common);
Patrick McHardy42077592008-07-05 23:22:53 -07001417 if (parent)
1418 parent->children++;
Patrick McHardyee39e102007-07-02 22:48:13 -07001419 } else {
Stephen Hemminger71bcb092008-11-25 21:13:31 -08001420 if (tca[TCA_RATE]) {
1421 err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
1422 qdisc_root_sleeping_lock(sch),
1423 tca[TCA_RATE]);
1424 if (err)
1425 return err;
1426 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001427 sch_tree_lock(sch);
Patrick McHardyee39e102007-07-02 22:48:13 -07001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001431 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (!cl->level) {
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001433 cl->quantum = rtab->rate.rate / q->rate2quantum;
1434 if (!hopt->quantum && cl->quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001435 printk(KERN_WARNING
1436 "HTB: quantum of class %X is small. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001437 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001438 cl->quantum = 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001440 if (!hopt->quantum && cl->quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001441 printk(KERN_WARNING
1442 "HTB: quantum of class %X is big. Consider r2q change.\n",
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001443 cl->common.classid);
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001444 cl->quantum = 200000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446 if (hopt->quantum)
Jarek Poplawskic19f7a32008-12-03 21:09:45 -08001447 cl->quantum = hopt->quantum;
1448 if ((cl->prio = hopt->prio) >= TC_HTB_NUMPRIO)
1449 cl->prio = TC_HTB_NUMPRIO - 1;
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{
Stephen Hemminger87990462006-08-10 23:35:16 -07001487 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001490 The line above used to be there to prevent attaching filters to
1491 leaves. But at least tc_index filter uses this just to get class
1492 for other reasons so that we have to allow for it.
1493 ----
1494 19.6.2002 As Werner explained it is ok - bind filter is just
1495 another way to "lock" the class - unlike "get" this lock can
1496 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001498 if (cl)
1499 cl->filter_cnt++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return (unsigned long)cl;
1501}
1502
1503static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001506
Stephen Hemminger87990462006-08-10 23:35:16 -07001507 if (cl)
1508 cl->filter_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1512{
1513 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001514 struct htb_class *cl;
1515 struct hlist_node *n;
1516 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 if (arg->stop)
1519 return;
1520
Patrick McHardyf4c1f3e2008-07-05 23:22:35 -07001521 for (i = 0; i < q->clhash.hashsize; i++) {
1522 hlist_for_each_entry(cl, n, &q->clhash.hash[i], common.hnode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (arg->count < arg->skip) {
1524 arg->count++;
1525 continue;
1526 }
1527 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1528 arg->stop = 1;
1529 return;
1530 }
1531 arg->count++;
1532 }
1533 }
1534}
1535
Eric Dumazet20fea082007-11-14 01:44:41 -08001536static const struct Qdisc_class_ops htb_class_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 .graft = htb_graft,
1538 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001539 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 .get = htb_get,
1541 .put = htb_put,
1542 .change = htb_change_class,
1543 .delete = htb_delete,
1544 .walk = htb_walk,
1545 .tcf_chain = htb_find_tcf,
1546 .bind_tcf = htb_bind_filter,
1547 .unbind_tcf = htb_unbind_filter,
1548 .dump = htb_dump_class,
1549 .dump_stats = htb_dump_class_stats,
1550};
1551
Eric Dumazet20fea082007-11-14 01:44:41 -08001552static struct Qdisc_ops htb_qdisc_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 .next = NULL,
1554 .cl_ops = &htb_class_ops,
1555 .id = "htb",
1556 .priv_size = sizeof(struct htb_sched),
1557 .enqueue = htb_enqueue,
1558 .dequeue = htb_dequeue,
Jarek Poplawski77be1552008-10-31 00:47:01 -07001559 .peek = qdisc_peek_dequeued,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 .drop = htb_drop,
1561 .init = htb_init,
1562 .reset = htb_reset,
1563 .destroy = htb_destroy,
1564 .change = NULL /* htb_change */,
1565 .dump = htb_dump,
1566 .owner = THIS_MODULE,
1567};
1568
1569static int __init htb_module_init(void)
1570{
Stephen Hemminger87990462006-08-10 23:35:16 -07001571 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
Stephen Hemminger87990462006-08-10 23:35:16 -07001573static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Stephen Hemminger87990462006-08-10 23:35:16 -07001575 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
Stephen Hemminger87990462006-08-10 23:35:16 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578module_init(htb_module_init)
1579module_exit(htb_module_exit)
1580MODULE_LICENSE("GPL");