Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 35 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <net/icmp.h> |
| 37 | #include <net/protocol.h> |
| 38 | #include <net/tcp.h> |
| 39 | #include <net/udp.h> |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 40 | #include <net/udplite.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 41 | #include <linux/inetdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/proc_fs.h> |
| 43 | #include <linux/seq_file.h> |
| 44 | #include <net/sock.h> |
| 45 | #include <net/raw.h> |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* |
| 48 | * Report socket allocation statistics [mea@utu.fi] |
| 49 | */ |
| 50 | static int sockstat_seq_show(struct seq_file *seq, void *v) |
| 51 | { |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 52 | struct net *net = seq->private; |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | socket_seq_show(seq); |
| 55 | seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n", |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 56 | sock_prot_inuse_get(net, &tcp_prot), |
Eric Dumazet | 65f7651 | 2008-01-03 20:46:48 -0800 | [diff] [blame] | 57 | atomic_read(&tcp_orphan_count), |
Arnaldo Carvalho de Melo | 295ff7e | 2005-08-09 20:44:40 -0700 | [diff] [blame] | 58 | tcp_death_row.tw_count, atomic_read(&tcp_sockets_allocated), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | atomic_read(&tcp_memory_allocated)); |
Pavel Emelyanov | c29a0bc | 2008-03-31 19:41:46 -0700 | [diff] [blame] | 60 | seq_printf(seq, "UDP: inuse %d mem %d\n", |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 61 | sock_prot_inuse_get(net, &udp_prot), |
Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 62 | atomic_read(&udp_memory_allocated)); |
Pavel Emelyanov | c29a0bc | 2008-03-31 19:41:46 -0700 | [diff] [blame] | 63 | seq_printf(seq, "UDPLITE: inuse %d\n", |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 64 | sock_prot_inuse_get(net, &udplite_prot)); |
Pavel Emelyanov | c29a0bc | 2008-03-31 19:41:46 -0700 | [diff] [blame] | 65 | seq_printf(seq, "RAW: inuse %d\n", |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 66 | sock_prot_inuse_get(net, &raw_prot)); |
Pavel Emelyanov | 7eb9515 | 2007-10-15 02:31:52 -0700 | [diff] [blame] | 67 | seq_printf(seq, "FRAG: inuse %d memory %d\n", |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 68 | ip_frag_nqueues(net), ip_frag_mem(net)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static int sockstat_seq_open(struct inode *inode, struct file *file) |
| 73 | { |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 74 | int err; |
| 75 | struct net *net; |
| 76 | |
| 77 | err = -ENXIO; |
| 78 | net = get_proc_net(inode); |
| 79 | if (net == NULL) |
| 80 | goto err_net; |
| 81 | |
| 82 | err = single_open(file, sockstat_seq_show, net); |
| 83 | if (err < 0) |
| 84 | goto err_open; |
| 85 | |
| 86 | return 0; |
| 87 | |
| 88 | err_open: |
| 89 | put_net(net); |
| 90 | err_net: |
| 91 | return err; |
| 92 | } |
| 93 | |
| 94 | static int sockstat_seq_release(struct inode *inode, struct file *file) |
| 95 | { |
| 96 | struct net *net = ((struct seq_file *)file->private_data)->private; |
| 97 | |
| 98 | put_net(net); |
| 99 | return single_release(inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 102 | static const struct file_operations sockstat_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .owner = THIS_MODULE, |
| 104 | .open = sockstat_seq_open, |
| 105 | .read = seq_read, |
| 106 | .llseek = seq_lseek, |
Pavel Emelyanov | fd4e7b5 | 2008-03-31 19:43:18 -0700 | [diff] [blame] | 107 | .release = sockstat_seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | /* snmp items */ |
Arjan van de Ven | 9b5b5cf | 2005-11-29 16:21:38 -0800 | [diff] [blame] | 111 | static const struct snmp_mib snmp4_ipstats_list[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | SNMP_MIB_ITEM("InReceives", IPSTATS_MIB_INRECEIVES), |
| 113 | SNMP_MIB_ITEM("InHdrErrors", IPSTATS_MIB_INHDRERRORS), |
| 114 | SNMP_MIB_ITEM("InAddrErrors", IPSTATS_MIB_INADDRERRORS), |
| 115 | SNMP_MIB_ITEM("ForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS), |
| 116 | SNMP_MIB_ITEM("InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS), |
| 117 | SNMP_MIB_ITEM("InDiscards", IPSTATS_MIB_INDISCARDS), |
| 118 | SNMP_MIB_ITEM("InDelivers", IPSTATS_MIB_INDELIVERS), |
| 119 | SNMP_MIB_ITEM("OutRequests", IPSTATS_MIB_OUTREQUESTS), |
| 120 | SNMP_MIB_ITEM("OutDiscards", IPSTATS_MIB_OUTDISCARDS), |
| 121 | SNMP_MIB_ITEM("OutNoRoutes", IPSTATS_MIB_OUTNOROUTES), |
| 122 | SNMP_MIB_ITEM("ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT), |
| 123 | SNMP_MIB_ITEM("ReasmReqds", IPSTATS_MIB_REASMREQDS), |
| 124 | SNMP_MIB_ITEM("ReasmOKs", IPSTATS_MIB_REASMOKS), |
| 125 | SNMP_MIB_ITEM("ReasmFails", IPSTATS_MIB_REASMFAILS), |
| 126 | SNMP_MIB_ITEM("FragOKs", IPSTATS_MIB_FRAGOKS), |
| 127 | SNMP_MIB_ITEM("FragFails", IPSTATS_MIB_FRAGFAILS), |
| 128 | SNMP_MIB_ITEM("FragCreates", IPSTATS_MIB_FRAGCREATES), |
| 129 | SNMP_MIB_SENTINEL |
| 130 | }; |
| 131 | |
Mitsuru Chinen | d831666 | 2007-05-14 03:07:30 -0700 | [diff] [blame] | 132 | /* Following RFC4293 items are displayed in /proc/net/netstat */ |
| 133 | static const struct snmp_mib snmp4_ipextstats_list[] = { |
| 134 | SNMP_MIB_ITEM("InNoRoutes", IPSTATS_MIB_INNOROUTES), |
| 135 | SNMP_MIB_ITEM("InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS), |
| 136 | SNMP_MIB_ITEM("InMcastPkts", IPSTATS_MIB_INMCASTPKTS), |
| 137 | SNMP_MIB_ITEM("OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS), |
| 138 | SNMP_MIB_ITEM("InBcastPkts", IPSTATS_MIB_INBCASTPKTS), |
| 139 | SNMP_MIB_ITEM("OutBcastPkts", IPSTATS_MIB_OUTBCASTPKTS), |
| 140 | SNMP_MIB_SENTINEL |
| 141 | }; |
| 142 | |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 143 | static struct { |
| 144 | char *name; |
| 145 | int index; |
| 146 | } icmpmibmap[] = { |
| 147 | { "DestUnreachs", ICMP_DEST_UNREACH }, |
| 148 | { "TimeExcds", ICMP_TIME_EXCEEDED }, |
| 149 | { "ParmProbs", ICMP_PARAMETERPROB }, |
| 150 | { "SrcQuenchs", ICMP_SOURCE_QUENCH }, |
| 151 | { "Redirects", ICMP_REDIRECT }, |
| 152 | { "Echos", ICMP_ECHO }, |
| 153 | { "EchoReps", ICMP_ECHOREPLY }, |
| 154 | { "Timestamps", ICMP_TIMESTAMP }, |
| 155 | { "TimestampReps", ICMP_TIMESTAMPREPLY }, |
| 156 | { "AddrMasks", ICMP_ADDRESS }, |
| 157 | { "AddrMaskReps", ICMP_ADDRESSREPLY }, |
Stephen Hemminger | cfcabdc | 2007-10-09 01:59:42 -0700 | [diff] [blame] | 158 | { NULL, 0 } |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 159 | }; |
| 160 | |
| 161 | |
Arjan van de Ven | 9b5b5cf | 2005-11-29 16:21:38 -0800 | [diff] [blame] | 162 | static const struct snmp_mib snmp4_tcp_list[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | SNMP_MIB_ITEM("RtoAlgorithm", TCP_MIB_RTOALGORITHM), |
| 164 | SNMP_MIB_ITEM("RtoMin", TCP_MIB_RTOMIN), |
| 165 | SNMP_MIB_ITEM("RtoMax", TCP_MIB_RTOMAX), |
| 166 | SNMP_MIB_ITEM("MaxConn", TCP_MIB_MAXCONN), |
| 167 | SNMP_MIB_ITEM("ActiveOpens", TCP_MIB_ACTIVEOPENS), |
| 168 | SNMP_MIB_ITEM("PassiveOpens", TCP_MIB_PASSIVEOPENS), |
| 169 | SNMP_MIB_ITEM("AttemptFails", TCP_MIB_ATTEMPTFAILS), |
| 170 | SNMP_MIB_ITEM("EstabResets", TCP_MIB_ESTABRESETS), |
| 171 | SNMP_MIB_ITEM("CurrEstab", TCP_MIB_CURRESTAB), |
| 172 | SNMP_MIB_ITEM("InSegs", TCP_MIB_INSEGS), |
| 173 | SNMP_MIB_ITEM("OutSegs", TCP_MIB_OUTSEGS), |
| 174 | SNMP_MIB_ITEM("RetransSegs", TCP_MIB_RETRANSSEGS), |
| 175 | SNMP_MIB_ITEM("InErrs", TCP_MIB_INERRS), |
| 176 | SNMP_MIB_ITEM("OutRsts", TCP_MIB_OUTRSTS), |
| 177 | SNMP_MIB_SENTINEL |
| 178 | }; |
| 179 | |
Arjan van de Ven | 9b5b5cf | 2005-11-29 16:21:38 -0800 | [diff] [blame] | 180 | static const struct snmp_mib snmp4_udp_list[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | SNMP_MIB_ITEM("InDatagrams", UDP_MIB_INDATAGRAMS), |
| 182 | SNMP_MIB_ITEM("NoPorts", UDP_MIB_NOPORTS), |
| 183 | SNMP_MIB_ITEM("InErrors", UDP_MIB_INERRORS), |
| 184 | SNMP_MIB_ITEM("OutDatagrams", UDP_MIB_OUTDATAGRAMS), |
Martin Bligh | 81aa646 | 2006-08-14 23:57:10 -0700 | [diff] [blame] | 185 | SNMP_MIB_ITEM("RcvbufErrors", UDP_MIB_RCVBUFERRORS), |
| 186 | SNMP_MIB_ITEM("SndbufErrors", UDP_MIB_SNDBUFERRORS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | SNMP_MIB_SENTINEL |
| 188 | }; |
| 189 | |
Arjan van de Ven | 9b5b5cf | 2005-11-29 16:21:38 -0800 | [diff] [blame] | 190 | static const struct snmp_mib snmp4_net_list[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | SNMP_MIB_ITEM("SyncookiesSent", LINUX_MIB_SYNCOOKIESSENT), |
| 192 | SNMP_MIB_ITEM("SyncookiesRecv", LINUX_MIB_SYNCOOKIESRECV), |
| 193 | SNMP_MIB_ITEM("SyncookiesFailed", LINUX_MIB_SYNCOOKIESFAILED), |
| 194 | SNMP_MIB_ITEM("EmbryonicRsts", LINUX_MIB_EMBRYONICRSTS), |
| 195 | SNMP_MIB_ITEM("PruneCalled", LINUX_MIB_PRUNECALLED), |
| 196 | SNMP_MIB_ITEM("RcvPruned", LINUX_MIB_RCVPRUNED), |
| 197 | SNMP_MIB_ITEM("OfoPruned", LINUX_MIB_OFOPRUNED), |
| 198 | SNMP_MIB_ITEM("OutOfWindowIcmps", LINUX_MIB_OUTOFWINDOWICMPS), |
| 199 | SNMP_MIB_ITEM("LockDroppedIcmps", LINUX_MIB_LOCKDROPPEDICMPS), |
| 200 | SNMP_MIB_ITEM("ArpFilter", LINUX_MIB_ARPFILTER), |
| 201 | SNMP_MIB_ITEM("TW", LINUX_MIB_TIMEWAITED), |
| 202 | SNMP_MIB_ITEM("TWRecycled", LINUX_MIB_TIMEWAITRECYCLED), |
| 203 | SNMP_MIB_ITEM("TWKilled", LINUX_MIB_TIMEWAITKILLED), |
| 204 | SNMP_MIB_ITEM("PAWSPassive", LINUX_MIB_PAWSPASSIVEREJECTED), |
| 205 | SNMP_MIB_ITEM("PAWSActive", LINUX_MIB_PAWSACTIVEREJECTED), |
| 206 | SNMP_MIB_ITEM("PAWSEstab", LINUX_MIB_PAWSESTABREJECTED), |
| 207 | SNMP_MIB_ITEM("DelayedACKs", LINUX_MIB_DELAYEDACKS), |
| 208 | SNMP_MIB_ITEM("DelayedACKLocked", LINUX_MIB_DELAYEDACKLOCKED), |
| 209 | SNMP_MIB_ITEM("DelayedACKLost", LINUX_MIB_DELAYEDACKLOST), |
| 210 | SNMP_MIB_ITEM("ListenOverflows", LINUX_MIB_LISTENOVERFLOWS), |
| 211 | SNMP_MIB_ITEM("ListenDrops", LINUX_MIB_LISTENDROPS), |
| 212 | SNMP_MIB_ITEM("TCPPrequeued", LINUX_MIB_TCPPREQUEUED), |
| 213 | SNMP_MIB_ITEM("TCPDirectCopyFromBacklog", LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG), |
| 214 | SNMP_MIB_ITEM("TCPDirectCopyFromPrequeue", LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE), |
| 215 | SNMP_MIB_ITEM("TCPPrequeueDropped", LINUX_MIB_TCPPREQUEUEDROPPED), |
| 216 | SNMP_MIB_ITEM("TCPHPHits", LINUX_MIB_TCPHPHITS), |
| 217 | SNMP_MIB_ITEM("TCPHPHitsToUser", LINUX_MIB_TCPHPHITSTOUSER), |
| 218 | SNMP_MIB_ITEM("TCPPureAcks", LINUX_MIB_TCPPUREACKS), |
| 219 | SNMP_MIB_ITEM("TCPHPAcks", LINUX_MIB_TCPHPACKS), |
| 220 | SNMP_MIB_ITEM("TCPRenoRecovery", LINUX_MIB_TCPRENORECOVERY), |
| 221 | SNMP_MIB_ITEM("TCPSackRecovery", LINUX_MIB_TCPSACKRECOVERY), |
| 222 | SNMP_MIB_ITEM("TCPSACKReneging", LINUX_MIB_TCPSACKRENEGING), |
| 223 | SNMP_MIB_ITEM("TCPFACKReorder", LINUX_MIB_TCPFACKREORDER), |
| 224 | SNMP_MIB_ITEM("TCPSACKReorder", LINUX_MIB_TCPSACKREORDER), |
| 225 | SNMP_MIB_ITEM("TCPRenoReorder", LINUX_MIB_TCPRENOREORDER), |
| 226 | SNMP_MIB_ITEM("TCPTSReorder", LINUX_MIB_TCPTSREORDER), |
| 227 | SNMP_MIB_ITEM("TCPFullUndo", LINUX_MIB_TCPFULLUNDO), |
| 228 | SNMP_MIB_ITEM("TCPPartialUndo", LINUX_MIB_TCPPARTIALUNDO), |
| 229 | SNMP_MIB_ITEM("TCPDSACKUndo", LINUX_MIB_TCPDSACKUNDO), |
| 230 | SNMP_MIB_ITEM("TCPLossUndo", LINUX_MIB_TCPLOSSUNDO), |
| 231 | SNMP_MIB_ITEM("TCPLoss", LINUX_MIB_TCPLOSS), |
| 232 | SNMP_MIB_ITEM("TCPLostRetransmit", LINUX_MIB_TCPLOSTRETRANSMIT), |
| 233 | SNMP_MIB_ITEM("TCPRenoFailures", LINUX_MIB_TCPRENOFAILURES), |
| 234 | SNMP_MIB_ITEM("TCPSackFailures", LINUX_MIB_TCPSACKFAILURES), |
| 235 | SNMP_MIB_ITEM("TCPLossFailures", LINUX_MIB_TCPLOSSFAILURES), |
| 236 | SNMP_MIB_ITEM("TCPFastRetrans", LINUX_MIB_TCPFASTRETRANS), |
| 237 | SNMP_MIB_ITEM("TCPForwardRetrans", LINUX_MIB_TCPFORWARDRETRANS), |
| 238 | SNMP_MIB_ITEM("TCPSlowStartRetrans", LINUX_MIB_TCPSLOWSTARTRETRANS), |
| 239 | SNMP_MIB_ITEM("TCPTimeouts", LINUX_MIB_TCPTIMEOUTS), |
| 240 | SNMP_MIB_ITEM("TCPRenoRecoveryFail", LINUX_MIB_TCPRENORECOVERYFAIL), |
| 241 | SNMP_MIB_ITEM("TCPSackRecoveryFail", LINUX_MIB_TCPSACKRECOVERYFAIL), |
| 242 | SNMP_MIB_ITEM("TCPSchedulerFailed", LINUX_MIB_TCPSCHEDULERFAILED), |
| 243 | SNMP_MIB_ITEM("TCPRcvCollapsed", LINUX_MIB_TCPRCVCOLLAPSED), |
| 244 | SNMP_MIB_ITEM("TCPDSACKOldSent", LINUX_MIB_TCPDSACKOLDSENT), |
| 245 | SNMP_MIB_ITEM("TCPDSACKOfoSent", LINUX_MIB_TCPDSACKOFOSENT), |
| 246 | SNMP_MIB_ITEM("TCPDSACKRecv", LINUX_MIB_TCPDSACKRECV), |
| 247 | SNMP_MIB_ITEM("TCPDSACKOfoRecv", LINUX_MIB_TCPDSACKOFORECV), |
| 248 | SNMP_MIB_ITEM("TCPAbortOnSyn", LINUX_MIB_TCPABORTONSYN), |
| 249 | SNMP_MIB_ITEM("TCPAbortOnData", LINUX_MIB_TCPABORTONDATA), |
| 250 | SNMP_MIB_ITEM("TCPAbortOnClose", LINUX_MIB_TCPABORTONCLOSE), |
| 251 | SNMP_MIB_ITEM("TCPAbortOnMemory", LINUX_MIB_TCPABORTONMEMORY), |
| 252 | SNMP_MIB_ITEM("TCPAbortOnTimeout", LINUX_MIB_TCPABORTONTIMEOUT), |
| 253 | SNMP_MIB_ITEM("TCPAbortOnLinger", LINUX_MIB_TCPABORTONLINGER), |
| 254 | SNMP_MIB_ITEM("TCPAbortFailed", LINUX_MIB_TCPABORTFAILED), |
| 255 | SNMP_MIB_ITEM("TCPMemoryPressures", LINUX_MIB_TCPMEMORYPRESSURES), |
Ilpo Järvinen | 18f0254 | 2007-08-24 22:55:52 -0700 | [diff] [blame] | 256 | SNMP_MIB_ITEM("TCPSACKDiscard", LINUX_MIB_TCPSACKDISCARD), |
| 257 | SNMP_MIB_ITEM("TCPDSACKIgnoredOld", LINUX_MIB_TCPDSACKIGNOREDOLD), |
| 258 | SNMP_MIB_ITEM("TCPDSACKIgnoredNoUndo", LINUX_MIB_TCPDSACKIGNOREDNOUNDO), |
Ilpo Järvinen | 912d8f0 | 2007-09-25 22:47:31 -0700 | [diff] [blame] | 259 | SNMP_MIB_ITEM("TCPSpuriousRTOs", LINUX_MIB_TCPSPURIOUSRTOS), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | SNMP_MIB_SENTINEL |
| 261 | }; |
| 262 | |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 263 | static void icmpmsg_put(struct seq_file *seq) |
| 264 | { |
| 265 | #define PERLINE 16 |
| 266 | |
| 267 | int j, i, count; |
| 268 | static int out[PERLINE]; |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 269 | struct net *net = seq->private; |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 270 | |
| 271 | count = 0; |
| 272 | for (i = 0; i < ICMPMSG_MIB_MAX; i++) { |
| 273 | |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 274 | if (snmp_fold_field((void **) net->mib.icmpmsg_statistics, i)) |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 275 | out[count++] = i; |
| 276 | if (count < PERLINE) |
| 277 | continue; |
| 278 | |
| 279 | seq_printf(seq, "\nIcmpMsg:"); |
| 280 | for (j = 0; j < PERLINE; ++j) |
| 281 | seq_printf(seq, " %sType%u", i & 0x100 ? "Out" : "In", |
| 282 | i & 0xff); |
| 283 | seq_printf(seq, "\nIcmpMsg: "); |
| 284 | for (j = 0; j < PERLINE; ++j) |
| 285 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 286 | snmp_fold_field((void **) net->mib.icmpmsg_statistics, |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 287 | out[j])); |
| 288 | seq_putc(seq, '\n'); |
| 289 | } |
| 290 | if (count) { |
| 291 | seq_printf(seq, "\nIcmpMsg:"); |
| 292 | for (j = 0; j < count; ++j) |
| 293 | seq_printf(seq, " %sType%u", out[j] & 0x100 ? "Out" : |
| 294 | "In", out[j] & 0xff); |
| 295 | seq_printf(seq, "\nIcmpMsg:"); |
| 296 | for (j = 0; j < count; ++j) |
| 297 | seq_printf(seq, " %lu", snmp_fold_field((void **) |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 298 | net->mib.icmpmsg_statistics, out[j])); |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | #undef PERLINE |
| 302 | } |
| 303 | |
| 304 | static void icmp_put(struct seq_file *seq) |
| 305 | { |
| 306 | int i; |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 307 | struct net *net = seq->private; |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 308 | |
| 309 | seq_puts(seq, "\nIcmp: InMsgs InErrors"); |
| 310 | for (i=0; icmpmibmap[i].name != NULL; i++) |
| 311 | seq_printf(seq, " In%s", icmpmibmap[i].name); |
| 312 | seq_printf(seq, " OutMsgs OutErrors"); |
| 313 | for (i=0; icmpmibmap[i].name != NULL; i++) |
| 314 | seq_printf(seq, " Out%s", icmpmibmap[i].name); |
| 315 | seq_printf(seq, "\nIcmp: %lu %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 316 | snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_INMSGS), |
| 317 | snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_INERRORS)); |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 318 | for (i=0; icmpmibmap[i].name != NULL; i++) |
| 319 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 320 | snmp_fold_field((void **) net->mib.icmpmsg_statistics, |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 321 | icmpmibmap[i].index)); |
| 322 | seq_printf(seq, " %lu %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 323 | snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_OUTMSGS), |
| 324 | snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_OUTERRORS)); |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 325 | for (i=0; icmpmibmap[i].name != NULL; i++) |
| 326 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 327 | snmp_fold_field((void **) net->mib.icmpmsg_statistics, |
Mitsuru Chinen | 064f360 | 2007-10-29 22:02:57 -0700 | [diff] [blame] | 328 | icmpmibmap[i].index | 0x100)); |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | /* |
| 332 | * Called from the PROCfs module. This outputs /proc/net/snmp. |
| 333 | */ |
| 334 | static int snmp_seq_show(struct seq_file *seq, void *v) |
| 335 | { |
| 336 | int i; |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 337 | struct net *net = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
| 339 | seq_puts(seq, "Ip: Forwarding DefaultTTL"); |
| 340 | |
| 341 | for (i = 0; snmp4_ipstats_list[i].name != NULL; i++) |
| 342 | seq_printf(seq, " %s", snmp4_ipstats_list[i].name); |
| 343 | |
| 344 | seq_printf(seq, "\nIp: %d %d", |
Pavel Emelyanov | 586f121 | 2007-12-16 13:32:48 -0800 | [diff] [blame] | 345 | IPV4_DEVCONF_ALL(&init_net, FORWARDING) ? 1 : 2, |
| 346 | sysctl_ip_default_ttl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | for (i = 0; snmp4_ipstats_list[i].name != NULL; i++) |
| 349 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 350 | snmp_fold_field((void **)net->mib.ip_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 351 | snmp4_ipstats_list[i].entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 353 | icmp_put(seq); /* RFC 2011 compatibility */ |
| 354 | icmpmsg_put(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
| 356 | seq_puts(seq, "\nTcp:"); |
| 357 | for (i = 0; snmp4_tcp_list[i].name != NULL; i++) |
| 358 | seq_printf(seq, " %s", snmp4_tcp_list[i].name); |
| 359 | |
| 360 | seq_puts(seq, "\nTcp:"); |
| 361 | for (i = 0; snmp4_tcp_list[i].name != NULL; i++) { |
| 362 | /* MaxConn field is signed, RFC 2012 */ |
| 363 | if (snmp4_tcp_list[i].entry == TCP_MIB_MAXCONN) |
| 364 | seq_printf(seq, " %ld", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 365 | snmp_fold_field((void **)net->mib.tcp_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 366 | snmp4_tcp_list[i].entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | else |
| 368 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 369 | snmp_fold_field((void **)net->mib.tcp_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 370 | snmp4_tcp_list[i].entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | seq_puts(seq, "\nUdp:"); |
| 374 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) |
| 375 | seq_printf(seq, " %s", snmp4_udp_list[i].name); |
| 376 | |
| 377 | seq_puts(seq, "\nUdp:"); |
| 378 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) |
| 379 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 380 | snmp_fold_field((void **)net->mib.udp_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 381 | snmp4_udp_list[i].entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 383 | /* the UDP and UDP-Lite MIBs are the same */ |
| 384 | seq_puts(seq, "\nUdpLite:"); |
| 385 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) |
| 386 | seq_printf(seq, " %s", snmp4_udp_list[i].name); |
| 387 | |
| 388 | seq_puts(seq, "\nUdpLite:"); |
| 389 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) |
| 390 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 391 | snmp_fold_field((void **)net->mib.udplite_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 392 | snmp4_udp_list[i].entry)); |
David S. Miller | db8dac2 | 2008-03-06 16:22:02 -0800 | [diff] [blame] | 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | seq_putc(seq, '\n'); |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static int snmp_seq_open(struct inode *inode, struct file *file) |
| 399 | { |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 400 | int err; |
| 401 | struct net *net; |
| 402 | |
| 403 | err = -ENXIO; |
| 404 | net = get_proc_net(inode); |
| 405 | if (net == NULL) |
| 406 | goto err_net; |
| 407 | |
| 408 | err = single_open(file, snmp_seq_show, net); |
| 409 | if (err < 0) |
| 410 | goto err_open; |
| 411 | |
| 412 | return 0; |
| 413 | |
| 414 | err_open: |
| 415 | put_net(net); |
| 416 | err_net: |
| 417 | return err; |
| 418 | } |
| 419 | |
| 420 | static int snmp_seq_release(struct inode *inode, struct file *file) |
| 421 | { |
| 422 | struct net *net = ((struct seq_file *)file->private_data)->private; |
| 423 | |
| 424 | put_net(net); |
| 425 | return single_release(inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 428 | static const struct file_operations snmp_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | .owner = THIS_MODULE, |
| 430 | .open = snmp_seq_open, |
| 431 | .read = seq_read, |
| 432 | .llseek = seq_lseek, |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 433 | .release = snmp_seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | }; |
| 435 | |
David L Stevens | 96793b4 | 2007-09-17 09:57:33 -0700 | [diff] [blame] | 436 | |
| 437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | /* |
| 439 | * Output /proc/net/netstat |
| 440 | */ |
| 441 | static int netstat_seq_show(struct seq_file *seq, void *v) |
| 442 | { |
| 443 | int i; |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 444 | struct net *net = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | seq_puts(seq, "TcpExt:"); |
| 447 | for (i = 0; snmp4_net_list[i].name != NULL; i++) |
| 448 | seq_printf(seq, " %s", snmp4_net_list[i].name); |
| 449 | |
| 450 | seq_puts(seq, "\nTcpExt:"); |
| 451 | for (i = 0; snmp4_net_list[i].name != NULL; i++) |
| 452 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 453 | snmp_fold_field((void **)net->mib.net_statistics, |
Herbert Xu | 5e0f043 | 2007-04-24 21:53:35 -0700 | [diff] [blame] | 454 | snmp4_net_list[i].entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
Mitsuru Chinen | d831666 | 2007-05-14 03:07:30 -0700 | [diff] [blame] | 456 | seq_puts(seq, "\nIpExt:"); |
| 457 | for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++) |
| 458 | seq_printf(seq, " %s", snmp4_ipextstats_list[i].name); |
| 459 | |
| 460 | seq_puts(seq, "\nIpExt:"); |
| 461 | for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++) |
| 462 | seq_printf(seq, " %lu", |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 463 | snmp_fold_field((void **)net->mib.ip_statistics, |
Mitsuru Chinen | d831666 | 2007-05-14 03:07:30 -0700 | [diff] [blame] | 464 | snmp4_ipextstats_list[i].entry)); |
| 465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | seq_putc(seq, '\n'); |
| 467 | return 0; |
| 468 | } |
| 469 | |
| 470 | static int netstat_seq_open(struct inode *inode, struct file *file) |
| 471 | { |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 472 | int err; |
| 473 | struct net *net; |
| 474 | |
| 475 | err = -ENXIO; |
| 476 | net = get_proc_net(inode); |
| 477 | if (net == NULL) |
| 478 | goto err_net; |
| 479 | |
| 480 | err = single_open(file, netstat_seq_show, net); |
| 481 | if (err < 0) |
| 482 | goto err_open; |
| 483 | |
| 484 | return 0; |
| 485 | |
| 486 | err_open: |
| 487 | put_net(net); |
| 488 | err_net: |
| 489 | return err; |
| 490 | } |
| 491 | |
| 492 | static int netstat_seq_release(struct inode *inode, struct file *file) |
| 493 | { |
| 494 | struct net *net = ((struct seq_file *)file->private_data)->private; |
| 495 | |
| 496 | put_net(net); |
| 497 | return single_release(inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 500 | static const struct file_operations netstat_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | .owner = THIS_MODULE, |
| 502 | .open = netstat_seq_open, |
| 503 | .read = seq_read, |
| 504 | .llseek = seq_lseek, |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 505 | .release = netstat_seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | }; |
| 507 | |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 508 | static __net_init int ip_proc_init_net(struct net *net) |
| 509 | { |
| 510 | if (!proc_net_fops_create(net, "sockstat", S_IRUGO, &sockstat_seq_fops)) |
| 511 | return -ENOMEM; |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 512 | if (!proc_net_fops_create(net, "netstat", S_IRUGO, &netstat_seq_fops)) |
| 513 | goto out_netstat; |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 514 | if (!proc_net_fops_create(net, "snmp", S_IRUGO, &snmp_seq_fops)) |
| 515 | goto out_snmp; |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 516 | |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 517 | return 0; |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 518 | |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 519 | out_snmp: |
| 520 | proc_net_remove(net, "netstat"); |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 521 | out_netstat: |
| 522 | proc_net_remove(net, "sockstat"); |
| 523 | return -ENOMEM; |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | static __net_exit void ip_proc_exit_net(struct net *net) |
| 527 | { |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 528 | proc_net_remove(net, "snmp"); |
Pavel Emelyanov | 7b7a9df | 2008-07-18 04:05:17 -0700 | [diff] [blame] | 529 | proc_net_remove(net, "netstat"); |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 530 | proc_net_remove(net, "sockstat"); |
| 531 | } |
| 532 | |
| 533 | static __net_initdata struct pernet_operations ip_proc_ops = { |
| 534 | .init = ip_proc_init_net, |
| 535 | .exit = ip_proc_exit_net, |
| 536 | }; |
| 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | int __init ip_misc_proc_init(void) |
| 539 | { |
| 540 | int rc = 0; |
| 541 | |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 542 | if (register_pernet_subsys(&ip_proc_ops)) |
| 543 | goto out_pernet; |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | out: |
| 546 | return rc; |
Pavel Emelyanov | 229bf0c | 2008-07-18 04:06:04 -0700 | [diff] [blame^] | 547 | |
Pavel Emelyanov | d0538ca | 2008-03-31 19:42:37 -0700 | [diff] [blame] | 548 | out_pernet: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | rc = -ENOMEM; |
| 550 | goto out; |
| 551 | } |
YOSHIFUJI Hideaki | 3349017 | 2007-04-20 15:57:15 -0700 | [diff] [blame] | 552 | |