sch_hfsc.c 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746
  1. /*
  2. * Copyright (c) 2003 Patrick McHardy, <kaber@trash.net>
  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 2
  7. * of the License, or (at your option) any later version.
  8. *
  9. * 2003-10-17 - Ported from altq
  10. */
  11. /*
  12. * Copyright (c) 1997-1999 Carnegie Mellon University. All Rights Reserved.
  13. *
  14. * Permission to use, copy, modify, and distribute this software and
  15. * its documentation is hereby granted (including for commercial or
  16. * for-profit use), provided that both the copyright notice and this
  17. * permission notice appear in all copies of the software, derivative
  18. * works, or modified versions, and any portions thereof.
  19. *
  20. * THIS SOFTWARE IS EXPERIMENTAL AND IS KNOWN TO HAVE BUGS, SOME OF
  21. * WHICH MAY HAVE SERIOUS CONSEQUENCES. CARNEGIE MELLON PROVIDES THIS
  22. * SOFTWARE IN ITS ``AS IS'' CONDITION, AND ANY EXPRESS OR IMPLIED
  23. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  24. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  25. * DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  28. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  29. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  30. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  31. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  32. * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  33. * DAMAGE.
  34. *
  35. * Carnegie Mellon encourages (but does not require) users of this
  36. * software to return any improvements or extensions that they make,
  37. * and to grant Carnegie Mellon the rights to redistribute these
  38. * changes without encumbrance.
  39. */
  40. /*
  41. * H-FSC is described in Proceedings of SIGCOMM'97,
  42. * "A Hierarchical Fair Service Curve Algorithm for Link-Sharing,
  43. * Real-Time and Priority Service"
  44. * by Ion Stoica, Hui Zhang, and T. S. Eugene Ng.
  45. *
  46. * Oleg Cherevko <olwi@aq.ml.com.ua> added the upperlimit for link-sharing.
  47. * when a class has an upperlimit, the fit-time is computed from the
  48. * upperlimit service curve. the link-sharing scheduler does not schedule
  49. * a class whose fit-time exceeds the current time.
  50. */
  51. #include <linux/kernel.h>
  52. #include <linux/module.h>
  53. #include <linux/types.h>
  54. #include <linux/errno.h>
  55. #include <linux/compiler.h>
  56. #include <linux/spinlock.h>
  57. #include <linux/skbuff.h>
  58. #include <linux/string.h>
  59. #include <linux/slab.h>
  60. #include <linux/list.h>
  61. #include <linux/rbtree.h>
  62. #include <linux/init.h>
  63. #include <linux/rtnetlink.h>
  64. #include <linux/pkt_sched.h>
  65. #include <net/netlink.h>
  66. #include <net/pkt_sched.h>
  67. #include <net/pkt_cls.h>
  68. #include <asm/div64.h>
  69. /*
  70. * kernel internal service curve representation:
  71. * coordinates are given by 64 bit unsigned integers.
  72. * x-axis: unit is clock count.
  73. * y-axis: unit is byte.
  74. *
  75. * The service curve parameters are converted to the internal
  76. * representation. The slope values are scaled to avoid overflow.
  77. * the inverse slope values as well as the y-projection of the 1st
  78. * segment are kept in order to avoid 64-bit divide operations
  79. * that are expensive on 32-bit architectures.
  80. */
  81. struct internal_sc
  82. {
  83. u64 sm1; /* scaled slope of the 1st segment */
  84. u64 ism1; /* scaled inverse-slope of the 1st segment */
  85. u64 dx; /* the x-projection of the 1st segment */
  86. u64 dy; /* the y-projection of the 1st segment */
  87. u64 sm2; /* scaled slope of the 2nd segment */
  88. u64 ism2; /* scaled inverse-slope of the 2nd segment */
  89. };
  90. /* runtime service curve */
  91. struct runtime_sc
  92. {
  93. u64 x; /* current starting position on x-axis */
  94. u64 y; /* current starting position on y-axis */
  95. u64 sm1; /* scaled slope of the 1st segment */
  96. u64 ism1; /* scaled inverse-slope of the 1st segment */
  97. u64 dx; /* the x-projection of the 1st segment */
  98. u64 dy; /* the y-projection of the 1st segment */
  99. u64 sm2; /* scaled slope of the 2nd segment */
  100. u64 ism2; /* scaled inverse-slope of the 2nd segment */
  101. };
  102. enum hfsc_class_flags
  103. {
  104. HFSC_RSC = 0x1,
  105. HFSC_FSC = 0x2,
  106. HFSC_USC = 0x4
  107. };
  108. struct hfsc_class
  109. {
  110. struct Qdisc_class_common cl_common;
  111. unsigned int refcnt; /* usage count */
  112. struct gnet_stats_basic_packed bstats;
  113. struct gnet_stats_queue qstats;
  114. struct gnet_stats_rate_est rate_est;
  115. unsigned int level; /* class level in hierarchy */
  116. struct tcf_proto *filter_list; /* filter list */
  117. unsigned int filter_cnt; /* filter count */
  118. struct hfsc_sched *sched; /* scheduler data */
  119. struct hfsc_class *cl_parent; /* parent class */
  120. struct list_head siblings; /* sibling classes */
  121. struct list_head children; /* child classes */
  122. struct Qdisc *qdisc; /* leaf qdisc */
  123. struct rb_node el_node; /* qdisc's eligible tree member */
  124. struct rb_root vt_tree; /* active children sorted by cl_vt */
  125. struct rb_node vt_node; /* parent's vt_tree member */
  126. struct rb_root cf_tree; /* active children sorted by cl_f */
  127. struct rb_node cf_node; /* parent's cf_heap member */
  128. struct list_head dlist; /* drop list member */
  129. u64 cl_total; /* total work in bytes */
  130. u64 cl_cumul; /* cumulative work in bytes done by
  131. real-time criteria */
  132. u64 cl_d; /* deadline*/
  133. u64 cl_e; /* eligible time */
  134. u64 cl_vt; /* virtual time */
  135. u64 cl_f; /* time when this class will fit for
  136. link-sharing, max(myf, cfmin) */
  137. u64 cl_myf; /* my fit-time (calculated from this
  138. class's own upperlimit curve) */
  139. u64 cl_myfadj; /* my fit-time adjustment (to cancel
  140. history dependence) */
  141. u64 cl_cfmin; /* earliest children's fit-time (used
  142. with cl_myf to obtain cl_f) */
  143. u64 cl_cvtmin; /* minimal virtual time among the
  144. children fit for link-sharing
  145. (monotonic within a period) */
  146. u64 cl_vtadj; /* intra-period cumulative vt
  147. adjustment */
  148. u64 cl_vtoff; /* inter-period cumulative vt offset */
  149. u64 cl_cvtmax; /* max child's vt in the last period */
  150. u64 cl_cvtoff; /* cumulative cvtmax of all periods */
  151. u64 cl_pcvtoff; /* parent's cvtoff at initialization
  152. time */
  153. struct internal_sc cl_rsc; /* internal real-time service curve */
  154. struct internal_sc cl_fsc; /* internal fair service curve */
  155. struct internal_sc cl_usc; /* internal upperlimit service curve */
  156. struct runtime_sc cl_deadline; /* deadline curve */
  157. struct runtime_sc cl_eligible; /* eligible curve */
  158. struct runtime_sc cl_virtual; /* virtual curve */
  159. struct runtime_sc cl_ulimit; /* upperlimit curve */
  160. unsigned long cl_flags; /* which curves are valid */
  161. unsigned long cl_vtperiod; /* vt period sequence number */
  162. unsigned long cl_parentperiod;/* parent's vt period sequence number*/
  163. unsigned long cl_nactive; /* number of active children */
  164. };
  165. struct hfsc_sched
  166. {
  167. u16 defcls; /* default class id */
  168. struct hfsc_class root; /* root class */
  169. struct Qdisc_class_hash clhash; /* class hash */
  170. struct rb_root eligible; /* eligible tree */
  171. struct list_head droplist; /* active leaf class list (for
  172. dropping) */
  173. struct qdisc_watchdog watchdog; /* watchdog timer */
  174. };
  175. #define HT_INFINITY 0xffffffffffffffffULL /* infinite time value */
  176. /*
  177. * eligible tree holds backlogged classes being sorted by their eligible times.
  178. * there is one eligible tree per hfsc instance.
  179. */
  180. static void
  181. eltree_insert(struct hfsc_class *cl)
  182. {
  183. struct rb_node **p = &cl->sched->eligible.rb_node;
  184. struct rb_node *parent = NULL;
  185. struct hfsc_class *cl1;
  186. while (*p != NULL) {
  187. parent = *p;
  188. cl1 = rb_entry(parent, struct hfsc_class, el_node);
  189. if (cl->cl_e >= cl1->cl_e)
  190. p = &parent->rb_right;
  191. else
  192. p = &parent->rb_left;
  193. }
  194. rb_link_node(&cl->el_node, parent, p);
  195. rb_insert_color(&cl->el_node, &cl->sched->eligible);
  196. }
  197. static inline void
  198. eltree_remove(struct hfsc_class *cl)
  199. {
  200. rb_erase(&cl->el_node, &cl->sched->eligible);
  201. }
  202. static inline void
  203. eltree_update(struct hfsc_class *cl)
  204. {
  205. eltree_remove(cl);
  206. eltree_insert(cl);
  207. }
  208. /* find the class with the minimum deadline among the eligible classes */
  209. static inline struct hfsc_class *
  210. eltree_get_mindl(struct hfsc_sched *q, u64 cur_time)
  211. {
  212. struct hfsc_class *p, *cl = NULL;
  213. struct rb_node *n;
  214. for (n = rb_first(&q->eligible); n != NULL; n = rb_next(n)) {
  215. p = rb_entry(n, struct hfsc_class, el_node);
  216. if (p->cl_e > cur_time)
  217. break;
  218. if (cl == NULL || p->cl_d < cl->cl_d)
  219. cl = p;
  220. }
  221. return cl;
  222. }
  223. /* find the class with minimum eligible time among the eligible classes */
  224. static inline struct hfsc_class *
  225. eltree_get_minel(struct hfsc_sched *q)
  226. {
  227. struct rb_node *n;
  228. n = rb_first(&q->eligible);
  229. if (n == NULL)
  230. return NULL;
  231. return rb_entry(n, struct hfsc_class, el_node);
  232. }
  233. /*
  234. * vttree holds holds backlogged child classes being sorted by their virtual
  235. * time. each intermediate class has one vttree.
  236. */
  237. static void
  238. vttree_insert(struct hfsc_class *cl)
  239. {
  240. struct rb_node **p = &cl->cl_parent->vt_tree.rb_node;
  241. struct rb_node *parent = NULL;
  242. struct hfsc_class *cl1;
  243. while (*p != NULL) {
  244. parent = *p;
  245. cl1 = rb_entry(parent, struct hfsc_class, vt_node);
  246. if (cl->cl_vt >= cl1->cl_vt)
  247. p = &parent->rb_right;
  248. else
  249. p = &parent->rb_left;
  250. }
  251. rb_link_node(&cl->vt_node, parent, p);
  252. rb_insert_color(&cl->vt_node, &cl->cl_parent->vt_tree);
  253. }
  254. static inline void
  255. vttree_remove(struct hfsc_class *cl)
  256. {
  257. rb_erase(&cl->vt_node, &cl->cl_parent->vt_tree);
  258. }
  259. static inline void
  260. vttree_update(struct hfsc_class *cl)
  261. {
  262. vttree_remove(cl);
  263. vttree_insert(cl);
  264. }
  265. static inline struct hfsc_class *
  266. vttree_firstfit(struct hfsc_class *cl, u64 cur_time)
  267. {
  268. struct hfsc_class *p;
  269. struct rb_node *n;
  270. for (n = rb_first(&cl->vt_tree); n != NULL; n = rb_next(n)) {
  271. p = rb_entry(n, struct hfsc_class, vt_node);
  272. if (p->cl_f <= cur_time)
  273. return p;
  274. }
  275. return NULL;
  276. }
  277. /*
  278. * get the leaf class with the minimum vt in the hierarchy
  279. */
  280. static struct hfsc_class *
  281. vttree_get_minvt(struct hfsc_class *cl, u64 cur_time)
  282. {
  283. /* if root-class's cfmin is bigger than cur_time nothing to do */
  284. if (cl->cl_cfmin > cur_time)
  285. return NULL;
  286. while (cl->level > 0) {
  287. cl = vttree_firstfit(cl, cur_time);
  288. if (cl == NULL)
  289. return NULL;
  290. /*
  291. * update parent's cl_cvtmin.
  292. */
  293. if (cl->cl_parent->cl_cvtmin < cl->cl_vt)
  294. cl->cl_parent->cl_cvtmin = cl->cl_vt;
  295. }
  296. return cl;
  297. }
  298. static void
  299. cftree_insert(struct hfsc_class *cl)
  300. {
  301. struct rb_node **p = &cl->cl_parent->cf_tree.rb_node;
  302. struct rb_node *parent = NULL;
  303. struct hfsc_class *cl1;
  304. while (*p != NULL) {
  305. parent = *p;
  306. cl1 = rb_entry(parent, struct hfsc_class, cf_node);
  307. if (cl->cl_f >= cl1->cl_f)
  308. p = &parent->rb_right;
  309. else
  310. p = &parent->rb_left;
  311. }
  312. rb_link_node(&cl->cf_node, parent, p);
  313. rb_insert_color(&cl->cf_node, &cl->cl_parent->cf_tree);
  314. }
  315. static inline void
  316. cftree_remove(struct hfsc_class *cl)
  317. {
  318. rb_erase(&cl->cf_node, &cl->cl_parent->cf_tree);
  319. }
  320. static inline void
  321. cftree_update(struct hfsc_class *cl)
  322. {
  323. cftree_remove(cl);
  324. cftree_insert(cl);
  325. }
  326. /*
  327. * service curve support functions
  328. *
  329. * external service curve parameters
  330. * m: bps
  331. * d: us
  332. * internal service curve parameters
  333. * sm: (bytes/psched_us) << SM_SHIFT
  334. * ism: (psched_us/byte) << ISM_SHIFT
  335. * dx: psched_us
  336. *
  337. * The clock source resolution with ktime and PSCHED_SHIFT 10 is 1.024us.
  338. *
  339. * sm and ism are scaled in order to keep effective digits.
  340. * SM_SHIFT and ISM_SHIFT are selected to keep at least 4 effective
  341. * digits in decimal using the following table.
  342. *
  343. * bits/sec 100Kbps 1Mbps 10Mbps 100Mbps 1Gbps
  344. * ------------+-------------------------------------------------------
  345. * bytes/1.024us 12.8e-3 128e-3 1280e-3 12800e-3 128000e-3
  346. *
  347. * 1.024us/byte 78.125 7.8125 0.78125 0.078125 0.0078125
  348. *
  349. * So, for PSCHED_SHIFT 10 we need: SM_SHIFT 20, ISM_SHIFT 18.
  350. */
  351. #define SM_SHIFT (30 - PSCHED_SHIFT)
  352. #define ISM_SHIFT (8 + PSCHED_SHIFT)
  353. #define SM_MASK ((1ULL << SM_SHIFT) - 1)
  354. #define ISM_MASK ((1ULL << ISM_SHIFT) - 1)
  355. static inline u64
  356. seg_x2y(u64 x, u64 sm)
  357. {
  358. u64 y;
  359. /*
  360. * compute
  361. * y = x * sm >> SM_SHIFT
  362. * but divide it for the upper and lower bits to avoid overflow
  363. */
  364. y = (x >> SM_SHIFT) * sm + (((x & SM_MASK) * sm) >> SM_SHIFT);
  365. return y;
  366. }
  367. static inline u64
  368. seg_y2x(u64 y, u64 ism)
  369. {
  370. u64 x;
  371. if (y == 0)
  372. x = 0;
  373. else if (ism == HT_INFINITY)
  374. x = HT_INFINITY;
  375. else {
  376. x = (y >> ISM_SHIFT) * ism
  377. + (((y & ISM_MASK) * ism) >> ISM_SHIFT);
  378. }
  379. return x;
  380. }
  381. /* Convert m (bps) into sm (bytes/psched us) */
  382. static u64
  383. m2sm(u32 m)
  384. {
  385. u64 sm;
  386. sm = ((u64)m << SM_SHIFT);
  387. sm += PSCHED_TICKS_PER_SEC - 1;
  388. do_div(sm, PSCHED_TICKS_PER_SEC);
  389. return sm;
  390. }
  391. /* convert m (bps) into ism (psched us/byte) */
  392. static u64
  393. m2ism(u32 m)
  394. {
  395. u64 ism;
  396. if (m == 0)
  397. ism = HT_INFINITY;
  398. else {
  399. ism = ((u64)PSCHED_TICKS_PER_SEC << ISM_SHIFT);
  400. ism += m - 1;
  401. do_div(ism, m);
  402. }
  403. return ism;
  404. }
  405. /* convert d (us) into dx (psched us) */
  406. static u64
  407. d2dx(u32 d)
  408. {
  409. u64 dx;
  410. dx = ((u64)d * PSCHED_TICKS_PER_SEC);
  411. dx += USEC_PER_SEC - 1;
  412. do_div(dx, USEC_PER_SEC);
  413. return dx;
  414. }
  415. /* convert sm (bytes/psched us) into m (bps) */
  416. static u32
  417. sm2m(u64 sm)
  418. {
  419. u64 m;
  420. m = (sm * PSCHED_TICKS_PER_SEC) >> SM_SHIFT;
  421. return (u32)m;
  422. }
  423. /* convert dx (psched us) into d (us) */
  424. static u32
  425. dx2d(u64 dx)
  426. {
  427. u64 d;
  428. d = dx * USEC_PER_SEC;
  429. do_div(d, PSCHED_TICKS_PER_SEC);
  430. return (u32)d;
  431. }
  432. static void
  433. sc2isc(struct tc_service_curve *sc, struct internal_sc *isc)
  434. {
  435. isc->sm1 = m2sm(sc->m1);
  436. isc->ism1 = m2ism(sc->m1);
  437. isc->dx = d2dx(sc->d);
  438. isc->dy = seg_x2y(isc->dx, isc->sm1);
  439. isc->sm2 = m2sm(sc->m2);
  440. isc->ism2 = m2ism(sc->m2);
  441. }
  442. /*
  443. * initialize the runtime service curve with the given internal
  444. * service curve starting at (x, y).
  445. */
  446. static void
  447. rtsc_init(struct runtime_sc *rtsc, struct internal_sc *isc, u64 x, u64 y)
  448. {
  449. rtsc->x = x;
  450. rtsc->y = y;
  451. rtsc->sm1 = isc->sm1;
  452. rtsc->ism1 = isc->ism1;
  453. rtsc->dx = isc->dx;
  454. rtsc->dy = isc->dy;
  455. rtsc->sm2 = isc->sm2;
  456. rtsc->ism2 = isc->ism2;
  457. }
  458. /*
  459. * calculate the y-projection of the runtime service curve by the
  460. * given x-projection value
  461. */
  462. static u64
  463. rtsc_y2x(struct runtime_sc *rtsc, u64 y)
  464. {
  465. u64 x;
  466. if (y < rtsc->y)
  467. x = rtsc->x;
  468. else if (y <= rtsc->y + rtsc->dy) {
  469. /* x belongs to the 1st segment */
  470. if (rtsc->dy == 0)
  471. x = rtsc->x + rtsc->dx;
  472. else
  473. x = rtsc->x + seg_y2x(y - rtsc->y, rtsc->ism1);
  474. } else {
  475. /* x belongs to the 2nd segment */
  476. x = rtsc->x + rtsc->dx
  477. + seg_y2x(y - rtsc->y - rtsc->dy, rtsc->ism2);
  478. }
  479. return x;
  480. }
  481. static u64
  482. rtsc_x2y(struct runtime_sc *rtsc, u64 x)
  483. {
  484. u64 y;
  485. if (x <= rtsc->x)
  486. y = rtsc->y;
  487. else if (x <= rtsc->x + rtsc->dx)
  488. /* y belongs to the 1st segment */
  489. y = rtsc->y + seg_x2y(x - rtsc->x, rtsc->sm1);
  490. else
  491. /* y belongs to the 2nd segment */
  492. y = rtsc->y + rtsc->dy
  493. + seg_x2y(x - rtsc->x - rtsc->dx, rtsc->sm2);
  494. return y;
  495. }
  496. /*
  497. * update the runtime service curve by taking the minimum of the current
  498. * runtime service curve and the service curve starting at (x, y).
  499. */
  500. static void
  501. rtsc_min(struct runtime_sc *rtsc, struct internal_sc *isc, u64 x, u64 y)
  502. {
  503. u64 y1, y2, dx, dy;
  504. u32 dsm;
  505. if (isc->sm1 <= isc->sm2) {
  506. /* service curve is convex */
  507. y1 = rtsc_x2y(rtsc, x);
  508. if (y1 < y)
  509. /* the current rtsc is smaller */
  510. return;
  511. rtsc->x = x;
  512. rtsc->y = y;
  513. return;
  514. }
  515. /*
  516. * service curve is concave
  517. * compute the two y values of the current rtsc
  518. * y1: at x
  519. * y2: at (x + dx)
  520. */
  521. y1 = rtsc_x2y(rtsc, x);
  522. if (y1 <= y) {
  523. /* rtsc is below isc, no change to rtsc */
  524. return;
  525. }
  526. y2 = rtsc_x2y(rtsc, x + isc->dx);
  527. if (y2 >= y + isc->dy) {
  528. /* rtsc is above isc, replace rtsc by isc */
  529. rtsc->x = x;
  530. rtsc->y = y;
  531. rtsc->dx = isc->dx;
  532. rtsc->dy = isc->dy;
  533. return;
  534. }
  535. /*
  536. * the two curves intersect
  537. * compute the offsets (dx, dy) using the reverse
  538. * function of seg_x2y()
  539. * seg_x2y(dx, sm1) == seg_x2y(dx, sm2) + (y1 - y)
  540. */
  541. dx = (y1 - y) << SM_SHIFT;
  542. dsm = isc->sm1 - isc->sm2;
  543. do_div(dx, dsm);
  544. /*
  545. * check if (x, y1) belongs to the 1st segment of rtsc.
  546. * if so, add the offset.
  547. */
  548. if (rtsc->x + rtsc->dx > x)
  549. dx += rtsc->x + rtsc->dx - x;
  550. dy = seg_x2y(dx, isc->sm1);
  551. rtsc->x = x;
  552. rtsc->y = y;
  553. rtsc->dx = dx;
  554. rtsc->dy = dy;
  555. return;
  556. }
  557. static void
  558. init_ed(struct hfsc_class *cl, unsigned int next_len)
  559. {
  560. u64 cur_time = psched_get_time();
  561. /* update the deadline curve */
  562. rtsc_min(&cl->cl_deadline, &cl->cl_rsc, cur_time, cl->cl_cumul);
  563. /*
  564. * update the eligible curve.
  565. * for concave, it is equal to the deadline curve.
  566. * for convex, it is a linear curve with slope m2.
  567. */
  568. cl->cl_eligible = cl->cl_deadline;
  569. if (cl->cl_rsc.sm1 <= cl->cl_rsc.sm2) {
  570. cl->cl_eligible.dx = 0;
  571. cl->cl_eligible.dy = 0;
  572. }
  573. /* compute e and d */
  574. cl->cl_e = rtsc_y2x(&cl->cl_eligible, cl->cl_cumul);
  575. cl->cl_d = rtsc_y2x(&cl->cl_deadline, cl->cl_cumul + next_len);
  576. eltree_insert(cl);
  577. }
  578. static void
  579. update_ed(struct hfsc_class *cl, unsigned int next_len)
  580. {
  581. cl->cl_e = rtsc_y2x(&cl->cl_eligible, cl->cl_cumul);
  582. cl->cl_d = rtsc_y2x(&cl->cl_deadline, cl->cl_cumul + next_len);
  583. eltree_update(cl);
  584. }
  585. static inline void
  586. update_d(struct hfsc_class *cl, unsigned int next_len)
  587. {
  588. cl->cl_d = rtsc_y2x(&cl->cl_deadline, cl->cl_cumul + next_len);
  589. }
  590. static inline void
  591. update_cfmin(struct hfsc_class *cl)
  592. {
  593. struct rb_node *n = rb_first(&cl->cf_tree);
  594. struct hfsc_class *p;
  595. if (n == NULL) {
  596. cl->cl_cfmin = 0;
  597. return;
  598. }
  599. p = rb_entry(n, struct hfsc_class, cf_node);
  600. cl->cl_cfmin = p->cl_f;
  601. }
  602. static void
  603. init_vf(struct hfsc_class *cl, unsigned int len)
  604. {
  605. struct hfsc_class *max_cl;
  606. struct rb_node *n;
  607. u64 vt, f, cur_time;
  608. int go_active;
  609. cur_time = 0;
  610. go_active = 1;
  611. for (; cl->cl_parent != NULL; cl = cl->cl_parent) {
  612. if (go_active && cl->cl_nactive++ == 0)
  613. go_active = 1;
  614. else
  615. go_active = 0;
  616. if (go_active) {
  617. n = rb_last(&cl->cl_parent->vt_tree);
  618. if (n != NULL) {
  619. max_cl = rb_entry(n, struct hfsc_class,vt_node);
  620. /*
  621. * set vt to the average of the min and max
  622. * classes. if the parent's period didn't
  623. * change, don't decrease vt of the class.
  624. */
  625. vt = max_cl->cl_vt;
  626. if (cl->cl_parent->cl_cvtmin != 0)
  627. vt = (cl->cl_parent->cl_cvtmin + vt)/2;
  628. if (cl->cl_parent->cl_vtperiod !=
  629. cl->cl_parentperiod || vt > cl->cl_vt)
  630. cl->cl_vt = vt;
  631. } else {
  632. /*
  633. * first child for a new parent backlog period.
  634. * add parent's cvtmax to cvtoff to make a new
  635. * vt (vtoff + vt) larger than the vt in the
  636. * last period for all children.
  637. */
  638. vt = cl->cl_parent->cl_cvtmax;
  639. cl->cl_parent->cl_cvtoff += vt;
  640. cl->cl_parent->cl_cvtmax = 0;
  641. cl->cl_parent->cl_cvtmin = 0;
  642. cl->cl_vt = 0;
  643. }
  644. cl->cl_vtoff = cl->cl_parent->cl_cvtoff -
  645. cl->cl_pcvtoff;
  646. /* update the virtual curve */
  647. vt = cl->cl_vt + cl->cl_vtoff;
  648. rtsc_min(&cl->cl_virtual, &cl->cl_fsc, vt,
  649. cl->cl_total);
  650. if (cl->cl_virtual.x == vt) {
  651. cl->cl_virtual.x -= cl->cl_vtoff;
  652. cl->cl_vtoff = 0;
  653. }
  654. cl->cl_vtadj = 0;
  655. cl->cl_vtperiod++; /* increment vt period */
  656. cl->cl_parentperiod = cl->cl_parent->cl_vtperiod;
  657. if (cl->cl_parent->cl_nactive == 0)
  658. cl->cl_parentperiod++;
  659. cl->cl_f = 0;
  660. vttree_insert(cl);
  661. cftree_insert(cl);
  662. if (cl->cl_flags & HFSC_USC) {
  663. /* class has upper limit curve */
  664. if (cur_time == 0)
  665. cur_time = psched_get_time();
  666. /* update the ulimit curve */
  667. rtsc_min(&cl->cl_ulimit, &cl->cl_usc, cur_time,
  668. cl->cl_total);
  669. /* compute myf */
  670. cl->cl_myf = rtsc_y2x(&cl->cl_ulimit,
  671. cl->cl_total);
  672. cl->cl_myfadj = 0;
  673. }
  674. }
  675. f = max(cl->cl_myf, cl->cl_cfmin);
  676. if (f != cl->cl_f) {
  677. cl->cl_f = f;
  678. cftree_update(cl);
  679. update_cfmin(cl->cl_parent);
  680. }
  681. }
  682. }
  683. static void
  684. update_vf(struct hfsc_class *cl, unsigned int len, u64 cur_time)
  685. {
  686. u64 f; /* , myf_bound, delta; */
  687. int go_passive = 0;
  688. if (cl->qdisc->q.qlen == 0 && cl->cl_flags & HFSC_FSC)
  689. go_passive = 1;
  690. for (; cl->cl_parent != NULL; cl = cl->cl_parent) {
  691. cl->cl_total += len;
  692. if (!(cl->cl_flags & HFSC_FSC) || cl->cl_nactive == 0)
  693. continue;
  694. if (go_passive && --cl->cl_nactive == 0)
  695. go_passive = 1;
  696. else
  697. go_passive = 0;
  698. if (go_passive) {
  699. /* no more active child, going passive */
  700. /* update cvtmax of the parent class */
  701. if (cl->cl_vt > cl->cl_parent->cl_cvtmax)
  702. cl->cl_parent->cl_cvtmax = cl->cl_vt;
  703. /* remove this class from the vt tree */
  704. vttree_remove(cl);
  705. cftree_remove(cl);
  706. update_cfmin(cl->cl_parent);
  707. continue;
  708. }
  709. /*
  710. * update vt and f
  711. */
  712. cl->cl_vt = rtsc_y2x(&cl->cl_virtual, cl->cl_total)
  713. - cl->cl_vtoff + cl->cl_vtadj;
  714. /*
  715. * if vt of the class is smaller than cvtmin,
  716. * the class was skipped in the past due to non-fit.
  717. * if so, we need to adjust vtadj.
  718. */
  719. if (cl->cl_vt < cl->cl_parent->cl_cvtmin) {
  720. cl->cl_vtadj += cl->cl_parent->cl_cvtmin - cl->cl_vt;
  721. cl->cl_vt = cl->cl_parent->cl_cvtmin;
  722. }
  723. /* update the vt tree */
  724. vttree_update(cl);
  725. if (cl->cl_flags & HFSC_USC) {
  726. cl->cl_myf = cl->cl_myfadj + rtsc_y2x(&cl->cl_ulimit,
  727. cl->cl_total);
  728. #if 0
  729. /*
  730. * This code causes classes to stay way under their
  731. * limit when multiple classes are used at gigabit
  732. * speed. needs investigation. -kaber
  733. */
  734. /*
  735. * if myf lags behind by more than one clock tick
  736. * from the current time, adjust myfadj to prevent
  737. * a rate-limited class from going greedy.
  738. * in a steady state under rate-limiting, myf
  739. * fluctuates within one clock tick.
  740. */
  741. myf_bound = cur_time - PSCHED_JIFFIE2US(1);
  742. if (cl->cl_myf < myf_bound) {
  743. delta = cur_time - cl->cl_myf;
  744. cl->cl_myfadj += delta;
  745. cl->cl_myf += delta;
  746. }
  747. #endif
  748. }
  749. f = max(cl->cl_myf, cl->cl_cfmin);
  750. if (f != cl->cl_f) {
  751. cl->cl_f = f;
  752. cftree_update(cl);
  753. update_cfmin(cl->cl_parent);
  754. }
  755. }
  756. }
  757. static void
  758. set_active(struct hfsc_class *cl, unsigned int len)
  759. {
  760. if (cl->cl_flags & HFSC_RSC)
  761. init_ed(cl, len);
  762. if (cl->cl_flags & HFSC_FSC)
  763. init_vf(cl, len);
  764. list_add_tail(&cl->dlist, &cl->sched->droplist);
  765. }
  766. static void
  767. set_passive(struct hfsc_class *cl)
  768. {
  769. if (cl->cl_flags & HFSC_RSC)
  770. eltree_remove(cl);
  771. list_del(&cl->dlist);
  772. /*
  773. * vttree is now handled in update_vf() so that update_vf(cl, 0, 0)
  774. * needs to be called explicitly to remove a class from vttree.
  775. */
  776. }
  777. static unsigned int
  778. qdisc_peek_len(struct Qdisc *sch)
  779. {
  780. struct sk_buff *skb;
  781. unsigned int len;
  782. skb = sch->ops->peek(sch);
  783. if (skb == NULL) {
  784. qdisc_warn_nonwc("qdisc_peek_len", sch);
  785. return 0;
  786. }
  787. len = qdisc_pkt_len(skb);
  788. return len;
  789. }
  790. static void
  791. hfsc_purge_queue(struct Qdisc *sch, struct hfsc_class *cl)
  792. {
  793. unsigned int len = cl->qdisc->q.qlen;
  794. qdisc_reset(cl->qdisc);
  795. qdisc_tree_decrease_qlen(cl->qdisc, len);
  796. }
  797. static void
  798. hfsc_adjust_levels(struct hfsc_class *cl)
  799. {
  800. struct hfsc_class *p;
  801. unsigned int level;
  802. do {
  803. level = 0;
  804. list_for_each_entry(p, &cl->children, siblings) {
  805. if (p->level >= level)
  806. level = p->level + 1;
  807. }
  808. cl->level = level;
  809. } while ((cl = cl->cl_parent) != NULL);
  810. }
  811. static inline struct hfsc_class *
  812. hfsc_find_class(u32 classid, struct Qdisc *sch)
  813. {
  814. struct hfsc_sched *q = qdisc_priv(sch);
  815. struct Qdisc_class_common *clc;
  816. clc = qdisc_class_find(&q->clhash, classid);
  817. if (clc == NULL)
  818. return NULL;
  819. return container_of(clc, struct hfsc_class, cl_common);
  820. }
  821. static void
  822. hfsc_change_rsc(struct hfsc_class *cl, struct tc_service_curve *rsc,
  823. u64 cur_time)
  824. {
  825. sc2isc(rsc, &cl->cl_rsc);
  826. rtsc_init(&cl->cl_deadline, &cl->cl_rsc, cur_time, cl->cl_cumul);
  827. cl->cl_eligible = cl->cl_deadline;
  828. if (cl->cl_rsc.sm1 <= cl->cl_rsc.sm2) {
  829. cl->cl_eligible.dx = 0;
  830. cl->cl_eligible.dy = 0;
  831. }
  832. cl->cl_flags |= HFSC_RSC;
  833. }
  834. static void
  835. hfsc_change_fsc(struct hfsc_class *cl, struct tc_service_curve *fsc)
  836. {
  837. sc2isc(fsc, &cl->cl_fsc);
  838. rtsc_init(&cl->cl_virtual, &cl->cl_fsc, cl->cl_vt, cl->cl_total);
  839. cl->cl_flags |= HFSC_FSC;
  840. }
  841. static void
  842. hfsc_change_usc(struct hfsc_class *cl, struct tc_service_curve *usc,
  843. u64 cur_time)
  844. {
  845. sc2isc(usc, &cl->cl_usc);
  846. rtsc_init(&cl->cl_ulimit, &cl->cl_usc, cur_time, cl->cl_total);
  847. cl->cl_flags |= HFSC_USC;
  848. }
  849. static const struct nla_policy hfsc_policy[TCA_HFSC_MAX + 1] = {
  850. [TCA_HFSC_RSC] = { .len = sizeof(struct tc_service_curve) },
  851. [TCA_HFSC_FSC] = { .len = sizeof(struct tc_service_curve) },
  852. [TCA_HFSC_USC] = { .len = sizeof(struct tc_service_curve) },
  853. };
  854. static int
  855. hfsc_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
  856. struct nlattr **tca, unsigned long *arg)
  857. {
  858. struct hfsc_sched *q = qdisc_priv(sch);
  859. struct hfsc_class *cl = (struct hfsc_class *)*arg;
  860. struct hfsc_class *parent = NULL;
  861. struct nlattr *opt = tca[TCA_OPTIONS];
  862. struct nlattr *tb[TCA_HFSC_MAX + 1];
  863. struct tc_service_curve *rsc = NULL, *fsc = NULL, *usc = NULL;
  864. u64 cur_time;
  865. int err;
  866. if (opt == NULL)
  867. return -EINVAL;
  868. err = nla_parse_nested(tb, TCA_HFSC_MAX, opt, hfsc_policy);
  869. if (err < 0)
  870. return err;
  871. if (tb[TCA_HFSC_RSC]) {
  872. rsc = nla_data(tb[TCA_HFSC_RSC]);
  873. if (rsc->m1 == 0 && rsc->m2 == 0)
  874. rsc = NULL;
  875. }
  876. if (tb[TCA_HFSC_FSC]) {
  877. fsc = nla_data(tb[TCA_HFSC_FSC]);
  878. if (fsc->m1 == 0 && fsc->m2 == 0)
  879. fsc = NULL;
  880. }
  881. if (tb[TCA_HFSC_USC]) {
  882. usc = nla_data(tb[TCA_HFSC_USC]);
  883. if (usc->m1 == 0 && usc->m2 == 0)
  884. usc = NULL;
  885. }
  886. if (cl != NULL) {
  887. if (parentid) {
  888. if (cl->cl_parent &&
  889. cl->cl_parent->cl_common.classid != parentid)
  890. return -EINVAL;
  891. if (cl->cl_parent == NULL && parentid != TC_H_ROOT)
  892. return -EINVAL;
  893. }
  894. cur_time = psched_get_time();
  895. if (tca[TCA_RATE]) {
  896. err = gen_replace_estimator(&cl->bstats, &cl->rate_est,
  897. qdisc_root_sleeping_lock(sch),
  898. tca[TCA_RATE]);
  899. if (err)
  900. return err;
  901. }
  902. sch_tree_lock(sch);
  903. if (rsc != NULL)
  904. hfsc_change_rsc(cl, rsc, cur_time);
  905. if (fsc != NULL)
  906. hfsc_change_fsc(cl, fsc);
  907. if (usc != NULL)
  908. hfsc_change_usc(cl, usc, cur_time);
  909. if (cl->qdisc->q.qlen != 0) {
  910. if (cl->cl_flags & HFSC_RSC)
  911. update_ed(cl, qdisc_peek_len(cl->qdisc));
  912. if (cl->cl_flags & HFSC_FSC)
  913. update_vf(cl, 0, cur_time);
  914. }
  915. sch_tree_unlock(sch);
  916. return 0;
  917. }
  918. if (parentid == TC_H_ROOT)
  919. return -EEXIST;
  920. parent = &q->root;
  921. if (parentid) {
  922. parent = hfsc_find_class(parentid, sch);
  923. if (parent == NULL)
  924. return -ENOENT;
  925. }
  926. if (classid == 0 || TC_H_MAJ(classid ^ sch->handle) != 0)
  927. return -EINVAL;
  928. if (hfsc_find_class(classid, sch))
  929. return -EEXIST;
  930. if (rsc == NULL && fsc == NULL)
  931. return -EINVAL;
  932. cl = kzalloc(sizeof(struct hfsc_class), GFP_KERNEL);
  933. if (cl == NULL)
  934. return -ENOBUFS;
  935. if (tca[TCA_RATE]) {
  936. err = gen_new_estimator(&cl->bstats, &cl->rate_est,
  937. qdisc_root_sleeping_lock(sch),
  938. tca[TCA_RATE]);
  939. if (err) {
  940. kfree(cl);
  941. return err;
  942. }
  943. }
  944. if (rsc != NULL)
  945. hfsc_change_rsc(cl, rsc, 0);
  946. if (fsc != NULL)
  947. hfsc_change_fsc(cl, fsc);
  948. if (usc != NULL)
  949. hfsc_change_usc(cl, usc, 0);
  950. cl->cl_common.classid = classid;
  951. cl->refcnt = 1;
  952. cl->sched = q;
  953. cl->cl_parent = parent;
  954. cl->qdisc = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
  955. &pfifo_qdisc_ops, classid);
  956. if (cl->qdisc == NULL)
  957. cl->qdisc = &noop_qdisc;
  958. INIT_LIST_HEAD(&cl->children);
  959. cl->vt_tree = RB_ROOT;
  960. cl->cf_tree = RB_ROOT;
  961. sch_tree_lock(sch);
  962. qdisc_class_hash_insert(&q->clhash, &cl->cl_common);
  963. list_add_tail(&cl->siblings, &parent->children);
  964. if (parent->level == 0)
  965. hfsc_purge_queue(sch, parent);
  966. hfsc_adjust_levels(parent);
  967. cl->cl_pcvtoff = parent->cl_cvtoff;
  968. sch_tree_unlock(sch);
  969. qdisc_class_hash_grow(sch, &q->clhash);
  970. *arg = (unsigned long)cl;
  971. return 0;
  972. }
  973. static void
  974. hfsc_destroy_class(struct Qdisc *sch, struct hfsc_class *cl)
  975. {
  976. struct hfsc_sched *q = qdisc_priv(sch);
  977. tcf_destroy_chain(&cl->filter_list);
  978. qdisc_destroy(cl->qdisc);
  979. gen_kill_estimator(&cl->bstats, &cl->rate_est);
  980. if (cl != &q->root)
  981. kfree(cl);
  982. }
  983. static int
  984. hfsc_delete_class(struct Qdisc *sch, unsigned long arg)
  985. {
  986. struct hfsc_sched *q = qdisc_priv(sch);
  987. struct hfsc_class *cl = (struct hfsc_class *)arg;
  988. if (cl->level > 0 || cl->filter_cnt > 0 || cl == &q->root)
  989. return -EBUSY;
  990. sch_tree_lock(sch);
  991. list_del(&cl->siblings);
  992. hfsc_adjust_levels(cl->cl_parent);
  993. hfsc_purge_queue(sch, cl);
  994. qdisc_class_hash_remove(&q->clhash, &cl->cl_common);
  995. BUG_ON(--cl->refcnt == 0);
  996. /*
  997. * This shouldn't happen: we "hold" one cops->get() when called
  998. * from tc_ctl_tclass; the destroy method is done from cops->put().
  999. */
  1000. sch_tree_unlock(sch);
  1001. return 0;
  1002. }
  1003. static struct hfsc_class *
  1004. hfsc_classify(struct sk_buff *skb, struct Qdisc *sch, int *qerr)
  1005. {
  1006. struct hfsc_sched *q = qdisc_priv(sch);
  1007. struct hfsc_class *cl;
  1008. struct tcf_result res;
  1009. struct tcf_proto *tcf;
  1010. int result;
  1011. if (TC_H_MAJ(skb->priority ^ sch->handle) == 0 &&
  1012. (cl = hfsc_find_class(skb->priority, sch)) != NULL)
  1013. if (cl->level == 0)
  1014. return cl;
  1015. *qerr = NET_XMIT_SUCCESS | __NET_XMIT_BYPASS;
  1016. tcf = q->root.filter_list;
  1017. while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
  1018. #ifdef CONFIG_NET_CLS_ACT
  1019. switch (result) {
  1020. case TC_ACT_QUEUED:
  1021. case TC_ACT_STOLEN:
  1022. *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN;
  1023. case TC_ACT_SHOT:
  1024. return NULL;
  1025. }
  1026. #endif
  1027. if ((cl = (struct hfsc_class *)res.class) == NULL) {
  1028. if ((cl = hfsc_find_class(res.classid, sch)) == NULL)
  1029. break; /* filter selected invalid classid */
  1030. }
  1031. if (cl->level == 0)
  1032. return cl; /* hit leaf class */
  1033. /* apply inner filter chain */
  1034. tcf = cl->filter_list;
  1035. }
  1036. /* classification failed, try default class */
  1037. cl = hfsc_find_class(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
  1038. if (cl == NULL || cl->level > 0)
  1039. return NULL;
  1040. return cl;
  1041. }
  1042. static int
  1043. hfsc_graft_class(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
  1044. struct Qdisc **old)
  1045. {
  1046. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1047. if (cl->level > 0)
  1048. return -EINVAL;
  1049. if (new == NULL) {
  1050. new = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
  1051. &pfifo_qdisc_ops,
  1052. cl->cl_common.classid);
  1053. if (new == NULL)
  1054. new = &noop_qdisc;
  1055. }
  1056. sch_tree_lock(sch);
  1057. hfsc_purge_queue(sch, cl);
  1058. *old = cl->qdisc;
  1059. cl->qdisc = new;
  1060. sch_tree_unlock(sch);
  1061. return 0;
  1062. }
  1063. static struct Qdisc *
  1064. hfsc_class_leaf(struct Qdisc *sch, unsigned long arg)
  1065. {
  1066. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1067. if (cl->level == 0)
  1068. return cl->qdisc;
  1069. return NULL;
  1070. }
  1071. static void
  1072. hfsc_qlen_notify(struct Qdisc *sch, unsigned long arg)
  1073. {
  1074. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1075. if (cl->qdisc->q.qlen == 0) {
  1076. update_vf(cl, 0, 0);
  1077. set_passive(cl);
  1078. }
  1079. }
  1080. static unsigned long
  1081. hfsc_get_class(struct Qdisc *sch, u32 classid)
  1082. {
  1083. struct hfsc_class *cl = hfsc_find_class(classid, sch);
  1084. if (cl != NULL)
  1085. cl->refcnt++;
  1086. return (unsigned long)cl;
  1087. }
  1088. static void
  1089. hfsc_put_class(struct Qdisc *sch, unsigned long arg)
  1090. {
  1091. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1092. if (--cl->refcnt == 0)
  1093. hfsc_destroy_class(sch, cl);
  1094. }
  1095. static unsigned long
  1096. hfsc_bind_tcf(struct Qdisc *sch, unsigned long parent, u32 classid)
  1097. {
  1098. struct hfsc_class *p = (struct hfsc_class *)parent;
  1099. struct hfsc_class *cl = hfsc_find_class(classid, sch);
  1100. if (cl != NULL) {
  1101. if (p != NULL && p->level <= cl->level)
  1102. return 0;
  1103. cl->filter_cnt++;
  1104. }
  1105. return (unsigned long)cl;
  1106. }
  1107. static void
  1108. hfsc_unbind_tcf(struct Qdisc *sch, unsigned long arg)
  1109. {
  1110. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1111. cl->filter_cnt--;
  1112. }
  1113. static struct tcf_proto **
  1114. hfsc_tcf_chain(struct Qdisc *sch, unsigned long arg)
  1115. {
  1116. struct hfsc_sched *q = qdisc_priv(sch);
  1117. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1118. if (cl == NULL)
  1119. cl = &q->root;
  1120. return &cl->filter_list;
  1121. }
  1122. static int
  1123. hfsc_dump_sc(struct sk_buff *skb, int attr, struct internal_sc *sc)
  1124. {
  1125. struct tc_service_curve tsc;
  1126. tsc.m1 = sm2m(sc->sm1);
  1127. tsc.d = dx2d(sc->dx);
  1128. tsc.m2 = sm2m(sc->sm2);
  1129. NLA_PUT(skb, attr, sizeof(tsc), &tsc);
  1130. return skb->len;
  1131. nla_put_failure:
  1132. return -1;
  1133. }
  1134. static inline int
  1135. hfsc_dump_curves(struct sk_buff *skb, struct hfsc_class *cl)
  1136. {
  1137. if ((cl->cl_flags & HFSC_RSC) &&
  1138. (hfsc_dump_sc(skb, TCA_HFSC_RSC, &cl->cl_rsc) < 0))
  1139. goto nla_put_failure;
  1140. if ((cl->cl_flags & HFSC_FSC) &&
  1141. (hfsc_dump_sc(skb, TCA_HFSC_FSC, &cl->cl_fsc) < 0))
  1142. goto nla_put_failure;
  1143. if ((cl->cl_flags & HFSC_USC) &&
  1144. (hfsc_dump_sc(skb, TCA_HFSC_USC, &cl->cl_usc) < 0))
  1145. goto nla_put_failure;
  1146. return skb->len;
  1147. nla_put_failure:
  1148. return -1;
  1149. }
  1150. static int
  1151. hfsc_dump_class(struct Qdisc *sch, unsigned long arg, struct sk_buff *skb,
  1152. struct tcmsg *tcm)
  1153. {
  1154. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1155. struct nlattr *nest;
  1156. tcm->tcm_parent = cl->cl_parent ? cl->cl_parent->cl_common.classid :
  1157. TC_H_ROOT;
  1158. tcm->tcm_handle = cl->cl_common.classid;
  1159. if (cl->level == 0)
  1160. tcm->tcm_info = cl->qdisc->handle;
  1161. nest = nla_nest_start(skb, TCA_OPTIONS);
  1162. if (nest == NULL)
  1163. goto nla_put_failure;
  1164. if (hfsc_dump_curves(skb, cl) < 0)
  1165. goto nla_put_failure;
  1166. nla_nest_end(skb, nest);
  1167. return skb->len;
  1168. nla_put_failure:
  1169. nla_nest_cancel(skb, nest);
  1170. return -EMSGSIZE;
  1171. }
  1172. static int
  1173. hfsc_dump_class_stats(struct Qdisc *sch, unsigned long arg,
  1174. struct gnet_dump *d)
  1175. {
  1176. struct hfsc_class *cl = (struct hfsc_class *)arg;
  1177. struct tc_hfsc_stats xstats;
  1178. cl->qstats.qlen = cl->qdisc->q.qlen;
  1179. xstats.level = cl->level;
  1180. xstats.period = cl->cl_vtperiod;
  1181. xstats.work = cl->cl_total;
  1182. xstats.rtwork = cl->cl_cumul;
  1183. if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
  1184. gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
  1185. gnet_stats_copy_queue(d, &cl->qstats) < 0)
  1186. return -1;
  1187. return gnet_stats_copy_app(d, &xstats, sizeof(xstats));
  1188. }
  1189. static void
  1190. hfsc_walk(struct Qdisc *sch, struct qdisc_walker *arg)
  1191. {
  1192. struct hfsc_sched *q = qdisc_priv(sch);
  1193. struct hlist_node *n;
  1194. struct hfsc_class *cl;
  1195. unsigned int i;
  1196. if (arg->stop)
  1197. return;
  1198. for (i = 0; i < q->clhash.hashsize; i++) {
  1199. hlist_for_each_entry(cl, n, &q->clhash.hash[i],
  1200. cl_common.hnode) {
  1201. if (arg->count < arg->skip) {
  1202. arg->count++;
  1203. continue;
  1204. }
  1205. if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
  1206. arg->stop = 1;
  1207. return;
  1208. }
  1209. arg->count++;
  1210. }
  1211. }
  1212. }
  1213. static void
  1214. hfsc_schedule_watchdog(struct Qdisc *sch)
  1215. {
  1216. struct hfsc_sched *q = qdisc_priv(sch);
  1217. struct hfsc_class *cl;
  1218. u64 next_time = 0;
  1219. if ((cl = eltree_get_minel(q)) != NULL)
  1220. next_time = cl->cl_e;
  1221. if (q->root.cl_cfmin != 0) {
  1222. if (next_time == 0 || next_time > q->root.cl_cfmin)
  1223. next_time = q->root.cl_cfmin;
  1224. }
  1225. WARN_ON(next_time == 0);
  1226. qdisc_watchdog_schedule(&q->watchdog, next_time);
  1227. }
  1228. static int
  1229. hfsc_init_qdisc(struct Qdisc *sch, struct nlattr *opt)
  1230. {
  1231. struct hfsc_sched *q = qdisc_priv(sch);
  1232. struct tc_hfsc_qopt *qopt;
  1233. int err;
  1234. if (opt == NULL || nla_len(opt) < sizeof(*qopt))
  1235. return -EINVAL;
  1236. qopt = nla_data(opt);
  1237. q->defcls = qopt->defcls;
  1238. err = qdisc_class_hash_init(&q->clhash);
  1239. if (err < 0)
  1240. return err;
  1241. q->eligible = RB_ROOT;
  1242. INIT_LIST_HEAD(&q->droplist);
  1243. q->root.cl_common.classid = sch->handle;
  1244. q->root.refcnt = 1;
  1245. q->root.sched = q;
  1246. q->root.qdisc = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue,
  1247. &pfifo_qdisc_ops,
  1248. sch->handle);
  1249. if (q->root.qdisc == NULL)
  1250. q->root.qdisc = &noop_qdisc;
  1251. INIT_LIST_HEAD(&q->root.children);
  1252. q->root.vt_tree = RB_ROOT;
  1253. q->root.cf_tree = RB_ROOT;
  1254. qdisc_class_hash_insert(&q->clhash, &q->root.cl_common);
  1255. qdisc_class_hash_grow(sch, &q->clhash);
  1256. qdisc_watchdog_init(&q->watchdog, sch);
  1257. return 0;
  1258. }
  1259. static int
  1260. hfsc_change_qdisc(struct Qdisc *sch, struct nlattr *opt)
  1261. {
  1262. struct hfsc_sched *q = qdisc_priv(sch);
  1263. struct tc_hfsc_qopt *qopt;
  1264. if (opt == NULL || nla_len(opt) < sizeof(*qopt))
  1265. return -EINVAL;
  1266. qopt = nla_data(opt);
  1267. sch_tree_lock(sch);
  1268. q->defcls = qopt->defcls;
  1269. sch_tree_unlock(sch);
  1270. return 0;
  1271. }
  1272. static void
  1273. hfsc_reset_class(struct hfsc_class *cl)
  1274. {
  1275. cl->cl_total = 0;
  1276. cl->cl_cumul = 0;
  1277. cl->cl_d = 0;
  1278. cl->cl_e = 0;
  1279. cl->cl_vt = 0;
  1280. cl->cl_vtadj = 0;
  1281. cl->cl_vtoff = 0;
  1282. cl->cl_cvtmin = 0;
  1283. cl->cl_cvtmax = 0;
  1284. cl->cl_cvtoff = 0;
  1285. cl->cl_pcvtoff = 0;
  1286. cl->cl_vtperiod = 0;
  1287. cl->cl_parentperiod = 0;
  1288. cl->cl_f = 0;
  1289. cl->cl_myf = 0;
  1290. cl->cl_myfadj = 0;
  1291. cl->cl_cfmin = 0;
  1292. cl->cl_nactive = 0;
  1293. cl->vt_tree = RB_ROOT;
  1294. cl->cf_tree = RB_ROOT;
  1295. qdisc_reset(cl->qdisc);
  1296. if (cl->cl_flags & HFSC_RSC)
  1297. rtsc_init(&cl->cl_deadline, &cl->cl_rsc, 0, 0);
  1298. if (cl->cl_flags & HFSC_FSC)
  1299. rtsc_init(&cl->cl_virtual, &cl->cl_fsc, 0, 0);
  1300. if (cl->cl_flags & HFSC_USC)
  1301. rtsc_init(&cl->cl_ulimit, &cl->cl_usc, 0, 0);
  1302. }
  1303. static void
  1304. hfsc_reset_qdisc(struct Qdisc *sch)
  1305. {
  1306. struct hfsc_sched *q = qdisc_priv(sch);
  1307. struct hfsc_class *cl;
  1308. struct hlist_node *n;
  1309. unsigned int i;
  1310. for (i = 0; i < q->clhash.hashsize; i++) {
  1311. hlist_for_each_entry(cl, n, &q->clhash.hash[i], cl_common.hnode)
  1312. hfsc_reset_class(cl);
  1313. }
  1314. q->eligible = RB_ROOT;
  1315. INIT_LIST_HEAD(&q->droplist);
  1316. qdisc_watchdog_cancel(&q->watchdog);
  1317. sch->q.qlen = 0;
  1318. }
  1319. static void
  1320. hfsc_destroy_qdisc(struct Qdisc *sch)
  1321. {
  1322. struct hfsc_sched *q = qdisc_priv(sch);
  1323. struct hlist_node *n, *next;
  1324. struct hfsc_class *cl;
  1325. unsigned int i;
  1326. for (i = 0; i < q->clhash.hashsize; i++) {
  1327. hlist_for_each_entry(cl, n, &q->clhash.hash[i], cl_common.hnode)
  1328. tcf_destroy_chain(&cl->filter_list);
  1329. }
  1330. for (i = 0; i < q->clhash.hashsize; i++) {
  1331. hlist_for_each_entry_safe(cl, n, next, &q->clhash.hash[i],
  1332. cl_common.hnode)
  1333. hfsc_destroy_class(sch, cl);
  1334. }
  1335. qdisc_class_hash_destroy(&q->clhash);
  1336. qdisc_watchdog_cancel(&q->watchdog);
  1337. }
  1338. static int
  1339. hfsc_dump_qdisc(struct Qdisc *sch, struct sk_buff *skb)
  1340. {
  1341. struct hfsc_sched *q = qdisc_priv(sch);
  1342. unsigned char *b = skb_tail_pointer(skb);
  1343. struct tc_hfsc_qopt qopt;
  1344. qopt.defcls = q->defcls;
  1345. NLA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
  1346. return skb->len;
  1347. nla_put_failure:
  1348. nlmsg_trim(skb, b);
  1349. return -1;
  1350. }
  1351. static int
  1352. hfsc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
  1353. {
  1354. struct hfsc_class *cl;
  1355. int uninitialized_var(err);
  1356. cl = hfsc_classify(skb, sch, &err);
  1357. if (cl == NULL) {
  1358. if (err & __NET_XMIT_BYPASS)
  1359. sch->qstats.drops++;
  1360. kfree_skb(skb);
  1361. return err;
  1362. }
  1363. err = qdisc_enqueue(skb, cl->qdisc);
  1364. if (unlikely(err != NET_XMIT_SUCCESS)) {
  1365. if (net_xmit_drop_count(err)) {
  1366. cl->qstats.drops++;
  1367. sch->qstats.drops++;
  1368. }
  1369. return err;
  1370. }
  1371. if (cl->qdisc->q.qlen == 1)
  1372. set_active(cl, qdisc_pkt_len(skb));
  1373. cl->bstats.packets++;
  1374. cl->bstats.bytes += qdisc_pkt_len(skb);
  1375. sch->bstats.packets++;
  1376. sch->bstats.bytes += qdisc_pkt_len(skb);
  1377. sch->q.qlen++;
  1378. return NET_XMIT_SUCCESS;
  1379. }
  1380. static struct sk_buff *
  1381. hfsc_dequeue(struct Qdisc *sch)
  1382. {
  1383. struct hfsc_sched *q = qdisc_priv(sch);
  1384. struct hfsc_class *cl;
  1385. struct sk_buff *skb;
  1386. u64 cur_time;
  1387. unsigned int next_len;
  1388. int realtime = 0;
  1389. if (sch->q.qlen == 0)
  1390. return NULL;
  1391. cur_time = psched_get_time();
  1392. /*
  1393. * if there are eligible classes, use real-time criteria.
  1394. * find the class with the minimum deadline among
  1395. * the eligible classes.
  1396. */
  1397. if ((cl = eltree_get_mindl(q, cur_time)) != NULL) {
  1398. realtime = 1;
  1399. } else {
  1400. /*
  1401. * use link-sharing criteria
  1402. * get the class with the minimum vt in the hierarchy
  1403. */
  1404. cl = vttree_get_minvt(&q->root, cur_time);
  1405. if (cl == NULL) {
  1406. sch->qstats.overlimits++;
  1407. hfsc_schedule_watchdog(sch);
  1408. return NULL;
  1409. }
  1410. }
  1411. skb = qdisc_dequeue_peeked(cl->qdisc);
  1412. if (skb == NULL) {
  1413. qdisc_warn_nonwc("HFSC", cl->qdisc);
  1414. return NULL;
  1415. }
  1416. update_vf(cl, qdisc_pkt_len(skb), cur_time);
  1417. if (realtime)
  1418. cl->cl_cumul += qdisc_pkt_len(skb);
  1419. if (cl->qdisc->q.qlen != 0) {
  1420. if (cl->cl_flags & HFSC_RSC) {
  1421. /* update ed */
  1422. next_len = qdisc_peek_len(cl->qdisc);
  1423. if (realtime)
  1424. update_ed(cl, next_len);
  1425. else
  1426. update_d(cl, next_len);
  1427. }
  1428. } else {
  1429. /* the class becomes passive */
  1430. set_passive(cl);
  1431. }
  1432. sch->flags &= ~TCQ_F_THROTTLED;
  1433. sch->q.qlen--;
  1434. return skb;
  1435. }
  1436. static unsigned int
  1437. hfsc_drop(struct Qdisc *sch)
  1438. {
  1439. struct hfsc_sched *q = qdisc_priv(sch);
  1440. struct hfsc_class *cl;
  1441. unsigned int len;
  1442. list_for_each_entry(cl, &q->droplist, dlist) {
  1443. if (cl->qdisc->ops->drop != NULL &&
  1444. (len = cl->qdisc->ops->drop(cl->qdisc)) > 0) {
  1445. if (cl->qdisc->q.qlen == 0) {
  1446. update_vf(cl, 0, 0);
  1447. set_passive(cl);
  1448. } else {
  1449. list_move_tail(&cl->dlist, &q->droplist);
  1450. }
  1451. cl->qstats.drops++;
  1452. sch->qstats.drops++;
  1453. sch->q.qlen--;
  1454. return len;
  1455. }
  1456. }
  1457. return 0;
  1458. }
  1459. static const struct Qdisc_class_ops hfsc_class_ops = {
  1460. .change = hfsc_change_class,
  1461. .delete = hfsc_delete_class,
  1462. .graft = hfsc_graft_class,
  1463. .leaf = hfsc_class_leaf,
  1464. .qlen_notify = hfsc_qlen_notify,
  1465. .get = hfsc_get_class,
  1466. .put = hfsc_put_class,
  1467. .bind_tcf = hfsc_bind_tcf,
  1468. .unbind_tcf = hfsc_unbind_tcf,
  1469. .tcf_chain = hfsc_tcf_chain,
  1470. .dump = hfsc_dump_class,
  1471. .dump_stats = hfsc_dump_class_stats,
  1472. .walk = hfsc_walk
  1473. };
  1474. static struct Qdisc_ops hfsc_qdisc_ops __read_mostly = {
  1475. .id = "hfsc",
  1476. .init = hfsc_init_qdisc,
  1477. .change = hfsc_change_qdisc,
  1478. .reset = hfsc_reset_qdisc,
  1479. .destroy = hfsc_destroy_qdisc,
  1480. .dump = hfsc_dump_qdisc,
  1481. .enqueue = hfsc_enqueue,
  1482. .dequeue = hfsc_dequeue,
  1483. .peek = qdisc_peek_dequeued,
  1484. .drop = hfsc_drop,
  1485. .cl_ops = &hfsc_class_ops,
  1486. .priv_size = sizeof(struct hfsc_sched),
  1487. .owner = THIS_MODULE
  1488. };
  1489. static int __init
  1490. hfsc_init(void)
  1491. {
  1492. return register_qdisc(&hfsc_qdisc_ops);
  1493. }
  1494. static void __exit
  1495. hfsc_cleanup(void)
  1496. {
  1497. unregister_qdisc(&hfsc_qdisc_ops);
  1498. }
  1499. MODULE_LICENSE("GPL");
  1500. module_init(hfsc_init);
  1501. module_exit(hfsc_cleanup);