1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
/*
* nfsstat.c Output NFS statistics
*
* Copyright (C) 1995, 1996, 1999 Olaf Kirch <okir@monad.swb.de>
*/
#include "config.h"
#define NFSSVCSTAT "/proc/net/rpc/nfsd"
#define NFSCLTSTAT "/proc/net/rpc/nfs"
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#define MAXNRVALS 32
static unsigned int svcv2info[19]; /* NFSv2 call counts ([0] == 18) */
static unsigned int cltv2info[19]; /* NFSv2 call counts ([0] == 18) */
static unsigned int svcv3info[22]; /* NFSv3 call counts ([0] == 22) */
static unsigned int cltv3info[22]; /* NFSv3 call counts ([0] == 22) */
static unsigned int svcnetinfo[4]; /* 0 # of received packets
* 1 UDP packets
* 2 TCP packets
* 3 TCP connections
*/
static unsigned int cltnetinfo[4]; /* 0 # of received packets
* 1 UDP packets
* 2 TCP packets
* 3 TCP connections
*/
static unsigned int svcrpcinfo[5]; /* 0 total # of RPC calls
* 1 total # of bad calls
* 2 bad format
* 3 authentication failed
* 4 unknown client
*/
static unsigned int cltrpcinfo[3]; /* 0 total # of RPC calls
* 1 retransmitted calls
* 2 cred refreshs
*/
static unsigned int svcrcinfo[8]; /* 0 repcache hits
* 1 repcache hits
* 2 uncached reqs
*
* including fh info:
* 3 cached fh's
* 4 valid fh's
* 5 fixup required
* 6 lookup (?)
* 7 stale
*/
static const char * nfsv2name[18] = {
"null", "getattr", "setattr", "root", "lookup", "readlink",
"read", "wrcache", "write", "create", "remove", "rename",
"link", "symlink", "mkdir", "rmdir", "readdir", "fsstat"
};
static const char * nfsv3name[22] = {
"null", "getattr", "setattr", "lookup", "access", "readlink",
"read", "write", "create", "mkdir", "symlink", "mknod",
"remove", "rmdir", "rename", "link", "readdir", "readdirplus",
"fsstat", "fsinfo", "pathconf", "commit"
};
typedef struct statinfo {
char *tag;
int nrvals;
unsigned int * valptr;
/* Filled in by parse_statfile */
int * foundp;
} statinfo;
static statinfo svcinfo[] = {
{ "net", 4, svcnetinfo },
{ "rpc", 5, svcrpcinfo },
{ "rc", 8, svcrcinfo }, /* including fh_* */
{ "proc2", 19, svcv2info },
{ "proc3", 23, svcv3info },
{ NULL, 0, 0 }
};
static statinfo cltinfo[] = {
{ "net", 4, cltnetinfo },
{ "rpc", 3, cltrpcinfo },
{ "proc2", 19, cltv2info },
{ "proc3", 23, cltv3info },
{ NULL, 0, 0 }
};
static void print_numbers(const char *, unsigned int *,
unsigned int);
static void print_callstats(const char *, const char **,
unsigned int *, unsigned int);
static int parse_statfile(const char *, struct statinfo *);
#define PRNT_CALLS 0x0001
#define PRNT_RPC 0x0002
#define PRNT_NET 0x0004
#define PRNT_FH 0x0008
#define PRNT_RC 0x0010
#define PRNT_ALL 0xffff
int
main(int argc, char **argv)
{
int opt_all = 0,
opt_srv = 0,
opt_clt = 0,
opt_prt = 0;
int c;
while ((c = getopt(argc, argv, "acno:rsz")) != -1) {
switch (c) {
case 'a':
opt_all = 1;
break;
case 'c':
opt_clt = 1;
break;
case 'n':
opt_prt |= PRNT_CALLS;
break;
case 'o':
if (!strcmp(optarg, "nfs"))
opt_prt |= PRNT_CALLS;
else if (!strcmp(optarg, "rpc"))
opt_prt |= PRNT_RPC;
else if (!strcmp(optarg, "net"))
opt_prt |= PRNT_NET;
else if (!strcmp(optarg, "rc"))
opt_prt |= PRNT_RC;
else if (!strcmp(optarg, "fh"))
opt_prt |= PRNT_FH;
else {
fprintf(stderr, "nfsstat: unknown category: "
"%s\n", optarg);
return 2;
}
break;
case 'r':
opt_prt |= PRNT_RPC;
break;
case 's':
opt_srv = 1;
break;
case 'z':
fprintf(stderr, "nfsstat: zeroing of nfs statistics "
"not yet supported\n");
return 2;
}
}
if (opt_all) {
opt_srv = opt_clt = 1;
opt_prt = PRNT_ALL;
}
if (!(opt_srv + opt_clt))
opt_srv = opt_clt = 1;
if (!opt_prt)
opt_prt = PRNT_CALLS + PRNT_RPC;
if ((opt_prt & (PRNT_FH|PRNT_RC)) && !opt_srv) {
fprintf(stderr,
"You requested file handle or request cache "
"statistics while using the -c option.\n"
"This information is available only for the NFS "
"server.\n");
}
if ((opt_srv && !parse_statfile(NFSSVCSTAT, svcinfo))
|| (opt_clt && !parse_statfile(NFSCLTSTAT, cltinfo)))
return 2;
if (opt_srv) {
if (opt_prt & PRNT_NET) {
print_numbers(
"Server packet stats:\n"
"packets udp tcp tcpconn\n",
svcnetinfo, 4
);
}
if (opt_prt & PRNT_RPC) {
print_numbers(
"Server rpc stats:\n"
"calls badcalls badauth badclnt xdrcall\n",
svcrpcinfo, 5
);
}
if (opt_prt & PRNT_RC) {
print_numbers(
"Server reply cache:\n"
"hits misses nocache\n",
svcrcinfo, 3
);
}
if (opt_prt & PRNT_FH) {
print_numbers(
"Server file handle cache:\n"
"cached valid fixup lookup stale\n",
svcrcinfo + 3, 5);
}
if (opt_prt & PRNT_CALLS) {
print_callstats(
"Server nfs v2:\n",
nfsv2name, svcv2info + 1, 18
);
if (svcv3info[0])
print_callstats(
"Server nfs v3:\n",
nfsv3name, svcv3info + 1, 22
);
}
}
if (opt_clt) {
if (opt_prt & PRNT_NET) {
print_numbers(
"Client packet stats:\n"
"packets udp tcp tcpconn\n",
cltnetinfo, 4
);
}
if (opt_prt & PRNT_RPC) {
print_numbers(
"Client rpc stats:\n"
"calls retrans authrefrsh\n",
cltrpcinfo, 3
);
}
if (opt_prt & PRNT_CALLS) {
print_callstats(
"Client nfs v2:\n",
nfsv2name, cltv2info + 1, 18
);
if (cltv3info[0])
print_callstats(
"Client nfs v3:\n",
nfsv3name, cltv3info + 1, 22
);
}
}
return 0;
}
static void
print_numbers(const char *hdr, unsigned int *info, unsigned int nr)
{
unsigned int i;
fputs(hdr, stdout);
for (i = 0; i < nr; i++)
printf("%s%-8d", i? " " : "", info[i]);
printf("\n");
}
static void
print_callstats(const char *hdr, const char **names,
unsigned int *info, unsigned int nr)
{
unsigned int total;
int i, j;
fputs(hdr, stdout);
for (i = 0, total = 0; i < nr; i++)
total += info[i];
if (!total)
total = 1;
for (i = 0; i < nr; i += 6) {
for (j = 0; j < 6 && i + j < nr; j++)
printf("%-11s", names[i+j]);
printf("\n");
for (j = 0; j < 6 && i + j < nr; j++)
printf("%-6d %2d%% ",
info[i+j], 100 * info[i+j] / total);
printf("\n");
}
printf("\n");
}
static int
parse_statfile(const char *name, struct statinfo *statp)
{
char buffer[4096], *next;
FILE *fp;
/* Being unable to read e.g. the nfsd stats file shouldn't
* be a fatal error -- it usually means the module isn't loaded.
*/
if ((fp = fopen(name, "r")) == NULL) {
fprintf(stderr, "Warning: %s: %m\n", name);
return 1;
}
while (fgets(buffer, sizeof(buffer), fp) != NULL) {
struct statinfo *ip;
char *sp, *line = buffer;
int i, cnt;
if ((next = strchr(line, '\n')) != NULL)
*next++ = '\0';
if (!(sp = strtok(line, " \t")))
continue;
for (ip = statp; ip->tag; ip++) {
if (!strcmp(sp, ip->tag))
break;
}
if (!ip->tag)
continue;
cnt = ip->nrvals;
for (i = 0; i < cnt; i++) {
if (!(sp = strtok(NULL, " \t")))
break;
ip->valptr[i] = atoi(sp);
}
}
fclose(fp);
return 1;
}
|