proc.c 16 KB

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