sch_htb.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:47k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* vim: ts=8 sw=8
  2.  * 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.  * Ondrej Kraus, <krauso@barr.cz> 
  13.  * found missing INIT_QDISC(htb)
  14.  * Vladimir Smelhaus, Aamer Akhter, Bert Hubert
  15.  * helped a lot to locate nasty class stall bug
  16.  * Andi Kleen, Jamal Hadi, Bert Hubert
  17.  * code review and helpful comments on shaping
  18.  * Tomasz Wrona, <tw@eter.tym.pl>
  19.  * created test case so that I was able to fix nasty bug
  20.  * and many others. thanks.
  21.  *
  22.  * $Id: sch_htb.c,v 1.14 2002/09/28 12:55:22 devik Exp devik $
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/module.h>
  26. #include <asm/uaccess.h>
  27. #include <asm/system.h>
  28. #include <asm/bitops.h>
  29. #include <linux/types.h>
  30. #include <linux/kernel.h>
  31. #include <linux/version.h>
  32. #include <linux/sched.h>
  33. #include <linux/string.h>
  34. #include <linux/mm.h>
  35. #include <linux/socket.h>
  36. #include <linux/sockios.h>
  37. #include <linux/in.h>
  38. #include <linux/errno.h>
  39. #include <linux/interrupt.h>
  40. #include <linux/if_ether.h>
  41. #include <linux/inet.h>
  42. #include <linux/netdevice.h>
  43. #include <linux/etherdevice.h>
  44. #include <linux/notifier.h>
  45. #include <net/ip.h>
  46. #include <net/route.h>
  47. #include <linux/skbuff.h>
  48. #include <linux/list.h>
  49. #include <linux/compiler.h>
  50. #include <net/sock.h>
  51. #include <net/pkt_sched.h>
  52. #include <linux/rbtree.h>
  53. /* HTB algorithm.
  54.     Author: devik@cdi.cz
  55.     ========================================================================
  56.     HTB is like TBF with multiple classes. It is also similar to CBQ because
  57.     it allows to assign priority to each class in hierarchy. 
  58.     In fact it is another implementation of Floyd's formal sharing.
  59.     Levels:
  60.     Each class is assigned level. Leaf has ALWAYS level 0 and root 
  61.     classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
  62.     one less than their parent.
  63. */
  64. #define HTB_HSIZE 16 /* classid hash size */
  65. #define HTB_EWMAC 2 /* rate average over HTB_EWMAC*HTB_HSIZE sec */
  66. #define HTB_DEBUG 1 /* compile debugging support (activated by tc tool) */
  67. #define HTB_RATECM 1    /* whether to use rate computer */
  68. #define HTB_HYSTERESIS 1/* whether to use mode hysteresis for speedup */
  69. #define HTB_QLOCK(S) spin_lock_bh(&(S)->dev->queue_lock)
  70. #define HTB_QUNLOCK(S) spin_unlock_bh(&(S)->dev->queue_lock)
  71. #define HTB_VER 0x30007 /* major must be matched with number suplied by TC as version */
  72. #if HTB_VER >> 16 != TC_HTB_PROTOVER
  73. #error "Mismatched sch_htb.c and pkt_sch.h"
  74. #endif
  75. /* temporary debug defines to be removed after beta stage */
  76. #define DEVIK_MEND(N)
  77. #define DEVIK_MSTART(N)
  78. /* debugging support; S is subsystem, these are defined:
  79.   0 - netlink messages
  80.   1 - enqueue
  81.   2 - drop & requeue
  82.   3 - dequeue main
  83.   4 - dequeue one prio DRR part
  84.   5 - dequeue class accounting
  85.   6 - class overlimit status computation
  86.   7 - hint tree
  87.   8 - event queue
  88.  10 - rate estimator
  89.  11 - classifier 
  90.  12 - fast dequeue cache
  91.  L is level; 0 = none, 1 = basic info, 2 = detailed, 3 = full
  92.  q->debug uint32 contains 16 2-bit fields one for subsystem starting
  93.  from LSB
  94.  */
  95. #ifdef HTB_DEBUG
  96. #define HTB_DBG(S,L,FMT,ARG...) if (((q->debug>>(2*S))&3) >= L) 
  97. printk(KERN_DEBUG FMT,##ARG)
  98. #define HTB_CHCL(cl) BUG_TRAP((cl)->magic == HTB_CMAGIC)
  99. #define HTB_PASSQ q,
  100. #define HTB_ARGQ struct htb_sched *q,
  101. #define static
  102. #define __inline__
  103. #define inline
  104. #define HTB_CMAGIC 0xFEFAFEF1
  105. #define htb_safe_rb_erase(N,R) do { BUG_TRAP((N)->rb_color != -1); 
  106. if ((N)->rb_color == -1) break; 
  107. rb_erase(N,R); 
  108. (N)->rb_color = -1; } while (0)
  109. #else
  110. #define HTB_DBG(S,L,FMT,ARG...)
  111. #define HTB_PASSQ
  112. #define HTB_ARGQ
  113. #define HTB_CHCL(cl)
  114. #define htb_safe_rb_erase(N,R) rb_erase(N,R)
  115. #endif
  116. /* used internaly to keep status of single class */
  117. enum htb_cmode {
  118.     HTB_CANT_SEND, /* class can't send and can't borrow */
  119.     HTB_MAY_BORROW, /* class can't send but may borrow */
  120.     HTB_CAN_SEND /* class can send */
  121. };
  122. /* interior & leaf nodes; props specific to leaves are marked L: */
  123. struct htb_class
  124. {
  125. #ifdef HTB_DEBUG
  126. unsigned magic;
  127. #endif
  128.     /* general class parameters */
  129.     u32 classid;
  130.     struct tc_stats stats; /* generic stats */
  131.     struct tc_htb_xstats xstats;/* our special stats */
  132.     int refcnt; /* usage count of this class */
  133. #ifdef HTB_RATECM
  134.     /* rate measurement counters */
  135.     unsigned long rate_bytes,sum_bytes;
  136.     unsigned long rate_packets,sum_packets;
  137. #endif
  138.     /* topology */
  139.     int level; /* our level (see above) */
  140.     struct htb_class *parent; /* parent class */
  141.     struct list_head hlist; /* classid hash list item */
  142.     struct list_head sibling; /* sibling list item */
  143.     struct list_head children; /* children list */
  144.     union {
  145.     struct htb_class_leaf {
  146.     struct Qdisc *q;
  147.     int prio;
  148.     int aprio;
  149.     int quantum;
  150.     int deficit[TC_HTB_MAXDEPTH];
  151.     struct list_head drop_list;
  152.     } leaf;
  153.     struct htb_class_inner {
  154.     rb_root_t feed[TC_HTB_NUMPRIO]; /* feed trees */
  155.     rb_node_t *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
  156.     } inner;
  157.     } un;
  158.     rb_node_t node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
  159.     rb_node_t pq_node; /* node for event queue */
  160.     unsigned long pq_key; /* the same type as jiffies global */
  161.     
  162.     int prio_activity; /* for which prios are we active */
  163.     enum htb_cmode cmode; /* current mode of the class */
  164.     /* class attached filters */
  165.     struct tcf_proto *filter_list;
  166.     int filter_cnt;
  167.     int warned; /* only one warning about non work conserving .. */
  168.     /* token bucket parameters */
  169.     struct qdisc_rate_table *rate; /* rate table of the class itself */
  170.     struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
  171.     long buffer,cbuffer; /* token bucket depth/rate */
  172.     long mbuffer; /* max wait time */
  173.     long tokens,ctokens; /* current number of tokens */
  174.     psched_time_t t_c; /* checkpoint time */
  175. };
  176. /* TODO: maybe compute rate when size is too large .. or drop ? */
  177. static __inline__ long L2T(struct htb_class *cl,struct qdisc_rate_table *rate,
  178. int size)
  179.     int slot = size >> rate->rate.cell_log;
  180.     if (slot > 255) {
  181. cl->xstats.giants++;
  182. slot = 255;
  183.     }
  184.     return rate->data[slot];
  185. }
  186. struct htb_sched
  187. {
  188.     struct list_head root; /* root classes list */
  189.     struct list_head hash[HTB_HSIZE]; /* hashed by classid */
  190.     struct list_head drops[TC_HTB_NUMPRIO]; /* active leaves (for drops) */
  191.     
  192.     /* self list - roots of self generating tree */
  193.     rb_root_t row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
  194.     int row_mask[TC_HTB_MAXDEPTH];
  195.     rb_node_t *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
  196.     /* self wait list - roots of wait PQs per row */
  197.     rb_root_t wait_pq[TC_HTB_MAXDEPTH];
  198.     /* time of nearest event per level (row) */
  199.     unsigned long near_ev_cache[TC_HTB_MAXDEPTH];
  200.     /* whether we hit non-work conserving class during this dequeue; we use */
  201.     int nwc_hit; /* this to disable mindelay complaint in dequeue */
  202.     int defcls; /* class where unclassified flows go to */
  203.     u32 debug; /* subsystem debug levels */
  204.     /* filters for qdisc itself */
  205.     struct tcf_proto *filter_list;
  206.     int filter_cnt;
  207.     int rate2quantum; /* quant = rate / rate2quantum */
  208.     psched_time_t now; /* cached dequeue time */
  209.     struct timer_list timer; /* send delay timer */
  210. #ifdef HTB_RATECM
  211.     struct timer_list rttim; /* rate computer timer */
  212.     int recmp_bucket; /* which hash bucket to recompute next */
  213. #endif
  214.     
  215.     /* non shaped skbs; let them go directly thru */
  216.     struct sk_buff_head direct_queue;
  217.     int direct_qlen;  /* max qlen of above */
  218.     long direct_pkts;
  219. };
  220. /* compute hash of size HTB_HSIZE for given handle */
  221. static __inline__ int htb_hash(u32 h) 
  222. {
  223. #if HTB_HSIZE != 16
  224.  #error "Declare new hash for your HTB_HSIZE"
  225. #endif
  226.     h ^= h>>8; /* stolen from cbq_hash */
  227.     h ^= h>>4;
  228.     return h & 0xf;
  229. }
  230. /* find class in global hash table using given handle */
  231. static __inline__ struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
  232. {
  233. struct htb_sched *q = (struct htb_sched *)sch->data;
  234. struct list_head *p;
  235. if (TC_H_MAJ(handle) != sch->handle) 
  236. return NULL;
  237. list_for_each (p,q->hash+htb_hash(handle)) {
  238. struct htb_class *cl = list_entry(p,struct htb_class,hlist);
  239. if (cl->classid == handle)
  240. return cl;
  241. }
  242. return NULL;
  243. }
  244. /**
  245.  * htb_classify - classify a packet into class
  246.  *
  247.  * It returns NULL if the packet should be dropped or -1 if the packet
  248.  * should be passed directly thru. In all other cases leaf class is returned.
  249.  * We allow direct class selection by classid in priority. The we examine
  250.  * filters in qdisc and in inner nodes (if higher filter points to the inner
  251.  * node). If we end up with classid MAJOR:0 we enqueue the skb into special
  252.  * internal fifo (direct). These packets then go directly thru. If we still 
  253.  * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
  254.  * then finish and return direct queue.
  255.  */
  256. #define HTB_DIRECT (struct htb_class*)-1
  257. static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch)
  258. {
  259. struct htb_sched *q = (struct htb_sched *)sch->data;
  260. struct htb_class *cl;
  261. struct tcf_result res;
  262. struct tcf_proto *tcf;
  263. int result;
  264. /* allow to select class by setting skb->priority to valid classid;
  265.    note that nfmark can be used too by attaching filter fw with no
  266.    rules in it */
  267. if (skb->priority == sch->handle)
  268. return HTB_DIRECT;  /* X:0 (direct flow) selected */
  269. if ((cl = htb_find(skb->priority,sch)) != NULL) 
  270. return cl;
  271. tcf = q->filter_list;
  272. while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
  273. #ifdef CONFIG_NET_CLS_POLICE
  274. if (result == TC_POLICE_SHOT)
  275. return NULL;
  276. #endif
  277. if ((cl = (void*)res.class) == NULL) {
  278. if (res.classid == sch->handle)
  279. return HTB_DIRECT;  /* X:0 (direct flow) */
  280. if ((cl = htb_find(res.classid,sch)) == NULL)
  281. break; /* filter selected invalid classid */
  282. }
  283. if (!cl->level)
  284. return cl; /* we hit leaf; return it */
  285. /* we have got inner class; apply inner filter chain */
  286. tcf = cl->filter_list;
  287. }
  288. /* classification failed; try to use default class */
  289. cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle),q->defcls),sch);
  290. if (!cl || cl->level)
  291. return HTB_DIRECT; /* bad default .. this is safe bet */
  292. return cl;
  293. }
  294. #ifdef HTB_DEBUG
  295. static void htb_next_rb_node(rb_node_t **n);
  296. #define HTB_DUMTREE(root,memb) if(root) { 
  297. rb_node_t *n = (root)->rb_node; 
  298. while (n->rb_left) n = n->rb_left; 
  299. while (n) { 
  300. struct htb_class *cl = rb_entry(n, struct htb_class, memb); 
  301. printk(" %x",cl->classid); htb_next_rb_node (&n); 
  302. } }
  303. static void htb_debug_dump (struct htb_sched *q)
  304. {
  305. int i,p;
  306. printk(KERN_DEBUG "htb*g j=%lun",jiffies);
  307. /* rows */
  308. for (i=TC_HTB_MAXDEPTH-1;i>=0;i--) {
  309. printk(KERN_DEBUG "htb*r%d m=%x",i,q->row_mask[i]);
  310. for (p=0;p<TC_HTB_NUMPRIO;p++) {
  311. if (!q->row[i][p].rb_node) continue;
  312. printk(" p%d:",p);
  313. HTB_DUMTREE(q->row[i]+p,node[p]);
  314. }
  315. printk("n");
  316. }
  317. /* classes */
  318. for (i = 0; i < HTB_HSIZE; i++) {
  319. struct list_head *l;
  320. list_for_each (l,q->hash+i) {
  321. struct htb_class *cl = list_entry(l,struct htb_class,hlist);
  322. long diff = PSCHED_TDIFF_SAFE(q->now, cl->t_c, (u32)cl->mbuffer, 0);
  323. printk(KERN_DEBUG "htb*c%x m=%d t=%ld c=%ld pq=%lu df=%ld ql=%d "
  324. "pa=%x f:",
  325. cl->classid,cl->cmode,cl->tokens,cl->ctokens,
  326. cl->pq_node.rb_color==-1?0:cl->pq_key,diff,
  327. cl->level?0:cl->un.leaf.q->q.qlen,cl->prio_activity);
  328. if (cl->level)
  329. for (p=0;p<TC_HTB_NUMPRIO;p++) {
  330. if (!cl->un.inner.feed[p].rb_node) continue;
  331. printk(" p%d a=%x:",p,cl->un.inner.ptr[p]?rb_entry(cl->un.inner.ptr[p], struct htb_class,node[p])->classid:0);
  332. HTB_DUMTREE(cl->un.inner.feed+p,node[p]);
  333. }
  334. printk("n");
  335. }
  336. }
  337. }
  338. #endif
  339. /**
  340.  * htb_add_to_id_tree - adds class to the round robin list
  341.  *
  342.  * Routine adds class to the list (actually tree) sorted by classid.
  343.  * Make sure that class is not already on such list for given prio.
  344.  */
  345. static void htb_add_to_id_tree (HTB_ARGQ rb_root_t *root,
  346. struct htb_class *cl,int prio)
  347. {
  348. rb_node_t **p = &root->rb_node, *parent = NULL;
  349. HTB_DBG(7,3,"htb_add_id_tree cl=%X prio=%dn",cl->classid,prio);
  350. #ifdef HTB_DEBUG
  351. if (cl->node[prio].rb_color != -1) { BUG_TRAP(0); return; }
  352. HTB_CHCL(cl);
  353. if (*p) {
  354. struct htb_class *x = rb_entry(*p,struct htb_class,node[prio]);
  355. HTB_CHCL(x);
  356. }
  357. #endif
  358. while (*p) {
  359. struct htb_class *c; parent = *p;
  360. c = rb_entry(parent, struct htb_class, node[prio]);
  361. HTB_CHCL(c);
  362. if (cl->classid > c->classid)
  363. p = &parent->rb_right;
  364. else 
  365. p = &parent->rb_left;
  366. }
  367. rb_link_node(&cl->node[prio], parent, p);
  368. rb_insert_color(&cl->node[prio], root);
  369. }
  370. /**
  371.  * htb_add_to_wait_tree - adds class to the event queue with delay
  372.  *
  373.  * The class is added to priority event queue to indicate that class will
  374.  * change its mode in cl->pq_key microseconds. Make sure that class is not
  375.  * already in the queue.
  376.  */
  377. static void htb_add_to_wait_tree (struct htb_sched *q,
  378. struct htb_class *cl,long delay,int debug_hint)
  379. {
  380. rb_node_t **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
  381. HTB_DBG(7,3,"htb_add_wt cl=%X key=%lun",cl->classid,cl->pq_key);
  382. #ifdef HTB_DEBUG
  383. if (cl->pq_node.rb_color != -1) { BUG_TRAP(0); return; }
  384. HTB_CHCL(cl);
  385. if ((delay <= 0 || delay > cl->mbuffer) && net_ratelimit())
  386. printk(KERN_ERR "HTB: suspicious delay in wait_tree d=%ld cl=%X h=%dn",delay,cl->classid,debug_hint);
  387. #endif
  388. DEVIK_MSTART(9);
  389. cl->pq_key = jiffies + PSCHED_US2JIFFIE(delay);
  390. if (cl->pq_key == jiffies)
  391. cl->pq_key++;
  392. /* update the nearest event cache */
  393. if (q->near_ev_cache[cl->level] - cl->pq_key < 0x80000000)
  394. q->near_ev_cache[cl->level] = cl->pq_key;
  395. while (*p) {
  396. struct htb_class *c; parent = *p;
  397. c = rb_entry(parent, struct htb_class, pq_node);
  398. if (cl->pq_key - c->pq_key < 0x80000000)
  399. p = &parent->rb_right;
  400. else 
  401. p = &parent->rb_left;
  402. }
  403. rb_link_node(&cl->pq_node, parent, p);
  404. rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
  405. DEVIK_MEND(9);
  406. }
  407. /**
  408.  * htb_next_rb_node - finds next node in binary tree
  409.  *
  410.  * When we are past last key we return NULL.
  411.  * Average complexity is 2 steps per call.
  412.  */
  413. static void htb_next_rb_node(rb_node_t **n)
  414. {
  415. rb_node_t *p;
  416. if ((*n)->rb_right) {
  417. *n = (*n)->rb_right;
  418. while ((*n)->rb_left) 
  419. *n = (*n)->rb_left;
  420. return;
  421. }
  422. while ((p = (*n)->rb_parent) != NULL) {
  423. if (p->rb_left == *n) break;
  424. *n = p;
  425. }
  426. *n = p;
  427. }
  428. /**
  429.  * htb_add_class_to_row - add class to its row
  430.  *
  431.  * The class is added to row at priorities marked in mask.
  432.  * It does nothing if mask == 0.
  433.  */
  434. static inline void htb_add_class_to_row(struct htb_sched *q, 
  435. struct htb_class *cl,int mask)
  436. {
  437. HTB_DBG(7,2,"htb_addrow cl=%X mask=%X rmask=%Xn",
  438. cl->classid,mask,q->row_mask[cl->level]);
  439. HTB_CHCL(cl);
  440. q->row_mask[cl->level] |= mask;
  441. while (mask) {
  442. int prio = ffz(~mask);
  443. mask &= ~(1 << prio);
  444. htb_add_to_id_tree(HTB_PASSQ q->row[cl->level]+prio,cl,prio);
  445. }
  446. }
  447. /**
  448.  * htb_remove_class_from_row - removes class from its row
  449.  *
  450.  * The class is removed from row at priorities marked in mask.
  451.  * It does nothing if mask == 0.
  452.  */
  453. static __inline__ void htb_remove_class_from_row(struct htb_sched *q,
  454. struct htb_class *cl,int mask)
  455. {
  456. int m = 0;
  457. HTB_CHCL(cl);
  458. while (mask) {
  459. int prio = ffz(~mask);
  460. mask &= ~(1 << prio);
  461. if (q->ptr[cl->level][prio] == cl->node+prio)
  462. htb_next_rb_node(q->ptr[cl->level]+prio);
  463. htb_safe_rb_erase(cl->node + prio,q->row[cl->level]+prio);
  464. if (!q->row[cl->level][prio].rb_node) 
  465. m |= 1 << prio;
  466. }
  467. HTB_DBG(7,2,"htb_delrow cl=%X mask=%X rmask=%X maskdel=%Xn",
  468. cl->classid,mask,q->row_mask[cl->level],m);
  469. q->row_mask[cl->level] &= ~m;
  470. }
  471. /**
  472.  * htb_activate_prios - creates active classe's feed chain
  473.  *
  474.  * The class is connected to ancestors and/or appropriate rows
  475.  * for priorities it is participating on. cl->cmode must be new 
  476.  * (activated) mode. It does nothing if cl->prio_activity == 0.
  477.  */
  478. static void htb_activate_prios(struct htb_sched *q,struct htb_class *cl)
  479. {
  480. struct htb_class *p = cl->parent;
  481. long m,mask = cl->prio_activity;
  482. HTB_DBG(7,2,"htb_act_prios cl=%X mask=%lX cmode=%dn",cl->classid,mask,cl->cmode);
  483. HTB_CHCL(cl);
  484. while (cl->cmode == HTB_MAY_BORROW && p && mask) {
  485. HTB_CHCL(p);
  486. m = mask; while (m) {
  487. int prio = ffz(~m);
  488. m &= ~(1 << prio);
  489. if (p->un.inner.feed[prio].rb_node)
  490. /* parent already has its feed in use so that
  491.    reset bit in mask as parent is already ok */
  492. mask &= ~(1 << prio);
  493. htb_add_to_id_tree(HTB_PASSQ p->un.inner.feed+prio,cl,prio);
  494. }
  495. HTB_DBG(7,3,"htb_act_pr_aft p=%X pact=%X mask=%lX pmode=%dn",
  496. p->classid,p->prio_activity,mask,p->cmode);
  497. p->prio_activity |= mask;
  498. cl = p; p = cl->parent;
  499. HTB_CHCL(cl);
  500. }
  501. if (cl->cmode == HTB_CAN_SEND && mask)
  502. htb_add_class_to_row(q,cl,mask);
  503. }
  504. /**
  505.  * htb_deactivate_prios - remove class from feed chain
  506.  *
  507.  * cl->cmode must represent old mode (before deactivation). It does 
  508.  * nothing if cl->prio_activity == 0. Class is removed from all feed
  509.  * chains and rows.
  510.  */
  511. static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
  512. {
  513. struct htb_class *p = cl->parent;
  514. long m,mask = cl->prio_activity;
  515. HTB_DBG(7,2,"htb_deact_prios cl=%X mask=%lX cmode=%dn",cl->classid,mask,cl->cmode);
  516. HTB_CHCL(cl);
  517. while (cl->cmode == HTB_MAY_BORROW && p && mask) {
  518. m = mask; mask = 0; 
  519. while (m) {
  520. int prio = ffz(~m);
  521. m &= ~(1 << prio);
  522. if (p->un.inner.ptr[prio] == cl->node+prio)
  523. htb_next_rb_node(p->un.inner.ptr + prio);
  524. htb_safe_rb_erase(cl->node + prio,p->un.inner.feed + prio);
  525. if (!p->un.inner.feed[prio].rb_node) 
  526. mask |= 1 << prio;
  527. }
  528. HTB_DBG(7,3,"htb_deact_pr_aft p=%X pact=%X mask=%lX pmode=%dn",
  529. p->classid,p->prio_activity,mask,p->cmode);
  530. p->prio_activity &= ~mask;
  531. cl = p; p = cl->parent;
  532. HTB_CHCL(cl);
  533. }
  534. if (cl->cmode == HTB_CAN_SEND && mask) 
  535. htb_remove_class_from_row(q,cl,mask);
  536. }
  537. /**
  538.  * htb_class_mode - computes and returns current class mode
  539.  *
  540.  * It computes cl's mode at time cl->t_c+diff and returns it. If mode
  541.  * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
  542.  * from now to time when cl will change its state. 
  543.  * Also it is worth to note that class mode doesn't change simply
  544.  * at cl->{c,}tokens == 0 but there can rather be hysteresis of 
  545.  * 0 .. -cl->{c,}buffer range. It is meant to limit number of
  546.  * mode transitions per time unit. The speed gain is about 1/6.
  547.  */
  548. static __inline__ enum htb_cmode 
  549. htb_class_mode(struct htb_class *cl,long *diff)
  550. {
  551.     long toks;
  552.     if ((toks = (cl->ctokens + *diff)) < (
  553. #ifdef HTB_HYSTERESIS
  554.     cl->cmode != HTB_CANT_SEND ? -cl->cbuffer :
  555. #endif
  556.             0)) {
  557.     *diff = -toks;
  558.     return HTB_CANT_SEND;
  559.     }
  560.     if ((toks = (cl->tokens + *diff)) >= (
  561. #ifdef HTB_HYSTERESIS
  562.     cl->cmode == HTB_CAN_SEND ? -cl->buffer :
  563. #endif
  564.     0))
  565.     return HTB_CAN_SEND;
  566.     *diff = -toks;
  567.     return HTB_MAY_BORROW;
  568. }
  569. /**
  570.  * htb_change_class_mode - changes classe's mode
  571.  *
  572.  * This should be the only way how to change classe's mode under normal
  573.  * cirsumstances. Routine will update feed lists linkage, change mode
  574.  * and add class to the wait event queue if appropriate. New mode should
  575.  * be different from old one and cl->pq_key has to be valid if changing
  576.  * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
  577.  */
  578. static void 
  579. htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
  580. enum htb_cmode new_mode = htb_class_mode(cl,diff);
  581. HTB_CHCL(cl);
  582. HTB_DBG(7,1,"htb_chging_clmode %d->%d cl=%Xn",cl->cmode,new_mode,cl->classid);
  583. if (new_mode == cl->cmode)
  584. return;
  585. if (cl->prio_activity) { /* not neccessary: speed optimization */
  586. if (cl->cmode != HTB_CANT_SEND) 
  587. htb_deactivate_prios(q,cl);
  588. cl->cmode = new_mode;
  589. if (new_mode != HTB_CANT_SEND) 
  590. htb_activate_prios(q,cl);
  591. } else 
  592. cl->cmode = new_mode;
  593. }
  594. /**
  595.  * htb_activate - inserts leaf cl into appropriate active feeds 
  596.  *
  597.  * Routine learns (new) priority of leaf and activates feed chain
  598.  * for the prio. It can be called on already active leaf safely.
  599.  * It also adds leaf into droplist.
  600.  */
  601. static __inline__ void htb_activate(struct htb_sched *q,struct htb_class *cl)
  602. {
  603. BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
  604. HTB_CHCL(cl);
  605. if (!cl->prio_activity) {
  606. cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
  607. htb_activate_prios(q,cl);
  608. list_add_tail(&cl->un.leaf.drop_list,q->drops+cl->un.leaf.aprio);
  609. }
  610. }
  611. /**
  612.  * htb_deactivate - remove leaf cl from active feeds 
  613.  *
  614.  * Make sure that leaf is active. In the other words it can't be called
  615.  * with non-active leaf. It also removes class from the drop list.
  616.  */
  617. static __inline__ void 
  618. htb_deactivate(struct htb_sched *q,struct htb_class *cl)
  619. {
  620. BUG_TRAP(cl->prio_activity);
  621. HTB_CHCL(cl);
  622. htb_deactivate_prios(q,cl);
  623. cl->prio_activity = 0;
  624. list_del_init(&cl->un.leaf.drop_list);
  625. }
  626. static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
  627. {
  628.     struct htb_sched *q = (struct htb_sched *)sch->data;
  629.     struct htb_class *cl = htb_classify(skb,sch);
  630.     DEVIK_MSTART(0);
  631.     if (cl == HTB_DIRECT || !cl) {
  632. /* enqueue to helper queue */
  633. if (q->direct_queue.qlen < q->direct_qlen && cl) {
  634.     __skb_queue_tail(&q->direct_queue, skb);
  635.     q->direct_pkts++;
  636. } else {
  637.     kfree_skb (skb);
  638.     sch->stats.drops++;
  639.     DEVIK_MEND(0);
  640.     return NET_XMIT_DROP;
  641. }
  642.     } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) != NET_XMIT_SUCCESS) {
  643. sch->stats.drops++;
  644. cl->stats.drops++;
  645. DEVIK_MEND(0);
  646. return NET_XMIT_DROP;
  647.     } else {
  648. cl->stats.packets++; cl->stats.bytes += skb->len;
  649. DEVIK_MSTART(1);
  650. htb_activate (q,cl);
  651. DEVIK_MEND(1);
  652.     }
  653.     sch->q.qlen++;
  654.     sch->stats.packets++; sch->stats.bytes += skb->len;
  655.     HTB_DBG(1,1,"htb_enq_ok cl=%X skb=%pn",cl?cl->classid:0,skb);
  656.     DEVIK_MEND(0);
  657.     return NET_XMIT_SUCCESS;
  658. }
  659. /* TODO: requeuing packet charges it to policers again !! */
  660. static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
  661. {
  662.     struct htb_sched *q = (struct htb_sched *)sch->data;
  663.     struct htb_class *cl = htb_classify(skb,sch);
  664.     if (cl == HTB_DIRECT || !cl) {
  665. /* enqueue to helper queue */
  666. if (q->direct_queue.qlen < q->direct_qlen && cl) {
  667.     __skb_queue_tail(&q->direct_queue, skb);
  668.     q->direct_pkts++;
  669. } else {
  670.     kfree_skb (skb);
  671.     sch->stats.drops++;
  672.     return NET_XMIT_DROP;
  673. }
  674.     } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) != NET_XMIT_SUCCESS) {
  675. sch->stats.drops++;
  676. cl->stats.drops++;
  677. return NET_XMIT_DROP;
  678.     } else 
  679.     htb_activate (q,cl);
  680.     sch->q.qlen++;
  681.     HTB_DBG(1,1,"htb_req_ok cl=%X skb=%pn",cl?cl->classid:0,skb);
  682.     return NET_XMIT_SUCCESS;
  683. }
  684. static void htb_timer(unsigned long arg)
  685. {
  686.     struct Qdisc *sch = (struct Qdisc*)arg;
  687.     sch->flags &= ~TCQ_F_THROTTLED;
  688.     wmb();
  689.     netif_schedule(sch->dev);
  690. }
  691. #ifdef HTB_RATECM
  692. #define RT_GEN(D,R) R+=D-(R/HTB_EWMAC);D=0
  693. static void htb_rate_timer(unsigned long arg)
  694. {
  695. struct Qdisc *sch = (struct Qdisc*)arg;
  696. struct htb_sched *q = (struct htb_sched *)sch->data;
  697. struct list_head *p;
  698. /* lock queue so that we can muck with it */
  699. HTB_QLOCK(sch);
  700. HTB_DBG(10,1,"htb_rttmr j=%ldn",jiffies);
  701. q->rttim.expires = jiffies + HZ;
  702. add_timer(&q->rttim);
  703. /* scan and recompute one bucket at time */
  704. if (++q->recmp_bucket >= HTB_HSIZE) 
  705. q->recmp_bucket = 0;
  706. list_for_each (p,q->hash+q->recmp_bucket) {
  707. struct htb_class *cl = list_entry(p,struct htb_class,hlist);
  708. HTB_DBG(10,2,"htb_rttmr_cl cl=%X sbyte=%lu spkt=%lun",
  709. cl->classid,cl->sum_bytes,cl->sum_packets);
  710. RT_GEN (cl->sum_bytes,cl->rate_bytes);
  711. RT_GEN (cl->sum_packets,cl->rate_packets);
  712. }
  713. HTB_QUNLOCK(sch);
  714. }
  715. #endif
  716. /**
  717.  * htb_charge_class - charges ammount "bytes" to leaf and ancestors
  718.  *
  719.  * Routine assumes that packet "bytes" long was dequeued from leaf cl
  720.  * borrowing from "level". It accounts bytes to ceil leaky bucket for
  721.  * leaf and all ancestors and to rate bucket for ancestors at levels
  722.  * "level" and higher. It also handles possible change of mode resulting
  723.  * from the update. Note that mode can also increase here (MAY_BORROW to
  724.  * CAN_SEND) because we can use more precise clock that event queue here.
  725.  * In such case we remove class from event queue first.
  726.  */
  727. static void htb_charge_class(struct htb_sched *q,struct htb_class *cl,
  728. int level,int bytes)
  729. {
  730. long toks,diff;
  731. enum htb_cmode old_mode;
  732. HTB_DBG(5,1,"htb_chrg_cl cl=%X lev=%d len=%dn",cl->classid,level,bytes);
  733. #define HTB_ACCNT(T,B,R) toks = diff + cl->T; 
  734. if (toks > cl->B) toks = cl->B; 
  735. toks -= L2T(cl, cl->R, bytes); 
  736. if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; 
  737. cl->T = toks
  738. while (cl) {
  739. HTB_CHCL(cl);
  740. diff = PSCHED_TDIFF_SAFE(q->now, cl->t_c, (u32)cl->mbuffer, 0);
  741. #ifdef HTB_DEBUG
  742. if (diff > cl->mbuffer || diff < 0 || PSCHED_TLESS(q->now, cl->t_c)) {
  743. if (net_ratelimit())
  744. printk(KERN_ERR "HTB: bad diff in charge, cl=%X diff=%lX now=%Lu then=%Lu j=%lun",
  745.        cl->classid, diff,
  746.        (unsigned long long) q->now,
  747.        (unsigned long long) cl->t_c,
  748.        jiffies);
  749. diff = 1000;
  750. }
  751. #endif
  752. if (cl->level >= level) {
  753. if (cl->level == level) cl->xstats.lends++;
  754. HTB_ACCNT (tokens,buffer,rate);
  755. } else {
  756. cl->xstats.borrows++;
  757. cl->tokens += diff; /* we moved t_c; update tokens */
  758. }
  759. HTB_ACCNT (ctokens,cbuffer,ceil);
  760. cl->t_c = q->now;
  761. HTB_DBG(5,2,"htb_chrg_clp cl=%X diff=%ld tok=%ld ctok=%ldn",cl->classid,diff,cl->tokens,cl->ctokens);
  762. old_mode = cl->cmode; diff = 0;
  763. htb_change_class_mode(q,cl,&diff);
  764. if (old_mode != cl->cmode) {
  765. if (old_mode != HTB_CAN_SEND)
  766. htb_safe_rb_erase(&cl->pq_node,q->wait_pq+cl->level);
  767. if (cl->cmode != HTB_CAN_SEND)
  768. htb_add_to_wait_tree (q,cl,diff,1);
  769. }
  770. #ifdef HTB_RATECM
  771. /* update rate counters */
  772. cl->sum_bytes += bytes; cl->sum_packets++;
  773. #endif
  774. /* update byte stats except for leaves which are already updated */
  775. if (cl->level) {
  776. cl->stats.bytes += bytes;
  777. cl->stats.packets++;
  778. }
  779. cl = cl->parent;
  780. }
  781. }
  782. /**
  783.  * htb_do_events - make mode changes to classes at the level
  784.  *
  785.  * Scans event queue for pending events and applies them. Returns jiffies to
  786.  * next pending event (0 for no event in pq).
  787.  */
  788. static long htb_do_events(struct htb_sched *q,int level)
  789. {
  790. int i;
  791. HTB_DBG(8,1,"htb_do_events l=%d root=%p rmask=%Xn",
  792. level,q->wait_pq[level].rb_node,q->row_mask[level]);
  793. for (i = 0; i < 500; i++) {
  794. struct htb_class *cl;
  795. long diff;
  796. rb_node_t *p = q->wait_pq[level].rb_node;
  797. if (!p) return 0;
  798. while (p->rb_left) p = p->rb_left;
  799. cl = rb_entry(p, struct htb_class, pq_node);
  800. if (cl->pq_key - (jiffies+1) < 0x80000000) {
  801. HTB_DBG(8,3,"htb_do_ev_ret delay=%ldn",cl->pq_key - jiffies);
  802. return cl->pq_key - jiffies;
  803. }
  804. htb_safe_rb_erase(p,q->wait_pq+level);
  805. diff = PSCHED_TDIFF_SAFE(q->now, cl->t_c, (u32)cl->mbuffer, 0);
  806. #ifdef HTB_DEBUG
  807. if (diff > cl->mbuffer || diff < 0 || PSCHED_TLESS(q->now, cl->t_c)) {
  808. if (net_ratelimit())
  809. printk(KERN_ERR "HTB: bad diff in events, cl=%X diff=%lX now=%Lu then=%Lu j=%lun",
  810.        cl->classid, diff,
  811.        (unsigned long long) q->now,
  812.        (unsigned long long) cl->t_c,
  813.        jiffies);
  814. diff = 1000;
  815. }
  816. #endif
  817. htb_change_class_mode(q,cl,&diff);
  818. if (cl->cmode != HTB_CAN_SEND)
  819. htb_add_to_wait_tree (q,cl,diff,2);
  820. }
  821. if (net_ratelimit())
  822. printk(KERN_WARNING "htb: too many events !n");
  823. return HZ/10;
  824. }
  825. /**
  826.  * htb_lookup_leaf - returns next leaf class in DRR order
  827.  *
  828.  * Find leaf where current feed pointers points to.
  829.  */
  830. static struct htb_class *
  831. htb_lookup_leaf(rb_root_t *tree,int prio,rb_node_t **pptr)
  832. {
  833. int i;
  834. struct {
  835. rb_node_t *root;
  836. rb_node_t **pptr;
  837. } stk[TC_HTB_MAXDEPTH],*sp = stk;
  838. sp->root = tree->rb_node;
  839. sp->pptr = pptr;
  840. for (i = 0; i < 65535; i++) {
  841. if (!*sp->pptr) { /* we are at right end; rewind & go up */
  842. *sp->pptr = sp->root;
  843. while ((*sp->pptr)->rb_left) 
  844. *sp->pptr = (*sp->pptr)->rb_left;
  845. if (sp > stk) {
  846. sp--;
  847. BUG_TRAP(*sp->pptr); if(!*sp->pptr) return NULL;
  848. htb_next_rb_node (sp->pptr);
  849. }
  850. } else {
  851. struct htb_class *cl;
  852. cl = rb_entry(*sp->pptr,struct htb_class,node[prio]);
  853. HTB_CHCL(cl);
  854. if (!cl->level) 
  855. return cl;
  856. (++sp)->root = cl->un.inner.feed[prio].rb_node;
  857. sp->pptr = cl->un.inner.ptr+prio;
  858. }
  859. }
  860. BUG_TRAP(0);
  861. return NULL;
  862. }
  863. /* dequeues packet at given priority and level; call only if
  864.    you are sure that there is active class at prio/level */
  865. static struct sk_buff *
  866. htb_dequeue_tree(struct htb_sched *q,int prio,int level)
  867. {
  868. struct sk_buff *skb = NULL;
  869. //struct htb_sched *q = (struct htb_sched *)sch->data;
  870. struct htb_class *cl,*start;
  871. /* look initial class up in the row */
  872. DEVIK_MSTART(6);
  873. start = cl = htb_lookup_leaf (q->row[level]+prio,prio,q->ptr[level]+prio);
  874. do {
  875. BUG_TRAP(cl && cl->un.leaf.q->q.qlen); if (!cl) return NULL;
  876. HTB_DBG(4,1,"htb_deq_tr prio=%d lev=%d cl=%X defic=%dn",
  877. prio,level,cl->classid,cl->un.leaf.deficit[level]);
  878. if (likely((skb = cl->un.leaf.q->dequeue(cl->un.leaf.q)) != NULL)) 
  879. break;
  880. if (!cl->warned) {
  881. printk(KERN_WARNING "htb: class %X isn't work conserving ?!n",cl->classid);
  882. cl->warned = 1;
  883. }
  884. q->nwc_hit++;
  885. htb_next_rb_node((level?cl->parent->un.inner.ptr:q->ptr[0])+prio);
  886. cl = htb_lookup_leaf (q->row[level]+prio,prio,q->ptr[level]+prio);
  887. } while (cl != start);
  888. DEVIK_MEND(6);
  889. DEVIK_MSTART(7);
  890. if (likely(skb != NULL)) {
  891. if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
  892. HTB_DBG(4,2,"htb_next_cl oldptr=%p quant_add=%dn",
  893. level?cl->parent->un.inner.ptr[prio]:q->ptr[0][prio],cl->un.leaf.quantum);
  894. cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
  895. htb_next_rb_node((level?cl->parent->un.inner.ptr:q->ptr[0])+prio);
  896. }
  897. /* this used to be after charge_class but this constelation
  898.    gives us slightly better performance */
  899. if (!cl->un.leaf.q->q.qlen)
  900. htb_deactivate (q,cl);
  901. DEVIK_MSTART(8);
  902. htb_charge_class (q,cl,level,skb->len);
  903. DEVIK_MEND(8);
  904. }
  905. DEVIK_MEND(7);
  906. return skb;
  907. }
  908. static void htb_delay_by(struct Qdisc *sch,long delay)
  909. {
  910. struct htb_sched *q = (struct htb_sched *)sch->data;
  911. if (netif_queue_stopped(sch->dev)) return;
  912. if (delay <= 0) delay = 1;
  913. if (unlikely(delay > 5*HZ)) {
  914. if (net_ratelimit())
  915. printk(KERN_INFO "HTB delay %ld > 5secn", delay);
  916. delay = 5*HZ;
  917. }
  918. del_timer(&q->timer);
  919. q->timer.expires = jiffies + delay;
  920. add_timer(&q->timer);
  921. sch->flags |= TCQ_F_THROTTLED;
  922. sch->stats.overlimits++;
  923. HTB_DBG(3,1,"htb_deq t_delay=%ldn",delay);
  924. }
  925. static struct sk_buff *htb_dequeue(struct Qdisc *sch)
  926. {
  927. struct sk_buff *skb = NULL;
  928. struct htb_sched *q = (struct htb_sched *)sch->data;
  929. int level;
  930. long min_delay;
  931. HTB_DBG(3,1,"htb_deq dircnt=%d qlen=%dn",skb_queue_len(&q->direct_queue),
  932. sch->q.qlen);
  933. /* try to dequeue direct packets as high prio (!) to minimize cpu work */
  934. if ((skb = __skb_dequeue(&q->direct_queue)) != NULL) {
  935. sch->flags &= ~TCQ_F_THROTTLED;
  936. sch->q.qlen--;
  937. return skb;
  938. }
  939. DEVIK_MSTART(2);
  940. if (!sch->q.qlen) goto fin;
  941. PSCHED_GET_TIME(q->now);
  942. min_delay = HZ*5;
  943. q->nwc_hit = 0;
  944. for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
  945. /* common case optimization - skip event handler quickly */
  946. int m;
  947. long delay;
  948. DEVIK_MSTART(3);
  949. if (jiffies - q->near_ev_cache[level] < 0x80000000 || 0) {
  950. delay = htb_do_events(q,level);
  951. q->near_ev_cache[level] += delay ? delay : HZ;
  952. } else
  953. delay = q->near_ev_cache[level] - jiffies;
  954. if (delay && min_delay > delay) 
  955. min_delay = delay;
  956. DEVIK_MEND(3);
  957. DEVIK_MSTART(5);
  958. m = ~q->row_mask[level];
  959. while (m != (int)(-1)) {
  960. int prio = ffz (m);
  961. m |= 1 << prio;
  962. skb = htb_dequeue_tree(q,prio,level);
  963. if (likely(skb != NULL)) {
  964. sch->q.qlen--;
  965. sch->flags &= ~TCQ_F_THROTTLED;
  966. DEVIK_MEND(5);
  967. goto fin;
  968. }
  969. }
  970. DEVIK_MEND(5);
  971. }
  972. DEVIK_MSTART(4);
  973. #ifdef HTB_DEBUG
  974. if (!q->nwc_hit && min_delay >= 5*HZ && net_ratelimit()) { 
  975. printk(KERN_ERR "HTB: mindelay=%ld, report it please !n",min_delay);
  976. htb_debug_dump(q);
  977. }
  978. #endif
  979. htb_delay_by (sch,min_delay);
  980. DEVIK_MEND(4);
  981. fin:
  982. HTB_DBG(3,1,"htb_deq_end %s j=%lu skb=%pn",sch->dev->name,jiffies,skb);
  983. DEVIK_MEND(2);
  984. return skb;
  985. }
  986. /* try to drop from each class (by prio) until one succeed */
  987. static int htb_drop(struct Qdisc* sch)
  988. {
  989. struct htb_sched *q = (struct htb_sched *)sch->data;
  990. int prio;
  991. for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
  992. struct list_head *p;
  993. list_for_each (p,q->drops+prio) {
  994. struct htb_class *cl = list_entry(p,struct htb_class,
  995. un.leaf.drop_list);
  996. if (cl->un.leaf.q->ops->drop && 
  997. cl->un.leaf.q->ops->drop(cl->un.leaf.q)) {
  998. sch->q.qlen--;
  999. if (!cl->un.leaf.q->q.qlen)
  1000. htb_deactivate (q,cl);
  1001. return 1;
  1002. }
  1003. }
  1004. }
  1005. return 0;
  1006. }
  1007. /* reset all classes */
  1008. /* always caled under BH & queue lock */
  1009. static void htb_reset(struct Qdisc* sch)
  1010. {
  1011. struct htb_sched *q = (struct htb_sched *)sch->data;
  1012. int i;
  1013. HTB_DBG(0,1,"htb_reset sch=%p, handle=%Xn",sch,sch->handle);
  1014. for (i = 0; i < HTB_HSIZE; i++) {
  1015. struct list_head *p;
  1016. list_for_each (p,q->hash+i) {
  1017. struct htb_class *cl = list_entry(p,struct htb_class,hlist);
  1018. if (cl->level)
  1019. memset(&cl->un.inner,0,sizeof(cl->un.inner));
  1020. else {
  1021. if (cl->un.leaf.q) 
  1022. qdisc_reset(cl->un.leaf.q);
  1023. INIT_LIST_HEAD(&cl->un.leaf.drop_list);
  1024. }
  1025. cl->prio_activity = 0;
  1026. cl->cmode = HTB_CAN_SEND;
  1027. #ifdef HTB_DEBUG
  1028. cl->pq_node.rb_color = -1;
  1029. memset(cl->node,255,sizeof(cl->node));
  1030. #endif
  1031. }
  1032. }
  1033. sch->flags &= ~TCQ_F_THROTTLED;
  1034. del_timer(&q->timer);
  1035. __skb_queue_purge(&q->direct_queue);
  1036. sch->q.qlen = 0;
  1037. memset(q->row,0,sizeof(q->row));
  1038. memset(q->row_mask,0,sizeof(q->row_mask));
  1039. memset(q->wait_pq,0,sizeof(q->wait_pq));
  1040. memset(q->ptr,0,sizeof(q->ptr));
  1041. for (i = 0; i < TC_HTB_NUMPRIO; i++)
  1042. INIT_LIST_HEAD(q->drops+i);
  1043. }
  1044. static int htb_init(struct Qdisc *sch, struct rtattr *opt)
  1045. {
  1046. struct htb_sched *q = (struct htb_sched*)sch->data;
  1047. struct rtattr *tb[TCA_HTB_INIT];
  1048. struct tc_htb_glob *gopt;
  1049. int i;
  1050. #ifdef HTB_DEBUG
  1051. printk(KERN_INFO "HTB init, kernel part version %d.%dn",
  1052.   HTB_VER >> 16,HTB_VER & 0xffff);
  1053. #endif
  1054. if (!opt || rtattr_parse(tb, TCA_HTB_INIT, RTA_DATA(opt), RTA_PAYLOAD(opt)) ||
  1055. tb[TCA_HTB_INIT-1] == NULL ||
  1056. RTA_PAYLOAD(tb[TCA_HTB_INIT-1]) < sizeof(*gopt)) {
  1057. printk(KERN_ERR "HTB: hey probably you have bad tc tool ?n");
  1058. return -EINVAL;
  1059. }
  1060. gopt = RTA_DATA(tb[TCA_HTB_INIT-1]);
  1061. if (gopt->version != HTB_VER >> 16) {
  1062. printk(KERN_ERR "HTB: need tc/htb version %d (minor is %d), you have %dn",
  1063. HTB_VER >> 16,HTB_VER & 0xffff,gopt->version);
  1064. return -EINVAL;
  1065. }
  1066. memset(q,0,sizeof(*q));
  1067. q->debug = gopt->debug;
  1068. HTB_DBG(0,1,"htb_init sch=%p handle=%X r2q=%dn",sch,sch->handle,gopt->rate2quantum);
  1069. INIT_LIST_HEAD(&q->root);
  1070. for (i = 0; i < HTB_HSIZE; i++)
  1071. INIT_LIST_HEAD(q->hash+i);
  1072. for (i = 0; i < TC_HTB_NUMPRIO; i++)
  1073. INIT_LIST_HEAD(q->drops+i);
  1074. init_timer(&q->timer);
  1075. skb_queue_head_init(&q->direct_queue);
  1076. q->direct_qlen = sch->dev->tx_queue_len;
  1077. if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
  1078. q->direct_qlen = 2;
  1079. q->timer.function = htb_timer;
  1080. q->timer.data = (unsigned long)sch;
  1081. #ifdef HTB_RATECM
  1082. init_timer(&q->rttim);
  1083. q->rttim.function = htb_rate_timer;
  1084. q->rttim.data = (unsigned long)sch;
  1085. q->rttim.expires = jiffies + HZ;
  1086. add_timer(&q->rttim);
  1087. #endif
  1088. if ((q->rate2quantum = gopt->rate2quantum) < 1)
  1089. q->rate2quantum = 1;
  1090. q->defcls = gopt->defcls;
  1091. MOD_INC_USE_COUNT;
  1092. return 0;
  1093. }
  1094. static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
  1095. {
  1096. struct htb_sched *q = (struct htb_sched*)sch->data;
  1097. unsigned char  *b = skb->tail;
  1098. struct rtattr *rta;
  1099. struct tc_htb_glob gopt;
  1100. HTB_DBG(0,1,"htb_dump sch=%p, handle=%Xn",sch,sch->handle);
  1101. /* stats */
  1102. HTB_QLOCK(sch);
  1103. gopt.direct_pkts = q->direct_pkts;
  1104. #ifdef HTB_DEBUG
  1105. htb_debug_dump(q);
  1106. #endif
  1107. gopt.version = HTB_VER;
  1108. gopt.rate2quantum = q->rate2quantum;
  1109. gopt.defcls = q->defcls;
  1110. gopt.debug = q->debug;
  1111. rta = (struct rtattr*)b;
  1112. RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
  1113. RTA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
  1114. rta->rta_len = skb->tail - b;
  1115. sch->stats.qlen = sch->q.qlen;
  1116. RTA_PUT(skb, TCA_STATS, sizeof(sch->stats), &sch->stats);
  1117. HTB_QUNLOCK(sch);
  1118. return skb->len;
  1119. rtattr_failure:
  1120. HTB_QUNLOCK(sch);
  1121. skb_trim(skb, skb->tail - skb->data);
  1122. return -1;
  1123. }
  1124. static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
  1125. struct sk_buff *skb, struct tcmsg *tcm)
  1126. {
  1127. #ifdef HTB_DEBUG
  1128. struct htb_sched *q = (struct htb_sched*)sch->data;
  1129. #endif
  1130. struct htb_class *cl = (struct htb_class*)arg;
  1131. unsigned char  *b = skb->tail;
  1132. struct rtattr *rta;
  1133. struct tc_htb_opt opt;
  1134. HTB_DBG(0,1,"htb_dump_class handle=%X clid=%Xn",sch->handle,cl->classid);
  1135. HTB_QLOCK(sch);
  1136. tcm->tcm_parent = cl->parent ? cl->parent->classid : TC_H_ROOT;
  1137. tcm->tcm_handle = cl->classid;
  1138. if (!cl->level && cl->un.leaf.q) {
  1139. tcm->tcm_info = cl->un.leaf.q->handle;
  1140. cl->stats.qlen = cl->un.leaf.q->q.qlen;
  1141. }
  1142. rta = (struct rtattr*)b;
  1143. RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
  1144. memset (&opt,0,sizeof(opt));
  1145. opt.rate = cl->rate->rate; opt.buffer = cl->buffer;
  1146. opt.ceil = cl->ceil->rate; opt.cbuffer = cl->cbuffer;
  1147. opt.quantum = cl->un.leaf.quantum; opt.prio = cl->un.leaf.prio;
  1148. opt.level = cl->level; 
  1149. RTA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
  1150. rta->rta_len = skb->tail - b;
  1151. #ifdef HTB_RATECM
  1152. cl->stats.bps = cl->rate_bytes/(HTB_EWMAC*HTB_HSIZE);
  1153. cl->stats.pps = cl->rate_packets/(HTB_EWMAC*HTB_HSIZE);
  1154. #endif
  1155. cl->xstats.tokens = cl->tokens;
  1156. cl->xstats.ctokens = cl->ctokens;
  1157. RTA_PUT(skb, TCA_STATS, sizeof(cl->stats), &cl->stats);
  1158. RTA_PUT(skb, TCA_XSTATS, sizeof(cl->xstats), &cl->xstats);
  1159. HTB_QUNLOCK(sch);
  1160. return skb->len;
  1161. rtattr_failure:
  1162. HTB_QUNLOCK(sch);
  1163. skb_trim(skb, b - skb->data);
  1164. return -1;
  1165. }
  1166. static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
  1167. struct Qdisc **old)
  1168. {
  1169. struct htb_class *cl = (struct htb_class*)arg;
  1170. if (cl && !cl->level) {
  1171. if (new == NULL && (new = qdisc_create_dflt(sch->dev, 
  1172. &pfifo_qdisc_ops)) == NULL)
  1173. return -ENOBUFS;
  1174. sch_tree_lock(sch);
  1175. if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
  1176. /* TODO: is it correct ? Why CBQ doesn't do it ? */
  1177. sch->q.qlen -= (*old)->q.qlen;
  1178. qdisc_reset(*old);
  1179. }
  1180. sch_tree_unlock(sch);
  1181. return 0;
  1182. }
  1183. return -ENOENT;
  1184. }
  1185. static struct Qdisc * htb_leaf(struct Qdisc *sch, unsigned long arg)
  1186. {
  1187. struct htb_class *cl = (struct htb_class*)arg;
  1188. return (cl && !cl->level) ? cl->un.leaf.q : NULL;
  1189. }
  1190. static unsigned long htb_get(struct Qdisc *sch, u32 classid)
  1191. {
  1192. #ifdef HTB_DEBUG
  1193. struct htb_sched *q = (struct htb_sched *)sch->data;
  1194. #endif
  1195. struct htb_class *cl = htb_find(classid,sch);
  1196. HTB_DBG(0,1,"htb_get clid=%X q=%p cl=%p ref=%dn",classid,q,cl,cl?cl->refcnt:0);
  1197. if (cl) 
  1198. cl->refcnt++;
  1199. return (unsigned long)cl;
  1200. }
  1201. static void htb_destroy_filters(struct tcf_proto **fl)
  1202. {
  1203. struct tcf_proto *tp;
  1204. while ((tp = *fl) != NULL) {
  1205. *fl = tp->next;
  1206. tp->ops->destroy(tp);
  1207. }
  1208. }
  1209. static void htb_destroy_class(struct Qdisc* sch,struct htb_class *cl)
  1210. {
  1211. struct htb_sched *q = (struct htb_sched *)sch->data;
  1212. HTB_DBG(0,1,"htb_destrycls clid=%X ref=%dn", cl?cl->classid:0,cl?cl->refcnt:0);
  1213. if (!cl->level) {
  1214. BUG_TRAP(cl->un.leaf.q);
  1215. sch->q.qlen -= cl->un.leaf.q->q.qlen;
  1216. qdisc_destroy(cl->un.leaf.q);
  1217. }
  1218. qdisc_put_rtab(cl->rate);
  1219. qdisc_put_rtab(cl->ceil);
  1220. #ifdef CONFIG_NET_ESTIMATOR
  1221. qdisc_kill_estimator(&cl->stats);
  1222. #endif
  1223. htb_destroy_filters (&cl->filter_list);
  1224. while (!list_empty(&cl->children)) 
  1225. htb_destroy_class (sch,list_entry(cl->children.next,
  1226. struct htb_class,sibling));
  1227. /* note: this delete may happen twice (see htb_delete) */
  1228. list_del(&cl->hlist);
  1229. list_del(&cl->sibling);
  1230. if (cl->prio_activity)
  1231. htb_deactivate (q,cl);
  1232. if (cl->cmode != HTB_CAN_SEND)
  1233. htb_safe_rb_erase(&cl->pq_node,q->wait_pq+cl->level);
  1234. kfree(cl);
  1235. }
  1236. /* always caled under BH & queue lock */
  1237. static void htb_destroy(struct Qdisc* sch)
  1238. {
  1239. struct htb_sched *q = (struct htb_sched *)sch->data;
  1240. HTB_DBG(0,1,"htb_destroy q=%pn",q);
  1241. del_timer_sync (&q->timer);
  1242. #ifdef HTB_RATECM
  1243. del_timer_sync (&q->rttim);
  1244. #endif
  1245. while (!list_empty(&q->root)) 
  1246. htb_destroy_class (sch,list_entry(q->root.next,
  1247. struct htb_class,sibling));
  1248. htb_destroy_filters(&q->filter_list);
  1249. __skb_queue_purge(&q->direct_queue);
  1250. MOD_DEC_USE_COUNT;
  1251. }
  1252. static int htb_delete(struct Qdisc *sch, unsigned long arg)
  1253. {
  1254. struct htb_sched *q = (struct htb_sched *)sch->data;
  1255. struct htb_class *cl = (struct htb_class*)arg;
  1256. HTB_DBG(0,1,"htb_delete q=%p cl=%X ref=%dn",q,cl?cl->classid:0,cl?cl->refcnt:0);
  1257. // TODO: why don't allow to delete subtree ? references ? does
  1258. // tc subsys quarantee us that in htb_destroy it holds no class
  1259. // refs so that we can remove children safely there ?
  1260. if (!list_empty(&cl->children) || cl->filter_cnt)
  1261. return -EBUSY;
  1262. sch_tree_lock(sch);
  1263. /* delete from hash and active; remainder in destroy_class */
  1264. list_del_init(&cl->hlist);
  1265. if (cl->prio_activity)
  1266. htb_deactivate (q,cl);
  1267. if (--cl->refcnt == 0)
  1268. htb_destroy_class(sch,cl);
  1269. sch_tree_unlock(sch);
  1270. return 0;
  1271. }
  1272. static void htb_put(struct Qdisc *sch, unsigned long arg)
  1273. {
  1274. #ifdef HTB_DEBUG
  1275. struct htb_sched *q = (struct htb_sched *)sch->data;
  1276. #endif
  1277. struct htb_class *cl = (struct htb_class*)arg;
  1278. HTB_DBG(0,1,"htb_put q=%p cl=%X ref=%dn",q,cl?cl->classid:0,cl?cl->refcnt:0);
  1279. if (--cl->refcnt == 0)
  1280. htb_destroy_class(sch,cl);
  1281. }
  1282. static int htb_change_class(struct Qdisc *sch, u32 classid, 
  1283. u32 parentid, struct rtattr **tca, unsigned long *arg)
  1284. {
  1285. int err = -EINVAL;
  1286. struct htb_sched *q = (struct htb_sched *)sch->data;
  1287. struct htb_class *cl = (struct htb_class*)*arg,*parent;
  1288. struct rtattr *opt = tca[TCA_OPTIONS-1];
  1289. struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
  1290. struct rtattr *tb[TCA_HTB_RTAB];
  1291. struct tc_htb_opt *hopt;
  1292. /* extract all subattrs from opt attr */
  1293. if (!opt || rtattr_parse(tb, TCA_HTB_RTAB, RTA_DATA(opt), RTA_PAYLOAD(opt)) ||
  1294. tb[TCA_HTB_PARMS-1] == NULL ||
  1295. RTA_PAYLOAD(tb[TCA_HTB_PARMS-1]) < sizeof(*hopt))
  1296. goto failure;
  1297. parent = parentid == TC_H_ROOT ? NULL : htb_find (parentid,sch);
  1298. hopt = RTA_DATA(tb[TCA_HTB_PARMS-1]);
  1299. HTB_DBG(0,1,"htb_chg cl=%p, clid=%X, opt/prio=%d, rate=%u, buff=%d, quant=%dn", cl,cl?cl->classid:0,(int)hopt->prio,hopt->rate.rate,hopt->buffer,hopt->quantum);
  1300. rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB-1]);
  1301. ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB-1]);
  1302. if (!rtab || !ctab) goto failure;
  1303. if (!cl) { /* new class */
  1304. /* check for valid classid */
  1305. if (!classid || TC_H_MAJ(classid^sch->handle) || htb_find(classid,sch))
  1306. goto failure;
  1307. /* check maximal depth */
  1308. if (parent && parent->parent && parent->parent->level < 2) {
  1309. printk(KERN_ERR "htb: tree is too deepn");
  1310. goto failure;
  1311. }
  1312. err = -ENOBUFS;
  1313. if ((cl = kmalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
  1314. goto failure;
  1315. memset(cl, 0, sizeof(*cl));
  1316. cl->refcnt = 1;
  1317. INIT_LIST_HEAD(&cl->sibling);
  1318. INIT_LIST_HEAD(&cl->hlist);
  1319. INIT_LIST_HEAD(&cl->children);
  1320. INIT_LIST_HEAD(&cl->un.leaf.drop_list);
  1321. #ifdef HTB_DEBUG
  1322. cl->magic = HTB_CMAGIC;
  1323. #endif
  1324. sch_tree_lock(sch);
  1325. if (parent && !parent->level) {
  1326. /* turn parent into inner node */
  1327. sch->q.qlen -= parent->un.leaf.q->q.qlen;
  1328. qdisc_destroy (parent->un.leaf.q);
  1329. if (parent->prio_activity) 
  1330. htb_deactivate (q,parent);
  1331. /* remove from evt list because of level change */
  1332. if (parent->cmode != HTB_CAN_SEND) {
  1333. htb_safe_rb_erase(&parent->pq_node,q->wait_pq /*+0*/);
  1334. parent->cmode = HTB_CAN_SEND;
  1335. }
  1336. parent->level = (parent->parent ? parent->parent->level
  1337. : TC_HTB_MAXDEPTH) - 1;
  1338. memset (&parent->un.inner,0,sizeof(parent->un.inner));
  1339. }
  1340. /* leaf (we) needs elementary qdisc */
  1341. if (!(cl->un.leaf.q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops)))
  1342. cl->un.leaf.q = &noop_qdisc;
  1343. cl->classid = classid; cl->parent = parent;
  1344. /* set class to be in HTB_CAN_SEND state */
  1345. cl->tokens = hopt->buffer;
  1346. cl->ctokens = hopt->cbuffer;
  1347. cl->mbuffer = 60000000; /* 1min */
  1348. PSCHED_GET_TIME(cl->t_c);
  1349. cl->cmode = HTB_CAN_SEND;
  1350. /* attach to the hash list and parent's family */
  1351. list_add_tail(&cl->hlist, q->hash+htb_hash(classid));
  1352. list_add_tail(&cl->sibling, parent ? &parent->children : &q->root);
  1353. #ifdef HTB_DEBUG
  1354. int i;
  1355. for (i = 0; i < TC_HTB_NUMPRIO; i++) cl->node[i].rb_color = -1;
  1356. cl->pq_node.rb_color = -1;
  1357. }
  1358. #endif
  1359. } else sch_tree_lock(sch);
  1360. /* it used to be a nasty bug here, we have to check that node
  1361.            is really leaf before changing cl->un.leaf ! */
  1362. if (!cl->level) {
  1363. cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
  1364. if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
  1365. printk(KERN_WARNING "HTB: quantum of class %X is small. Consider r2q change.", cl->classid);
  1366. cl->un.leaf.quantum = 1000;
  1367. }
  1368. if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
  1369. printk(KERN_WARNING "HTB: quantum of class %X is big. Consider r2q change.", cl->classid);
  1370. cl->un.leaf.quantum = 200000;
  1371. }
  1372. if (hopt->quantum)
  1373. cl->un.leaf.quantum = hopt->quantum;
  1374. if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
  1375. cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
  1376. }
  1377. cl->buffer = hopt->buffer;
  1378. cl->cbuffer = hopt->cbuffer;
  1379. if (cl->rate) qdisc_put_rtab(cl->rate); cl->rate = rtab;
  1380. if (cl->ceil) qdisc_put_rtab(cl->ceil); cl->ceil = ctab;
  1381. sch_tree_unlock(sch);
  1382. *arg = (unsigned long)cl;
  1383. return 0;
  1384. failure:
  1385. if (rtab) qdisc_put_rtab(rtab);
  1386. if (ctab) qdisc_put_rtab(ctab);
  1387. return err;
  1388. }
  1389. static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
  1390. {
  1391. struct htb_sched *q = (struct htb_sched *)sch->data;
  1392. struct htb_class *cl = (struct htb_class *)arg;
  1393. struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
  1394. HTB_DBG(0,2,"htb_tcf q=%p clid=%X fref=%d fl=%pn",q,cl?cl->classid:0,cl?cl->filter_cnt:q->filter_cnt,*fl);
  1395. return fl;
  1396. }
  1397. static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
  1398. u32 classid)
  1399. {
  1400. struct htb_sched *q = (struct htb_sched *)sch->data;
  1401. struct htb_class *cl = htb_find (classid,sch);
  1402. HTB_DBG(0,2,"htb_bind q=%p clid=%X cl=%p fref=%dn",q,classid,cl,cl?cl->filter_cnt:q->filter_cnt);
  1403. /*if (cl && !cl->level) return 0;
  1404.   The line above used to be there to prevent attaching filters to 
  1405.   leaves. But at least tc_index filter uses this just to get class 
  1406.   for other reasons so that we have to allow for it.
  1407.   ----
  1408.   19.6.2002 As Werner explained it is ok - bind filter is just
  1409.   another way to "lock" the class - unlike "get" this lock can
  1410.   be broken by class during destroy IIUC.
  1411.  */
  1412. if (cl) 
  1413. cl->filter_cnt++; 
  1414. else 
  1415. q->filter_cnt++;
  1416. return (unsigned long)cl;
  1417. }
  1418. static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
  1419. {
  1420. struct htb_sched *q = (struct htb_sched *)sch->data;
  1421. struct htb_class *cl = (struct htb_class *)arg;
  1422. HTB_DBG(0,2,"htb_unbind q=%p cl=%p fref=%dn",q,cl,cl?cl->filter_cnt:q->filter_cnt);
  1423. if (cl) 
  1424. cl->filter_cnt--; 
  1425. else 
  1426. q->filter_cnt--;
  1427. }
  1428. static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
  1429. {
  1430. struct htb_sched *q = (struct htb_sched *)sch->data;
  1431. int i;
  1432. if (arg->stop)
  1433. return;
  1434. for (i = 0; i < HTB_HSIZE; i++) {
  1435. struct list_head *p;
  1436. list_for_each (p,q->hash+i) {
  1437. struct htb_class *cl = list_entry(p,struct htb_class,hlist);
  1438. if (arg->count < arg->skip) {
  1439. arg->count++;
  1440. continue;
  1441. }
  1442. if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
  1443. arg->stop = 1;
  1444. return;
  1445. }
  1446. arg->count++;
  1447. }
  1448. }
  1449. }
  1450. static struct Qdisc_class_ops htb_class_ops =
  1451. {
  1452.     htb_graft,
  1453.     htb_leaf,
  1454.     htb_get,
  1455.     htb_put,
  1456.     htb_change_class,
  1457.     htb_delete,
  1458.     htb_walk,
  1459.     htb_find_tcf,
  1460.     htb_bind_filter,
  1461.     htb_unbind_filter,
  1462.     htb_dump_class,
  1463. };
  1464. struct Qdisc_ops htb_qdisc_ops =
  1465. {
  1466.     NULL,
  1467.     &htb_class_ops,
  1468.     "htb",
  1469.     sizeof(struct htb_sched),
  1470.     htb_enqueue,
  1471.     htb_dequeue,
  1472.     htb_requeue,
  1473.     htb_drop,
  1474.     htb_init,
  1475.     htb_reset,
  1476.     htb_destroy,
  1477.     NULL /* htb_change */,
  1478.     htb_dump,
  1479. };
  1480. #ifdef MODULE
  1481. int init_module(void)
  1482. {
  1483.     return register_qdisc(&htb_qdisc_ops);
  1484. }
  1485. void cleanup_module(void) 
  1486. {
  1487.     unregister_qdisc(&htb_qdisc_ops);
  1488. }
  1489. MODULE_LICENSE("GPL");
  1490. #endif