Merge branch 'next/board' of git://git.linaro.org/people/arnd/arm-soc
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / sunrpc / clnt.h
1 /*
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/types.h>
13 #include <linux/socket.h>
14 #include <linux/in.h>
15 #include <linux/in6.h>
16
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>
26 #include <net/ipv6.h>
27
28 struct rpc_inode;
29
30 /*
31 * The high-level client handle
32 */
33 struct rpc_clnt {
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 */
43
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 */
49
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 */
54
55 struct rpc_rtt * cl_rtt; /* RTO estimator data */
56 const struct rpc_timeout *cl_timeout; /* Timeout strategy */
57
58 int cl_nodelen; /* nodename length */
59 char cl_nodename[UNX_MAXNODENAME];
60 struct path cl_path;
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 */
67 };
68
69 /*
70 * General RPC program info
71 */
72 #define RPC_MAXVERSION 4
73 struct rpc_program {
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 */
80 };
81
82 struct rpc_version {
83 u32 number; /* version number */
84 unsigned int nrprocs; /* number of procs */
85 struct rpc_procinfo * procs; /* procedure array */
86 };
87
88 /*
89 * Procedure information
90 */
91 struct rpc_procinfo {
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 */
101 };
102
103 #ifdef __KERNEL__
104
105 struct rpc_create_args {
106 struct net *net;
107 int protocol;
108 struct sockaddr *address;
109 size_t addrsize;
110 struct sockaddr *saddress;
111 const struct rpc_timeout *timeout;
112 char *servername;
113 struct rpc_program *program;
114 u32 prognumber; /* overrides program->number */
115 u32 version;
116 rpc_authflavor_t authflavor;
117 unsigned long flags;
118 char *client_name;
119 struct svc_xprt *bc_xprt; /* NFSv4.1 backchannel */
120 };
121
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)
129
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 *);
138
139 int rpcb_register(u32, u32, int, unsigned short);
140 int rpcb_v4_register(const u32 program, const u32 version,
141 const struct sockaddr *address,
142 const char *netid);
143 void rpcb_getport_async(struct rpc_task *);
144
145 void rpc_call_start(struct rpc_task *);
146 int rpc_call_async(struct rpc_clnt *clnt,
147 const struct rpc_message *msg, int flags,
148 const struct rpc_call_ops *tk_ops,
149 void *calldata);
150 int rpc_call_sync(struct rpc_clnt *clnt,
151 const struct rpc_message *msg, int flags);
152 struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred,
153 int flags);
154 int rpc_restart_call_prepare(struct rpc_task *);
155 int rpc_restart_call(struct rpc_task *);
156 void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int);
157 size_t rpc_max_payload(struct rpc_clnt *);
158 void rpc_force_rebind(struct rpc_clnt *);
159 size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t);
160 const char *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t);
161
162 size_t rpc_ntop(const struct sockaddr *, char *, const size_t);
163 size_t rpc_pton(const char *, const size_t,
164 struct sockaddr *, const size_t);
165 char * rpc_sockaddr2uaddr(const struct sockaddr *, gfp_t);
166 size_t rpc_uaddr2sockaddr(const char *, const size_t,
167 struct sockaddr *, const size_t);
168
169 static inline unsigned short rpc_get_port(const struct sockaddr *sap)
170 {
171 switch (sap->sa_family) {
172 case AF_INET:
173 return ntohs(((struct sockaddr_in *)sap)->sin_port);
174 case AF_INET6:
175 return ntohs(((struct sockaddr_in6 *)sap)->sin6_port);
176 }
177 return 0;
178 }
179
180 static inline void rpc_set_port(struct sockaddr *sap,
181 const unsigned short port)
182 {
183 switch (sap->sa_family) {
184 case AF_INET:
185 ((struct sockaddr_in *)sap)->sin_port = htons(port);
186 break;
187 case AF_INET6:
188 ((struct sockaddr_in6 *)sap)->sin6_port = htons(port);
189 break;
190 }
191 }
192
193 #define IPV6_SCOPE_DELIMITER '%'
194 #define IPV6_SCOPE_ID_LEN sizeof("%nnnnnnnnnn")
195
196 static inline bool __rpc_cmp_addr4(const struct sockaddr *sap1,
197 const struct sockaddr *sap2)
198 {
199 const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sap1;
200 const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sap2;
201
202 return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
203 }
204
205 static inline bool __rpc_copy_addr4(struct sockaddr *dst,
206 const struct sockaddr *src)
207 {
208 const struct sockaddr_in *ssin = (struct sockaddr_in *) src;
209 struct sockaddr_in *dsin = (struct sockaddr_in *) dst;
210
211 dsin->sin_family = ssin->sin_family;
212 dsin->sin_addr.s_addr = ssin->sin_addr.s_addr;
213 return true;
214 }
215
216 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
217 static inline bool __rpc_cmp_addr6(const struct sockaddr *sap1,
218 const struct sockaddr *sap2)
219 {
220 const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sap1;
221 const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sap2;
222
223 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
224 return false;
225 else if (ipv6_addr_type(&sin1->sin6_addr) & IPV6_ADDR_LINKLOCAL)
226 return sin1->sin6_scope_id == sin2->sin6_scope_id;
227
228 return true;
229 }
230
231 static inline bool __rpc_copy_addr6(struct sockaddr *dst,
232 const struct sockaddr *src)
233 {
234 const struct sockaddr_in6 *ssin6 = (const struct sockaddr_in6 *) src;
235 struct sockaddr_in6 *dsin6 = (struct sockaddr_in6 *) dst;
236
237 dsin6->sin6_family = ssin6->sin6_family;
238 ipv6_addr_copy(&dsin6->sin6_addr, &ssin6->sin6_addr);
239 return true;
240 }
241 #else /* !(CONFIG_IPV6 || CONFIG_IPV6_MODULE) */
242 static inline bool __rpc_cmp_addr6(const struct sockaddr *sap1,
243 const struct sockaddr *sap2)
244 {
245 return false;
246 }
247
248 static inline bool __rpc_copy_addr6(struct sockaddr *dst,
249 const struct sockaddr *src)
250 {
251 return false;
252 }
253 #endif /* !(CONFIG_IPV6 || CONFIG_IPV6_MODULE) */
254
255 /**
256 * rpc_cmp_addr - compare the address portion of two sockaddrs.
257 * @sap1: first sockaddr
258 * @sap2: second sockaddr
259 *
260 * Just compares the family and address portion. Ignores port, scope, etc.
261 * Returns true if the addrs are equal, false if they aren't.
262 */
263 static inline bool rpc_cmp_addr(const struct sockaddr *sap1,
264 const struct sockaddr *sap2)
265 {
266 if (sap1->sa_family == sap2->sa_family) {
267 switch (sap1->sa_family) {
268 case AF_INET:
269 return __rpc_cmp_addr4(sap1, sap2);
270 case AF_INET6:
271 return __rpc_cmp_addr6(sap1, sap2);
272 }
273 }
274 return false;
275 }
276
277 /**
278 * rpc_copy_addr - copy the address portion of one sockaddr to another
279 * @dst: destination sockaddr
280 * @src: source sockaddr
281 *
282 * Just copies the address portion and family. Ignores port, scope, etc.
283 * Caller is responsible for making certain that dst is large enough to hold
284 * the address in src. Returns true if address family is supported. Returns
285 * false otherwise.
286 */
287 static inline bool rpc_copy_addr(struct sockaddr *dst,
288 const struct sockaddr *src)
289 {
290 switch (src->sa_family) {
291 case AF_INET:
292 return __rpc_copy_addr4(dst, src);
293 case AF_INET6:
294 return __rpc_copy_addr6(dst, src);
295 }
296 return false;
297 }
298
299 /**
300 * rpc_get_scope_id - return scopeid for a given sockaddr
301 * @sa: sockaddr to get scopeid from
302 *
303 * Returns the value of the sin6_scope_id for AF_INET6 addrs, or 0 if
304 * not an AF_INET6 address.
305 */
306 static inline u32 rpc_get_scope_id(const struct sockaddr *sa)
307 {
308 if (sa->sa_family != AF_INET6)
309 return 0;
310
311 return ((struct sockaddr_in6 *) sa)->sin6_scope_id;
312 }
313
314 #endif /* __KERNEL__ */
315 #endif /* _LINUX_SUNRPC_CLNT_H */