proc.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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. * Arnaldo C. Melo : Convert to seq_file
  30. *
  31. * This program is free software; you can redistribute it and/or
  32. * modify it under the terms of the GNU General Public License
  33. * as published by the Free Software Foundation; either version
  34. * 2 of the License, or (at your option) any later version.
  35. */
  36. #include <linux/types.h>
  37. #include <net/net_namespace.h>
  38. #include <net/icmp.h>
  39. #include <net/protocol.h>
  40. #include <net/tcp.h>
  41. #include <net/udp.h>
  42. #include <net/udplite.h>
  43. #include <linux/inetdevice.h>
  44. #include <linux/proc_fs.h>
  45. #include <linux/seq_file.h>
  46. #include <net/sock.h>
  47. #include <net/raw.h>
  48. static int fold_prot_inuse(struct proto *proto)
  49. {
  50. int res = 0;
  51. int cpu;
  52. for_each_possible_cpu(cpu)
  53. res += proto->stats[cpu].inuse;
  54. return res;
  55. }
  56. /*
  57. * Report socket allocation statistics [mea@utu.fi]
  58. */
  59. static int sockstat_seq_show(struct seq_file *seq, void *v)
  60. {
  61. socket_seq_show(seq);
  62. seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n",
  63. fold_prot_inuse(&tcp_prot), atomic_read(&tcp_orphan_count),
  64. tcp_death_row.tw_count, atomic_read(&tcp_sockets_allocated),
  65. atomic_read(&tcp_memory_allocated));
  66. seq_printf(seq, "UDP: inuse %d\n", fold_prot_inuse(&udp_prot));
  67. seq_printf(seq, "UDPLITE: inuse %d\n", fold_prot_inuse(&udplite_prot));
  68. seq_printf(seq, "RAW: inuse %d\n", fold_prot_inuse(&raw_prot));
  69. seq_printf(seq, "FRAG: inuse %d memory %d\n", ip_frag_nqueues,
  70. atomic_read(&ip_frag_mem));
  71. return 0;
  72. }
  73. static int sockstat_seq_open(struct inode *inode, struct file *file)
  74. {
  75. return single_open(file, sockstat_seq_show, NULL);
  76. }
  77. static const struct file_operations sockstat_seq_fops = {
  78. .owner = THIS_MODULE,
  79. .open = sockstat_seq_open,
  80. .read = seq_read,
  81. .llseek = seq_lseek,
  82. .release = single_release,
  83. };
  84. /* snmp items */
  85. static const struct snmp_mib snmp4_ipstats_list[] = {
  86. SNMP_MIB_ITEM("InReceives", IPSTATS_MIB_INRECEIVES),
  87. SNMP_MIB_ITEM("InHdrErrors", IPSTATS_MIB_INHDRERRORS),
  88. SNMP_MIB_ITEM("InAddrErrors", IPSTATS_MIB_INADDRERRORS),
  89. SNMP_MIB_ITEM("ForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS),
  90. SNMP_MIB_ITEM("InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS),
  91. SNMP_MIB_ITEM("InDiscards", IPSTATS_MIB_INDISCARDS),
  92. SNMP_MIB_ITEM("InDelivers", IPSTATS_MIB_INDELIVERS),
  93. SNMP_MIB_ITEM("OutRequests", IPSTATS_MIB_OUTREQUESTS),
  94. SNMP_MIB_ITEM("OutDiscards", IPSTATS_MIB_OUTDISCARDS),
  95. SNMP_MIB_ITEM("OutNoRoutes", IPSTATS_MIB_OUTNOROUTES),
  96. SNMP_MIB_ITEM("ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT),
  97. SNMP_MIB_ITEM("ReasmReqds", IPSTATS_MIB_REASMREQDS),
  98. SNMP_MIB_ITEM("ReasmOKs", IPSTATS_MIB_REASMOKS),
  99. SNMP_MIB_ITEM("ReasmFails", IPSTATS_MIB_REASMFAILS),
  100. SNMP_MIB_ITEM("FragOKs", IPSTATS_MIB_FRAGOKS),
  101. SNMP_MIB_ITEM("FragFails", IPSTATS_MIB_FRAGFAILS),
  102. SNMP_MIB_ITEM("FragCreates", IPSTATS_MIB_FRAGCREATES),
  103. SNMP_MIB_SENTINEL
  104. };
  105. /* Following RFC4293 items are displayed in /proc/net/netstat */
  106. static const struct snmp_mib snmp4_ipextstats_list[] = {
  107. SNMP_MIB_ITEM("InNoRoutes", IPSTATS_MIB_INNOROUTES),
  108. SNMP_MIB_ITEM("InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS),
  109. SNMP_MIB_ITEM("InMcastPkts", IPSTATS_MIB_INMCASTPKTS),
  110. SNMP_MIB_ITEM("OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS),
  111. SNMP_MIB_ITEM("InBcastPkts", IPSTATS_MIB_INBCASTPKTS),
  112. SNMP_MIB_ITEM("OutBcastPkts", IPSTATS_MIB_OUTBCASTPKTS),
  113. SNMP_MIB_SENTINEL
  114. };
  115. static const struct snmp_mib snmp4_icmp_list[] = {
  116. SNMP_MIB_ITEM("InMsgs", ICMP_MIB_INMSGS),
  117. SNMP_MIB_ITEM("InErrors", ICMP_MIB_INERRORS),
  118. SNMP_MIB_ITEM("OutMsgs", ICMP_MIB_OUTMSGS),
  119. SNMP_MIB_ITEM("OutErrors", ICMP_MIB_OUTERRORS),
  120. SNMP_MIB_SENTINEL
  121. };
  122. static struct {
  123. char *name;
  124. int index;
  125. } icmpmibmap[] = {
  126. { "DestUnreachs", ICMP_DEST_UNREACH },
  127. { "TimeExcds", ICMP_TIME_EXCEEDED },
  128. { "ParmProbs", ICMP_PARAMETERPROB },
  129. { "SrcQuenchs", ICMP_SOURCE_QUENCH },
  130. { "Redirects", ICMP_REDIRECT },
  131. { "Echos", ICMP_ECHO },
  132. { "EchoReps", ICMP_ECHOREPLY },
  133. { "Timestamps", ICMP_TIMESTAMP },
  134. { "TimestampReps", ICMP_TIMESTAMPREPLY },
  135. { "AddrMasks", ICMP_ADDRESS },
  136. { "AddrMaskReps", ICMP_ADDRESSREPLY },
  137. { NULL, 0 }
  138. };
  139. static const struct snmp_mib snmp4_tcp_list[] = {
  140. SNMP_MIB_ITEM("RtoAlgorithm", TCP_MIB_RTOALGORITHM),
  141. SNMP_MIB_ITEM("RtoMin", TCP_MIB_RTOMIN),
  142. SNMP_MIB_ITEM("RtoMax", TCP_MIB_RTOMAX),
  143. SNMP_MIB_ITEM("MaxConn", TCP_MIB_MAXCONN),
  144. SNMP_MIB_ITEM("ActiveOpens", TCP_MIB_ACTIVEOPENS),
  145. SNMP_MIB_ITEM("PassiveOpens", TCP_MIB_PASSIVEOPENS),
  146. SNMP_MIB_ITEM("AttemptFails", TCP_MIB_ATTEMPTFAILS),
  147. SNMP_MIB_ITEM("EstabResets", TCP_MIB_ESTABRESETS),
  148. SNMP_MIB_ITEM("CurrEstab", TCP_MIB_CURRESTAB),
  149. SNMP_MIB_ITEM("InSegs", TCP_MIB_INSEGS),
  150. SNMP_MIB_ITEM("OutSegs", TCP_MIB_OUTSEGS),
  151. SNMP_MIB_ITEM("RetransSegs", TCP_MIB_RETRANSSEGS),
  152. SNMP_MIB_ITEM("InErrs", TCP_MIB_INERRS),
  153. SNMP_MIB_ITEM("OutRsts", TCP_MIB_OUTRSTS),
  154. SNMP_MIB_SENTINEL
  155. };
  156. static const struct snmp_mib snmp4_udp_list[] = {
  157. SNMP_MIB_ITEM("InDatagrams", UDP_MIB_INDATAGRAMS),
  158. SNMP_MIB_ITEM("NoPorts", UDP_MIB_NOPORTS),
  159. SNMP_MIB_ITEM("InErrors", UDP_MIB_INERRORS),
  160. SNMP_MIB_ITEM("OutDatagrams", UDP_MIB_OUTDATAGRAMS),
  161. SNMP_MIB_ITEM("RcvbufErrors", UDP_MIB_RCVBUFERRORS),
  162. SNMP_MIB_ITEM("SndbufErrors", UDP_MIB_SNDBUFERRORS),
  163. SNMP_MIB_SENTINEL
  164. };
  165. static const struct snmp_mib snmp4_net_list[] = {
  166. SNMP_MIB_ITEM("SyncookiesSent", LINUX_MIB_SYNCOOKIESSENT),
  167. SNMP_MIB_ITEM("SyncookiesRecv", LINUX_MIB_SYNCOOKIESRECV),
  168. SNMP_MIB_ITEM("SyncookiesFailed", LINUX_MIB_SYNCOOKIESFAILED),
  169. SNMP_MIB_ITEM("EmbryonicRsts", LINUX_MIB_EMBRYONICRSTS),
  170. SNMP_MIB_ITEM("PruneCalled", LINUX_MIB_PRUNECALLED),
  171. SNMP_MIB_ITEM("RcvPruned", LINUX_MIB_RCVPRUNED),
  172. SNMP_MIB_ITEM("OfoPruned", LINUX_MIB_OFOPRUNED),
  173. SNMP_MIB_ITEM("OutOfWindowIcmps", LINUX_MIB_OUTOFWINDOWICMPS),
  174. SNMP_MIB_ITEM("LockDroppedIcmps", LINUX_MIB_LOCKDROPPEDICMPS),
  175. SNMP_MIB_ITEM("ArpFilter", LINUX_MIB_ARPFILTER),
  176. SNMP_MIB_ITEM("TW", LINUX_MIB_TIMEWAITED),
  177. SNMP_MIB_ITEM("TWRecycled", LINUX_MIB_TIMEWAITRECYCLED),
  178. SNMP_MIB_ITEM("TWKilled", LINUX_MIB_TIMEWAITKILLED),
  179. SNMP_MIB_ITEM("PAWSPassive", LINUX_MIB_PAWSPASSIVEREJECTED),
  180. SNMP_MIB_ITEM("PAWSActive", LINUX_MIB_PAWSACTIVEREJECTED),
  181. SNMP_MIB_ITEM("PAWSEstab", LINUX_MIB_PAWSESTABREJECTED),
  182. SNMP_MIB_ITEM("DelayedACKs", LINUX_MIB_DELAYEDACKS),
  183. SNMP_MIB_ITEM("DelayedACKLocked", LINUX_MIB_DELAYEDACKLOCKED),
  184. SNMP_MIB_ITEM("DelayedACKLost", LINUX_MIB_DELAYEDACKLOST),
  185. SNMP_MIB_ITEM("ListenOverflows", LINUX_MIB_LISTENOVERFLOWS),
  186. SNMP_MIB_ITEM("ListenDrops", LINUX_MIB_LISTENDROPS),
  187. SNMP_MIB_ITEM("TCPPrequeued", LINUX_MIB_TCPPREQUEUED),
  188. SNMP_MIB_ITEM("TCPDirectCopyFromBacklog", LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG),
  189. SNMP_MIB_ITEM("TCPDirectCopyFromPrequeue", LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE),
  190. SNMP_MIB_ITEM("TCPPrequeueDropped", LINUX_MIB_TCPPREQUEUEDROPPED),
  191. SNMP_MIB_ITEM("TCPHPHits", LINUX_MIB_TCPHPHITS),
  192. SNMP_MIB_ITEM("TCPHPHitsToUser", LINUX_MIB_TCPHPHITSTOUSER),
  193. SNMP_MIB_ITEM("TCPPureAcks", LINUX_MIB_TCPPUREACKS),
  194. SNMP_MIB_ITEM("TCPHPAcks", LINUX_MIB_TCPHPACKS),
  195. SNMP_MIB_ITEM("TCPRenoRecovery", LINUX_MIB_TCPRENORECOVERY),
  196. SNMP_MIB_ITEM("TCPSackRecovery", LINUX_MIB_TCPSACKRECOVERY),
  197. SNMP_MIB_ITEM("TCPSACKReneging", LINUX_MIB_TCPSACKRENEGING),
  198. SNMP_MIB_ITEM("TCPFACKReorder", LINUX_MIB_TCPFACKREORDER),
  199. SNMP_MIB_ITEM("TCPSACKReorder", LINUX_MIB_TCPSACKREORDER),
  200. SNMP_MIB_ITEM("TCPRenoReorder", LINUX_MIB_TCPRENOREORDER),
  201. SNMP_MIB_ITEM("TCPTSReorder", LINUX_MIB_TCPTSREORDER),
  202. SNMP_MIB_ITEM("TCPFullUndo", LINUX_MIB_TCPFULLUNDO),
  203. SNMP_MIB_ITEM("TCPPartialUndo", LINUX_MIB_TCPPARTIALUNDO),
  204. SNMP_MIB_ITEM("TCPDSACKUndo", LINUX_MIB_TCPDSACKUNDO),
  205. SNMP_MIB_ITEM("TCPLossUndo", LINUX_MIB_TCPLOSSUNDO),
  206. SNMP_MIB_ITEM("TCPLoss", LINUX_MIB_TCPLOSS),
  207. SNMP_MIB_ITEM("TCPLostRetransmit", LINUX_MIB_TCPLOSTRETRANSMIT),
  208. SNMP_MIB_ITEM("TCPRenoFailures", LINUX_MIB_TCPRENOFAILURES),
  209. SNMP_MIB_ITEM("TCPSackFailures", LINUX_MIB_TCPSACKFAILURES),
  210. SNMP_MIB_ITEM("TCPLossFailures", LINUX_MIB_TCPLOSSFAILURES),
  211. SNMP_MIB_ITEM("TCPFastRetrans", LINUX_MIB_TCPFASTRETRANS),
  212. SNMP_MIB_ITEM("TCPForwardRetrans", LINUX_MIB_TCPFORWARDRETRANS),
  213. SNMP_MIB_ITEM("TCPSlowStartRetrans", LINUX_MIB_TCPSLOWSTARTRETRANS),
  214. SNMP_MIB_ITEM("TCPTimeouts", LINUX_MIB_TCPTIMEOUTS),
  215. SNMP_MIB_ITEM("TCPRenoRecoveryFail", LINUX_MIB_TCPRENORECOVERYFAIL),
  216. SNMP_MIB_ITEM("TCPSackRecoveryFail", LINUX_MIB_TCPSACKRECOVERYFAIL),
  217. SNMP_MIB_ITEM("TCPSchedulerFailed", LINUX_MIB_TCPSCHEDULERFAILED),
  218. SNMP_MIB_ITEM("TCPRcvCollapsed", LINUX_MIB_TCPRCVCOLLAPSED),
  219. SNMP_MIB_ITEM("TCPDSACKOldSent", LINUX_MIB_TCPDSACKOLDSENT),
  220. SNMP_MIB_ITEM("TCPDSACKOfoSent", LINUX_MIB_TCPDSACKOFOSENT),
  221. SNMP_MIB_ITEM("TCPDSACKRecv", LINUX_MIB_TCPDSACKRECV),
  222. SNMP_MIB_ITEM("TCPDSACKOfoRecv", LINUX_MIB_TCPDSACKOFORECV),
  223. SNMP_MIB_ITEM("TCPAbortOnSyn", LINUX_MIB_TCPABORTONSYN),
  224. SNMP_MIB_ITEM("TCPAbortOnData", LINUX_MIB_TCPABORTONDATA),
  225. SNMP_MIB_ITEM("TCPAbortOnClose", LINUX_MIB_TCPABORTONCLOSE),
  226. SNMP_MIB_ITEM("TCPAbortOnMemory", LINUX_MIB_TCPABORTONMEMORY),
  227. SNMP_MIB_ITEM("TCPAbortOnTimeout", LINUX_MIB_TCPABORTONTIMEOUT),
  228. SNMP_MIB_ITEM("TCPAbortOnLinger", LINUX_MIB_TCPABORTONLINGER),
  229. SNMP_MIB_ITEM("TCPAbortFailed", LINUX_MIB_TCPABORTFAILED),
  230. SNMP_MIB_ITEM("TCPMemoryPressures", LINUX_MIB_TCPMEMORYPRESSURES),
  231. SNMP_MIB_ITEM("TCPSACKDiscard", LINUX_MIB_TCPSACKDISCARD),
  232. SNMP_MIB_ITEM("TCPDSACKIgnoredOld", LINUX_MIB_TCPDSACKIGNOREDOLD),
  233. SNMP_MIB_ITEM("TCPDSACKIgnoredNoUndo", LINUX_MIB_TCPDSACKIGNOREDNOUNDO),
  234. SNMP_MIB_ITEM("TCPSpuriousRTOs", LINUX_MIB_TCPSPURIOUSRTOS),
  235. SNMP_MIB_SENTINEL
  236. };
  237. static void icmpmsg_put(struct seq_file *seq)
  238. {
  239. #define PERLINE 16
  240. int j, i, count;
  241. static int out[PERLINE];
  242. count = 0;
  243. for (i = 0; i < ICMPMSG_MIB_MAX; i++) {
  244. if (snmp_fold_field((void **) icmpmsg_statistics, i))
  245. out[count++] = i;
  246. if (count < PERLINE)
  247. continue;
  248. seq_printf(seq, "\nIcmpMsg:");
  249. for (j = 0; j < PERLINE; ++j)
  250. seq_printf(seq, " %sType%u", i & 0x100 ? "Out" : "In",
  251. i & 0xff);
  252. seq_printf(seq, "\nIcmpMsg: ");
  253. for (j = 0; j < PERLINE; ++j)
  254. seq_printf(seq, " %lu",
  255. snmp_fold_field((void **) icmpmsg_statistics,
  256. out[j]));
  257. seq_putc(seq, '\n');
  258. }
  259. if (count) {
  260. seq_printf(seq, "\nIcmpMsg:");
  261. for (j = 0; j < count; ++j)
  262. seq_printf(seq, " %sType%u", out[j] & 0x100 ? "Out" :
  263. "In", out[j] & 0xff);
  264. seq_printf(seq, "\nIcmpMsg:");
  265. for (j = 0; j < count; ++j)
  266. seq_printf(seq, " %lu", snmp_fold_field((void **)
  267. icmpmsg_statistics, out[j]));
  268. }
  269. #undef PERLINE
  270. }
  271. static void icmp_put(struct seq_file *seq)
  272. {
  273. int i;
  274. seq_puts(seq, "\nIcmp: InMsgs InErrors");
  275. for (i=0; icmpmibmap[i].name != NULL; i++)
  276. seq_printf(seq, " In%s", icmpmibmap[i].name);
  277. seq_printf(seq, " OutMsgs OutErrors");
  278. for (i=0; icmpmibmap[i].name != NULL; i++)
  279. seq_printf(seq, " Out%s", icmpmibmap[i].name);
  280. seq_printf(seq, "\nIcmp: %lu %lu",
  281. snmp_fold_field((void **) icmp_statistics, ICMP_MIB_INMSGS),
  282. snmp_fold_field((void **) icmp_statistics, ICMP_MIB_INERRORS));
  283. for (i=0; icmpmibmap[i].name != NULL; i++)
  284. seq_printf(seq, " %lu",
  285. snmp_fold_field((void **) icmpmsg_statistics,
  286. icmpmibmap[i].index));
  287. seq_printf(seq, " %lu %lu",
  288. snmp_fold_field((void **) icmp_statistics, ICMP_MIB_OUTMSGS),
  289. snmp_fold_field((void **) icmp_statistics, ICMP_MIB_OUTERRORS));
  290. for (i=0; icmpmibmap[i].name != NULL; i++)
  291. seq_printf(seq, " %lu",
  292. snmp_fold_field((void **) icmpmsg_statistics,
  293. icmpmibmap[i].index));
  294. }
  295. /*
  296. * Called from the PROCfs module. This outputs /proc/net/snmp.
  297. */
  298. static int snmp_seq_show(struct seq_file *seq, void *v)
  299. {
  300. int i;
  301. seq_puts(seq, "Ip: Forwarding DefaultTTL");
  302. for (i = 0; snmp4_ipstats_list[i].name != NULL; i++)
  303. seq_printf(seq, " %s", snmp4_ipstats_list[i].name);
  304. seq_printf(seq, "\nIp: %d %d",
  305. IPV4_DEVCONF_ALL(FORWARDING) ? 1 : 2, sysctl_ip_default_ttl);
  306. for (i = 0; snmp4_ipstats_list[i].name != NULL; i++)
  307. seq_printf(seq, " %lu",
  308. snmp_fold_field((void **)ip_statistics,
  309. snmp4_ipstats_list[i].entry));
  310. icmp_put(seq); /* RFC 2011 compatibility */
  311. icmpmsg_put(seq);
  312. seq_puts(seq, "\nTcp:");
  313. for (i = 0; snmp4_tcp_list[i].name != NULL; i++)
  314. seq_printf(seq, " %s", snmp4_tcp_list[i].name);
  315. seq_puts(seq, "\nTcp:");
  316. for (i = 0; snmp4_tcp_list[i].name != NULL; i++) {
  317. /* MaxConn field is signed, RFC 2012 */
  318. if (snmp4_tcp_list[i].entry == TCP_MIB_MAXCONN)
  319. seq_printf(seq, " %ld",
  320. snmp_fold_field((void **)tcp_statistics,
  321. snmp4_tcp_list[i].entry));
  322. else
  323. seq_printf(seq, " %lu",
  324. snmp_fold_field((void **)tcp_statistics,
  325. snmp4_tcp_list[i].entry));
  326. }
  327. seq_puts(seq, "\nUdp:");
  328. for (i = 0; snmp4_udp_list[i].name != NULL; i++)
  329. seq_printf(seq, " %s", snmp4_udp_list[i].name);
  330. seq_puts(seq, "\nUdp:");
  331. for (i = 0; snmp4_udp_list[i].name != NULL; i++)
  332. seq_printf(seq, " %lu",
  333. snmp_fold_field((void **)udp_statistics,
  334. snmp4_udp_list[i].entry));
  335. /* the UDP and UDP-Lite MIBs are the same */
  336. seq_puts(seq, "\nUdpLite:");
  337. for (i = 0; snmp4_udp_list[i].name != NULL; i++)
  338. seq_printf(seq, " %s", snmp4_udp_list[i].name);
  339. seq_puts(seq, "\nUdpLite:");
  340. for (i = 0; snmp4_udp_list[i].name != NULL; i++)
  341. seq_printf(seq, " %lu",
  342. snmp_fold_field((void **)udplite_statistics,
  343. snmp4_udp_list[i].entry));
  344. seq_putc(seq, '\n');
  345. return 0;
  346. }
  347. static int snmp_seq_open(struct inode *inode, struct file *file)
  348. {
  349. return single_open(file, snmp_seq_show, NULL);
  350. }
  351. static const struct file_operations snmp_seq_fops = {
  352. .owner = THIS_MODULE,
  353. .open = snmp_seq_open,
  354. .read = seq_read,
  355. .llseek = seq_lseek,
  356. .release = single_release,
  357. };
  358. /*
  359. * Output /proc/net/netstat
  360. */
  361. static int netstat_seq_show(struct seq_file *seq, void *v)
  362. {
  363. int i;
  364. seq_puts(seq, "TcpExt:");
  365. for (i = 0; snmp4_net_list[i].name != NULL; i++)
  366. seq_printf(seq, " %s", snmp4_net_list[i].name);
  367. seq_puts(seq, "\nTcpExt:");
  368. for (i = 0; snmp4_net_list[i].name != NULL; i++)
  369. seq_printf(seq, " %lu",
  370. snmp_fold_field((void **)net_statistics,
  371. snmp4_net_list[i].entry));
  372. seq_puts(seq, "\nIpExt:");
  373. for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++)
  374. seq_printf(seq, " %s", snmp4_ipextstats_list[i].name);
  375. seq_puts(seq, "\nIpExt:");
  376. for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++)
  377. seq_printf(seq, " %lu",
  378. snmp_fold_field((void **)ip_statistics,
  379. snmp4_ipextstats_list[i].entry));
  380. seq_putc(seq, '\n');
  381. return 0;
  382. }
  383. static int netstat_seq_open(struct inode *inode, struct file *file)
  384. {
  385. return single_open(file, netstat_seq_show, NULL);
  386. }
  387. static const struct file_operations netstat_seq_fops = {
  388. .owner = THIS_MODULE,
  389. .open = netstat_seq_open,
  390. .read = seq_read,
  391. .llseek = seq_lseek,
  392. .release = single_release,
  393. };
  394. int __init ip_misc_proc_init(void)
  395. {
  396. int rc = 0;
  397. if (!proc_net_fops_create(&init_net, "netstat", S_IRUGO, &netstat_seq_fops))
  398. goto out_netstat;
  399. if (!proc_net_fops_create(&init_net, "snmp", S_IRUGO, &snmp_seq_fops))
  400. goto out_snmp;
  401. if (!proc_net_fops_create(&init_net, "sockstat", S_IRUGO, &sockstat_seq_fops))
  402. goto out_sockstat;
  403. out:
  404. return rc;
  405. out_sockstat:
  406. proc_net_remove(&init_net, "snmp");
  407. out_snmp:
  408. proc_net_remove(&init_net, "netstat");
  409. out_netstat:
  410. rc = -ENOMEM;
  411. goto out;
  412. }