Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | /* |
| 3 | * linux/include/linux/sunrpc/clnt.h |
| 4 | * |
| 5 | * Declarations for the high-level RPC client interface |
| 6 | * |
| 7 | * Copyright (C) 1995, 1996, Olaf Kirch <okir@monad.swb.de> |
| 8 | */ |
| 9 | |
| 10 | #ifndef _LINUX_SUNRPC_CLNT_H |
| 11 | #define _LINUX_SUNRPC_CLNT_H |
| 12 | |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/socket.h> |
| 15 | #include <linux/in.h> |
| 16 | #include <linux/in6.h> |
| 17 | |
| 18 | #include <linux/sunrpc/msg_prot.h> |
| 19 | #include <linux/sunrpc/sched.h> |
| 20 | #include <linux/sunrpc/xprt.h> |
| 21 | #include <linux/sunrpc/auth.h> |
| 22 | #include <linux/sunrpc/stats.h> |
| 23 | #include <linux/sunrpc/xdr.h> |
| 24 | #include <linux/sunrpc/timer.h> |
| 25 | #include <linux/sunrpc/rpc_pipe_fs.h> |
| 26 | #include <asm/signal.h> |
| 27 | #include <linux/path.h> |
| 28 | #include <net/ipv6.h> |
| 29 | #include <linux/sunrpc/xprtmultipath.h> |
| 30 | |
| 31 | struct rpc_inode; |
| 32 | |
| 33 | /* |
| 34 | * The high-level client handle |
| 35 | */ |
| 36 | struct rpc_clnt { |
| 37 | atomic_t cl_count; /* Number of references */ |
| 38 | unsigned int cl_clid; /* client id */ |
| 39 | struct list_head cl_clients; /* Global list of clients */ |
| 40 | struct list_head cl_tasks; /* List of tasks */ |
| 41 | spinlock_t cl_lock; /* spinlock */ |
| 42 | struct rpc_xprt __rcu * cl_xprt; /* transport */ |
| 43 | const struct rpc_procinfo *cl_procinfo; /* procedure info */ |
| 44 | u32 cl_prog, /* RPC program number */ |
| 45 | cl_vers, /* RPC version number */ |
| 46 | cl_maxproc; /* max procedure number */ |
| 47 | |
| 48 | struct rpc_auth * cl_auth; /* authenticator */ |
| 49 | struct rpc_stat * cl_stats; /* per-program statistics */ |
| 50 | struct rpc_iostats * cl_metrics; /* per-client statistics */ |
| 51 | |
| 52 | unsigned int cl_softrtry : 1,/* soft timeouts */ |
| 53 | cl_discrtry : 1,/* disconnect before retry */ |
| 54 | cl_noretranstimeo: 1,/* No retransmit timeouts */ |
| 55 | cl_autobind : 1,/* use getport() */ |
| 56 | cl_chatty : 1;/* be verbose */ |
| 57 | |
| 58 | struct rpc_rtt * cl_rtt; /* RTO estimator data */ |
| 59 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ |
| 60 | |
| 61 | atomic_t cl_swapper; /* swapfile count */ |
| 62 | int cl_nodelen; /* nodename length */ |
| 63 | char cl_nodename[UNX_MAXNODENAME+1]; |
| 64 | struct rpc_pipe_dir_head cl_pipedir_objects; |
| 65 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ |
| 66 | struct rpc_rtt cl_rtt_default; |
| 67 | struct rpc_timeout cl_timeout_default; |
| 68 | const struct rpc_program *cl_program; |
| 69 | #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) |
| 70 | struct dentry *cl_debugfs; /* debugfs directory */ |
| 71 | #endif |
| 72 | struct rpc_xprt_iter cl_xpi; |
| 73 | }; |
| 74 | |
| 75 | /* |
| 76 | * General RPC program info |
| 77 | */ |
| 78 | #define RPC_MAXVERSION 4 |
| 79 | struct rpc_program { |
| 80 | const char * name; /* protocol name */ |
| 81 | u32 number; /* program number */ |
| 82 | unsigned int nrvers; /* number of versions */ |
| 83 | const struct rpc_version ** version; /* version array */ |
| 84 | struct rpc_stat * stats; /* statistics */ |
| 85 | const char * pipe_dir_name; /* path to rpc_pipefs dir */ |
| 86 | }; |
| 87 | |
| 88 | struct rpc_version { |
| 89 | u32 number; /* version number */ |
| 90 | unsigned int nrprocs; /* number of procs */ |
| 91 | const struct rpc_procinfo *procs; /* procedure array */ |
| 92 | unsigned int *counts; /* call counts */ |
| 93 | }; |
| 94 | |
| 95 | /* |
| 96 | * Procedure information |
| 97 | */ |
| 98 | struct rpc_procinfo { |
| 99 | u32 p_proc; /* RPC procedure number */ |
| 100 | kxdreproc_t p_encode; /* XDR encode function */ |
| 101 | kxdrdproc_t p_decode; /* XDR decode function */ |
| 102 | unsigned int p_arglen; /* argument hdr length (u32) */ |
| 103 | unsigned int p_replen; /* reply hdr length (u32) */ |
| 104 | unsigned int p_timer; /* Which RTT timer to use */ |
| 105 | u32 p_statidx; /* Which procedure to account */ |
| 106 | const char * p_name; /* name of procedure */ |
| 107 | }; |
| 108 | |
| 109 | #ifdef __KERNEL__ |
| 110 | |
| 111 | struct rpc_create_args { |
| 112 | struct net *net; |
| 113 | int protocol; |
| 114 | struct sockaddr *address; |
| 115 | size_t addrsize; |
| 116 | struct sockaddr *saddress; |
| 117 | const struct rpc_timeout *timeout; |
| 118 | const char *servername; |
| 119 | const char *nodename; |
| 120 | const struct rpc_program *program; |
| 121 | u32 prognumber; /* overrides program->number */ |
| 122 | u32 version; |
| 123 | rpc_authflavor_t authflavor; |
| 124 | unsigned long flags; |
| 125 | char *client_name; |
| 126 | struct svc_xprt *bc_xprt; /* NFSv4.1 backchannel */ |
| 127 | }; |
| 128 | |
| 129 | struct rpc_add_xprt_test { |
| 130 | int (*add_xprt_test)(struct rpc_clnt *, |
| 131 | struct rpc_xprt *, |
| 132 | void *calldata); |
| 133 | void *data; |
| 134 | }; |
| 135 | |
| 136 | /* Values for "flags" field */ |
| 137 | #define RPC_CLNT_CREATE_HARDRTRY (1UL << 0) |
| 138 | #define RPC_CLNT_CREATE_AUTOBIND (1UL << 2) |
| 139 | #define RPC_CLNT_CREATE_NONPRIVPORT (1UL << 3) |
| 140 | #define RPC_CLNT_CREATE_NOPING (1UL << 4) |
| 141 | #define RPC_CLNT_CREATE_DISCRTRY (1UL << 5) |
| 142 | #define RPC_CLNT_CREATE_QUIET (1UL << 6) |
| 143 | #define RPC_CLNT_CREATE_INFINITE_SLOTS (1UL << 7) |
| 144 | #define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT (1UL << 8) |
| 145 | #define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (1UL << 9) |
| 146 | |
| 147 | struct rpc_clnt *rpc_create(struct rpc_create_args *args); |
| 148 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *, |
| 149 | const struct rpc_program *, u32); |
| 150 | struct rpc_clnt *rpc_clone_client(struct rpc_clnt *); |
| 151 | struct rpc_clnt *rpc_clone_client_set_auth(struct rpc_clnt *, |
| 152 | rpc_authflavor_t); |
| 153 | int rpc_switch_client_transport(struct rpc_clnt *, |
| 154 | struct xprt_create *, |
| 155 | const struct rpc_timeout *); |
| 156 | |
| 157 | void rpc_shutdown_client(struct rpc_clnt *); |
| 158 | void rpc_release_client(struct rpc_clnt *); |
| 159 | void rpc_task_release_transport(struct rpc_task *); |
| 160 | void rpc_task_release_client(struct rpc_task *); |
| 161 | |
| 162 | int rpcb_create_local(struct net *); |
| 163 | void rpcb_put_local(struct net *); |
| 164 | int rpcb_register(struct net *, u32, u32, int, unsigned short); |
| 165 | int rpcb_v4_register(struct net *net, const u32 program, |
| 166 | const u32 version, |
| 167 | const struct sockaddr *address, |
| 168 | const char *netid); |
| 169 | void rpcb_getport_async(struct rpc_task *); |
| 170 | |
| 171 | void rpc_call_start(struct rpc_task *); |
| 172 | int rpc_call_async(struct rpc_clnt *clnt, |
| 173 | const struct rpc_message *msg, int flags, |
| 174 | const struct rpc_call_ops *tk_ops, |
| 175 | void *calldata); |
| 176 | int rpc_call_sync(struct rpc_clnt *clnt, |
| 177 | const struct rpc_message *msg, int flags); |
| 178 | struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, |
| 179 | int flags); |
| 180 | int rpc_restart_call_prepare(struct rpc_task *); |
| 181 | int rpc_restart_call(struct rpc_task *); |
| 182 | void rpc_setbufsize(struct rpc_clnt *, unsigned int, unsigned int); |
| 183 | struct net * rpc_net_ns(struct rpc_clnt *); |
| 184 | size_t rpc_max_payload(struct rpc_clnt *); |
| 185 | size_t rpc_max_bc_payload(struct rpc_clnt *); |
| 186 | void rpc_force_rebind(struct rpc_clnt *); |
| 187 | size_t rpc_peeraddr(struct rpc_clnt *, struct sockaddr *, size_t); |
| 188 | const char *rpc_peeraddr2str(struct rpc_clnt *, enum rpc_display_format_t); |
| 189 | int rpc_localaddr(struct rpc_clnt *, struct sockaddr *, size_t); |
| 190 | |
| 191 | int rpc_clnt_iterate_for_each_xprt(struct rpc_clnt *clnt, |
| 192 | int (*fn)(struct rpc_clnt *, struct rpc_xprt *, void *), |
| 193 | void *data); |
| 194 | |
| 195 | int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt, |
| 196 | struct rpc_xprt_switch *xps, |
| 197 | struct rpc_xprt *xprt, |
| 198 | void *dummy); |
| 199 | int rpc_clnt_add_xprt(struct rpc_clnt *, struct xprt_create *, |
| 200 | int (*setup)(struct rpc_clnt *, |
| 201 | struct rpc_xprt_switch *, |
| 202 | struct rpc_xprt *, |
| 203 | void *), |
| 204 | void *data); |
| 205 | void rpc_set_connect_timeout(struct rpc_clnt *clnt, |
| 206 | unsigned long connect_timeout, |
| 207 | unsigned long reconnect_timeout); |
| 208 | |
| 209 | int rpc_clnt_setup_test_and_add_xprt(struct rpc_clnt *, |
| 210 | struct rpc_xprt_switch *, |
| 211 | struct rpc_xprt *, |
| 212 | void *); |
| 213 | |
| 214 | const char *rpc_proc_name(const struct rpc_task *task); |
| 215 | |
| 216 | void rpc_clnt_xprt_switch_put(struct rpc_clnt *); |
| 217 | void rpc_clnt_xprt_switch_add_xprt(struct rpc_clnt *, struct rpc_xprt *); |
| 218 | bool rpc_clnt_xprt_switch_has_addr(struct rpc_clnt *clnt, |
| 219 | const struct sockaddr *sap); |
| 220 | void rpc_cleanup_clids(void); |
| 221 | |
| 222 | static inline int rpc_reply_expected(struct rpc_task *task) |
| 223 | { |
| 224 | return (task->tk_msg.rpc_proc != NULL) && |
| 225 | (task->tk_msg.rpc_proc->p_decode != NULL); |
| 226 | } |
| 227 | |
| 228 | #endif /* __KERNEL__ */ |
| 229 | #endif /* _LINUX_SUNRPC_CLNT_H */ |