proc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * This file implements the various access functions for the
  7.  * PROC file system.  This is very similar to the IPv4 version,
  8.  * except it reports the sockets in the INET6 address family.
  9.  *
  10.  * Version: $Id: proc.c,v 1.15.2.1 2002/01/24 15:46:07 davem Exp $
  11.  *
  12.  * Authors: David S. Miller (davem@caip.rutgers.edu)
  13.  *
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version
  17.  * 2 of the License, or (at your option) any later version.
  18.  */
  19. #include <linux/sched.h>
  20. #include <linux/socket.h>
  21. #include <linux/net.h>
  22. #include <linux/in6.h>
  23. #include <linux/stddef.h>
  24. #include <net/sock.h>
  25. #include <net/tcp.h>
  26. #include <net/transp_v6.h>
  27. #include <net/ipv6.h>
  28. static int fold_prot_inuse(struct proto *proto)
  29. {
  30. int res = 0;
  31. int cpu;
  32. for (cpu=0; cpu<smp_num_cpus; cpu++)
  33. res += proto->stats[cpu_logical_map(cpu)].inuse;
  34. return res;
  35. }
  36. int afinet6_get_info(char *buffer, char **start, off_t offset, int length)
  37. {
  38. int len = 0;
  39. len += sprintf(buffer+len, "TCP6: inuse %dn",
  40.        fold_prot_inuse(&tcpv6_prot));
  41. len += sprintf(buffer+len, "UDP6: inuse %dn",
  42.        fold_prot_inuse(&udpv6_prot));
  43. len += sprintf(buffer+len, "RAW6: inuse %dn",
  44.        fold_prot_inuse(&rawv6_prot));
  45. len += sprintf(buffer+len, "FRAG6: inuse %d memory %dn",
  46.        ip6_frag_nqueues, atomic_read(&ip6_frag_mem));
  47. *start = buffer + offset;
  48. len -= offset;
  49. if(len > length)
  50. len = length;
  51. return len;
  52. }
  53. struct snmp6_item
  54. {
  55. char *name;
  56. unsigned long *ptr;
  57. int   mibsize;
  58. } snmp6_list[] = {
  59. /* ipv6 mib according to draft-ietf-ipngwg-ipv6-mib-04 */
  60. #define SNMP6_GEN(x) { #x , &ipv6_statistics[0].x, sizeof(struct ipv6_mib)/sizeof(unsigned long) }
  61. SNMP6_GEN(Ip6InReceives),
  62. SNMP6_GEN(Ip6InHdrErrors),
  63. SNMP6_GEN(Ip6InTooBigErrors),
  64. SNMP6_GEN(Ip6InNoRoutes),
  65. SNMP6_GEN(Ip6InAddrErrors),
  66. SNMP6_GEN(Ip6InUnknownProtos),
  67. SNMP6_GEN(Ip6InTruncatedPkts),
  68. SNMP6_GEN(Ip6InDiscards),
  69. SNMP6_GEN(Ip6InDelivers),
  70. SNMP6_GEN(Ip6OutForwDatagrams),
  71. SNMP6_GEN(Ip6OutRequests),
  72. SNMP6_GEN(Ip6OutDiscards),
  73. SNMP6_GEN(Ip6OutNoRoutes),
  74. SNMP6_GEN(Ip6ReasmTimeout),
  75. SNMP6_GEN(Ip6ReasmReqds),
  76. SNMP6_GEN(Ip6ReasmOKs),
  77. SNMP6_GEN(Ip6ReasmFails),
  78. SNMP6_GEN(Ip6FragOKs),
  79. SNMP6_GEN(Ip6FragFails),
  80. SNMP6_GEN(Ip6FragCreates),
  81. SNMP6_GEN(Ip6InMcastPkts),
  82. SNMP6_GEN(Ip6OutMcastPkts),
  83. #undef SNMP6_GEN
  84. /* icmpv6 mib according to draft-ietf-ipngwg-ipv6-icmp-mib-02
  85.    Exceptions:  {In|Out}AdminProhibs are removed, because I see
  86.                 no good reasons to account them separately
  87. of another dest.unreachs.
  88. OutErrs is zero identically.
  89. OutEchos too.
  90. OutRouterAdvertisements too.
  91. OutGroupMembQueries too.
  92.  */
  93. #define SNMP6_GEN(x) { #x , &icmpv6_statistics[0].x, sizeof(struct icmpv6_mib)/sizeof(unsigned long) }
  94. SNMP6_GEN(Icmp6InMsgs),
  95. SNMP6_GEN(Icmp6InErrors),
  96. SNMP6_GEN(Icmp6InDestUnreachs),
  97. SNMP6_GEN(Icmp6InPktTooBigs),
  98. SNMP6_GEN(Icmp6InTimeExcds),
  99. SNMP6_GEN(Icmp6InParmProblems),
  100. SNMP6_GEN(Icmp6InEchos),
  101. SNMP6_GEN(Icmp6InEchoReplies),
  102. SNMP6_GEN(Icmp6InGroupMembQueries),
  103. SNMP6_GEN(Icmp6InGroupMembResponses),
  104. SNMP6_GEN(Icmp6InGroupMembReductions),
  105. SNMP6_GEN(Icmp6InRouterSolicits),
  106. SNMP6_GEN(Icmp6InRouterAdvertisements),
  107. SNMP6_GEN(Icmp6InNeighborSolicits),
  108. SNMP6_GEN(Icmp6InNeighborAdvertisements),
  109. SNMP6_GEN(Icmp6InRedirects),
  110. SNMP6_GEN(Icmp6OutMsgs),
  111. SNMP6_GEN(Icmp6OutDestUnreachs),
  112. SNMP6_GEN(Icmp6OutPktTooBigs),
  113. SNMP6_GEN(Icmp6OutTimeExcds),
  114. SNMP6_GEN(Icmp6OutParmProblems),
  115. SNMP6_GEN(Icmp6OutEchoReplies),
  116. SNMP6_GEN(Icmp6OutRouterSolicits),
  117. SNMP6_GEN(Icmp6OutNeighborSolicits),
  118. SNMP6_GEN(Icmp6OutNeighborAdvertisements),
  119. SNMP6_GEN(Icmp6OutRedirects),
  120. SNMP6_GEN(Icmp6OutGroupMembResponses),
  121. SNMP6_GEN(Icmp6OutGroupMembReductions),
  122. #undef SNMP6_GEN
  123. #define SNMP6_GEN(x) { "Udp6" #x , &udp_stats_in6[0].Udp##x, sizeof(struct udp_mib)/sizeof(unsigned long) }
  124. SNMP6_GEN(InDatagrams),
  125. SNMP6_GEN(NoPorts),
  126. SNMP6_GEN(InErrors),
  127. SNMP6_GEN(OutDatagrams)
  128. #undef SNMP6_GEN
  129. };
  130. static unsigned long fold_field(unsigned long *ptr, int size)
  131. {
  132. unsigned long res = 0;
  133. int i;
  134. for (i=0; i<smp_num_cpus; i++) {
  135. res += ptr[2*cpu_logical_map(i)*size];
  136. res += ptr[(2*cpu_logical_map(i)+1)*size];
  137. }
  138. return res;
  139. }
  140. int afinet6_get_snmp(char *buffer, char **start, off_t offset, int length)
  141. {
  142. int len = 0;
  143. int i;
  144. for (i=0; i<sizeof(snmp6_list)/sizeof(snmp6_list[0]); i++)
  145. len += sprintf(buffer+len, "%-32st%ldn", snmp6_list[i].name,
  146.        fold_field(snmp6_list[i].ptr, snmp6_list[i].mibsize));
  147. len -= offset;
  148. if (len > length)
  149. len = length;
  150. if(len < 0)
  151. len = 0;
  152. *start = buffer + offset;
  153. return len;
  154. }