2005-04-17 02:20:36 +04:00
/*
* 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>
# 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>
2006-03-20 21:44:22 +03:00
# include <linux/sunrpc/metrics.h>
2007-09-12 14:01:34 +04:00
# include <net/net_namespace.h>
2005-04-17 02:20:36 +04:00
# define RPCDBG_FACILITY RPCDBG_MISC
struct proc_dir_entry * proc_net_rpc = NULL ;
/*
* 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 ;
2007-10-26 21:32:56 +04:00
unsigned int i , j ;
2005-04-17 02:20:36 +04:00
seq_printf ( seq ,
2005-09-07 02:18:03 +04:00
" net %u %u %u %u \n " ,
2005-04-17 02:20:36 +04:00
statp - > netcnt ,
statp - > netudpcnt ,
statp - > nettcpcnt ,
statp - > nettcpconn ) ;
seq_printf ( seq ,
2005-09-07 02:18:03 +04:00
" rpc %u %u %u \n " ,
2005-04-17 02:20:36 +04:00
statp - > rpccnt ,
statp - > rpcretrans ,
statp - > rpcauthrefresh ) ;
for ( i = 0 ; i < prog - > nrvers ; i + + ) {
const struct rpc_version * vers = prog - > version [ i ] ;
if ( ! vers )
continue ;
2005-09-07 02:18:03 +04:00
seq_printf ( seq , " proc%u %u " ,
2005-04-17 02:20:36 +04:00
vers - > number , vers - > nrprocs ) ;
for ( j = 0 ; j < vers - > nrprocs ; j + + )
2005-09-07 02:18:03 +04:00
seq_printf ( seq , " %u " ,
2005-04-17 02:20:36 +04:00
vers - > procs [ j ] . p_count ) ;
seq_putc ( seq , ' \n ' ) ;
}
return 0 ;
}
static int rpc_proc_open ( struct inode * inode , struct file * file )
{
return single_open ( file , rpc_proc_show , PDE ( inode ) - > data ) ;
}
2007-02-12 11:55:36 +03:00
static const struct file_operations rpc_proc_fops = {
2005-04-17 02:20:36 +04:00
. owner = THIS_MODULE ,
. open = rpc_proc_open ,
. read = seq_read ,
. llseek = seq_lseek ,
. release = single_release ,
} ;
/*
* Get RPC server stats
*/
void svc_seq_show ( struct seq_file * seq , const struct svc_stat * statp ) {
const struct svc_program * prog = statp - > program ;
const struct svc_procedure * proc ;
const struct svc_version * vers ;
2007-10-26 21:32:56 +04:00
unsigned int i , j ;
2005-04-17 02:20:36 +04:00
seq_printf ( seq ,
2005-09-07 02:18:03 +04:00
" net %u %u %u %u \n " ,
2005-04-17 02:20:36 +04:00
statp - > netcnt ,
statp - > netudpcnt ,
statp - > nettcpcnt ,
statp - > nettcpconn ) ;
seq_printf ( seq ,
2005-09-07 02:18:03 +04:00
" rpc %u %u %u %u %u \n " ,
2005-04-17 02:20:36 +04:00
statp - > rpccnt ,
statp - > rpcbadfmt + statp - > rpcbadauth + statp - > rpcbadclnt ,
statp - > rpcbadfmt ,
statp - > rpcbadauth ,
statp - > rpcbadclnt ) ;
for ( i = 0 ; i < prog - > pg_nvers ; i + + ) {
if ( ! ( vers = prog - > pg_vers [ i ] ) | | ! ( proc = vers - > vs_proc ) )
continue ;
2005-09-07 02:18:03 +04:00
seq_printf ( seq , " proc%d %u " , i , vers - > vs_nproc ) ;
2005-04-17 02:20:36 +04:00
for ( j = 0 ; j < vers - > vs_nproc ; j + + , proc + + )
2005-09-07 02:18:03 +04:00
seq_printf ( seq , " %u " , proc - > pc_count ) ;
2005-04-17 02:20:36 +04:00
seq_putc ( seq , ' \n ' ) ;
}
}
2007-07-14 23:39:58 +04:00
EXPORT_SYMBOL ( svc_seq_show ) ;
2005-04-17 02:20:36 +04:00
2006-03-20 21:44:22 +03:00
/**
* rpc_alloc_iostats - allocate an rpc_iostats structure
* @ clnt : RPC program , version , and xprt
*
*/
struct rpc_iostats * rpc_alloc_iostats ( struct rpc_clnt * clnt )
{
struct rpc_iostats * new ;
2006-07-22 01:51:30 +04:00
new = kcalloc ( clnt - > cl_maxproc , sizeof ( struct rpc_iostats ) , GFP_KERNEL ) ;
2006-03-20 21:44:22 +03:00
return new ;
}
2007-07-14 23:39:59 +04:00
EXPORT_SYMBOL_GPL ( rpc_alloc_iostats ) ;
2006-03-20 21:44:22 +03:00
/**
* rpc_free_iostats - release an rpc_iostats structure
* @ stats : doomed rpc_iostats structure
*
*/
void rpc_free_iostats ( struct rpc_iostats * stats )
{
kfree ( stats ) ;
}
2007-07-14 23:39:59 +04:00
EXPORT_SYMBOL_GPL ( rpc_free_iostats ) ;
2006-03-20 21:44:22 +03:00
/**
* rpc_count_iostats - tally up per - task stats
* @ task : completed rpc_task
*
* Relies on the caller for serialization .
*/
void rpc_count_iostats ( struct rpc_task * task )
{
struct rpc_rqst * req = task - > tk_rqstp ;
struct rpc_iostats * stats = task - > tk_client - > cl_metrics ;
struct rpc_iostats * op_metrics ;
long rtt , execute , queue ;
if ( ! stats | | ! req )
return ;
2006-03-20 21:44:22 +03:00
op_metrics = & stats [ task - > tk_msg . rpc_proc - > p_statidx ] ;
2006-03-20 21:44:22 +03:00
op_metrics - > om_ops + + ;
op_metrics - > om_ntrans + = req - > rq_ntrans ;
op_metrics - > om_timeouts + = task - > tk_timeouts ;
op_metrics - > om_bytes_sent + = task - > tk_bytes_sent ;
op_metrics - > om_bytes_recv + = req - > rq_received ;
queue = ( long ) req - > rq_xtime - task - > tk_start ;
if ( queue < 0 )
queue = - queue ;
op_metrics - > om_queue + = queue ;
rtt = task - > tk_rtt ;
if ( rtt < 0 )
rtt = - rtt ;
op_metrics - > om_rtt + = rtt ;
execute = ( long ) jiffies - task - > tk_start ;
if ( execute < 0 )
execute = - execute ;
op_metrics - > om_execute + = execute ;
}
2006-04-18 21:21:50 +04:00
static void _print_name ( struct seq_file * seq , unsigned int op ,
struct rpc_procinfo * procs )
2006-03-20 21:44:22 +03:00
{
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 ) ;
}
2006-03-20 21:44:42 +03:00
# define MILLISECS_PER_JIFFY (1000 / HZ)
2006-03-20 21:44:22 +03:00
void rpc_print_iostats ( struct seq_file * seq , struct rpc_clnt * clnt )
{
struct rpc_iostats * stats = clnt - > cl_metrics ;
struct rpc_xprt * xprt = clnt - > cl_xprt ;
unsigned int op , maxproc = clnt - > cl_maxproc ;
if ( ! stats )
return ;
seq_printf ( seq , " \t RPC iostats version: %s " , RPC_IOSTATS_VERS ) ;
seq_printf ( seq , " p/v: %u/%u (%s) \n " ,
clnt - > cl_prog , clnt - > cl_vers , clnt - > cl_protname ) ;
if ( xprt )
xprt - > ops - > print_stats ( xprt , seq ) ;
seq_printf ( seq , " \t per-op statistics \n " ) ;
for ( op = 0 ; op < maxproc ; op + + ) {
struct rpc_iostats * metrics = & stats [ op ] ;
2006-03-20 21:44:22 +03:00
_print_name ( seq , op , clnt - > cl_procinfo ) ;
2006-03-20 21:44:22 +03:00
seq_printf ( seq , " %lu %lu %lu %Lu %Lu %Lu %Lu %Lu \n " ,
metrics - > om_ops ,
metrics - > om_ntrans ,
metrics - > om_timeouts ,
metrics - > om_bytes_sent ,
metrics - > om_bytes_recv ,
metrics - > om_queue * MILLISECS_PER_JIFFY ,
metrics - > om_rtt * MILLISECS_PER_JIFFY ,
metrics - > om_execute * MILLISECS_PER_JIFFY ) ;
}
}
2007-07-14 23:39:59 +04:00
EXPORT_SYMBOL_GPL ( rpc_print_iostats ) ;
2006-03-20 21:44:22 +03:00
2005-04-17 02:20:36 +04:00
/*
* Register / unregister RPC proc files
*/
static inline struct proc_dir_entry *
2006-03-28 13:56:41 +04:00
do_register ( const char * name , void * data , const struct file_operations * fops )
2005-04-17 02:20:36 +04:00
{
rpc_proc_init ( ) ;
2007-01-31 20:14:08 +03:00
dprintk ( " RPC: registering /proc/net/rpc/%s \n " , name ) ;
2005-04-17 02:20:36 +04:00
2008-05-02 13:44:36 +04:00
return proc_create_data ( name , 0 , proc_net_rpc , fops , data ) ;
2005-04-17 02:20:36 +04:00
}
struct proc_dir_entry *
rpc_proc_register ( struct rpc_stat * statp )
{
return do_register ( statp - > program - > name , statp , & rpc_proc_fops ) ;
}
2007-07-14 23:39:59 +04:00
EXPORT_SYMBOL_GPL ( rpc_proc_register ) ;
2005-04-17 02:20:36 +04:00
void
rpc_proc_unregister ( const char * name )
{
remove_proc_entry ( name , proc_net_rpc ) ;
}
2007-07-14 23:39:59 +04:00
EXPORT_SYMBOL_GPL ( rpc_proc_unregister ) ;
2005-04-17 02:20:36 +04:00
struct proc_dir_entry *
2006-03-28 13:56:41 +04:00
svc_proc_register ( struct svc_stat * statp , const struct file_operations * fops )
2005-04-17 02:20:36 +04:00
{
return do_register ( statp - > program - > pg_name , statp , fops ) ;
}
2007-07-14 23:39:58 +04:00
EXPORT_SYMBOL ( svc_proc_register ) ;
2005-04-17 02:20:36 +04:00
void
svc_proc_unregister ( const char * name )
{
remove_proc_entry ( name , proc_net_rpc ) ;
}
2007-07-14 23:39:58 +04:00
EXPORT_SYMBOL ( svc_proc_unregister ) ;
2005-04-17 02:20:36 +04:00
void
rpc_proc_init ( void )
{
2007-01-31 20:14:08 +03:00
dprintk ( " RPC: registering /proc/net/rpc \n " ) ;
2005-04-17 02:20:36 +04:00
if ( ! proc_net_rpc ) {
struct proc_dir_entry * ent ;
2007-09-12 14:01:34 +04:00
ent = proc_mkdir ( " rpc " , init_net . proc_net ) ;
2005-04-17 02:20:36 +04:00
if ( ent ) {
ent - > owner = THIS_MODULE ;
proc_net_rpc = ent ;
}
}
}
void
rpc_proc_exit ( void )
{
2007-01-31 20:14:08 +03:00
dprintk ( " RPC: unregistering /proc/net/rpc \n " ) ;
2005-04-17 02:20:36 +04:00
if ( proc_net_rpc ) {
proc_net_rpc = NULL ;
2007-09-12 14:01:34 +04:00
remove_proc_entry ( " rpc " , init_net . proc_net ) ;
2005-04-17 02:20:36 +04:00
}
}