snmp.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /*
  2. *
  3. * SNMP MIB entries for the IP subsystem.
  4. *
  5. * Alan Cox <gw4pts@gw4pts.ampr.org>
  6. *
  7. * We don't chose to implement SNMP in the kernel (this would
  8. * be silly as SNMP is a pain in the backside in places). We do
  9. * however need to collect the MIB statistics and export them
  10. * out of /proc (eventually)
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. *
  17. */
  18. #ifndef _SNMP_H
  19. #define _SNMP_H
  20. #include <linux/cache.h>
  21. #include <linux/snmp.h>
  22. #include <linux/smp.h>
  23. /*
  24. * Mibs are stored in array of unsigned long.
  25. */
  26. /*
  27. * struct snmp_mib{}
  28. * - list of entries for particular API (such as /proc/net/snmp)
  29. * - name of entries.
  30. */
  31. struct snmp_mib {
  32. const char *name;
  33. int entry;
  34. };
  35. #define SNMP_MIB_ITEM(_name,_entry) { \
  36. .name = _name, \
  37. .entry = _entry, \
  38. }
  39. #define SNMP_MIB_SENTINEL { \
  40. .name = NULL, \
  41. .entry = 0, \
  42. }
  43. /*
  44. * We use unsigned longs for most mibs but u64 for ipstats.
  45. */
  46. #include <linux/u64_stats_sync.h>
  47. /* IPstats */
  48. #define IPSTATS_MIB_MAX __IPSTATS_MIB_MAX
  49. struct ipstats_mib {
  50. /* mibs[] must be first field of struct ipstats_mib */
  51. u64 mibs[IPSTATS_MIB_MAX];
  52. struct u64_stats_sync syncp;
  53. };
  54. /* ICMP */
  55. #define ICMP_MIB_MAX __ICMP_MIB_MAX
  56. struct icmp_mib {
  57. unsigned long mibs[ICMP_MIB_MAX];
  58. };
  59. #define ICMPMSG_MIB_MAX __ICMPMSG_MIB_MAX
  60. struct icmpmsg_mib {
  61. unsigned long mibs[ICMPMSG_MIB_MAX];
  62. };
  63. /* ICMP6 (IPv6-ICMP) */
  64. #define ICMP6_MIB_MAX __ICMP6_MIB_MAX
  65. /* per network ns counters */
  66. struct icmpv6_mib {
  67. unsigned long mibs[ICMP6_MIB_MAX];
  68. };
  69. /* per device counters, (shared on all cpus) */
  70. struct icmpv6_mib_device {
  71. atomic_long_t mibs[ICMP6_MIB_MAX];
  72. };
  73. #define ICMP6MSG_MIB_MAX __ICMP6MSG_MIB_MAX
  74. /* per network ns counters */
  75. struct icmpv6msg_mib {
  76. unsigned long mibs[ICMP6MSG_MIB_MAX];
  77. };
  78. /* per device counters, (shared on all cpus) */
  79. struct icmpv6msg_mib_device {
  80. atomic_long_t mibs[ICMP6MSG_MIB_MAX];
  81. };
  82. /* TCP */
  83. #define TCP_MIB_MAX __TCP_MIB_MAX
  84. struct tcp_mib {
  85. unsigned long mibs[TCP_MIB_MAX];
  86. };
  87. /* UDP */
  88. #define UDP_MIB_MAX __UDP_MIB_MAX
  89. struct udp_mib {
  90. unsigned long mibs[UDP_MIB_MAX];
  91. };
  92. /* Linux */
  93. #define LINUX_MIB_MAX __LINUX_MIB_MAX
  94. struct linux_mib {
  95. unsigned long mibs[LINUX_MIB_MAX];
  96. };
  97. /* Linux Xfrm */
  98. #define LINUX_MIB_XFRMMAX __LINUX_MIB_XFRMMAX
  99. struct linux_xfrm_mib {
  100. unsigned long mibs[LINUX_MIB_XFRMMAX];
  101. };
  102. /*
  103. * FIXME: On x86 and some other CPUs the split into user and softirq parts
  104. * is not needed because addl $1,memory is atomic against interrupts (but
  105. * atomic_inc would be overkill because of the lock cycles). Wants new
  106. * nonlocked_atomic_inc() primitives -AK
  107. */
  108. #define DEFINE_SNMP_STAT(type, name) \
  109. __typeof__(type) __percpu *name[2]
  110. #define DEFINE_SNMP_STAT_ATOMIC(type, name) \
  111. __typeof__(type) *name
  112. #define DECLARE_SNMP_STAT(type, name) \
  113. extern __typeof__(type) __percpu *name[2]
  114. #define SNMP_STAT_BHPTR(name) (name[0])
  115. #define SNMP_STAT_USRPTR(name) (name[1])
  116. #define SNMP_INC_STATS_BH(mib, field) \
  117. __this_cpu_inc(mib[0]->mibs[field])
  118. #define SNMP_INC_STATS_USER(mib, field) \
  119. this_cpu_inc(mib[1]->mibs[field])
  120. #define SNMP_INC_STATS_ATOMIC_LONG(mib, field) \
  121. atomic_long_inc(&mib->mibs[field])
  122. #define SNMP_INC_STATS(mib, field) \
  123. this_cpu_inc(mib[!in_softirq()]->mibs[field])
  124. #define SNMP_DEC_STATS(mib, field) \
  125. this_cpu_dec(mib[!in_softirq()]->mibs[field])
  126. #define SNMP_ADD_STATS_BH(mib, field, addend) \
  127. __this_cpu_add(mib[0]->mibs[field], addend)
  128. #define SNMP_ADD_STATS_USER(mib, field, addend) \
  129. this_cpu_add(mib[1]->mibs[field], addend)
  130. #define SNMP_ADD_STATS(mib, field, addend) \
  131. this_cpu_add(mib[!in_softirq()]->mibs[field], addend)
  132. /*
  133. * Use "__typeof__(*mib[0]) *ptr" instead of "__typeof__(mib[0]) ptr"
  134. * to make @ptr a non-percpu pointer.
  135. */
  136. #define SNMP_UPD_PO_STATS(mib, basefield, addend) \
  137. do { \
  138. __typeof__(*mib[0]) *ptr; \
  139. preempt_disable(); \
  140. ptr = this_cpu_ptr((mib)[!in_softirq()]); \
  141. ptr->mibs[basefield##PKTS]++; \
  142. ptr->mibs[basefield##OCTETS] += addend;\
  143. preempt_enable(); \
  144. } while (0)
  145. #define SNMP_UPD_PO_STATS_BH(mib, basefield, addend) \
  146. do { \
  147. __typeof__(*mib[0]) *ptr = \
  148. __this_cpu_ptr((mib)[0]); \
  149. ptr->mibs[basefield##PKTS]++; \
  150. ptr->mibs[basefield##OCTETS] += addend;\
  151. } while (0)
  152. #if BITS_PER_LONG==32
  153. #define SNMP_ADD_STATS64_BH(mib, field, addend) \
  154. do { \
  155. __typeof__(*mib[0]) *ptr = __this_cpu_ptr((mib)[0]); \
  156. u64_stats_update_begin(&ptr->syncp); \
  157. ptr->mibs[field] += addend; \
  158. u64_stats_update_end(&ptr->syncp); \
  159. } while (0)
  160. #define SNMP_ADD_STATS64_USER(mib, field, addend) \
  161. do { \
  162. __typeof__(*mib[0]) *ptr; \
  163. preempt_disable(); \
  164. ptr = __this_cpu_ptr((mib)[1]); \
  165. u64_stats_update_begin(&ptr->syncp); \
  166. ptr->mibs[field] += addend; \
  167. u64_stats_update_end(&ptr->syncp); \
  168. preempt_enable(); \
  169. } while (0)
  170. #define SNMP_ADD_STATS64(mib, field, addend) \
  171. do { \
  172. __typeof__(*mib[0]) *ptr; \
  173. preempt_disable(); \
  174. ptr = __this_cpu_ptr((mib)[!in_softirq()]); \
  175. u64_stats_update_begin(&ptr->syncp); \
  176. ptr->mibs[field] += addend; \
  177. u64_stats_update_end(&ptr->syncp); \
  178. preempt_enable(); \
  179. } while (0)
  180. #define SNMP_INC_STATS64_BH(mib, field) SNMP_ADD_STATS64_BH(mib, field, 1)
  181. #define SNMP_INC_STATS64_USER(mib, field) SNMP_ADD_STATS64_USER(mib, field, 1)
  182. #define SNMP_INC_STATS64(mib, field) SNMP_ADD_STATS64(mib, field, 1)
  183. #define SNMP_UPD_PO_STATS64(mib, basefield, addend) \
  184. do { \
  185. __typeof__(*mib[0]) *ptr; \
  186. preempt_disable(); \
  187. ptr = __this_cpu_ptr((mib)[!in_softirq()]); \
  188. u64_stats_update_begin(&ptr->syncp); \
  189. ptr->mibs[basefield##PKTS]++; \
  190. ptr->mibs[basefield##OCTETS] += addend; \
  191. u64_stats_update_end(&ptr->syncp); \
  192. preempt_enable(); \
  193. } while (0)
  194. #define SNMP_UPD_PO_STATS64_BH(mib, basefield, addend) \
  195. do { \
  196. __typeof__(*mib[0]) *ptr; \
  197. ptr = __this_cpu_ptr((mib)[0]); \
  198. u64_stats_update_begin(&ptr->syncp); \
  199. ptr->mibs[basefield##PKTS]++; \
  200. ptr->mibs[basefield##OCTETS] += addend; \
  201. u64_stats_update_end(&ptr->syncp); \
  202. } while (0)
  203. #else
  204. #define SNMP_INC_STATS64_BH(mib, field) SNMP_INC_STATS_BH(mib, field)
  205. #define SNMP_INC_STATS64_USER(mib, field) SNMP_INC_STATS_USER(mib, field)
  206. #define SNMP_INC_STATS64(mib, field) SNMP_INC_STATS(mib, field)
  207. #define SNMP_DEC_STATS64(mib, field) SNMP_DEC_STATS(mib, field)
  208. #define SNMP_ADD_STATS64_BH(mib, field, addend) SNMP_ADD_STATS_BH(mib, field, addend)
  209. #define SNMP_ADD_STATS64_USER(mib, field, addend) SNMP_ADD_STATS_USER(mib, field, addend)
  210. #define SNMP_ADD_STATS64(mib, field, addend) SNMP_ADD_STATS(mib, field, addend)
  211. #define SNMP_UPD_PO_STATS64(mib, basefield, addend) SNMP_UPD_PO_STATS(mib, basefield, addend)
  212. #define SNMP_UPD_PO_STATS64_BH(mib, basefield, addend) SNMP_UPD_PO_STATS_BH(mib, basefield, addend)
  213. #endif
  214. #endif