2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/include/linux/sunrpc/clnt.h
|
|
|
|
*
|
|
|
|
* Declarations for the high-level RPC client interface
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_SUNRPC_CLNT_H
|
|
|
|
#define _LINUX_SUNRPC_CLNT_H
|
|
|
|
|
2011-10-18 07:08:10 +08:00
|
|
|
#include <linux/types.h>
|
2009-08-10 03:09:34 +08:00
|
|
|
#include <linux/socket.h>
|
|
|
|
#include <linux/in.h>
|
|
|
|
#include <linux/in6.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/sunrpc/msg_prot.h>
|
|
|
|
#include <linux/sunrpc/sched.h>
|
|
|
|
#include <linux/sunrpc/xprt.h>
|
|
|
|
#include <linux/sunrpc/auth.h>
|
|
|
|
#include <linux/sunrpc/stats.h>
|
|
|
|
#include <linux/sunrpc/xdr.h>
|
|
|
|
#include <linux/sunrpc/timer.h>
|
2013-08-27 03:38:11 +08:00
|
|
|
#include <linux/sunrpc/rpc_pipe_fs.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/signal.h>
|
2009-08-10 03:14:24 +08:00
|
|
|
#include <linux/path.h>
|
2009-08-15 00:57:54 +08:00
|
|
|
#include <net/ipv6.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct rpc_inode;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The high-level client handle
|
|
|
|
*/
|
|
|
|
struct rpc_clnt {
|
2010-09-13 07:55:25 +08:00
|
|
|
atomic_t cl_count; /* Number of references */
|
2013-09-05 09:51:44 +08:00
|
|
|
unsigned int cl_clid; /* client id */
|
2007-06-15 04:40:14 +08:00
|
|
|
struct list_head cl_clients; /* Global list of clients */
|
|
|
|
struct list_head cl_tasks; /* List of tasks */
|
2007-06-17 02:17:01 +08:00
|
|
|
spinlock_t cl_lock; /* spinlock */
|
2012-03-02 06:00:56 +08:00
|
|
|
struct rpc_xprt __rcu * cl_xprt; /* transport */
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_procinfo * cl_procinfo; /* procedure info */
|
2006-08-23 08:06:15 +08:00
|
|
|
u32 cl_prog, /* RPC program number */
|
|
|
|
cl_vers, /* RPC version number */
|
|
|
|
cl_maxproc; /* max procedure number */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct rpc_auth * cl_auth; /* authenticator */
|
2006-03-21 02:44:22 +08:00
|
|
|
struct rpc_stat * cl_stats; /* per-program statistics */
|
|
|
|
struct rpc_iostats * cl_metrics; /* per-client statistics */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
unsigned int cl_softrtry : 1,/* soft timeouts */
|
2007-02-07 07:26:11 +08:00
|
|
|
cl_discrtry : 1,/* disconnect before retry */
|
2013-09-25 00:00:27 +08:00
|
|
|
cl_noretranstimeo: 1,/* No retransmit timeouts */
|
2008-06-10 04:51:31 +08:00
|
|
|
cl_autobind : 1,/* use getport() */
|
|
|
|
cl_chatty : 1;/* be verbose */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct rpc_rtt * cl_rtt; /* RTO estimator data */
|
2007-12-21 05:03:55 +08:00
|
|
|
const struct rpc_timeout *cl_timeout; /* Timeout strategy */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
int cl_nodelen; /* nodename length */
|
|
|
|
char cl_nodename[UNX_MAXNODENAME];
|
2013-08-27 03:38:11 +08:00
|
|
|
struct rpc_pipe_dir_head cl_pipedir_objects;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_clnt * cl_parent; /* Points to parent of clones */
|
|
|
|
struct rpc_rtt cl_rtt_default;
|
2007-12-21 05:03:55 +08:00
|
|
|
struct rpc_timeout cl_timeout_default;
|
2012-01-21 02:53:56 +08:00
|
|
|
const struct rpc_program *cl_program;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* General RPC program info
|
|
|
|
*/
|
|
|
|
#define RPC_MAXVERSION 4
|
|
|
|
struct rpc_program {
|
2012-01-21 02:53:56 +08:00
|
|
|
const char * name; /* protocol name */
|
2005-04-17 06:20:36 +08:00
|
|
|
u32 number; /* program number */
|
|
|
|
unsigned int nrvers; /* number of versions */
|
2012-01-21 02:53:56 +08:00
|
|
|
const struct rpc_version ** version; /* version array */
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_stat * stats; /* statistics */
|
2012-01-21 02:53:56 +08:00
|
|
|
const char * pipe_dir_name; /* path to rpc_pipefs dir */
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct rpc_version {
|
|
|
|
u32 number; /* version number */
|
|
|
|
unsigned int nrprocs; /* number of procs */
|
|
|
|
struct rpc_procinfo * procs; /* procedure array */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Procedure information
|
|
|
|
*/
|
|
|
|
struct rpc_procinfo {
|
|
|
|
u32 p_proc; /* RPC procedure number */
|
2010-12-14 22:59:18 +08:00
|
|
|
kxdreproc_t p_encode; /* XDR encode function */
|
2010-12-14 22:59:29 +08:00
|
|
|
kxdrdproc_t p_decode; /* XDR decode function */
|
2007-03-30 04:47:53 +08:00
|
|
|
unsigned int p_arglen; /* argument hdr length (u32) */
|
|
|
|
unsigned int p_replen; /* reply hdr length (u32) */
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned int p_count; /* call count */
|
|
|
|
unsigned int p_timer; /* Which RTT timer to use */
|
2006-03-21 02:44:22 +08:00
|
|
|
u32 p_statidx; /* Which procedure to account */
|
2012-01-21 02:53:37 +08:00
|
|
|
const char * p_name; /* name of procedure */
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2006-08-23 08:06:20 +08:00
|
|
|
struct rpc_create_args {
|
2010-09-29 20:04:45 +08:00
|
|
|
struct net *net;
|
2006-08-23 08:06:20 +08:00
|
|
|
int protocol;
|
|
|
|
struct sockaddr *address;
|
|
|
|
size_t addrsize;
|
2007-07-10 04:23:35 +08:00
|
|
|
struct sockaddr *saddress;
|
2007-12-21 05:03:55 +08:00
|
|
|
const struct rpc_timeout *timeout;
|
2012-01-21 02:53:37 +08:00
|
|
|
const char *servername;
|
2012-01-21 02:53:56 +08:00
|
|
|
const struct rpc_program *program;
|
2008-09-28 14:21:26 +08:00
|
|
|
u32 prognumber; /* overrides program->number */
|
2006-08-23 08:06:20 +08:00
|
|
|
u32 version;
|
|
|
|
rpc_authflavor_t authflavor;
|
|
|
|
unsigned long flags;
|
2008-12-24 05:17:40 +08:00
|
|
|
char *client_name;
|
2009-09-10 22:33:30 +08:00
|
|
|
struct svc_xprt *bc_xprt; /* NFSv4.1 backchannel */
|
2006-08-23 08:06:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Values for "flags" field */
|
|
|
|
#define RPC_CLNT_CREATE_HARDRTRY (1UL << 0)
|
|
|
|
#define RPC_CLNT_CREATE_AUTOBIND (1UL << 2)
|
2007-06-10 07:49:36 +08:00
|
|
|
#define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3)
|
|
|
|
#define RPC_CLNT_CREATE_NOPING (1UL << 4)
|
|
|
|
#define RPC_CLNT_CREATE_DISCRTRY (1UL << 5)
|
2008-06-10 04:51:31 +08:00
|
|
|
#define RPC_CLNT_CREATE_QUIET (1UL << 6)
|
2013-04-14 23:42:00 +08:00
|
|
|
#define RPC_CLNT_CREATE_INFINITE_SLOTS (1UL << 7)
|
2013-04-12 03:06:36 +08:00
|
|
|
#define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT (1UL << 8)
|
2013-09-25 00:00:27 +08:00
|
|
|
#define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (1UL << 9)
|
2006-08-23 08:06:20 +08:00
|
|
|
|
|
|
|
struct rpc_clnt *rpc_create(struct rpc_create_args *args);
|
2014-03-24 11:58:59 +08:00
|
|
|
struct rpc_clnt *rpc_create_xprt(struct rpc_create_args *args,
|
|
|
|
struct rpc_xprt *xprt);
|
2005-06-23 01:16:23 +08:00
|
|
|
struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *,
|
2012-01-21 02:53:56 +08:00
|
|
|
const struct rpc_program *, u32);
|
2011-03-01 09:34:20 +08:00
|
|
|
void rpc_task_reset_client(struct rpc_task *task, struct rpc_clnt *clnt);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_clnt *rpc_clone_client(struct rpc_clnt *);
|
2012-09-15 05:24:02 +08:00
|
|
|
struct rpc_clnt *rpc_clone_client_set_auth(struct rpc_clnt *,
|
|
|
|
rpc_authflavor_t);
|
2013-10-18 02:12:23 +08:00
|
|
|
int rpc_switch_client_transport(struct rpc_clnt *,
|
|
|
|
struct xprt_create *,
|
|
|
|
const struct rpc_timeout *);
|
|
|
|
|
2007-06-15 04:40:32 +08:00
|
|
|
void rpc_shutdown_client(struct rpc_clnt *);
|
2005-04-17 06:20:36 +08:00
|
|
|
void rpc_release_client(struct rpc_clnt *);
|
2010-08-01 02:29:08 +08:00
|
|
|
void rpc_task_release_client(struct rpc_task *);
|
2007-07-02 00:13:12 +08:00
|
|
|
|
2012-01-13 16:52:51 +08:00
|
|
|
int rpcb_create_local(struct net *);
|
|
|
|
void rpcb_put_local(struct net *);
|
2012-01-13 16:52:43 +08:00
|
|
|
int rpcb_register(struct net *, u32, u32, int, unsigned short);
|
|
|
|
int rpcb_v4_register(struct net *net, const u32 program,
|
|
|
|
const u32 version,
|
2008-07-15 04:03:30 +08:00
|
|
|
const struct sockaddr *address,
|
2008-08-19 07:34:00 +08:00
|
|
|
const char *netid);
|
2007-07-02 00:13:17 +08:00
|
|
|
void rpcb_getport_async(struct rpc_task *);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-26 06:40:21 +08:00
|
|
|
void rpc_call_start(struct rpc_task *);
|
2008-02-15 00:11:30 +08:00
|
|
|
int rpc_call_async(struct rpc_clnt *clnt,
|
|
|
|
const struct rpc_message *msg, int flags,
|
|
|
|
const struct rpc_call_ops *tk_ops,
|
2006-01-03 16:55:04 +08:00
|
|
|
void *calldata);
|
2008-02-15 00:11:30 +08:00
|
|
|
int rpc_call_sync(struct rpc_clnt *clnt,
|
|
|
|
const struct rpc_message *msg, int flags);
|
2007-06-23 22:17:16 +08:00
|
|
|
struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
|
|
|
|
int flags);
|
2010-08-01 02:29:07 +08:00
|
|
|
int rpc_restart_call_prepare(struct rpc_task *);
|
|
|
|
int rpc_restart_call(struct rpc_task *);
|
2005-04-17 06:20:36 +08:00
|
|
|
void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int);
|
2012-03-02 06:00:56 +08:00
|
|
|
int rpc_protocol(struct rpc_clnt *);
|
|
|
|
struct net * rpc_net_ns(struct rpc_clnt *);
|
2005-04-17 06:20:36 +08:00
|
|
|
size_t rpc_max_payload(struct rpc_clnt *);
|
2013-03-01 09:30:09 +08:00
|
|
|
unsigned long rpc_get_timeout(struct rpc_clnt *clnt);
|
2006-01-03 16:55:50 +08:00
|
|
|
void rpc_force_rebind(struct rpc_clnt *);
|
2006-08-23 08:06:17 +08:00
|
|
|
size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t);
|
2008-01-08 07:34:48 +08:00
|
|
|
const char *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t);
|
2012-03-02 06:01:14 +08:00
|
|
|
int rpc_localaddr(struct rpc_clnt *, struct sockaddr *, size_t);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _LINUX_SUNRPC_CLNT_H */
|