2 * linux/include/linux/sunrpc/clnt.h
4 * Declarations for the high-level RPC client interface
6 * Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de>
9 #ifndef _LINUX_SUNRPC_CLNT_H
10 #define _LINUX_SUNRPC_CLNT_H
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>
24 * The high-level client handle
27 struct kref cl_kref
; /* Number of references */
28 struct list_head cl_clients
; /* Global list of clients */
29 struct list_head cl_tasks
; /* List of tasks */
30 spinlock_t cl_lock
; /* spinlock */
31 struct rpc_xprt
* cl_xprt
; /* transport */
32 struct rpc_procinfo
* cl_procinfo
; /* procedure info */
33 u32 cl_prog
, /* RPC program number */
34 cl_vers
, /* RPC version number */
35 cl_maxproc
; /* max procedure number */
37 char * cl_server
; /* server machine name */
38 char * cl_protname
; /* protocol name */
39 struct rpc_auth
* cl_auth
; /* authenticator */
40 struct rpc_stat
* cl_stats
; /* per-program statistics */
41 struct rpc_iostats
* cl_metrics
; /* per-client statistics */
43 unsigned int cl_softrtry
: 1,/* soft timeouts */
44 cl_discrtry
: 1,/* disconnect before retry */
45 cl_autobind
: 1;/* use getport() */
47 struct rpc_rtt
* cl_rtt
; /* RTO estimator data */
48 const struct rpc_timeout
*cl_timeout
; /* Timeout strategy */
50 int cl_nodelen
; /* nodename length */
51 char cl_nodename
[UNX_MAXNODENAME
];
52 char cl_pathname
[30];/* Path in rpc_pipe_fs */
53 struct vfsmount
* cl_vfsmnt
;
54 struct dentry
* cl_dentry
; /* inode */
55 struct rpc_clnt
* cl_parent
; /* Points to parent of clones */
56 struct rpc_rtt cl_rtt_default
;
57 struct rpc_timeout cl_timeout_default
;
58 struct rpc_program
* cl_program
;
59 char cl_inline_name
[32];
63 * General RPC program info
65 #define RPC_MAXVERSION 4
67 char * name
; /* protocol name */
68 u32 number
; /* program number */
69 unsigned int nrvers
; /* number of versions */
70 struct rpc_version
** version
; /* version array */
71 struct rpc_stat
* stats
; /* statistics */
72 char * pipe_dir_name
; /* path to rpc_pipefs dir */
76 u32 number
; /* version number */
77 unsigned int nrprocs
; /* number of procs */
78 struct rpc_procinfo
* procs
; /* procedure array */
82 * Procedure information
85 u32 p_proc
; /* RPC procedure number */
86 kxdrproc_t p_encode
; /* XDR encode function */
87 kxdrproc_t p_decode
; /* XDR decode function */
88 unsigned int p_arglen
; /* argument hdr length (u32) */
89 unsigned int p_replen
; /* reply hdr length (u32) */
90 unsigned int p_count
; /* call count */
91 unsigned int p_timer
; /* Which RTT timer to use */
92 u32 p_statidx
; /* Which procedure to account */
93 char * p_name
; /* name of procedure */
98 struct rpc_create_args
{
100 struct sockaddr
*address
;
102 struct sockaddr
*saddress
;
103 const struct rpc_timeout
*timeout
;
105 struct rpc_program
*program
;
107 rpc_authflavor_t authflavor
;
111 /* Values for "flags" field */
112 #define RPC_CLNT_CREATE_HARDRTRY (1UL << 0)
113 #define RPC_CLNT_CREATE_AUTOBIND (1UL << 2)
114 #define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3)
115 #define RPC_CLNT_CREATE_NOPING (1UL << 4)
116 #define RPC_CLNT_CREATE_DISCRTRY (1UL << 5)
118 struct rpc_clnt
*rpc_create(struct rpc_create_args
*args
);
119 struct rpc_clnt
*rpc_bind_new_program(struct rpc_clnt
*,
120 struct rpc_program
*, u32
);
121 struct rpc_clnt
*rpc_clone_client(struct rpc_clnt
*);
122 void rpc_shutdown_client(struct rpc_clnt
*);
123 void rpc_release_client(struct rpc_clnt
*);
125 int rpcb_register(u32
, u32
, int, unsigned short, int *);
126 int rpcb_getport_sync(struct sockaddr_in
*, u32
, u32
, int);
127 void rpcb_getport_async(struct rpc_task
*);
129 void rpc_call_start(struct rpc_task
*);
130 int rpc_call_async(struct rpc_clnt
*clnt
, struct rpc_message
*msg
,
131 int flags
, const struct rpc_call_ops
*tk_ops
,
133 int rpc_call_sync(struct rpc_clnt
*clnt
, struct rpc_message
*msg
,
135 struct rpc_task
*rpc_call_null(struct rpc_clnt
*clnt
, struct rpc_cred
*cred
,
137 void rpc_restart_call(struct rpc_task
*);
138 void rpc_setbufsize(struct rpc_clnt
*, unsigned int, unsigned int);
139 size_t rpc_max_payload(struct rpc_clnt
*);
140 void rpc_force_rebind(struct rpc_clnt
*);
141 size_t rpc_peeraddr(struct rpc_clnt
*, struct sockaddr
*, size_t);
142 const char *rpc_peeraddr2str(struct rpc_clnt
*, enum rpc_display_format_t
);
144 #endif /* __KERNEL__ */
145 #endif /* _LINUX_SUNRPC_CLNT_H */