tc.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * netlink/route/tc.h Traffic Control
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation version 2.1
  7. * of the License.
  8. *
  9. * Copyright (c) 2003-2011 Thomas Graf <tgraf@suug.ch>
  10. */
  11. #ifndef NETLINK_TC_H_
  12. #define NETLINK_TC_H_
  13. #include <netlink/netlink.h>
  14. #include <netlink/cache.h>
  15. #include <netlink/data.h>
  16. #include <netlink/route/link.h>
  17. #include <linux/pkt_sched.h>
  18. #include <linux/pkt_cls.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. enum rtnl_tc_type {
  23. RTNL_TC_TYPE_QDISC,
  24. RTNL_TC_TYPE_CLASS,
  25. RTNL_TC_TYPE_CLS,
  26. RTNL_TC_TYPE_ACT,
  27. __RTNL_TC_TYPE_MAX,
  28. };
  29. #define RTNL_TC_TYPE_MAX (__RTNL_TC_TYPE_MAX - 1)
  30. /**
  31. * Compute tc handle based on major and minor parts
  32. * @ingroup tc
  33. */
  34. #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
  35. /**
  36. * Traffic control object
  37. * @ingroup tc
  38. */
  39. struct rtnl_tc;
  40. /**
  41. * Macro to cast qdisc/class/classifier to tc object
  42. * @ingroup tc
  43. *
  44. * @code
  45. * rtnl_tc_set_mpu(TC_CAST(qdisc), 40);
  46. * @endcode
  47. */
  48. #define TC_CAST(ptr) ((struct rtnl_tc *) (ptr))
  49. /**
  50. * Traffic control statistical identifier
  51. * @ingroup tc
  52. *
  53. * @code
  54. * uint64_t n = rtnl_tc_get_stat(TC_CAST(class), RTNL_TC_PACKETS);
  55. * @endcode
  56. */
  57. enum rtnl_tc_stat {
  58. RTNL_TC_PACKETS, /**< Number of packets seen */
  59. RTNL_TC_BYTES, /**< Total bytes seen */
  60. RTNL_TC_RATE_BPS, /**< Current bits/s (rate estimator) */
  61. RTNL_TC_RATE_PPS, /**< Current packet/s (rate estimator) */
  62. RTNL_TC_QLEN, /**< Current queue length */
  63. RTNL_TC_BACKLOG, /**< Current backlog length */
  64. RTNL_TC_DROPS, /**< Total number of packets dropped */
  65. RTNL_TC_REQUEUES, /**< Total number of requeues */
  66. RTNL_TC_OVERLIMITS, /**< Total number of overlimits */
  67. __RTNL_TC_STATS_MAX,
  68. };
  69. #define RTNL_TC_STATS_MAX (__RTNL_TC_STATS_MAX - 1)
  70. extern void rtnl_tc_set_ifindex(struct rtnl_tc *, int);
  71. extern int rtnl_tc_get_ifindex(struct rtnl_tc *);
  72. extern void rtnl_tc_set_link(struct rtnl_tc *, struct rtnl_link *);
  73. extern struct rtnl_link *rtnl_tc_get_link(struct rtnl_tc *);
  74. extern void rtnl_tc_set_mtu(struct rtnl_tc *, uint32_t);
  75. extern uint32_t rtnl_tc_get_mtu(struct rtnl_tc *);
  76. extern void rtnl_tc_set_mpu(struct rtnl_tc *, uint32_t);
  77. extern uint32_t rtnl_tc_get_mpu(struct rtnl_tc *);
  78. extern void rtnl_tc_set_overhead(struct rtnl_tc *, uint32_t);
  79. extern uint32_t rtnl_tc_get_overhead(struct rtnl_tc *);
  80. extern void rtnl_tc_set_linktype(struct rtnl_tc *, uint32_t);
  81. extern uint32_t rtnl_tc_get_linktype(struct rtnl_tc *);
  82. extern void rtnl_tc_set_handle(struct rtnl_tc *, uint32_t);
  83. extern uint32_t rtnl_tc_get_handle(struct rtnl_tc *);
  84. extern void rtnl_tc_set_parent(struct rtnl_tc *, uint32_t);
  85. extern uint32_t rtnl_tc_get_parent(struct rtnl_tc *);
  86. extern int rtnl_tc_set_kind(struct rtnl_tc *, const char *);
  87. extern char * rtnl_tc_get_kind(struct rtnl_tc *);
  88. extern uint64_t rtnl_tc_get_stat(struct rtnl_tc *, enum rtnl_tc_stat);
  89. extern char * rtnl_tc_stat2str(enum rtnl_tc_stat, char *, size_t);
  90. extern int rtnl_tc_str2stat(const char *);
  91. extern int rtnl_tc_calc_txtime(int, int);
  92. extern int rtnl_tc_calc_bufsize(int, int);
  93. extern int rtnl_tc_calc_cell_log(int);
  94. extern int rtnl_tc_read_classid_file(void);
  95. extern char * rtnl_tc_handle2str(uint32_t, char *, size_t);
  96. extern int rtnl_tc_str2handle(const char *, uint32_t *);
  97. extern int rtnl_classid_generate(const char *, uint32_t *,
  98. uint32_t);
  99. #ifdef __cplusplus
  100. }
  101. #endif
  102. #endif