sch_red.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * net/sched/sch_red.c Random Early Detection queue.
  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: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
  10.  *
  11.  * Changes:
  12.  * J Hadi Salim <hadi@nortel.com> 980914: computation fixes
  13.  * Alexey Makarenko <makar@phoenix.kharkov.ua> 990814: qave on idle link was calculated incorrectly.
  14.  * J Hadi Salim <hadi@nortelnetworks.com> 980816:  ECN support
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/module.h>
  18. #include <asm/uaccess.h>
  19. #include <asm/system.h>
  20. #include <asm/bitops.h>
  21. #include <linux/types.h>
  22. #include <linux/kernel.h>
  23. #include <linux/sched.h>
  24. #include <linux/string.h>
  25. #include <linux/mm.h>
  26. #include <linux/socket.h>
  27. #include <linux/sockios.h>
  28. #include <linux/in.h>
  29. #include <linux/errno.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/if_ether.h>
  32. #include <linux/inet.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/notifier.h>
  36. #include <net/ip.h>
  37. #include <net/route.h>
  38. #include <linux/skbuff.h>
  39. #include <net/sock.h>
  40. #include <net/pkt_sched.h>
  41. #include <net/inet_ecn.h>
  42. #define RED_ECN_ECT  0x02
  43. #define RED_ECN_CE   0x01
  44. /* Random Early Detection (RED) algorithm.
  45. =======================================
  46. Source: Sally Floyd and Van Jacobson, "Random Early Detection Gateways
  47. for Congestion Avoidance", 1993, IEEE/ACM Transactions on Networking.
  48. This file codes a "divisionless" version of RED algorithm
  49. as written down in Fig.17 of the paper.
  50. Short description.
  51. ------------------
  52. When a new packet arrives we calculate the average queue length:
  53. avg = (1-W)*avg + W*current_queue_len,
  54. W is the filter time constant (choosen as 2^(-Wlog)), it controls
  55. the inertia of the algorithm. To allow larger bursts, W should be
  56. decreased.
  57. if (avg > th_max) -> packet marked (dropped).
  58. if (avg < th_min) -> packet passes.
  59. if (th_min < avg < th_max) we calculate probability:
  60. Pb = max_P * (avg - th_min)/(th_max-th_min)
  61. and mark (drop) packet with this probability.
  62. Pb changes from 0 (at avg==th_min) to max_P (avg==th_max).
  63. max_P should be small (not 1), usually 0.01..0.02 is good value.
  64. max_P is chosen as a number, so that max_P/(th_max-th_min)
  65. is a negative power of two in order arithmetics to contain
  66. only shifts.
  67. Parameters, settable by user:
  68. -----------------------------
  69. limit - bytes (must be > qth_max + burst)
  70. Hard limit on queue length, should be chosen >qth_max
  71. to allow packet bursts. This parameter does not
  72. affect the algorithms behaviour and can be chosen
  73. arbitrarily high (well, less than ram size)
  74. Really, this limit will never be reached
  75. if RED works correctly.
  76. qth_min - bytes (should be < qth_max/2)
  77. qth_max - bytes (should be at least 2*qth_min and less limit)
  78. Wlog         - bits (<32) log(1/W).
  79. Plog         - bits (<32)
  80. Plog is related to max_P by formula:
  81. max_P = (qth_max-qth_min)/2^Plog;
  82. F.e. if qth_max=128K and qth_min=32K, then Plog=22
  83. corresponds to max_P=0.02
  84. Scell_log
  85. Stab
  86. Lookup table for log((1-W)^(t/t_ave).
  87. NOTES:
  88. Upper bound on W.
  89. -----------------
  90. If you want to allow bursts of L packets of size S,
  91. you should choose W:
  92. L + 1 - th_min/S < (1-(1-W)^L)/W
  93. th_min/S = 32         th_min/S = 4
  94.                        
  95. log(W) L
  96. -1 33
  97. -2 35
  98. -3 39
  99. -4 46
  100. -5 57
  101. -6 75
  102. -7 101
  103. -8 135
  104. -9 190
  105. etc.
  106.  */
  107. struct red_sched_data
  108. {
  109. /* Parameters */
  110. u32 limit; /* HARD maximal queue length */
  111. u32 qth_min; /* Min average length threshold: A scaled */
  112. u32 qth_max; /* Max average length threshold: A scaled */
  113. u32 Rmask;
  114. u32 Scell_max;
  115. unsigned char flags;
  116. char Wlog; /* log(W) */
  117. char Plog; /* random number bits */
  118. char Scell_log;
  119. u8 Stab[256];
  120. /* Variables */
  121. unsigned long qave; /* Average queue length: A scaled */
  122. int qcount; /* Packets since last random number generation */
  123. u32 qR; /* Cached random number */
  124. psched_time_t qidlestart; /* Start of idle period */
  125. struct tc_red_xstats st;
  126. };
  127. static int red_ecn_mark(struct sk_buff *skb)
  128. {
  129. if (skb->nh.raw + 20 > skb->tail)
  130. return 0;
  131. switch (skb->protocol) {
  132. case __constant_htons(ETH_P_IP):
  133. {
  134. u8 tos = skb->nh.iph->tos;
  135. if (!(tos & RED_ECN_ECT))
  136. return 0;
  137. if (!(tos & RED_ECN_CE))
  138. IP_ECN_set_ce(skb->nh.iph);
  139. return 1;
  140. }
  141. case __constant_htons(ETH_P_IPV6):
  142. {
  143. u32 label = *(u32*)skb->nh.raw;
  144. if (!(label & __constant_htonl(RED_ECN_ECT<<20)))
  145. return 0;
  146. label |= __constant_htonl(RED_ECN_CE<<20);
  147. return 1;
  148. }
  149. default:
  150. return 0;
  151. }
  152. }
  153. static int
  154. red_enqueue(struct sk_buff *skb, struct Qdisc* sch)
  155. {
  156. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  157. psched_time_t now;
  158. if (!PSCHED_IS_PASTPERFECT(q->qidlestart)) {
  159. long us_idle;
  160. int  shift;
  161. PSCHED_GET_TIME(now);
  162. us_idle = PSCHED_TDIFF_SAFE(now, q->qidlestart, q->Scell_max, 0);
  163. PSCHED_SET_PASTPERFECT(q->qidlestart);
  164. /*
  165.    The problem: ideally, average length queue recalcultion should
  166.    be done over constant clock intervals. This is too expensive, so that
  167.    the calculation is driven by outgoing packets.
  168.    When the queue is idle we have to model this clock by hand.
  169.    SF+VJ proposed to "generate" m = idletime/(average_pkt_size/bandwidth)
  170.    dummy packets as a burst after idle time, i.e.
  171.           q->qave *= (1-W)^m
  172.    This is an apparently overcomplicated solution (f.e. we have to precompute
  173.    a table to make this calculation in reasonable time)
  174.    I believe that a simpler model may be used here,
  175.    but it is field for experiments.
  176. */
  177. shift = q->Stab[us_idle>>q->Scell_log];
  178. if (shift) {
  179. q->qave >>= shift;
  180. } else {
  181. /* Approximate initial part of exponent
  182.    with linear function:
  183.    (1-W)^m ~= 1-mW + ...
  184.    Seems, it is the best solution to
  185.    problem of too coarce exponent tabulation.
  186.  */
  187. us_idle = (q->qave * us_idle)>>q->Scell_log;
  188. if (us_idle < q->qave/2)
  189. q->qave -= us_idle;
  190. else
  191. q->qave >>= 1;
  192. }
  193. } else {
  194. q->qave += sch->stats.backlog - (q->qave >> q->Wlog);
  195. /* NOTE:
  196.    q->qave is fixed point number with point at Wlog.
  197.    The formulae above is equvalent to floating point
  198.    version:
  199.    qave = qave*(1-W) + sch->stats.backlog*W;
  200.                                            --ANK (980924)
  201.  */
  202. }
  203. if (q->qave < q->qth_min) {
  204. q->qcount = -1;
  205. enqueue:
  206. if (sch->stats.backlog <= q->limit) {
  207. __skb_queue_tail(&sch->q, skb);
  208. sch->stats.backlog += skb->len;
  209. sch->stats.bytes += skb->len;
  210. sch->stats.packets++;
  211. return NET_XMIT_SUCCESS;
  212. } else {
  213. q->st.pdrop++;
  214. }
  215. kfree_skb(skb);
  216. sch->stats.drops++;
  217. return NET_XMIT_DROP;
  218. }
  219. if (q->qave >= q->qth_max) {
  220. q->qcount = -1;
  221. sch->stats.overlimits++;
  222. mark:
  223. if  (!(q->flags&TC_RED_ECN) || !red_ecn_mark(skb)) {
  224. q->st.early++;
  225. goto drop;
  226. }
  227. q->st.marked++;
  228. goto enqueue;
  229. }
  230. if (++q->qcount) {
  231. /* The formula used below causes questions.
  232.    OK. qR is random number in the interval 0..Rmask
  233.    i.e. 0..(2^Plog). If we used floating point
  234.    arithmetics, it would be: (2^Plog)*rnd_num,
  235.    where rnd_num is less 1.
  236.    Taking into account, that qave have fixed
  237.    point at Wlog, and Plog is related to max_P by
  238.    max_P = (qth_max-qth_min)/2^Plog; two lines
  239.    below have the following floating point equivalent:
  240.    
  241.    max_P*(qave - qth_min)/(qth_max-qth_min) < rnd/qcount
  242.    Any questions? --ANK (980924)
  243.  */
  244. if (((q->qave - q->qth_min)>>q->Wlog)*q->qcount < q->qR)
  245. goto enqueue;
  246. q->qcount = 0;
  247. q->qR = net_random()&q->Rmask;
  248. sch->stats.overlimits++;
  249. goto mark;
  250. }
  251. q->qR = net_random()&q->Rmask;
  252. goto enqueue;
  253. drop:
  254. kfree_skb(skb);
  255. sch->stats.drops++;
  256. return NET_XMIT_CN;
  257. }
  258. static int
  259. red_requeue(struct sk_buff *skb, struct Qdisc* sch)
  260. {
  261. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  262. PSCHED_SET_PASTPERFECT(q->qidlestart);
  263. __skb_queue_head(&sch->q, skb);
  264. sch->stats.backlog += skb->len;
  265. return 0;
  266. }
  267. static struct sk_buff *
  268. red_dequeue(struct Qdisc* sch)
  269. {
  270. struct sk_buff *skb;
  271. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  272. skb = __skb_dequeue(&sch->q);
  273. if (skb) {
  274. sch->stats.backlog -= skb->len;
  275. return skb;
  276. }
  277. PSCHED_GET_TIME(q->qidlestart);
  278. return NULL;
  279. }
  280. static int
  281. red_drop(struct Qdisc* sch)
  282. {
  283. struct sk_buff *skb;
  284. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  285. skb = __skb_dequeue_tail(&sch->q);
  286. if (skb) {
  287. sch->stats.backlog -= skb->len;
  288. sch->stats.drops++;
  289. q->st.other++;
  290. kfree_skb(skb);
  291. return 1;
  292. }
  293. PSCHED_GET_TIME(q->qidlestart);
  294. return 0;
  295. }
  296. static void red_reset(struct Qdisc* sch)
  297. {
  298. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  299. __skb_queue_purge(&sch->q);
  300. sch->stats.backlog = 0;
  301. PSCHED_SET_PASTPERFECT(q->qidlestart);
  302. q->qave = 0;
  303. q->qcount = -1;
  304. }
  305. static int red_change(struct Qdisc *sch, struct rtattr *opt)
  306. {
  307. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  308. struct rtattr *tb[TCA_RED_STAB];
  309. struct tc_red_qopt *ctl;
  310. if (opt == NULL ||
  311.     rtattr_parse(tb, TCA_RED_STAB, RTA_DATA(opt), RTA_PAYLOAD(opt)) ||
  312.     tb[TCA_RED_PARMS-1] == 0 || tb[TCA_RED_STAB-1] == 0 ||
  313.     RTA_PAYLOAD(tb[TCA_RED_PARMS-1]) < sizeof(*ctl) ||
  314.     RTA_PAYLOAD(tb[TCA_RED_STAB-1]) < 256)
  315. return -EINVAL;
  316. ctl = RTA_DATA(tb[TCA_RED_PARMS-1]);
  317. sch_tree_lock(sch);
  318. q->flags = ctl->flags;
  319. q->Wlog = ctl->Wlog;
  320. q->Plog = ctl->Plog;
  321. q->Rmask = ctl->Plog < 32 ? ((1<<ctl->Plog) - 1) : ~0UL;
  322. q->Scell_log = ctl->Scell_log;
  323. q->Scell_max = (255<<q->Scell_log);
  324. q->qth_min = ctl->qth_min<<ctl->Wlog;
  325. q->qth_max = ctl->qth_max<<ctl->Wlog;
  326. q->limit = ctl->limit;
  327. memcpy(q->Stab, RTA_DATA(tb[TCA_RED_STAB-1]), 256);
  328. q->qcount = -1;
  329. if (skb_queue_len(&sch->q) == 0)
  330. PSCHED_SET_PASTPERFECT(q->qidlestart);
  331. sch_tree_unlock(sch);
  332. return 0;
  333. }
  334. static int red_init(struct Qdisc* sch, struct rtattr *opt)
  335. {
  336. int err;
  337. MOD_INC_USE_COUNT;
  338. if ((err = red_change(sch, opt)) != 0) {
  339. MOD_DEC_USE_COUNT;
  340. }
  341. return err;
  342. }
  343. int red_copy_xstats(struct sk_buff *skb, struct tc_red_xstats *st)
  344. {
  345.         RTA_PUT(skb, TCA_XSTATS, sizeof(*st), st);
  346.         return 0;
  347. rtattr_failure:
  348.         return 1;
  349. }
  350. static int red_dump(struct Qdisc *sch, struct sk_buff *skb)
  351. {
  352. struct red_sched_data *q = (struct red_sched_data *)sch->data;
  353. unsigned char  *b = skb->tail;
  354. struct rtattr *rta;
  355. struct tc_red_qopt opt;
  356. rta = (struct rtattr*)b;
  357. RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
  358. opt.limit = q->limit;
  359. opt.qth_min = q->qth_min>>q->Wlog;
  360. opt.qth_max = q->qth_max>>q->Wlog;
  361. opt.Wlog = q->Wlog;
  362. opt.Plog = q->Plog;
  363. opt.Scell_log = q->Scell_log;
  364. opt.flags = q->flags;
  365. RTA_PUT(skb, TCA_RED_PARMS, sizeof(opt), &opt);
  366. rta->rta_len = skb->tail - b;
  367. if (red_copy_xstats(skb, &q->st))
  368. goto rtattr_failure;
  369. return skb->len;
  370. rtattr_failure:
  371. skb_trim(skb, b - skb->data);
  372. return -1;
  373. }
  374. static void red_destroy(struct Qdisc *sch)
  375. {
  376. MOD_DEC_USE_COUNT;
  377. }
  378. struct Qdisc_ops red_qdisc_ops =
  379. {
  380. NULL,
  381. NULL,
  382. "red",
  383. sizeof(struct red_sched_data),
  384. red_enqueue,
  385. red_dequeue,
  386. red_requeue,
  387. red_drop,
  388. red_init,
  389. red_reset,
  390. red_destroy,
  391. red_change,
  392. red_dump,
  393. };
  394. #ifdef MODULE
  395. int init_module(void)
  396. {
  397. return register_qdisc(&red_qdisc_ops);
  398. }
  399. void cleanup_module(void) 
  400. {
  401. unregister_qdisc(&red_qdisc_ops);
  402. }
  403. #endif
  404. MODULE_LICENSE("GPL");