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/types.h>
13 #include <linux/socket.h>
15 #include <linux/in6.h>
17 #include <linux/sunrpc/msg_prot.h>
18 #include <linux/sunrpc/sched.h>
19 #include <linux/sunrpc/xprt.h>
20 #include <linux/sunrpc/auth.h>
21 #include <linux/sunrpc/stats.h>
22 #include <linux/sunrpc/xdr.h>
23 #include <linux/sunrpc/timer.h>
24 #include <asm/signal.h>
25 #include <linux/path.h>
31 * The high-level client handle
34 atomic_t cl_count
; /* Number of references */
35 struct list_head cl_clients
; /* Global list of clients */
36 struct list_head cl_tasks
; /* List of tasks */
37 spinlock_t cl_lock
; /* spinlock */
38 struct rpc_xprt
* cl_xprt
; /* transport */
39 struct rpc_procinfo
* cl_procinfo
; /* procedure info */
40 u32 cl_prog
, /* RPC program number */
41 cl_vers
, /* RPC version number */
42 cl_maxproc
; /* max procedure number */
44 char * cl_server
; /* server machine name */
45 char * cl_protname
; /* protocol name */
46 struct rpc_auth
* cl_auth
; /* authenticator */
47 struct rpc_stat
* cl_stats
; /* per-program statistics */
48 struct rpc_iostats
* cl_metrics
; /* per-client statistics */
50 unsigned int cl_softrtry
: 1,/* soft timeouts */
51 cl_discrtry
: 1,/* disconnect before retry */
52 cl_autobind
: 1,/* use getport() */
53 cl_chatty
: 1;/* be verbose */
55 struct rpc_rtt
* cl_rtt
; /* RTO estimator data */
56 const struct rpc_timeout
*cl_timeout
; /* Timeout strategy */
58 int cl_nodelen
; /* nodename length */
59 char cl_nodename
[UNX_MAXNODENAME
];
61 struct rpc_clnt
* cl_parent
; /* Points to parent of clones */
62 struct rpc_rtt cl_rtt_default
;
63 struct rpc_timeout cl_timeout_default
;
64 struct rpc_program
* cl_program
;
65 char cl_inline_name
[32];
66 char *cl_principal
; /* target to authenticate to */
70 * General RPC program info
72 #define RPC_MAXVERSION 4
74 char * name
; /* protocol name */
75 u32 number
; /* program number */
76 unsigned int nrvers
; /* number of versions */
77 struct rpc_version
** version
; /* version array */
78 struct rpc_stat
* stats
; /* statistics */
79 char * pipe_dir_name
; /* path to rpc_pipefs dir */
83 u32 number
; /* version number */
84 unsigned int nrprocs
; /* number of procs */
85 struct rpc_procinfo
* procs
; /* procedure array */
89 * Procedure information
92 u32 p_proc
; /* RPC procedure number */
93 kxdreproc_t p_encode
; /* XDR encode function */
94 kxdrdproc_t p_decode
; /* XDR decode function */
95 unsigned int p_arglen
; /* argument hdr length (u32) */
96 unsigned int p_replen
; /* reply hdr length (u32) */
97 unsigned int p_count
; /* call count */
98 unsigned int p_timer
; /* Which RTT timer to use */
99 u32 p_statidx
; /* Which procedure to account */
100 char * p_name
; /* name of procedure */
105 struct rpc_create_args
{
108 struct sockaddr
*address
;
110 struct sockaddr
*saddress
;
111 const struct rpc_timeout
*timeout
;
113 struct rpc_program
*program
;
114 u32 prognumber
; /* overrides program->number */
116 rpc_authflavor_t authflavor
;
119 struct svc_xprt
*bc_xprt
; /* NFSv4.1 backchannel */
122 /* Values for "flags" field */
123 #define RPC_CLNT_CREATE_HARDRTRY (1UL << 0)
124 #define RPC_CLNT_CREATE_AUTOBIND (1UL << 2)
125 #define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3)
126 #define RPC_CLNT_CREATE_NOPING (1UL << 4)
127 #define RPC_CLNT_CREATE_DISCRTRY (1UL << 5)
128 #define RPC_CLNT_CREATE_QUIET (1UL << 6)
130 struct rpc_clnt
*rpc_create(struct rpc_create_args
*args
);
131 struct rpc_clnt
*rpc_bind_new_program(struct rpc_clnt
*,
132 struct rpc_program
*, u32
);
133 void rpc_task_reset_client(struct rpc_task
*task
, struct rpc_clnt
*clnt
);
134 struct rpc_clnt
*rpc_clone_client(struct rpc_clnt
*);
135 void rpc_shutdown_client(struct rpc_clnt
*);
136 void rpc_release_client(struct rpc_clnt
*);
137 void rpc_task_release_client(struct rpc_task
*);
139 int rpcb_create_local(void);
140 void rpcb_put_local(void);
141 int rpcb_register(u32
, u32
, int, unsigned short);
142 int rpcb_v4_register(const u32 program
, const u32 version
,
143 const struct sockaddr
*address
,
145 void rpcb_getport_async(struct rpc_task
*);
147 void rpc_call_start(struct rpc_task
*);
148 int rpc_call_async(struct rpc_clnt
*clnt
,
149 const struct rpc_message
*msg
, int flags
,
150 const struct rpc_call_ops
*tk_ops
,
152 int rpc_call_sync(struct rpc_clnt
*clnt
,
153 const struct rpc_message
*msg
, int flags
);
154 struct rpc_task
*rpc_call_null(struct rpc_clnt
*clnt
, struct rpc_cred
*cred
,
156 int rpc_restart_call_prepare(struct rpc_task
*);
157 int rpc_restart_call(struct rpc_task
*);
158 void rpc_setbufsize(struct rpc_clnt
*, unsigned int, unsigned int);
159 size_t rpc_max_payload(struct rpc_clnt
*);
160 void rpc_force_rebind(struct rpc_clnt
*);
161 size_t rpc_peeraddr(struct rpc_clnt
*, struct sockaddr
*, size_t);
162 const char *rpc_peeraddr2str(struct rpc_clnt
*, enum rpc_display_format_t
);
164 size_t rpc_ntop(const struct sockaddr
*, char *, const size_t);
165 size_t rpc_pton(const char *, const size_t,
166 struct sockaddr
*, const size_t);
167 char * rpc_sockaddr2uaddr(const struct sockaddr
*, gfp_t
);
168 size_t rpc_uaddr2sockaddr(const char *, const size_t,
169 struct sockaddr
*, const size_t);
171 static inline unsigned short rpc_get_port(const struct sockaddr
*sap
)
173 switch (sap
->sa_family
) {
175 return ntohs(((struct sockaddr_in
*)sap
)->sin_port
);
177 return ntohs(((struct sockaddr_in6
*)sap
)->sin6_port
);
182 static inline void rpc_set_port(struct sockaddr
*sap
,
183 const unsigned short port
)
185 switch (sap
->sa_family
) {
187 ((struct sockaddr_in
*)sap
)->sin_port
= htons(port
);
190 ((struct sockaddr_in6
*)sap
)->sin6_port
= htons(port
);
195 #define IPV6_SCOPE_DELIMITER '%'
196 #define IPV6_SCOPE_ID_LEN sizeof("%nnnnnnnnnn")
198 static inline bool __rpc_cmp_addr4(const struct sockaddr
*sap1
,
199 const struct sockaddr
*sap2
)
201 const struct sockaddr_in
*sin1
= (const struct sockaddr_in
*)sap1
;
202 const struct sockaddr_in
*sin2
= (const struct sockaddr_in
*)sap2
;
204 return sin1
->sin_addr
.s_addr
== sin2
->sin_addr
.s_addr
;
207 static inline bool __rpc_copy_addr4(struct sockaddr
*dst
,
208 const struct sockaddr
*src
)
210 const struct sockaddr_in
*ssin
= (struct sockaddr_in
*) src
;
211 struct sockaddr_in
*dsin
= (struct sockaddr_in
*) dst
;
213 dsin
->sin_family
= ssin
->sin_family
;
214 dsin
->sin_addr
.s_addr
= ssin
->sin_addr
.s_addr
;
218 #if IS_ENABLED(CONFIG_IPV6)
219 static inline bool __rpc_cmp_addr6(const struct sockaddr
*sap1
,
220 const struct sockaddr
*sap2
)
222 const struct sockaddr_in6
*sin1
= (const struct sockaddr_in6
*)sap1
;
223 const struct sockaddr_in6
*sin2
= (const struct sockaddr_in6
*)sap2
;
225 if (!ipv6_addr_equal(&sin1
->sin6_addr
, &sin2
->sin6_addr
))
227 else if (ipv6_addr_type(&sin1
->sin6_addr
) & IPV6_ADDR_LINKLOCAL
)
228 return sin1
->sin6_scope_id
== sin2
->sin6_scope_id
;
233 static inline bool __rpc_copy_addr6(struct sockaddr
*dst
,
234 const struct sockaddr
*src
)
236 const struct sockaddr_in6
*ssin6
= (const struct sockaddr_in6
*) src
;
237 struct sockaddr_in6
*dsin6
= (struct sockaddr_in6
*) dst
;
239 dsin6
->sin6_family
= ssin6
->sin6_family
;
240 dsin6
->sin6_addr
= ssin6
->sin6_addr
;
243 #else /* !(IS_ENABLED(CONFIG_IPV6) */
244 static inline bool __rpc_cmp_addr6(const struct sockaddr
*sap1
,
245 const struct sockaddr
*sap2
)
250 static inline bool __rpc_copy_addr6(struct sockaddr
*dst
,
251 const struct sockaddr
*src
)
255 #endif /* !(IS_ENABLED(CONFIG_IPV6) */
258 * rpc_cmp_addr - compare the address portion of two sockaddrs.
259 * @sap1: first sockaddr
260 * @sap2: second sockaddr
262 * Just compares the family and address portion. Ignores port, scope, etc.
263 * Returns true if the addrs are equal, false if they aren't.
265 static inline bool rpc_cmp_addr(const struct sockaddr
*sap1
,
266 const struct sockaddr
*sap2
)
268 if (sap1
->sa_family
== sap2
->sa_family
) {
269 switch (sap1
->sa_family
) {
271 return __rpc_cmp_addr4(sap1
, sap2
);
273 return __rpc_cmp_addr6(sap1
, sap2
);
280 * rpc_copy_addr - copy the address portion of one sockaddr to another
281 * @dst: destination sockaddr
282 * @src: source sockaddr
284 * Just copies the address portion and family. Ignores port, scope, etc.
285 * Caller is responsible for making certain that dst is large enough to hold
286 * the address in src. Returns true if address family is supported. Returns
289 static inline bool rpc_copy_addr(struct sockaddr
*dst
,
290 const struct sockaddr
*src
)
292 switch (src
->sa_family
) {
294 return __rpc_copy_addr4(dst
, src
);
296 return __rpc_copy_addr6(dst
, src
);
302 * rpc_get_scope_id - return scopeid for a given sockaddr
303 * @sa: sockaddr to get scopeid from
305 * Returns the value of the sin6_scope_id for AF_INET6 addrs, or 0 if
306 * not an AF_INET6 address.
308 static inline u32
rpc_get_scope_id(const struct sockaddr
*sa
)
310 if (sa
->sa_family
!= AF_INET6
)
313 return ((struct sockaddr_in6
*) sa
)->sin6_scope_id
;
316 #endif /* __KERNEL__ */
317 #endif /* _LINUX_SUNRPC_CLNT_H */