proc.c 16 KB

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