gen_stats.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. Generic networking statistics for netlink users
  2. ======================================================================
  3. Statistic counters are grouped into structs:
  4. Struct TLV type Description
  5. ----------------------------------------------------------------------
  6. gnet_stats_basic TCA_STATS_BASIC Basic statistics
  7. gnet_stats_rate_est TCA_STATS_RATE_EST Rate estimator
  8. gnet_stats_queue TCA_STATS_QUEUE Queue statistics
  9. none TCA_STATS_APP Application specific
  10. Collecting:
  11. -----------
  12. Declare the statistic structs you need:
  13. struct mystruct {
  14. struct gnet_stats_basic bstats;
  15. struct gnet_stats_queue qstats;
  16. ...
  17. };
  18. Update statistics:
  19. mystruct->tstats.packet++;
  20. mystruct->qstats.backlog += skb->pkt_len;
  21. Export to userspace (Dump):
  22. ---------------------------
  23. my_dumping_routine(struct sk_buff *skb, ...)
  24. {
  25. struct gnet_dump dump;
  26. if (gnet_stats_start_copy(skb, TCA_STATS2, &mystruct->lock, &dump) < 0)
  27. goto rtattr_failure;
  28. if (gnet_stats_copy_basic(&dump, &mystruct->bstats) < 0 ||
  29. gnet_stats_copy_queue(&dump, &mystruct->qstats) < 0 ||
  30. gnet_stats_copy_app(&dump, &xstats, sizeof(xstats)) < 0)
  31. goto rtattr_failure;
  32. if (gnet_stats_finish_copy(&dump) < 0)
  33. goto rtattr_failure;
  34. ...
  35. }
  36. TCA_STATS/TCA_XSTATS backward compatibility:
  37. --------------------------------------------
  38. Prior users of struct tc_stats and xstats can maintain backward
  39. compatibility by calling the compat wrappers to keep providing the
  40. existing TLV types.
  41. my_dumping_routine(struct sk_buff *skb, ...)
  42. {
  43. if (gnet_stats_start_copy_compat(skb, TCA_STATS2, TCA_STATS,
  44. TCA_XSTATS, &mystruct->lock, &dump) < 0)
  45. goto rtattr_failure;
  46. ...
  47. }
  48. A struct tc_stats will be filled out during gnet_stats_copy_* calls
  49. and appended to the skb. TCA_XSTATS is provided if gnet_stats_copy_app
  50. was called.
  51. Locking:
  52. --------
  53. Locks are taken before writing and released once all statistics have
  54. been written. Locks are always released in case of an error. You
  55. are responsible for making sure that the lock is initialized.
  56. Rate Estimator:
  57. --------------
  58. 0) Prepare an estimator attribute. Most likely this would be in user
  59. space. The value of this TLV should contain a tc_estimator structure.
  60. As usual, such a TLV needs to be 32 bit aligned and therefore the
  61. length needs to be appropriately set, etc. The estimator interval
  62. and ewma log need to be converted to the appropriate values.
  63. tc_estimator.c::tc_setup_estimator() is advisable to be used as the
  64. conversion routine. It does a few clever things. It takes a time
  65. interval in microsecs, a time constant also in microsecs and a struct
  66. tc_estimator to be populated. The returned tc_estimator can be
  67. transported to the kernel. Transfer such a structure in a TLV of type
  68. TCA_RATE to your code in the kernel.
  69. In the kernel when setting up:
  70. 1) make sure you have basic stats and rate stats setup first.
  71. 2) make sure you have initialized stats lock that is used to setup such
  72. stats.
  73. 3) Now initialize a new estimator:
  74. int ret = gen_new_estimator(my_basicstats,my_rate_est_stats,
  75. mystats_lock, attr_with_tcestimator_struct);
  76. if ret == 0
  77. success
  78. else
  79. failed
  80. From now on, every time you dump my_rate_est_stats it will contain
  81. up-to-date info.
  82. Once you are done, call gen_kill_estimator(my_basicstats,
  83. my_rate_est_stats) Make sure that my_basicstats and my_rate_est_stats
  84. are still valid (i.e still exist) at the time of making this call.
  85. Authors:
  86. --------
  87. Thomas Graf <tgraf@suug.ch>
  88. Jamal Hadi Salim <hadi@cyberus.ca>