clnt.h 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 *  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

T
Trond Myklebust 已提交
12
#include <linux/types.h>
13 14 15 16
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/in6.h>

L
Linus Torvalds 已提交
17 18 19 20 21 22 23
#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>
24
#include <linux/sunrpc/rpc_pipe_fs.h>
L
Linus Torvalds 已提交
25
#include <asm/signal.h>
26
#include <linux/path.h>
27
#include <net/ipv6.h>
28
#include <linux/sunrpc/xprtmultipath.h>
L
Linus Torvalds 已提交
29 30 31 32 33 34 35

struct rpc_inode;

/*
 * The high-level client handle
 */
struct rpc_clnt {
36
	atomic_t		cl_count;	/* Number of references */
37
	unsigned int		cl_clid;	/* client id */
38 39
	struct list_head	cl_clients;	/* Global list of clients */
	struct list_head	cl_tasks;	/* List of tasks */
40
	spinlock_t		cl_lock;	/* spinlock */
41
	struct rpc_xprt __rcu *	cl_xprt;	/* transport */
42
	const struct rpc_procinfo *cl_procinfo;	/* procedure info */
43 44 45
	u32			cl_prog,	/* RPC program number */
				cl_vers,	/* RPC version number */
				cl_maxproc;	/* max procedure number */
L
Linus Torvalds 已提交
46 47

	struct rpc_auth *	cl_auth;	/* authenticator */
48 49
	struct rpc_stat *	cl_stats;	/* per-program statistics */
	struct rpc_iostats *	cl_metrics;	/* per-client statistics */
L
Linus Torvalds 已提交
50 51

	unsigned int		cl_softrtry : 1,/* soft timeouts */
52
				cl_discrtry : 1,/* disconnect before retry */
53
				cl_noretranstimeo: 1,/* No retransmit timeouts */
O
Olga Kornievskaia 已提交
54 55
				cl_autobind : 1,/* use getport() */
				cl_chatty   : 1;/* be verbose */
L
Linus Torvalds 已提交
56 57

	struct rpc_rtt *	cl_rtt;		/* RTO estimator data */
58
	const struct rpc_timeout *cl_timeout;	/* Timeout strategy */
L
Linus Torvalds 已提交
59

60
	atomic_t		cl_swapper;	/* swapfile count */
L
Linus Torvalds 已提交
61
	int			cl_nodelen;	/* nodename length */
62
	char 			cl_nodename[UNX_MAXNODENAME+1];
63
	struct rpc_pipe_dir_head cl_pipedir_objects;
L
Linus Torvalds 已提交
64 65
	struct rpc_clnt *	cl_parent;	/* Points to parent of clones */
	struct rpc_rtt		cl_rtt_default;
66
	struct rpc_timeout	cl_timeout_default;
67
	const struct rpc_program *cl_program;
68 69 70
#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
	struct dentry		*cl_debugfs;	/* debugfs directory */
#endif
71
	struct rpc_xprt_iter	cl_xpi;
L
Linus Torvalds 已提交
72 73 74 75 76 77 78
};

/*
 * General RPC program info
 */
#define RPC_MAXVERSION		4
struct rpc_program {
79
	const char *		name;		/* protocol name */
L
Linus Torvalds 已提交
80 81
	u32			number;		/* program number */
	unsigned int		nrvers;		/* number of versions */
82
	const struct rpc_version **	version;	/* version array */
L
Linus Torvalds 已提交
83
	struct rpc_stat *	stats;		/* statistics */
84
	const char *		pipe_dir_name;	/* path to rpc_pipefs dir */
L
Linus Torvalds 已提交
85 86 87 88 89
};

struct rpc_version {
	u32			number;		/* version number */
	unsigned int		nrprocs;	/* number of procs */
90
	const struct rpc_procinfo *procs;	/* procedure array */
91
	unsigned int		*counts;	/* call counts */
L
Linus Torvalds 已提交
92 93 94 95 96 97 98
};

/*
 * Procedure information
 */
struct rpc_procinfo {
	u32			p_proc;		/* RPC procedure number */
99
	kxdreproc_t		p_encode;	/* XDR encode function */
100
	kxdrdproc_t		p_decode;	/* XDR decode function */
101 102
	unsigned int		p_arglen;	/* argument hdr length (u32) */
	unsigned int		p_replen;	/* reply hdr length (u32) */
L
Linus Torvalds 已提交
103
	unsigned int		p_timer;	/* Which RTT timer to use */
104
	u32			p_statidx;	/* Which procedure to account */
105
	const char *		p_name;		/* name of procedure */
L
Linus Torvalds 已提交
106 107 108 109
};

#ifdef __KERNEL__

110
struct rpc_create_args {
111
	struct net		*net;
112 113 114
	int			protocol;
	struct sockaddr		*address;
	size_t			addrsize;
115
	struct sockaddr		*saddress;
116
	const struct rpc_timeout *timeout;
117
	const char		*servername;
118
	const char		*nodename;
119
	const struct rpc_program *program;
120
	u32			prognumber;	/* overrides program->number */
121 122 123
	u32			version;
	rpc_authflavor_t	authflavor;
	unsigned long		flags;
124
	char			*client_name;
125
	struct svc_xprt		*bc_xprt;	/* NFSv4.1 backchannel */
126 127
};

128 129 130 131 132 133 134
struct rpc_add_xprt_test {
	int (*add_xprt_test)(struct rpc_clnt *,
		struct rpc_xprt *,
		void *calldata);
	void *data;
};

135 136 137
/* Values for "flags" field */
#define RPC_CLNT_CREATE_HARDRTRY	(1UL << 0)
#define RPC_CLNT_CREATE_AUTOBIND	(1UL << 2)
138 139 140
#define RPC_CLNT_CREATE_NONPRIVPORT	(1UL << 3)
#define RPC_CLNT_CREATE_NOPING		(1UL << 4)
#define RPC_CLNT_CREATE_DISCRTRY	(1UL << 5)
O
Olga Kornievskaia 已提交
141
#define RPC_CLNT_CREATE_QUIET		(1UL << 6)
142
#define RPC_CLNT_CREATE_INFINITE_SLOTS	(1UL << 7)
143
#define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT	(1UL << 8)
144
#define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT	(1UL << 9)
145 146

struct rpc_clnt *rpc_create(struct rpc_create_args *args);
147
struct rpc_clnt	*rpc_bind_new_program(struct rpc_clnt *,
148
				const struct rpc_program *, u32);
L
Linus Torvalds 已提交
149
struct rpc_clnt *rpc_clone_client(struct rpc_clnt *);
150 151
struct rpc_clnt *rpc_clone_client_set_auth(struct rpc_clnt *,
				rpc_authflavor_t);
152 153 154 155
int		rpc_switch_client_transport(struct rpc_clnt *,
				struct xprt_create *,
				const struct rpc_timeout *);

156
void		rpc_shutdown_client(struct rpc_clnt *);
L
Linus Torvalds 已提交
157
void		rpc_release_client(struct rpc_clnt *);
158
void		rpc_task_release_client(struct rpc_task *);
159

160 161
int		rpcb_create_local(struct net *);
void		rpcb_put_local(struct net *);
162 163 164
int		rpcb_register(struct net *, u32, u32, int, unsigned short);
int		rpcb_v4_register(struct net *net, const u32 program,
				 const u32 version,
165
				 const struct sockaddr *address,
166
				 const char *netid);
167
void		rpcb_getport_async(struct rpc_task *);
L
Linus Torvalds 已提交
168

169
void		rpc_call_start(struct rpc_task *);
170 171 172
int		rpc_call_async(struct rpc_clnt *clnt,
			       const struct rpc_message *msg, int flags,
			       const struct rpc_call_ops *tk_ops,
173
			       void *calldata);
174 175
int		rpc_call_sync(struct rpc_clnt *clnt,
			      const struct rpc_message *msg, int flags);
176 177
struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
			       int flags);
178 179
int		rpc_restart_call_prepare(struct rpc_task *);
int		rpc_restart_call(struct rpc_task *);
L
Linus Torvalds 已提交
180
void		rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int);
181 182
int		rpc_protocol(struct rpc_clnt *);
struct net *	rpc_net_ns(struct rpc_clnt *);
L
Linus Torvalds 已提交
183
size_t		rpc_max_payload(struct rpc_clnt *);
184
size_t		rpc_max_bc_payload(struct rpc_clnt *);
185
void		rpc_force_rebind(struct rpc_clnt *);
186
size_t		rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t);
187
const char	*rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t);
188
int		rpc_localaddr(struct rpc_clnt *, struct sockaddr *, size_t);
L
Linus Torvalds 已提交
189

190 191 192 193
int 		rpc_clnt_iterate_for_each_xprt(struct rpc_clnt *clnt,
			int (*fn)(struct rpc_clnt *, struct rpc_xprt *, void *),
			void *data);

194 195 196 197 198 199 200 201 202 203
int 		rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt,
			struct rpc_xprt_switch *xps,
			struct rpc_xprt *xprt,
			void *dummy);
int		rpc_clnt_add_xprt(struct rpc_clnt *, struct xprt_create *,
			int (*setup)(struct rpc_clnt *,
				struct rpc_xprt_switch *,
				struct rpc_xprt *,
				void *),
			void *data);
204 205 206
void		rpc_set_connect_timeout(struct rpc_clnt *clnt,
			unsigned long connect_timeout,
			unsigned long reconnect_timeout);
207

208 209 210 211 212
int		rpc_clnt_setup_test_and_add_xprt(struct rpc_clnt *,
			struct rpc_xprt_switch *,
			struct rpc_xprt *,
			void *);

213
const char *rpc_proc_name(const struct rpc_task *task);
A
Andy Adamson 已提交
214 215

void rpc_clnt_xprt_switch_put(struct rpc_clnt *);
216
void rpc_clnt_xprt_switch_add_xprt(struct rpc_clnt *, struct rpc_xprt *);
217 218
bool rpc_clnt_xprt_switch_has_addr(struct rpc_clnt *clnt,
			const struct sockaddr *sap);
219
void rpc_cleanup_clids(void);
L
Linus Torvalds 已提交
220 221
#endif /* __KERNEL__ */
#endif /* _LINUX_SUNRPC_CLNT_H */