Merge git://git.infradead.org/~dwmw2/random-2.6
[deliverable/linux.git] / net / ipv4 / proc.c
CommitLineData
1da177e4
LT
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 *
1da177e4
LT
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>
457c4cbc 35#include <net/net_namespace.h>
1da177e4
LT
36#include <net/icmp.h>
37#include <net/protocol.h>
38#include <net/tcp.h>
39#include <net/udp.h>
ba4e58ec 40#include <net/udplite.h>
14c85021 41#include <linux/inetdevice.h>
1da177e4
LT
42#include <linux/proc_fs.h>
43#include <linux/seq_file.h>
44#include <net/sock.h>
45#include <net/raw.h>
46
1da177e4
LT
47/*
48 * Report socket allocation statistics [mea@utu.fi]
49 */
50static int sockstat_seq_show(struct seq_file *seq, void *v)
51{
fd4e7b50
PE
52 struct net *net = seq->private;
53
1da177e4
LT
54 socket_seq_show(seq);
55 seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n",
fd4e7b50 56 sock_prot_inuse_get(net, &tcp_prot),
65f76517 57 atomic_read(&tcp_orphan_count),
295ff7ed 58 tcp_death_row.tw_count, atomic_read(&tcp_sockets_allocated),
1da177e4 59 atomic_read(&tcp_memory_allocated));
c29a0bc4 60 seq_printf(seq, "UDP: inuse %d mem %d\n",
fd4e7b50 61 sock_prot_inuse_get(net, &udp_prot),
95766fff 62 atomic_read(&udp_memory_allocated));
c29a0bc4 63 seq_printf(seq, "UDPLITE: inuse %d\n",
fd4e7b50 64 sock_prot_inuse_get(net, &udplite_prot));
c29a0bc4 65 seq_printf(seq, "RAW: inuse %d\n",
fd4e7b50 66 sock_prot_inuse_get(net, &raw_prot));
7eb95156 67 seq_printf(seq, "FRAG: inuse %d memory %d\n",
fd4e7b50 68 ip_frag_nqueues(net), ip_frag_mem(net));
1da177e4
LT
69 return 0;
70}
71
72static int sockstat_seq_open(struct inode *inode, struct file *file)
73{
de05c557 74 return single_open_net(inode, file, sockstat_seq_show);
fd4e7b50
PE
75}
76
9a32144e 77static const struct file_operations sockstat_seq_fops = {
1da177e4
LT
78 .owner = THIS_MODULE,
79 .open = sockstat_seq_open,
80 .read = seq_read,
81 .llseek = seq_lseek,
b6fcbdb4 82 .release = single_release_net,
1da177e4
LT
83};
84
1da177e4 85/* snmp items */
9b5b5cff 86static const struct snmp_mib snmp4_ipstats_list[] = {
1da177e4
LT
87 SNMP_MIB_ITEM("InReceives", IPSTATS_MIB_INRECEIVES),
88 SNMP_MIB_ITEM("InHdrErrors", IPSTATS_MIB_INHDRERRORS),
89 SNMP_MIB_ITEM("InAddrErrors", IPSTATS_MIB_INADDRERRORS),
90 SNMP_MIB_ITEM("ForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS),
91 SNMP_MIB_ITEM("InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS),
92 SNMP_MIB_ITEM("InDiscards", IPSTATS_MIB_INDISCARDS),
93 SNMP_MIB_ITEM("InDelivers", IPSTATS_MIB_INDELIVERS),
94 SNMP_MIB_ITEM("OutRequests", IPSTATS_MIB_OUTREQUESTS),
95 SNMP_MIB_ITEM("OutDiscards", IPSTATS_MIB_OUTDISCARDS),
96 SNMP_MIB_ITEM("OutNoRoutes", IPSTATS_MIB_OUTNOROUTES),
97 SNMP_MIB_ITEM("ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT),
98 SNMP_MIB_ITEM("ReasmReqds", IPSTATS_MIB_REASMREQDS),
99 SNMP_MIB_ITEM("ReasmOKs", IPSTATS_MIB_REASMOKS),
100 SNMP_MIB_ITEM("ReasmFails", IPSTATS_MIB_REASMFAILS),
101 SNMP_MIB_ITEM("FragOKs", IPSTATS_MIB_FRAGOKS),
102 SNMP_MIB_ITEM("FragFails", IPSTATS_MIB_FRAGFAILS),
103 SNMP_MIB_ITEM("FragCreates", IPSTATS_MIB_FRAGCREATES),
104 SNMP_MIB_SENTINEL
105};
106
d831666e
MC
107/* Following RFC4293 items are displayed in /proc/net/netstat */
108static const struct snmp_mib snmp4_ipextstats_list[] = {
109 SNMP_MIB_ITEM("InNoRoutes", IPSTATS_MIB_INNOROUTES),
110 SNMP_MIB_ITEM("InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS),
111 SNMP_MIB_ITEM("InMcastPkts", IPSTATS_MIB_INMCASTPKTS),
112 SNMP_MIB_ITEM("OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS),
113 SNMP_MIB_ITEM("InBcastPkts", IPSTATS_MIB_INBCASTPKTS),
114 SNMP_MIB_ITEM("OutBcastPkts", IPSTATS_MIB_OUTBCASTPKTS),
115 SNMP_MIB_SENTINEL
116};
117
96793b48
DS
118static struct {
119 char *name;
120 int index;
121} icmpmibmap[] = {
122 { "DestUnreachs", ICMP_DEST_UNREACH },
123 { "TimeExcds", ICMP_TIME_EXCEEDED },
124 { "ParmProbs", ICMP_PARAMETERPROB },
125 { "SrcQuenchs", ICMP_SOURCE_QUENCH },
126 { "Redirects", ICMP_REDIRECT },
127 { "Echos", ICMP_ECHO },
128 { "EchoReps", ICMP_ECHOREPLY },
129 { "Timestamps", ICMP_TIMESTAMP },
130 { "TimestampReps", ICMP_TIMESTAMPREPLY },
131 { "AddrMasks", ICMP_ADDRESS },
132 { "AddrMaskReps", ICMP_ADDRESSREPLY },
cfcabdcc 133 { NULL, 0 }
96793b48
DS
134};
135
136
9b5b5cff 137static const struct snmp_mib snmp4_tcp_list[] = {
1da177e4
LT
138 SNMP_MIB_ITEM("RtoAlgorithm", TCP_MIB_RTOALGORITHM),
139 SNMP_MIB_ITEM("RtoMin", TCP_MIB_RTOMIN),
140 SNMP_MIB_ITEM("RtoMax", TCP_MIB_RTOMAX),
141 SNMP_MIB_ITEM("MaxConn", TCP_MIB_MAXCONN),
142 SNMP_MIB_ITEM("ActiveOpens", TCP_MIB_ACTIVEOPENS),
143 SNMP_MIB_ITEM("PassiveOpens", TCP_MIB_PASSIVEOPENS),
144 SNMP_MIB_ITEM("AttemptFails", TCP_MIB_ATTEMPTFAILS),
145 SNMP_MIB_ITEM("EstabResets", TCP_MIB_ESTABRESETS),
146 SNMP_MIB_ITEM("CurrEstab", TCP_MIB_CURRESTAB),
147 SNMP_MIB_ITEM("InSegs", TCP_MIB_INSEGS),
148 SNMP_MIB_ITEM("OutSegs", TCP_MIB_OUTSEGS),
149 SNMP_MIB_ITEM("RetransSegs", TCP_MIB_RETRANSSEGS),
150 SNMP_MIB_ITEM("InErrs", TCP_MIB_INERRS),
151 SNMP_MIB_ITEM("OutRsts", TCP_MIB_OUTRSTS),
152 SNMP_MIB_SENTINEL
153};
154
9b5b5cff 155static const struct snmp_mib snmp4_udp_list[] = {
1da177e4
LT
156 SNMP_MIB_ITEM("InDatagrams", UDP_MIB_INDATAGRAMS),
157 SNMP_MIB_ITEM("NoPorts", UDP_MIB_NOPORTS),
158 SNMP_MIB_ITEM("InErrors", UDP_MIB_INERRORS),
159 SNMP_MIB_ITEM("OutDatagrams", UDP_MIB_OUTDATAGRAMS),
81aa646c
MB
160 SNMP_MIB_ITEM("RcvbufErrors", UDP_MIB_RCVBUFERRORS),
161 SNMP_MIB_ITEM("SndbufErrors", UDP_MIB_SNDBUFERRORS),
1da177e4
LT
162 SNMP_MIB_SENTINEL
163};
164
9b5b5cff 165static const struct snmp_mib snmp4_net_list[] = {
1da177e4
LT
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),
18f02545
IJ
231 SNMP_MIB_ITEM("TCPSACKDiscard", LINUX_MIB_TCPSACKDISCARD),
232 SNMP_MIB_ITEM("TCPDSACKIgnoredOld", LINUX_MIB_TCPDSACKIGNOREDOLD),
233 SNMP_MIB_ITEM("TCPDSACKIgnoredNoUndo", LINUX_MIB_TCPDSACKIGNOREDNOUNDO),
912d8f0b 234 SNMP_MIB_ITEM("TCPSpuriousRTOs", LINUX_MIB_TCPSPURIOUSRTOS),
1da177e4
LT
235 SNMP_MIB_SENTINEL
236};
237
96793b48
DS
238static void icmpmsg_put(struct seq_file *seq)
239{
240#define PERLINE 16
241
242 int j, i, count;
243 static int out[PERLINE];
229bf0cb 244 struct net *net = seq->private;
96793b48
DS
245
246 count = 0;
247 for (i = 0; i < ICMPMSG_MIB_MAX; i++) {
248
229bf0cb 249 if (snmp_fold_field((void **) net->mib.icmpmsg_statistics, i))
96793b48
DS
250 out[count++] = i;
251 if (count < PERLINE)
252 continue;
253
254 seq_printf(seq, "\nIcmpMsg:");
255 for (j = 0; j < PERLINE; ++j)
256 seq_printf(seq, " %sType%u", i & 0x100 ? "Out" : "In",
257 i & 0xff);
258 seq_printf(seq, "\nIcmpMsg: ");
259 for (j = 0; j < PERLINE; ++j)
260 seq_printf(seq, " %lu",
229bf0cb 261 snmp_fold_field((void **) net->mib.icmpmsg_statistics,
96793b48
DS
262 out[j]));
263 seq_putc(seq, '\n');
264 }
265 if (count) {
266 seq_printf(seq, "\nIcmpMsg:");
267 for (j = 0; j < count; ++j)
268 seq_printf(seq, " %sType%u", out[j] & 0x100 ? "Out" :
269 "In", out[j] & 0xff);
270 seq_printf(seq, "\nIcmpMsg:");
271 for (j = 0; j < count; ++j)
272 seq_printf(seq, " %lu", snmp_fold_field((void **)
229bf0cb 273 net->mib.icmpmsg_statistics, out[j]));
96793b48
DS
274 }
275
276#undef PERLINE
277}
278
279static void icmp_put(struct seq_file *seq)
280{
281 int i;
229bf0cb 282 struct net *net = seq->private;
96793b48
DS
283
284 seq_puts(seq, "\nIcmp: InMsgs InErrors");
285 for (i=0; icmpmibmap[i].name != NULL; i++)
286 seq_printf(seq, " In%s", icmpmibmap[i].name);
287 seq_printf(seq, " OutMsgs OutErrors");
288 for (i=0; icmpmibmap[i].name != NULL; i++)
289 seq_printf(seq, " Out%s", icmpmibmap[i].name);
290 seq_printf(seq, "\nIcmp: %lu %lu",
229bf0cb
PE
291 snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_INMSGS),
292 snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_INERRORS));
96793b48
DS
293 for (i=0; icmpmibmap[i].name != NULL; i++)
294 seq_printf(seq, " %lu",
229bf0cb 295 snmp_fold_field((void **) net->mib.icmpmsg_statistics,
96793b48
DS
296 icmpmibmap[i].index));
297 seq_printf(seq, " %lu %lu",
229bf0cb
PE
298 snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_OUTMSGS),
299 snmp_fold_field((void **) net->mib.icmp_statistics, ICMP_MIB_OUTERRORS));
96793b48
DS
300 for (i=0; icmpmibmap[i].name != NULL; i++)
301 seq_printf(seq, " %lu",
229bf0cb 302 snmp_fold_field((void **) net->mib.icmpmsg_statistics,
064f3605 303 icmpmibmap[i].index | 0x100));
96793b48
DS
304}
305
1da177e4
LT
306/*
307 * Called from the PROCfs module. This outputs /proc/net/snmp.
308 */
309static int snmp_seq_show(struct seq_file *seq, void *v)
310{
311 int i;
229bf0cb 312 struct net *net = seq->private;
1da177e4
LT
313
314 seq_puts(seq, "Ip: Forwarding DefaultTTL");
315
316 for (i = 0; snmp4_ipstats_list[i].name != NULL; i++)
317 seq_printf(seq, " %s", snmp4_ipstats_list[i].name);
318
319 seq_printf(seq, "\nIp: %d %d",
8e3461d0 320 IPV4_DEVCONF_ALL(net, FORWARDING) ? 1 : 2,
586f1211 321 sysctl_ip_default_ttl);
1da177e4
LT
322
323 for (i = 0; snmp4_ipstats_list[i].name != NULL; i++)
324 seq_printf(seq, " %lu",
229bf0cb 325 snmp_fold_field((void **)net->mib.ip_statistics,
5e0f0435 326 snmp4_ipstats_list[i].entry));
1da177e4 327
96793b48
DS
328 icmp_put(seq); /* RFC 2011 compatibility */
329 icmpmsg_put(seq);
1da177e4
LT
330
331 seq_puts(seq, "\nTcp:");
332 for (i = 0; snmp4_tcp_list[i].name != NULL; i++)
333 seq_printf(seq, " %s", snmp4_tcp_list[i].name);
334
335 seq_puts(seq, "\nTcp:");
336 for (i = 0; snmp4_tcp_list[i].name != NULL; i++) {
337 /* MaxConn field is signed, RFC 2012 */
338 if (snmp4_tcp_list[i].entry == TCP_MIB_MAXCONN)
339 seq_printf(seq, " %ld",
229bf0cb 340 snmp_fold_field((void **)net->mib.tcp_statistics,
5e0f0435 341 snmp4_tcp_list[i].entry));
1da177e4
LT
342 else
343 seq_printf(seq, " %lu",
229bf0cb 344 snmp_fold_field((void **)net->mib.tcp_statistics,
5e0f0435 345 snmp4_tcp_list[i].entry));
1da177e4
LT
346 }
347
348 seq_puts(seq, "\nUdp:");
349 for (i = 0; snmp4_udp_list[i].name != NULL; i++)
350 seq_printf(seq, " %s", snmp4_udp_list[i].name);
351
352 seq_puts(seq, "\nUdp:");
353 for (i = 0; snmp4_udp_list[i].name != NULL; i++)
354 seq_printf(seq, " %lu",
229bf0cb 355 snmp_fold_field((void **)net->mib.udp_statistics,
5e0f0435 356 snmp4_udp_list[i].entry));
1da177e4 357
ba4e58ec
GR
358 /* the UDP and UDP-Lite MIBs are the same */
359 seq_puts(seq, "\nUdpLite:");
360 for (i = 0; snmp4_udp_list[i].name != NULL; i++)
361 seq_printf(seq, " %s", snmp4_udp_list[i].name);
362
363 seq_puts(seq, "\nUdpLite:");
364 for (i = 0; snmp4_udp_list[i].name != NULL; i++)
365 seq_printf(seq, " %lu",
229bf0cb 366 snmp_fold_field((void **)net->mib.udplite_statistics,
5e0f0435 367 snmp4_udp_list[i].entry));
db8dac20 368
1da177e4
LT
369 seq_putc(seq, '\n');
370 return 0;
371}
372
373static int snmp_seq_open(struct inode *inode, struct file *file)
374{
de05c557 375 return single_open_net(inode, file, snmp_seq_show);
229bf0cb
PE
376}
377
9a32144e 378static const struct file_operations snmp_seq_fops = {
1da177e4
LT
379 .owner = THIS_MODULE,
380 .open = snmp_seq_open,
381 .read = seq_read,
382 .llseek = seq_lseek,
b6fcbdb4 383 .release = single_release_net,
1da177e4
LT
384};
385
96793b48
DS
386
387
1da177e4
LT
388/*
389 * Output /proc/net/netstat
390 */
391static int netstat_seq_show(struct seq_file *seq, void *v)
392{
393 int i;
7b7a9dfd 394 struct net *net = seq->private;
1da177e4
LT
395
396 seq_puts(seq, "TcpExt:");
397 for (i = 0; snmp4_net_list[i].name != NULL; i++)
398 seq_printf(seq, " %s", snmp4_net_list[i].name);
399
400 seq_puts(seq, "\nTcpExt:");
401 for (i = 0; snmp4_net_list[i].name != NULL; i++)
402 seq_printf(seq, " %lu",
7b7a9dfd 403 snmp_fold_field((void **)net->mib.net_statistics,
5e0f0435 404 snmp4_net_list[i].entry));
1da177e4 405
d831666e
MC
406 seq_puts(seq, "\nIpExt:");
407 for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++)
408 seq_printf(seq, " %s", snmp4_ipextstats_list[i].name);
409
410 seq_puts(seq, "\nIpExt:");
411 for (i = 0; snmp4_ipextstats_list[i].name != NULL; i++)
412 seq_printf(seq, " %lu",
7b7a9dfd 413 snmp_fold_field((void **)net->mib.ip_statistics,
d831666e
MC
414 snmp4_ipextstats_list[i].entry));
415
1da177e4
LT
416 seq_putc(seq, '\n');
417 return 0;
418}
419
420static int netstat_seq_open(struct inode *inode, struct file *file)
421{
de05c557 422 return single_open_net(inode, file, netstat_seq_show);
7b7a9dfd
PE
423}
424
9a32144e 425static const struct file_operations netstat_seq_fops = {
1da177e4
LT
426 .owner = THIS_MODULE,
427 .open = netstat_seq_open,
428 .read = seq_read,
429 .llseek = seq_lseek,
b6fcbdb4 430 .release = single_release_net,
1da177e4
LT
431};
432
d0538ca3
PE
433static __net_init int ip_proc_init_net(struct net *net)
434{
435 if (!proc_net_fops_create(net, "sockstat", S_IRUGO, &sockstat_seq_fops))
60bdde95 436 goto out_sockstat;
7b7a9dfd
PE
437 if (!proc_net_fops_create(net, "netstat", S_IRUGO, &netstat_seq_fops))
438 goto out_netstat;
229bf0cb
PE
439 if (!proc_net_fops_create(net, "snmp", S_IRUGO, &snmp_seq_fops))
440 goto out_snmp;
7b7a9dfd 441
d0538ca3 442 return 0;
7b7a9dfd 443
229bf0cb
PE
444out_snmp:
445 proc_net_remove(net, "netstat");
7b7a9dfd
PE
446out_netstat:
447 proc_net_remove(net, "sockstat");
60bdde95 448out_sockstat:
7b7a9dfd 449 return -ENOMEM;
d0538ca3
PE
450}
451
452static __net_exit void ip_proc_exit_net(struct net *net)
453{
229bf0cb 454 proc_net_remove(net, "snmp");
7b7a9dfd 455 proc_net_remove(net, "netstat");
d0538ca3
PE
456 proc_net_remove(net, "sockstat");
457}
458
459static __net_initdata struct pernet_operations ip_proc_ops = {
460 .init = ip_proc_init_net,
461 .exit = ip_proc_exit_net,
462};
463
1da177e4
LT
464int __init ip_misc_proc_init(void)
465{
60bdde95 466 return register_pernet_subsys(&ip_proc_ops);
1da177e4 467}
33490170 468
This page took 0.400687 seconds and 5 git commands to generate.