stats.c 8.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * linux/net/sunrpc/stats.c
 *
 * procfs-based user access to generic RPC statistics. The stats files
 * reside in /proc/net/rpc.
 *
 * The read routines assume that the buffer passed in is just big enough.
 * If you implement an RPC service that has its own stats routine which
 * appends the generic RPC stats, make sure you don't exceed the PAGE_SIZE
 * limit.
 *
 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
 */

#include <linux/module.h>
16
#include <linux/slab.h>
L
Linus Torvalds 已提交
17 18 19 20 21 22 23

#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/sunrpc/clnt.h>
#include <linux/sunrpc/svcsock.h>
24
#include <linux/sunrpc/metrics.h>
25
#include <linux/rcupdate.h>
L
Linus Torvalds 已提交
26

27 28
#include <trace/events/sunrpc.h>

29
#include "netns.h"
L
Linus Torvalds 已提交
30

31
#define RPCDBG_FACILITY	RPCDBG_MISC
L
Linus Torvalds 已提交
32 33 34 35 36 37 38

/*
 * Get RPC client stats
 */
static int rpc_proc_show(struct seq_file *seq, void *v) {
	const struct rpc_stat	*statp = seq->private;
	const struct rpc_program *prog = statp->program;
39
	unsigned int i, j;
L
Linus Torvalds 已提交
40 41

	seq_printf(seq,
42
		"net %u %u %u %u\n",
L
Linus Torvalds 已提交
43 44 45 46 47
			statp->netcnt,
			statp->netudpcnt,
			statp->nettcpcnt,
			statp->nettcpconn);
	seq_printf(seq,
48
		"rpc %u %u %u\n",
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56
			statp->rpccnt,
			statp->rpcretrans,
			statp->rpcauthrefresh);

	for (i = 0; i < prog->nrvers; i++) {
		const struct rpc_version *vers = prog->version[i];
		if (!vers)
			continue;
57
		seq_printf(seq, "proc%u %u",
L
Linus Torvalds 已提交
58 59
					vers->number, vers->nrprocs);
		for (j = 0; j < vers->nrprocs; j++)
60
			seq_printf(seq, " %u", vers->counts[j]);
L
Linus Torvalds 已提交
61 62 63 64 65 66 67
		seq_putc(seq, '\n');
	}
	return 0;
}

static int rpc_proc_open(struct inode *inode, struct file *file)
{
A
Al Viro 已提交
68
	return single_open(file, rpc_proc_show, PDE_DATA(inode));
L
Linus Torvalds 已提交
69 70
}

71
static const struct file_operations rpc_proc_fops = {
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80 81
	.owner = THIS_MODULE,
	.open = rpc_proc_open,
	.read  = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

/*
 * Get RPC server stats
 */
82 83
void svc_seq_show(struct seq_file *seq, const struct svc_stat *statp)
{
L
Linus Torvalds 已提交
84 85
	const struct svc_program *prog = statp->program;
	const struct svc_version *vers;
86
	unsigned int i, j;
L
Linus Torvalds 已提交
87 88

	seq_printf(seq,
89
		"net %u %u %u %u\n",
L
Linus Torvalds 已提交
90 91 92 93 94
			statp->netcnt,
			statp->netudpcnt,
			statp->nettcpcnt,
			statp->nettcpconn);
	seq_printf(seq,
95
		"rpc %u %u %u %u %u\n",
L
Linus Torvalds 已提交
96 97 98 99 100 101 102
			statp->rpccnt,
			statp->rpcbadfmt+statp->rpcbadauth+statp->rpcbadclnt,
			statp->rpcbadfmt,
			statp->rpcbadauth,
			statp->rpcbadclnt);

	for (i = 0; i < prog->pg_nvers; i++) {
103 104
		vers = prog->pg_vers[i];
		if (!vers)
L
Linus Torvalds 已提交
105
			continue;
106
		seq_printf(seq, "proc%d %u", i, vers->vs_nproc);
107 108
		for (j = 0; j < vers->vs_nproc; j++)
			seq_printf(seq, " %u", vers->vs_count[j]);
L
Linus Torvalds 已提交
109 110 111
		seq_putc(seq, '\n');
	}
}
112
EXPORT_SYMBOL_GPL(svc_seq_show);
L
Linus Torvalds 已提交
113

114 115 116 117 118 119 120
/**
 * rpc_alloc_iostats - allocate an rpc_iostats structure
 * @clnt: RPC program, version, and xprt
 *
 */
struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt)
{
C
Chuck Lever 已提交
121 122 123 124 125 126 127 128 129
	struct rpc_iostats *stats;
	int i;

	stats = kcalloc(clnt->cl_maxproc, sizeof(*stats), GFP_KERNEL);
	if (stats) {
		for (i = 0; i < clnt->cl_maxproc; i++)
			spin_lock_init(&stats[i].om_lock);
	}
	return stats;
130
}
131
EXPORT_SYMBOL_GPL(rpc_alloc_iostats);
132 133 134 135 136 137 138 139 140 141

/**
 * rpc_free_iostats - release an rpc_iostats structure
 * @stats: doomed rpc_iostats structure
 *
 */
void rpc_free_iostats(struct rpc_iostats *stats)
{
	kfree(stats);
}
142
EXPORT_SYMBOL_GPL(rpc_free_iostats);
143 144

/**
145
 * rpc_count_iostats_metrics - tally up per-task stats
146
 * @task: completed rpc_task
147
 * @op_metrics: stat structure for OP that will accumulate stats from @task
148
 */
149 150
void rpc_count_iostats_metrics(const struct rpc_task *task,
			       struct rpc_iostats *op_metrics)
151 152
{
	struct rpc_rqst *req = task->tk_rqstp;
153
	ktime_t backlog, execute, now;
154

155
	if (!op_metrics || !req)
156
		return;
157

C
Chuck Lever 已提交
158 159 160
	now = ktime_get();
	spin_lock(&op_metrics->om_lock);

161
	op_metrics->om_ops++;
162 163
	/* kernel API: om_ops must never become larger than om_ntrans */
	op_metrics->om_ntrans += max(req->rq_ntrans, 1);
164 165
	op_metrics->om_timeouts += task->tk_timeouts;

166
	op_metrics->om_bytes_sent += req->rq_xmit_bytes_sent;
167
	op_metrics->om_bytes_recv += req->rq_reply_bytes_recvd;
168

169
	backlog = 0;
170
	if (ktime_to_ns(req->rq_xtime)) {
171 172
		backlog = ktime_sub(req->rq_xtime, task->tk_start);
		op_metrics->om_queue = ktime_add(op_metrics->om_queue, backlog);
173
	}
174

175
	op_metrics->om_rtt = ktime_add(op_metrics->om_rtt, req->rq_rtt);
176

177 178
	execute = ktime_sub(now, task->tk_start);
	op_metrics->om_execute = ktime_add(op_metrics->om_execute, execute);
C
Chuck Lever 已提交
179 180

	spin_unlock(&op_metrics->om_lock);
181 182

	trace_rpc_stats_latency(req->rq_task, backlog, req->rq_rtt, execute);
183
}
184 185 186 187 188 189 190 191 192 193 194 195 196 197
EXPORT_SYMBOL_GPL(rpc_count_iostats_metrics);

/**
 * rpc_count_iostats - tally up per-task stats
 * @task: completed rpc_task
 * @stats: array of stat structures
 *
 * Uses the statidx from @task
 */
void rpc_count_iostats(const struct rpc_task *task, struct rpc_iostats *stats)
{
	rpc_count_iostats_metrics(task,
				  &stats[task->tk_msg.rpc_proc->p_statidx]);
}
198
EXPORT_SYMBOL_GPL(rpc_count_iostats);
199

A
Adrian Bunk 已提交
200
static void _print_name(struct seq_file *seq, unsigned int op,
201
			const struct rpc_procinfo *procs)
202 203 204 205 206 207 208 209 210
{
	if (procs[op].p_name)
		seq_printf(seq, "\t%12s: ", procs[op].p_name);
	else if (op == 0)
		seq_printf(seq, "\t        NULL: ");
	else
		seq_printf(seq, "\t%12u: ", op);
}

211 212 213 214 215 216 217 218 219 220 221 222
static void _add_rpc_iostats(struct rpc_iostats *a, struct rpc_iostats *b)
{
	a->om_ops += b->om_ops;
	a->om_ntrans += b->om_ntrans;
	a->om_timeouts += b->om_timeouts;
	a->om_bytes_sent += b->om_bytes_sent;
	a->om_bytes_recv += b->om_bytes_recv;
	a->om_queue = ktime_add(a->om_queue, b->om_queue);
	a->om_rtt = ktime_add(a->om_rtt, b->om_rtt);
	a->om_execute = ktime_add(a->om_execute, b->om_execute);
}

223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
static void _print_rpc_iostats(struct seq_file *seq, struct rpc_iostats *stats,
			       int op, const struct rpc_procinfo *procs)
{
	_print_name(seq, op, procs);
	seq_printf(seq, "%lu %lu %lu %Lu %Lu %Lu %Lu %Lu\n",
		   stats->om_ops,
		   stats->om_ntrans,
		   stats->om_timeouts,
		   stats->om_bytes_sent,
		   stats->om_bytes_recv,
		   ktime_to_ms(stats->om_queue),
		   ktime_to_ms(stats->om_rtt),
		   ktime_to_ms(stats->om_execute));
}

238
void rpc_clnt_show_stats(struct seq_file *seq, struct rpc_clnt *clnt)
239
{
240
	struct rpc_xprt *xprt;
241 242
	unsigned int op, maxproc = clnt->cl_maxproc;

243
	if (!clnt->cl_metrics)
244 245 246 247
		return;

	seq_printf(seq, "\tRPC iostats version: %s  ", RPC_IOSTATS_VERS);
	seq_printf(seq, "p/v: %u/%u (%s)\n",
248
			clnt->cl_prog, clnt->cl_vers, clnt->cl_program->name);
249

250 251
	rcu_read_lock();
	xprt = rcu_dereference(clnt->cl_xprt);
252 253
	if (xprt)
		xprt->ops->print_stats(xprt, seq);
254
	rcu_read_unlock();
255 256 257

	seq_printf(seq, "\tper-op statistics\n");
	for (op = 0; op < maxproc; op++) {
258 259 260 261 262 263 264 265 266
		struct rpc_iostats stats = {};
		struct rpc_clnt *next = clnt;
		do {
			_add_rpc_iostats(&stats, &next->cl_metrics[op]);
			if (next == next->cl_parent)
				break;
			next = next->cl_parent;
		} while (next);
		_print_rpc_iostats(seq, &stats, op, clnt->cl_procinfo);
267 268
	}
}
269
EXPORT_SYMBOL_GPL(rpc_clnt_show_stats);
270

L
Linus Torvalds 已提交
271 272 273 274
/*
 * Register/unregister RPC proc files
 */
static inline struct proc_dir_entry *
275 276
do_register(struct net *net, const char *name, void *data,
	    const struct file_operations *fops)
L
Linus Torvalds 已提交
277
{
278
	struct sunrpc_net *sn;
L
Linus Torvalds 已提交
279

280
	dprintk("RPC:       registering /proc/net/rpc/%s\n", name);
281
	sn = net_generic(net, sunrpc_net_id);
282
	return proc_create_data(name, 0, sn->proc_net_rpc, fops, data);
L
Linus Torvalds 已提交
283 284 285
}

struct proc_dir_entry *
286
rpc_proc_register(struct net *net, struct rpc_stat *statp)
L
Linus Torvalds 已提交
287
{
288
	return do_register(net, statp->program->name, statp, &rpc_proc_fops);
L
Linus Torvalds 已提交
289
}
290
EXPORT_SYMBOL_GPL(rpc_proc_register);
L
Linus Torvalds 已提交
291 292

void
293
rpc_proc_unregister(struct net *net, const char *name)
L
Linus Torvalds 已提交
294
{
295 296
	struct sunrpc_net *sn;

297
	sn = net_generic(net, sunrpc_net_id);
298
	remove_proc_entry(name, sn->proc_net_rpc);
L
Linus Torvalds 已提交
299
}
300
EXPORT_SYMBOL_GPL(rpc_proc_unregister);
L
Linus Torvalds 已提交
301 302

struct proc_dir_entry *
303
svc_proc_register(struct net *net, struct svc_stat *statp, const struct file_operations *fops)
L
Linus Torvalds 已提交
304
{
305
	return do_register(net, statp->program->pg_name, statp, fops);
L
Linus Torvalds 已提交
306
}
307
EXPORT_SYMBOL_GPL(svc_proc_register);
L
Linus Torvalds 已提交
308 309

void
310
svc_proc_unregister(struct net *net, const char *name)
L
Linus Torvalds 已提交
311
{
312 313
	struct sunrpc_net *sn;

314
	sn = net_generic(net, sunrpc_net_id);
315
	remove_proc_entry(name, sn->proc_net_rpc);
L
Linus Torvalds 已提交
316
}
317
EXPORT_SYMBOL_GPL(svc_proc_unregister);
L
Linus Torvalds 已提交
318

319
int rpc_proc_init(struct net *net)
L
Linus Torvalds 已提交
320
{
321 322
	struct sunrpc_net *sn;

323
	dprintk("RPC:       registering /proc/net/rpc\n");
324 325 326 327 328 329
	sn = net_generic(net, sunrpc_net_id);
	sn->proc_net_rpc = proc_mkdir("rpc", net->proc_net);
	if (sn->proc_net_rpc == NULL)
		return -ENOMEM;

	return 0;
L
Linus Torvalds 已提交
330 331
}

332
void rpc_proc_exit(struct net *net)
L
Linus Torvalds 已提交
333
{
334
	dprintk("RPC:       unregistering /proc/net/rpc\n");
335
	remove_proc_entry("rpc", net->proc_net);
L
Linus Torvalds 已提交
336 337
}