blob: 37881f1a0bd70af99e72302f408adfaf7b4cb30d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/linux/sunrpc/clnt.h
3 *
4 * Declarations for the high-level RPC client interface
5 *
6 * Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef _LINUX_SUNRPC_CLNT_H
10#define _LINUX_SUNRPC_CLNT_H
11
12#include <linux/sunrpc/msg_prot.h>
13#include <linux/sunrpc/sched.h>
14#include <linux/sunrpc/xprt.h>
15#include <linux/sunrpc/auth.h>
16#include <linux/sunrpc/stats.h>
17#include <linux/sunrpc/xdr.h>
18#include <linux/sunrpc/timer.h>
19#include <asm/signal.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct rpc_inode;
22
23/*
24 * The high-level client handle
25 */
26struct rpc_clnt {
Trond Myklebust34f52e32007-06-14 16:40:31 -040027 struct kref cl_kref; /* Number of references */
Trond Myklebust6529eba2007-06-14 16:40:14 -040028 struct list_head cl_clients; /* Global list of clients */
29 struct list_head cl_tasks; /* List of tasks */
Trond Myklebust4bef61f2007-06-16 14:17:01 -040030 spinlock_t cl_lock; /* spinlock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct rpc_xprt * cl_xprt; /* transport */
32 struct rpc_procinfo * cl_procinfo; /* procedure info */
Chuck Lever4a681792006-08-22 20:06:15 -040033 u32 cl_prog, /* RPC program number */
34 cl_vers, /* RPC version number */
35 cl_maxproc; /* max procedure number */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 char * cl_server; /* server machine name */
38 char * cl_protname; /* protocol name */
39 struct rpc_auth * cl_auth; /* authenticator */
Chuck Lever11c556b2006-03-20 13:44:22 -050040 struct rpc_stat * cl_stats; /* per-program statistics */
41 struct rpc_iostats * cl_metrics; /* per-client statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 unsigned int cl_softrtry : 1,/* soft timeouts */
Chuck Lever43d78ef2007-02-06 18:26:11 -050044 cl_discrtry : 1,/* disconnect before retry */
Olga Kornievskaiab6b61522008-06-09 16:51:31 -040045 cl_autobind : 1,/* use getport() */
46 cl_chatty : 1;/* be verbose */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 struct rpc_rtt * cl_rtt; /* RTO estimator data */
Trond Myklebustba7392b2007-12-20 16:03:55 -050049 const struct rpc_timeout *cl_timeout; /* Timeout strategy */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 int cl_nodelen; /* nodename length */
52 char cl_nodename[UNX_MAXNODENAME];
53 char cl_pathname[30];/* Path in rpc_pipe_fs */
Trond Myklebust54281542006-03-20 13:44:49 -050054 struct vfsmount * cl_vfsmnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 struct dentry * cl_dentry; /* inode */
56 struct rpc_clnt * cl_parent; /* Points to parent of clones */
57 struct rpc_rtt cl_rtt_default;
Trond Myklebustba7392b2007-12-20 16:03:55 -050058 struct rpc_timeout cl_timeout_default;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -050059 struct rpc_program * cl_program;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 char cl_inline_name[32];
Olga Kornievskaia608207e2008-12-23 16:17:40 -050061 char *cl_principal; /* target to authenticate to */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * General RPC program info
66 */
67#define RPC_MAXVERSION 4
68struct rpc_program {
69 char * name; /* protocol name */
70 u32 number; /* program number */
71 unsigned int nrvers; /* number of versions */
72 struct rpc_version ** version; /* version array */
73 struct rpc_stat * stats; /* statistics */
74 char * pipe_dir_name; /* path to rpc_pipefs dir */
75};
76
77struct rpc_version {
78 u32 number; /* version number */
79 unsigned int nrprocs; /* number of procs */
80 struct rpc_procinfo * procs; /* procedure array */
81};
82
83/*
84 * Procedure information
85 */
86struct rpc_procinfo {
87 u32 p_proc; /* RPC procedure number */
88 kxdrproc_t p_encode; /* XDR encode function */
89 kxdrproc_t p_decode; /* XDR decode function */
Chuck Lever2bea90d2007-03-29 16:47:53 -040090 unsigned int p_arglen; /* argument hdr length (u32) */
91 unsigned int p_replen; /* reply hdr length (u32) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned int p_count; /* call count */
93 unsigned int p_timer; /* Which RTT timer to use */
Chuck Levercc0175c2006-03-20 13:44:22 -050094 u32 p_statidx; /* Which procedure to account */
95 char * p_name; /* name of procedure */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#ifdef __KERNEL__
99
Chuck Leverc2866762006-08-22 20:06:20 -0400100struct rpc_create_args {
101 int protocol;
102 struct sockaddr *address;
103 size_t addrsize;
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +0200104 struct sockaddr *saddress;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500105 const struct rpc_timeout *timeout;
Chuck Leverc2866762006-08-22 20:06:20 -0400106 char *servername;
107 struct rpc_program *program;
Benny Halevyd5b337b2008-09-28 09:21:26 +0300108 u32 prognumber; /* overrides program->number */
Chuck Leverc2866762006-08-22 20:06:20 -0400109 u32 version;
110 rpc_authflavor_t authflavor;
111 unsigned long flags;
Olga Kornievskaia608207e2008-12-23 16:17:40 -0500112 char *client_name;
Chuck Leverc2866762006-08-22 20:06:20 -0400113};
114
115/* Values for "flags" field */
116#define RPC_CLNT_CREATE_HARDRTRY (1UL << 0)
Chuck Leverc2866762006-08-22 20:06:20 -0400117#define RPC_CLNT_CREATE_AUTOBIND (1UL << 2)
Trond Myklebust90c57552007-06-09 19:49:36 -0400118#define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3)
119#define RPC_CLNT_CREATE_NOPING (1UL << 4)
120#define RPC_CLNT_CREATE_DISCRTRY (1UL << 5)
Olga Kornievskaiab6b61522008-06-09 16:51:31 -0400121#define RPC_CLNT_CREATE_QUIET (1UL << 6)
Chuck Leverc2866762006-08-22 20:06:20 -0400122
123struct rpc_clnt *rpc_create(struct rpc_create_args *args);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000124struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *,
Chuck Lever89eb21c2007-09-11 18:00:09 -0400125 struct rpc_program *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126struct rpc_clnt *rpc_clone_client(struct rpc_clnt *);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400127void rpc_shutdown_client(struct rpc_clnt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128void rpc_release_client(struct rpc_clnt *);
Chuck Levercce63cd2007-07-01 12:13:12 -0400129
Chuck Lever14aeb212008-08-18 19:34:00 -0400130int rpcb_register(u32, u32, int, unsigned short);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400131int rpcb_v4_register(const u32 program, const u32 version,
132 const struct sockaddr *address,
Chuck Lever14aeb212008-08-18 19:34:00 -0400133 const char *netid);
Chuck Leverf1ec08c2008-01-14 15:11:53 -0500134int rpcb_getport_sync(struct sockaddr_in *, u32, u32, int);
Chuck Lever45160d62007-07-01 12:13:17 -0400135void rpcb_getport_async(struct rpc_task *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Trond Myklebust77de2c52007-10-25 18:40:21 -0400137void rpc_call_start(struct rpc_task *);
Trond Myklebustcbc20052008-02-14 11:11:30 -0500138int rpc_call_async(struct rpc_clnt *clnt,
139 const struct rpc_message *msg, int flags,
140 const struct rpc_call_ops *tk_ops,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100141 void *calldata);
Trond Myklebustcbc20052008-02-14 11:11:30 -0500142int rpc_call_sync(struct rpc_clnt *clnt,
143 const struct rpc_message *msg, int flags);
Trond Myklebust5e1550d2007-06-23 10:17:16 -0400144struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
145 int flags);
Andy Adamsonaae20062009-04-01 09:22:40 -0400146void rpc_restart_call_prepare(struct rpc_task *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147void rpc_restart_call(struct rpc_task *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int);
149size_t rpc_max_payload(struct rpc_clnt *);
Chuck Lever35f5a422006-01-03 09:55:50 +0100150void rpc_force_rebind(struct rpc_clnt *);
Chuck Levered394402006-08-22 20:06:17 -0400151size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t);
Chuck Leverb454ae92008-01-07 18:34:48 -0500152const char *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif /* __KERNEL__ */
155#endif /* _LINUX_SUNRPC_CLNT_H */