proc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

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.  It is mainly used for debugging and
  8.  * statistics.
  9.  *
  10.  * Version: $Id: proc.c,v 1.45 2001/05/16 16:45:35 davem Exp $
  11.  *
  12.  * Authors: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
  13.  * Gerald J. Heim, <heim@peanuts.informatik.uni-tuebingen.de>
  14.  * Fred Baumgarten, <dc6iq@insu1.etec.uni-karlsruhe.de>
  15.  * Erik Schoenfelder, <schoenfr@ibr.cs.tu-bs.de>
  16.  *
  17.  * Fixes:
  18.  * Alan Cox : UDP sockets show the rxqueue/txqueue
  19.  * using hint flag for the netinfo.
  20.  * Pauline Middelink : identd support
  21.  * Alan Cox : Make /proc safer.
  22.  * Erik Schoenfelder : /proc/net/snmp
  23.  * Alan Cox : Handle dead sockets properly.
  24.  * Gerhard Koerting : Show both timers
  25.  * Alan Cox : Allow inode to be NULL (kernel socket)
  26.  * Andi Kleen : Add support for open_requests and 
  27.  * split functions for more readibility.
  28.  * Andi Kleen : Add support for /proc/net/netstat
  29.  *
  30.  * This program is free software; you can redistribute it and/or
  31.  * modify it under the terms of the GNU General Public License
  32.  * as published by the Free Software Foundation; either version
  33.  * 2 of the License, or (at your option) any later version.
  34.  */
  35. #include <asm/system.h>
  36. #include <linux/sched.h>
  37. #include <linux/socket.h>
  38. #include <linux/net.h>
  39. #include <linux/un.h>
  40. #include <linux/in.h>
  41. #include <linux/param.h>
  42. #include <linux/inet.h>
  43. #include <linux/netdevice.h>
  44. #include <net/ip.h>
  45. #include <net/icmp.h>
  46. #include <net/protocol.h>
  47. #include <net/tcp.h>
  48. #include <net/udp.h>
  49. #include <linux/skbuff.h>
  50. #include <net/sock.h>
  51. #include <net/raw.h>
  52. static int fold_prot_inuse(struct proto *proto)
  53. {
  54. int res = 0;
  55. int cpu;
  56. for (cpu=0; cpu<smp_num_cpus; cpu++)
  57. res += proto->stats[cpu_logical_map(cpu)].inuse;
  58. return res;
  59. }
  60. /*
  61.  * Report socket allocation statistics [mea@utu.fi]
  62.  */
  63. int afinet_get_info(char *buffer, char **start, off_t offset, int length)
  64. {
  65. /* From  net/socket.c  */
  66. extern int socket_get_info(char *, char **, off_t, int);
  67. int len  = socket_get_info(buffer,start,offset,length);
  68. len += sprintf(buffer+len,"TCP: inuse %d orphan %d tw %d alloc %d mem %dn",
  69.        fold_prot_inuse(&tcp_prot),
  70.        atomic_read(&tcp_orphan_count), tcp_tw_count,
  71.        atomic_read(&tcp_sockets_allocated),
  72.        atomic_read(&tcp_memory_allocated));
  73. len += sprintf(buffer+len,"UDP: inuse %dn",
  74.        fold_prot_inuse(&udp_prot));
  75. len += sprintf(buffer+len,"RAW: inuse %dn",
  76.        fold_prot_inuse(&raw_prot));
  77. len += sprintf(buffer+len, "FRAG: inuse %d memory %dn",
  78.        ip_frag_nqueues, atomic_read(&ip_frag_mem));
  79. if (offset >= len)
  80. {
  81. *start = buffer;
  82. return 0;
  83. }
  84. *start = buffer + offset;
  85. len -= offset;
  86. if (len > length)
  87. len = length;
  88. if (len < 0)
  89. len = 0;
  90. return len;
  91. }
  92. static unsigned long fold_field(unsigned long *begin, int sz, int nr)
  93. {
  94. unsigned long res = 0;
  95. int i;
  96. sz /= sizeof(unsigned long);
  97. for (i=0; i<smp_num_cpus; i++) {
  98. res += begin[2*cpu_logical_map(i)*sz + nr];
  99. res += begin[(2*cpu_logical_map(i)+1)*sz + nr];
  100. }
  101. return res;
  102. }
  103. /* 
  104.  * Called from the PROCfs module. This outputs /proc/net/snmp.
  105.  */
  106.  
  107. int snmp_get_info(char *buffer, char **start, off_t offset, int length)
  108. {
  109. extern int sysctl_ip_default_ttl;
  110. int len, i;
  111. len = sprintf (buffer,
  112. "Ip: Forwarding DefaultTTL InReceives InHdrErrors InAddrErrors ForwDatagrams InUnknownProtos InDiscards InDelivers OutRequests OutDiscards OutNoRoutes ReasmTimeout ReasmReqds ReasmOKs ReasmFails FragOKs FragFails FragCreatesn"
  113. "Ip: %d %d", ipv4_devconf.forwarding ? 1 : 2, sysctl_ip_default_ttl);
  114. for (i=0; i<offsetof(struct ip_mib, __pad)/sizeof(unsigned long); i++)
  115. len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)ip_statistics, sizeof(struct ip_mib), i));
  116. len += sprintf (buffer + len,
  117. "nIcmp: InMsgs InErrors InDestUnreachs InTimeExcds InParmProbs InSrcQuenchs InRedirects InEchos InEchoReps InTimestamps InTimestampReps InAddrMasks InAddrMaskReps OutMsgs OutErrors OutDestUnreachs OutTimeExcds OutParmProbs OutSrcQuenchs OutRedirects OutEchos OutEchoReps OutTimestamps OutTimestampReps OutAddrMasks OutAddrMaskRepsn"
  118.   "Icmp:");
  119. for (i=0; i<offsetof(struct icmp_mib, __pad)/sizeof(unsigned long); i++)
  120. len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)icmp_statistics, sizeof(struct icmp_mib), i));
  121. len += sprintf (buffer + len,
  122. "nTcp: RtoAlgorithm RtoMin RtoMax MaxConn ActiveOpens PassiveOpens AttemptFails EstabResets CurrEstab InSegs OutSegs RetransSegs InErrs OutRstsn"
  123.   "Tcp:");
  124. for (i=0; i<offsetof(struct tcp_mib, __pad)/sizeof(unsigned long); i++)
  125. len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)tcp_statistics, sizeof(struct tcp_mib), i));
  126. len += sprintf (buffer + len,
  127. "nUdp: InDatagrams NoPorts InErrors OutDatagramsn"
  128.   "Udp:");
  129. for (i=0; i<offsetof(struct udp_mib, __pad)/sizeof(unsigned long); i++)
  130. len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)udp_statistics, sizeof(struct udp_mib), i));
  131. len += sprintf (buffer + len, "n");
  132. if (offset >= len)
  133. {
  134. *start = buffer;
  135. return 0;
  136. }
  137. *start = buffer + offset;
  138. len -= offset;
  139. if (len > length)
  140. len = length;
  141. if (len < 0)
  142. len = 0; 
  143. return len;
  144. }
  145. /* 
  146.  * Output /proc/net/netstat
  147.  */
  148.  
  149. int netstat_get_info(char *buffer, char **start, off_t offset, int length)
  150. {
  151. int len, i;
  152. len = sprintf(buffer,
  153.       "TcpExt: SyncookiesSent SyncookiesRecv SyncookiesFailed"
  154.       " EmbryonicRsts PruneCalled RcvPruned OfoPruned"
  155.       " OutOfWindowIcmps LockDroppedIcmps ArpFilter"
  156.       " TW TWRecycled TWKilled"
  157.       " PAWSPassive PAWSActive PAWSEstab"
  158.       " DelayedACKs DelayedACKLocked DelayedACKLost"
  159.       " ListenOverflows ListenDrops"
  160.       " TCPPrequeued TCPDirectCopyFromBacklog"
  161.       " TCPDirectCopyFromPrequeue TCPPrequeueDropped"
  162.       " TCPHPHits TCPHPHitsToUser"
  163.       " TCPPureAcks TCPHPAcks"
  164.       " TCPRenoRecovery TCPSackRecovery"
  165.       " TCPSACKReneging"
  166.       " TCPFACKReorder TCPSACKReorder TCPRenoReorder TCPTSReorder"
  167.       " TCPFullUndo TCPPartialUndo TCPDSACKUndo TCPLossUndo"
  168.       " TCPLoss TCPLostRetransmit"
  169.       " TCPRenoFailures TCPSackFailures TCPLossFailures"
  170.       " TCPFastRetrans TCPForwardRetrans TCPSlowStartRetrans"
  171.       " TCPTimeouts"
  172.       " TCPRenoRecoveryFail TCPSackRecoveryFail"
  173.       " TCPSchedulerFailed TCPRcvCollapsed"
  174.       " TCPDSACKOldSent TCPDSACKOfoSent TCPDSACKRecv TCPDSACKOfoRecv"
  175.       " TCPAbortOnSyn TCPAbortOnData TCPAbortOnClose"
  176.       " TCPAbortOnMemory TCPAbortOnTimeout TCPAbortOnLinger"
  177.       " TCPAbortFailed TCPMemoryPressuresn"
  178.       "TcpExt:");
  179. for (i=0; i<offsetof(struct linux_mib, __pad)/sizeof(unsigned long); i++)
  180. len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)net_statistics, sizeof(struct linux_mib), i));
  181. len += sprintf (buffer + len, "n");
  182. if (offset >= len)
  183. {
  184. *start = buffer;
  185. return 0;
  186. }
  187. *start = buffer + offset;
  188. len -= offset;
  189. if (len > length)
  190. len = length;
  191. if (len < 0)
  192. len = 0; 
  193. return len;
  194. }