inet_diag.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _INET_DIAG_H_
  2. #define _INET_DIAG_H_ 1
  3. /* Just some random number */
  4. #define TCPDIAG_GETSOCK 18
  5. #define DCCPDIAG_GETSOCK 19
  6. #define INET_DIAG_GETSOCK_MAX 24
  7. /* Socket identity */
  8. struct inet_diag_sockid {
  9. __u16 idiag_sport;
  10. __u16 idiag_dport;
  11. __u32 idiag_src[4];
  12. __u32 idiag_dst[4];
  13. __u32 idiag_if;
  14. __u32 idiag_cookie[2];
  15. #define INET_DIAG_NOCOOKIE (~0U)
  16. };
  17. /* Request structure */
  18. struct inet_diag_req {
  19. __u8 idiag_family; /* Family of addresses. */
  20. __u8 idiag_src_len;
  21. __u8 idiag_dst_len;
  22. __u8 idiag_ext; /* Query extended information */
  23. struct inet_diag_sockid id;
  24. __u32 idiag_states; /* States to dump */
  25. __u32 idiag_dbs; /* Tables to dump (NI) */
  26. };
  27. enum {
  28. INET_DIAG_REQ_NONE,
  29. INET_DIAG_REQ_BYTECODE,
  30. };
  31. #define INET_DIAG_REQ_MAX INET_DIAG_REQ_BYTECODE
  32. /* Bytecode is sequence of 4 byte commands followed by variable arguments.
  33.  * All the commands identified by "code" are conditional jumps forward:
  34.  * to offset cc+"yes" or to offset cc+"no". "yes" is supposed to be
  35.  * length of the command and its arguments.
  36.  */
  37.  
  38. struct inet_diag_bc_op {
  39. unsigned char code;
  40. unsigned char yes;
  41. unsigned short no;
  42. };
  43. enum {
  44. INET_DIAG_BC_NOP,
  45. INET_DIAG_BC_JMP,
  46. INET_DIAG_BC_S_GE,
  47. INET_DIAG_BC_S_LE,
  48. INET_DIAG_BC_D_GE,
  49. INET_DIAG_BC_D_LE,
  50. INET_DIAG_BC_AUTO,
  51. INET_DIAG_BC_S_COND,
  52. INET_DIAG_BC_D_COND,
  53. };
  54. struct inet_diag_hostcond {
  55. __u8 family;
  56. __u8 prefix_len;
  57. int port;
  58. __u32 addr[0];
  59. };
  60. /* Base info structure. It contains socket identity (addrs/ports/cookie)
  61.  * and, alas, the information shown by netstat. */
  62. struct inet_diag_msg {
  63. __u8 idiag_family;
  64. __u8 idiag_state;
  65. __u8 idiag_timer;
  66. __u8 idiag_retrans;
  67. struct inet_diag_sockid id;
  68. __u32 idiag_expires;
  69. __u32 idiag_rqueue;
  70. __u32 idiag_wqueue;
  71. __u32 idiag_uid;
  72. __u32 idiag_inode;
  73. };
  74. /* Extensions */
  75. enum {
  76. INET_DIAG_NONE,
  77. INET_DIAG_MEMINFO,
  78. INET_DIAG_INFO,
  79. INET_DIAG_VEGASINFO,
  80. INET_DIAG_CONG,
  81. };
  82. #define INET_DIAG_MAX INET_DIAG_CONG
  83. /* INET_DIAG_MEM */
  84. struct inet_diag_meminfo {
  85. __u32 idiag_rmem;
  86. __u32 idiag_wmem;
  87. __u32 idiag_fmem;
  88. __u32 idiag_tmem;
  89. };
  90. /* INET_DIAG_VEGASINFO */
  91. struct tcpvegas_info {
  92. __u32 tcpv_enabled;
  93. __u32 tcpv_rttcnt;
  94. __u32 tcpv_rtt;
  95. __u32 tcpv_minrtt;
  96. };
  97. #ifdef __KERNEL__
  98. struct sock;
  99. struct inet_hashinfo;
  100. struct inet_diag_handler {
  101. struct inet_hashinfo    *idiag_hashinfo;
  102. void (*idiag_get_info)(struct sock *sk,
  103.   struct inet_diag_msg *r,
  104.   void *info);
  105. __u16                   idiag_info_size;
  106. __u16                   idiag_type;
  107. };
  108. extern int  inet_diag_register(const struct inet_diag_handler *handler);
  109. extern void inet_diag_unregister(const struct inet_diag_handler *handler);
  110. #endif /* __KERNEL__ */
  111. #endif /* _INET_DIAG_H_ */