Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Chuck Lever | 55aa4f5 | 2005-08-11 16:25:47 -0400 | [diff] [blame] | 2 | * linux/net/sunrpc/clnt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * This file contains the high-level RPC interface. |
| 5 | * It is modeled as a finite state machine to support both synchronous |
| 6 | * and asynchronous requests. |
| 7 | * |
| 8 | * - RPC header generation and argument serialization. |
| 9 | * - Credential refresh. |
| 10 | * - TCP connect handling. |
| 11 | * - Retry of operation when it is suspected the operation failed because |
| 12 | * of uid squashing on the server, or when the credentials were stale |
| 13 | * and need to be refreshed, or when a packet was damaged in transit. |
| 14 | * This may be have to be moved to the VFS layer. |
| 15 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * Copyright (C) 1992,1993 Rick Sladkey <jrs@world.std.com> |
| 17 | * Copyright (C) 1995,1996 Olaf Kirch <okir@monad.swb.de> |
| 18 | */ |
| 19 | |
| 20 | #include <asm/system.h> |
| 21 | |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/types.h> |
Chuck Lever | cb3997b | 2008-05-21 17:09:41 -0400 | [diff] [blame] | 24 | #include <linux/kallsyms.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/mm.h> |
Trond Myklebust | 23ac658 | 2009-08-09 15:14:25 -0400 | [diff] [blame] | 26 | #include <linux/namei.h> |
| 27 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/utsname.h> |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 30 | #include <linux/workqueue.h> |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 31 | #include <linux/in.h> |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 32 | #include <linux/in6.h> |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 33 | #include <linux/un.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #include <linux/sunrpc/clnt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/sunrpc/rpc_pipe_fs.h> |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 37 | #include <linux/sunrpc/metrics.h> |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 38 | #include <linux/sunrpc/bc_xprt.h> |
Steve Dickson | 5753cba | 2012-02-06 10:08:08 -0500 | [diff] [blame] | 39 | #include <trace/events/sunrpc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 41 | #include "sunrpc.h" |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 42 | #include "netns.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #ifdef RPC_DEBUG |
| 45 | # define RPCDBG_FACILITY RPCDBG_CALL |
| 46 | #endif |
| 47 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 48 | #define dprint_status(t) \ |
| 49 | dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \ |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 50 | __func__, t->tk_status) |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 51 | |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 52 | /* |
| 53 | * All RPC clients are linked into this list |
| 54 | */ |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static DECLARE_WAIT_QUEUE_HEAD(destroy_wait); |
| 57 | |
| 58 | |
| 59 | static void call_start(struct rpc_task *task); |
| 60 | static void call_reserve(struct rpc_task *task); |
| 61 | static void call_reserveresult(struct rpc_task *task); |
| 62 | static void call_allocate(struct rpc_task *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | static void call_decode(struct rpc_task *task); |
| 64 | static void call_bind(struct rpc_task *task); |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 65 | static void call_bind_status(struct rpc_task *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | static void call_transmit(struct rpc_task *task); |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 67 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 68 | static void call_bc_transmit(struct rpc_task *task); |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 69 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | static void call_status(struct rpc_task *task); |
Trond Myklebust | 940e331 | 2005-11-09 21:45:24 -0500 | [diff] [blame] | 71 | static void call_transmit_status(struct rpc_task *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | static void call_refresh(struct rpc_task *task); |
| 73 | static void call_refreshresult(struct rpc_task *task); |
| 74 | static void call_timeout(struct rpc_task *task); |
| 75 | static void call_connect(struct rpc_task *task); |
| 76 | static void call_connect_status(struct rpc_task *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 78 | static __be32 *rpc_encode_header(struct rpc_task *task); |
| 79 | static __be32 *rpc_verify_header(struct rpc_task *task); |
Chuck Lever | caabea8 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 80 | static int rpc_ping(struct rpc_clnt *clnt); |
Trond Myklebust | 64c91a1 | 2007-06-23 10:17:16 -0400 | [diff] [blame] | 81 | |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 82 | static void rpc_register_client(struct rpc_clnt *clnt) |
| 83 | { |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 84 | struct sunrpc_net *sn = net_generic(clnt->cl_xprt->xprt_net, sunrpc_net_id); |
| 85 | |
| 86 | spin_lock(&sn->rpc_client_lock); |
| 87 | list_add(&clnt->cl_clients, &sn->all_clients); |
| 88 | spin_unlock(&sn->rpc_client_lock); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | static void rpc_unregister_client(struct rpc_clnt *clnt) |
| 92 | { |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 93 | struct sunrpc_net *sn = net_generic(clnt->cl_xprt->xprt_net, sunrpc_net_id); |
| 94 | |
| 95 | spin_lock(&sn->rpc_client_lock); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 96 | list_del(&clnt->cl_clients); |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 97 | spin_unlock(&sn->rpc_client_lock); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 98 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 100 | static void __rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) |
| 101 | { |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 102 | if (clnt->cl_dentry) { |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 103 | if (clnt->cl_auth && clnt->cl_auth->au_ops->pipes_destroy) |
| 104 | clnt->cl_auth->au_ops->pipes_destroy(clnt->cl_auth); |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 105 | rpc_remove_client_dir(clnt->cl_dentry); |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 106 | } |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 107 | clnt->cl_dentry = NULL; |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) |
| 111 | { |
| 112 | struct super_block *pipefs_sb; |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 113 | |
| 114 | pipefs_sb = rpc_get_sb_net(clnt->cl_xprt->xprt_net); |
| 115 | if (pipefs_sb) { |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 116 | __rpc_clnt_remove_pipedir(clnt); |
| 117 | rpc_put_sb_net(clnt->cl_xprt->xprt_net); |
| 118 | } |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static struct dentry *rpc_setup_pipedir_sb(struct super_block *sb, |
Trond Myklebust | 080b794 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 122 | struct rpc_clnt *clnt, |
| 123 | const char *dir_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 125 | static uint32_t clntid; |
Trond Myklebust | 23ac658 | 2009-08-09 15:14:25 -0400 | [diff] [blame] | 126 | char name[15]; |
| 127 | struct qstr q = { |
| 128 | .name = name, |
| 129 | }; |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 130 | struct dentry *dir, *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | int error; |
| 132 | |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 133 | dir = rpc_d_lookup_sb(sb, dir_name); |
| 134 | if (dir == NULL) |
| 135 | return dir; |
| 136 | for (;;) { |
| 137 | q.len = snprintf(name, sizeof(name), "clnt%x", (unsigned int)clntid++); |
| 138 | name[sizeof(name) - 1] = '\0'; |
| 139 | q.hash = full_name_hash(q.name, q.len); |
| 140 | dentry = rpc_create_client_dir(dir, &q, clnt); |
| 141 | if (!IS_ERR(dentry)) |
| 142 | break; |
| 143 | error = PTR_ERR(dentry); |
| 144 | if (error != -EEXIST) { |
| 145 | printk(KERN_INFO "RPC: Couldn't create pipefs entry" |
| 146 | " %s/%s, error %d\n", |
| 147 | dir_name, name, error); |
| 148 | break; |
| 149 | } |
| 150 | } |
| 151 | dput(dir); |
| 152 | return dentry; |
| 153 | } |
| 154 | |
| 155 | static int |
Trond Myklebust | 080b794 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 156 | rpc_setup_pipedir(struct rpc_clnt *clnt, const char *dir_name) |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 157 | { |
| 158 | struct super_block *pipefs_sb; |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 159 | struct dentry *dentry; |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 160 | |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 161 | clnt->cl_dentry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (dir_name == NULL) |
| 163 | return 0; |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 164 | pipefs_sb = rpc_get_sb_net(clnt->cl_xprt->xprt_net); |
Stanislav Kinsbursky | 70fe25b | 2012-01-11 19:18:34 +0400 | [diff] [blame] | 165 | if (!pipefs_sb) |
| 166 | return 0; |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 167 | dentry = rpc_setup_pipedir_sb(pipefs_sb, clnt, dir_name); |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 168 | rpc_put_sb_net(clnt->cl_xprt->xprt_net); |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 169 | if (IS_ERR(dentry)) |
| 170 | return PTR_ERR(dentry); |
| 171 | clnt->cl_dentry = dentry; |
Trond Myklebust | 23ac658 | 2009-08-09 15:14:25 -0400 | [diff] [blame] | 172 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 175 | static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event, |
| 176 | struct super_block *sb) |
| 177 | { |
| 178 | struct dentry *dentry; |
| 179 | int err = 0; |
| 180 | |
| 181 | switch (event) { |
| 182 | case RPC_PIPEFS_MOUNT: |
| 183 | if (clnt->cl_program->pipe_dir_name == NULL) |
| 184 | break; |
| 185 | dentry = rpc_setup_pipedir_sb(sb, clnt, |
| 186 | clnt->cl_program->pipe_dir_name); |
| 187 | BUG_ON(dentry == NULL); |
| 188 | if (IS_ERR(dentry)) |
| 189 | return PTR_ERR(dentry); |
Stanislav Kinsbursky | 30507f5 | 2012-01-11 19:18:42 +0400 | [diff] [blame] | 190 | clnt->cl_dentry = dentry; |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 191 | if (clnt->cl_auth->au_ops->pipes_create) { |
| 192 | err = clnt->cl_auth->au_ops->pipes_create(clnt->cl_auth); |
| 193 | if (err) |
| 194 | __rpc_clnt_remove_pipedir(clnt); |
| 195 | } |
| 196 | break; |
| 197 | case RPC_PIPEFS_UMOUNT: |
| 198 | __rpc_clnt_remove_pipedir(clnt); |
| 199 | break; |
| 200 | default: |
| 201 | printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event); |
| 202 | return -ENOTSUPP; |
| 203 | } |
| 204 | return err; |
| 205 | } |
| 206 | |
Stanislav Kinsbursky | da3b462 | 2012-02-27 22:05:29 +0400 | [diff] [blame^] | 207 | static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event) |
| 208 | { |
| 209 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); |
| 210 | struct rpc_clnt *clnt; |
| 211 | |
| 212 | spin_lock(&sn->rpc_client_lock); |
| 213 | list_for_each_entry(clnt, &sn->all_clients, cl_clients) { |
| 214 | if (((event == RPC_PIPEFS_MOUNT) && clnt->cl_dentry) || |
| 215 | ((event == RPC_PIPEFS_UMOUNT) && !clnt->cl_dentry)) |
| 216 | continue; |
| 217 | atomic_inc(&clnt->cl_count); |
| 218 | spin_unlock(&sn->rpc_client_lock); |
| 219 | return clnt; |
| 220 | } |
| 221 | spin_unlock(&sn->rpc_client_lock); |
| 222 | return NULL; |
| 223 | } |
| 224 | |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 225 | static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event, |
| 226 | void *ptr) |
| 227 | { |
| 228 | struct super_block *sb = ptr; |
| 229 | struct rpc_clnt *clnt; |
| 230 | int error = 0; |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 231 | |
Stanislav Kinsbursky | da3b462 | 2012-02-27 22:05:29 +0400 | [diff] [blame^] | 232 | while ((clnt = rpc_get_client_for_event(sb->s_fs_info, event))) { |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 233 | error = __rpc_pipefs_event(clnt, event, sb); |
Stanislav Kinsbursky | da3b462 | 2012-02-27 22:05:29 +0400 | [diff] [blame^] | 234 | rpc_release_client(clnt); |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 235 | if (error) |
| 236 | break; |
| 237 | } |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 238 | return error; |
| 239 | } |
| 240 | |
| 241 | static struct notifier_block rpc_clients_block = { |
| 242 | .notifier_call = rpc_pipefs_event, |
Stanislav Kinsbursky | eee1732 | 2012-01-10 16:13:19 +0400 | [diff] [blame] | 243 | .priority = SUNRPC_PIPEFS_RPC_PRIO, |
Stanislav Kinsbursky | 80df9d2 | 2012-01-11 19:18:17 +0400 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | int rpc_clients_notifier_register(void) |
| 247 | { |
| 248 | return rpc_pipefs_notifier_register(&rpc_clients_block); |
| 249 | } |
| 250 | |
| 251 | void rpc_clients_notifier_unregister(void) |
| 252 | { |
| 253 | return rpc_pipefs_notifier_unregister(&rpc_clients_block); |
| 254 | } |
| 255 | |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 256 | static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args, struct rpc_xprt *xprt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | { |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 258 | const struct rpc_program *program = args->program; |
| 259 | const struct rpc_version *version; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | struct rpc_clnt *clnt = NULL; |
J. Bruce Fields | 6a19275 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 261 | struct rpc_auth *auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | int err; |
Chuck Lever | 06b8d25 | 2007-09-11 18:00:20 -0400 | [diff] [blame] | 263 | size_t len; |
| 264 | |
| 265 | /* sanity check the name before trying to print it */ |
| 266 | err = -EINVAL; |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 267 | len = strlen(args->servername); |
Chuck Lever | 06b8d25 | 2007-09-11 18:00:20 -0400 | [diff] [blame] | 268 | if (len > RPC_MAXNETNAMELEN) |
| 269 | goto out_no_rpciod; |
| 270 | len++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 272 | dprintk("RPC: creating %s client for %s (xprt %p)\n", |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 273 | program->name, args->servername, xprt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Trond Myklebust | 4ada539 | 2007-06-14 17:26:17 -0400 | [diff] [blame] | 275 | err = rpciod_up(); |
| 276 | if (err) |
| 277 | goto out_no_rpciod; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | err = -EINVAL; |
| 279 | if (!xprt) |
Adrian Bunk | 712917d | 2006-03-13 21:20:47 -0800 | [diff] [blame] | 280 | goto out_no_xprt; |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 281 | |
| 282 | if (args->version >= program->nrvers) |
| 283 | goto out_err; |
| 284 | version = program->version[args->version]; |
| 285 | if (version == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | goto out_err; |
| 287 | |
| 288 | err = -ENOMEM; |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 289 | clnt = kzalloc(sizeof(*clnt), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | if (!clnt) |
| 291 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | clnt->cl_parent = clnt; |
| 293 | |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 294 | clnt->cl_server = kstrdup(args->servername, GFP_KERNEL); |
| 295 | if (clnt->cl_server == NULL) |
| 296 | goto out_no_server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
| 298 | clnt->cl_xprt = xprt; |
| 299 | clnt->cl_procinfo = version->procs; |
| 300 | clnt->cl_maxproc = version->nrprocs; |
| 301 | clnt->cl_protname = program->name; |
Benny Halevy | d5b337b | 2008-09-28 09:21:26 +0300 | [diff] [blame] | 302 | clnt->cl_prog = args->prognumber ? : program->number; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | clnt->cl_vers = version->number; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | clnt->cl_stats = program->stats; |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 305 | clnt->cl_metrics = rpc_alloc_iostats(clnt); |
Trond Myklebust | 23bf85b | 2006-11-21 10:40:23 -0500 | [diff] [blame] | 306 | err = -ENOMEM; |
| 307 | if (clnt->cl_metrics == NULL) |
| 308 | goto out_no_stats; |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 309 | clnt->cl_program = program; |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 310 | INIT_LIST_HEAD(&clnt->cl_tasks); |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 311 | spin_lock_init(&clnt->cl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 313 | if (!xprt_bound(clnt->cl_xprt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | clnt->cl_autobind = 1; |
| 315 | |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 316 | clnt->cl_timeout = xprt->timeout; |
| 317 | if (args->timeout != NULL) { |
| 318 | memcpy(&clnt->cl_timeout_default, args->timeout, |
| 319 | sizeof(clnt->cl_timeout_default)); |
| 320 | clnt->cl_timeout = &clnt->cl_timeout_default; |
| 321 | } |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | clnt->cl_rtt = &clnt->cl_rtt_default; |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 324 | rpc_init_rtt(&clnt->cl_rtt_default, clnt->cl_timeout->to_initval); |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 325 | clnt->cl_principal = NULL; |
| 326 | if (args->client_name) { |
| 327 | clnt->cl_principal = kstrdup(args->client_name, GFP_KERNEL); |
| 328 | if (!clnt->cl_principal) |
| 329 | goto out_no_principal; |
| 330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 332 | atomic_set(&clnt->cl_count, 1); |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | err = rpc_setup_pipedir(clnt, program->pipe_dir_name); |
| 335 | if (err < 0) |
| 336 | goto out_no_path; |
| 337 | |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 338 | auth = rpcauth_create(args->authflavor, clnt); |
J. Bruce Fields | 6a19275 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 339 | if (IS_ERR(auth)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n", |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 341 | args->authflavor); |
J. Bruce Fields | 6a19275 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 342 | err = PTR_ERR(auth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | goto out_no_auth; |
| 344 | } |
| 345 | |
| 346 | /* save the nodename */ |
Cedric Le Goater | 63ffc23 | 2008-10-03 23:41:51 -0400 | [diff] [blame] | 347 | clnt->cl_nodelen = strlen(init_utsname()->nodename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (clnt->cl_nodelen > UNX_MAXNODENAME) |
| 349 | clnt->cl_nodelen = UNX_MAXNODENAME; |
Cedric Le Goater | 63ffc23 | 2008-10-03 23:41:51 -0400 | [diff] [blame] | 350 | memcpy(clnt->cl_nodename, init_utsname()->nodename, clnt->cl_nodelen); |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 351 | rpc_register_client(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | return clnt; |
| 353 | |
| 354 | out_no_auth: |
Stanislav Kinsbursky | 0157d02 | 2012-01-11 19:18:01 +0400 | [diff] [blame] | 355 | rpc_clnt_remove_pipedir(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | out_no_path: |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 357 | kfree(clnt->cl_principal); |
| 358 | out_no_principal: |
Trond Myklebust | 23bf85b | 2006-11-21 10:40:23 -0500 | [diff] [blame] | 359 | rpc_free_iostats(clnt->cl_metrics); |
| 360 | out_no_stats: |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 361 | kfree(clnt->cl_server); |
| 362 | out_no_server: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | kfree(clnt); |
| 364 | out_err: |
Trond Myklebust | 6b6ca86 | 2006-09-05 12:55:57 -0400 | [diff] [blame] | 365 | xprt_put(xprt); |
Adrian Bunk | 712917d | 2006-03-13 21:20:47 -0800 | [diff] [blame] | 366 | out_no_xprt: |
Trond Myklebust | 4ada539 | 2007-06-14 17:26:17 -0400 | [diff] [blame] | 367 | rpciod_down(); |
| 368 | out_no_rpciod: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | return ERR_PTR(err); |
| 370 | } |
| 371 | |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 372 | /* |
| 373 | * rpc_create - create an RPC client and transport with one call |
| 374 | * @args: rpc_clnt create argument structure |
| 375 | * |
| 376 | * Creates and initializes an RPC transport and an RPC client. |
| 377 | * |
| 378 | * It can ping the server in order to determine if it is up, and to see if |
| 379 | * it supports this program and version. RPC_CLNT_CREATE_NOPING disables |
| 380 | * this behavior so asynchronous tasks can also use rpc_create. |
| 381 | */ |
| 382 | struct rpc_clnt *rpc_create(struct rpc_create_args *args) |
| 383 | { |
| 384 | struct rpc_xprt *xprt; |
| 385 | struct rpc_clnt *clnt; |
\"Talpey, Thomas\ | 3c341b0b | 2007-09-10 13:47:07 -0400 | [diff] [blame] | 386 | struct xprt_create xprtargs = { |
Pavel Emelyanov | 9a23e33 | 2010-09-29 16:05:12 +0400 | [diff] [blame] | 387 | .net = args->net, |
\"Talpey, Thomas\ | 4fa016e | 2007-09-10 13:47:57 -0400 | [diff] [blame] | 388 | .ident = args->protocol, |
Frank van Maarseveen | d3bc9a1 | 2007-07-09 22:23:35 +0200 | [diff] [blame] | 389 | .srcaddr = args->saddress, |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 390 | .dstaddr = args->address, |
| 391 | .addrlen = args->addrsize, |
Alexandros Batsakis | f300bab | 2009-09-10 17:33:30 +0300 | [diff] [blame] | 392 | .bc_xprt = args->bc_xprt, |
Frank van Maarseveen | 96802a0 | 2007-07-08 13:08:54 +0200 | [diff] [blame] | 393 | }; |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 394 | char servername[48]; |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 395 | |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 396 | /* |
Chuck Lever | 43780b8 | 2007-07-01 12:13:22 -0400 | [diff] [blame] | 397 | * If the caller chooses not to specify a hostname, whip |
| 398 | * up a string representation of the passed-in address. |
| 399 | */ |
| 400 | if (args->servername == NULL) { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 401 | struct sockaddr_un *sun = |
| 402 | (struct sockaddr_un *)args->address; |
Chuck Lever | da09eb9 | 2011-05-09 15:22:25 -0400 | [diff] [blame] | 403 | struct sockaddr_in *sin = |
| 404 | (struct sockaddr_in *)args->address; |
| 405 | struct sockaddr_in6 *sin6 = |
| 406 | (struct sockaddr_in6 *)args->address; |
| 407 | |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 408 | servername[0] = '\0'; |
| 409 | switch (args->address->sa_family) { |
Chuck Lever | 176e21e | 2011-05-09 15:22:44 -0400 | [diff] [blame] | 410 | case AF_LOCAL: |
| 411 | snprintf(servername, sizeof(servername), "%s", |
| 412 | sun->sun_path); |
| 413 | break; |
Chuck Lever | da09eb9 | 2011-05-09 15:22:25 -0400 | [diff] [blame] | 414 | case AF_INET: |
Harvey Harrison | 21454aa | 2008-10-31 00:54:56 -0700 | [diff] [blame] | 415 | snprintf(servername, sizeof(servername), "%pI4", |
| 416 | &sin->sin_addr.s_addr); |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 417 | break; |
Chuck Lever | da09eb9 | 2011-05-09 15:22:25 -0400 | [diff] [blame] | 418 | case AF_INET6: |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 419 | snprintf(servername, sizeof(servername), "%pI6", |
Chuck Lever | da09eb9 | 2011-05-09 15:22:25 -0400 | [diff] [blame] | 420 | &sin6->sin6_addr); |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 421 | break; |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 422 | default: |
| 423 | /* caller wants default server name, but |
| 424 | * address family isn't recognized. */ |
| 425 | return ERR_PTR(-EINVAL); |
| 426 | } |
Chuck Lever | 43780b8 | 2007-07-01 12:13:22 -0400 | [diff] [blame] | 427 | args->servername = servername; |
| 428 | } |
| 429 | |
Chuck Lever | 510deb0 | 2007-12-10 14:56:24 -0500 | [diff] [blame] | 430 | xprt = xprt_create_transport(&xprtargs); |
| 431 | if (IS_ERR(xprt)) |
| 432 | return (struct rpc_clnt *)xprt; |
| 433 | |
Chuck Lever | 43780b8 | 2007-07-01 12:13:22 -0400 | [diff] [blame] | 434 | /* |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 435 | * By default, kernel RPC client connects from a reserved port. |
| 436 | * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters, |
| 437 | * but it is always enabled for rpciod, which handles the connect |
| 438 | * operation. |
| 439 | */ |
| 440 | xprt->resvport = 1; |
| 441 | if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT) |
| 442 | xprt->resvport = 0; |
| 443 | |
Trond Myklebust | 698b6d0 | 2007-12-20 16:03:53 -0500 | [diff] [blame] | 444 | clnt = rpc_new_client(args, xprt); |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 445 | if (IS_ERR(clnt)) |
| 446 | return clnt; |
| 447 | |
| 448 | if (!(args->flags & RPC_CLNT_CREATE_NOPING)) { |
Chuck Lever | caabea8 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 449 | int err = rpc_ping(clnt); |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 450 | if (err != 0) { |
| 451 | rpc_shutdown_client(clnt); |
| 452 | return ERR_PTR(err); |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | clnt->cl_softrtry = 1; |
| 457 | if (args->flags & RPC_CLNT_CREATE_HARDRTRY) |
| 458 | clnt->cl_softrtry = 0; |
| 459 | |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 460 | if (args->flags & RPC_CLNT_CREATE_AUTOBIND) |
| 461 | clnt->cl_autobind = 1; |
Chuck Lever | 43d78ef | 2007-02-06 18:26:11 -0500 | [diff] [blame] | 462 | if (args->flags & RPC_CLNT_CREATE_DISCRTRY) |
| 463 | clnt->cl_discrtry = 1; |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 464 | if (!(args->flags & RPC_CLNT_CREATE_QUIET)) |
| 465 | clnt->cl_chatty = 1; |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 466 | |
| 467 | return clnt; |
| 468 | } |
Chuck Lever | b86acd5 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 469 | EXPORT_SYMBOL_GPL(rpc_create); |
Chuck Lever | c286676 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /* |
| 472 | * This function clones the RPC client structure. It allows us to share the |
| 473 | * same transport while varying parameters such as the authentication |
| 474 | * flavour. |
| 475 | */ |
| 476 | struct rpc_clnt * |
| 477 | rpc_clone_client(struct rpc_clnt *clnt) |
| 478 | { |
| 479 | struct rpc_clnt *new; |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 480 | int err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
Arnaldo Carvalho de Melo | e69062b | 2006-11-21 01:21:34 -0200 | [diff] [blame] | 482 | new = kmemdup(clnt, sizeof(*new), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | if (!new) |
| 484 | goto out_no_clnt; |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 485 | new->cl_server = kstrdup(clnt->cl_server, GFP_KERNEL); |
| 486 | if (new->cl_server == NULL) |
| 487 | goto out_no_server; |
Trond Myklebust | d431a555 | 2007-06-17 17:07:54 -0400 | [diff] [blame] | 488 | new->cl_parent = clnt; |
| 489 | /* Turn off autobind on clones */ |
| 490 | new->cl_autobind = 0; |
| 491 | INIT_LIST_HEAD(&new->cl_tasks); |
| 492 | spin_lock_init(&new->cl_lock); |
Trond Myklebust | ba7392b | 2007-12-20 16:03:55 -0500 | [diff] [blame] | 493 | rpc_init_rtt(&new->cl_rtt_default, clnt->cl_timeout->to_initval); |
Trond Myklebust | 23bf85b | 2006-11-21 10:40:23 -0500 | [diff] [blame] | 494 | new->cl_metrics = rpc_alloc_iostats(clnt); |
| 495 | if (new->cl_metrics == NULL) |
| 496 | goto out_no_stats; |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 497 | if (clnt->cl_principal) { |
| 498 | new->cl_principal = kstrdup(clnt->cl_principal, GFP_KERNEL); |
| 499 | if (new->cl_principal == NULL) |
| 500 | goto out_no_principal; |
| 501 | } |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 502 | atomic_set(&new->cl_count, 1); |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 503 | err = rpc_setup_pipedir(new, clnt->cl_program->pipe_dir_name); |
| 504 | if (err != 0) |
| 505 | goto out_no_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (new->cl_auth) |
| 507 | atomic_inc(&new->cl_auth->au_count); |
Trond Myklebust | d431a555 | 2007-06-17 17:07:54 -0400 | [diff] [blame] | 508 | xprt_get(clnt->cl_xprt); |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 509 | atomic_inc(&clnt->cl_count); |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 510 | rpc_register_client(new); |
Trond Myklebust | 4ada539 | 2007-06-14 17:26:17 -0400 | [diff] [blame] | 511 | rpciod_up(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | return new; |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 513 | out_no_path: |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 514 | kfree(new->cl_principal); |
| 515 | out_no_principal: |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 516 | rpc_free_iostats(new->cl_metrics); |
Trond Myklebust | 23bf85b | 2006-11-21 10:40:23 -0500 | [diff] [blame] | 517 | out_no_stats: |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 518 | kfree(new->cl_server); |
| 519 | out_no_server: |
Trond Myklebust | 23bf85b | 2006-11-21 10:40:23 -0500 | [diff] [blame] | 520 | kfree(new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | out_no_clnt: |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 522 | dprintk("RPC: %s: returned error %d\n", __func__, err); |
Trond Myklebust | 3e32a5d | 2006-11-16 11:37:27 -0500 | [diff] [blame] | 523 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 525 | EXPORT_SYMBOL_GPL(rpc_clone_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | /* |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 528 | * Kill all tasks for the given client. |
| 529 | * XXX: kill their descendants as well? |
| 530 | */ |
| 531 | void rpc_killall_tasks(struct rpc_clnt *clnt) |
| 532 | { |
| 533 | struct rpc_task *rovr; |
| 534 | |
| 535 | |
| 536 | if (list_empty(&clnt->cl_tasks)) |
| 537 | return; |
| 538 | dprintk("RPC: killing all tasks for client %p\n", clnt); |
| 539 | /* |
| 540 | * Spin lock all_tasks to prevent changes... |
| 541 | */ |
| 542 | spin_lock(&clnt->cl_lock); |
| 543 | list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) { |
| 544 | if (!RPC_IS_ACTIVATED(rovr)) |
| 545 | continue; |
| 546 | if (!(rovr->tk_flags & RPC_TASK_KILLED)) { |
| 547 | rovr->tk_flags |= RPC_TASK_KILLED; |
| 548 | rpc_exit(rovr, -EIO); |
Stanislav Kinsbursky | 8e26de2 | 2011-03-17 18:54:23 +0300 | [diff] [blame] | 549 | if (RPC_IS_QUEUED(rovr)) |
| 550 | rpc_wake_up_queued_task(rovr->tk_waitqueue, |
| 551 | rovr); |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 552 | } |
| 553 | } |
| 554 | spin_unlock(&clnt->cl_lock); |
| 555 | } |
| 556 | EXPORT_SYMBOL_GPL(rpc_killall_tasks); |
| 557 | |
| 558 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | * Properly shut down an RPC client, terminating all outstanding |
Trond Myklebust | 90c5755 | 2007-06-09 19:49:36 -0400 | [diff] [blame] | 560 | * requests. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | */ |
Trond Myklebust | 4c402b4 | 2007-06-14 16:40:32 -0400 | [diff] [blame] | 562 | void rpc_shutdown_client(struct rpc_clnt *clnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | { |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 564 | dprintk("RPC: shutting down %s client for %s\n", |
| 565 | clnt->cl_protname, clnt->cl_server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 567 | while (!list_empty(&clnt->cl_tasks)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | rpc_killall_tasks(clnt); |
Ingo Molnar | 532347e | 2006-01-09 20:52:53 -0800 | [diff] [blame] | 569 | wait_event_timeout(destroy_wait, |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 570 | list_empty(&clnt->cl_tasks), 1*HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | } |
| 572 | |
Trond Myklebust | 4c402b4 | 2007-06-14 16:40:32 -0400 | [diff] [blame] | 573 | rpc_release_client(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 575 | EXPORT_SYMBOL_GPL(rpc_shutdown_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | /* |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 578 | * Free an RPC client |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | */ |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 580 | static void |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 581 | rpc_free_client(struct rpc_clnt *clnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 583 | dprintk("RPC: destroying %s client for %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | clnt->cl_protname, clnt->cl_server); |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 585 | if (clnt->cl_parent != clnt) |
Trond Myklebust | 8ad7c89 | 2007-06-14 16:40:32 -0400 | [diff] [blame] | 586 | rpc_release_client(clnt->cl_parent); |
Trond Myklebust | 6eac7d3 | 2012-01-20 13:53:37 -0500 | [diff] [blame] | 587 | kfree(clnt->cl_server); |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 588 | rpc_unregister_client(clnt); |
Stanislav Kinsbursky | f513125 | 2012-01-11 19:18:26 +0400 | [diff] [blame] | 589 | rpc_clnt_remove_pipedir(clnt); |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 590 | rpc_free_iostats(clnt->cl_metrics); |
Olga Kornievskaia | 608207e | 2008-12-23 16:17:40 -0500 | [diff] [blame] | 591 | kfree(clnt->cl_principal); |
Chuck Lever | 11c556b | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 592 | clnt->cl_metrics = NULL; |
Trond Myklebust | 6b6ca86 | 2006-09-05 12:55:57 -0400 | [diff] [blame] | 593 | xprt_put(clnt->cl_xprt); |
Trond Myklebust | 4ada539 | 2007-06-14 17:26:17 -0400 | [diff] [blame] | 594 | rpciod_down(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | kfree(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | /* |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 599 | * Free an RPC client |
| 600 | */ |
| 601 | static void |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 602 | rpc_free_auth(struct rpc_clnt *clnt) |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 603 | { |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 604 | if (clnt->cl_auth == NULL) { |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 605 | rpc_free_client(clnt); |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 606 | return; |
| 607 | } |
| 608 | |
| 609 | /* |
| 610 | * Note: RPCSEC_GSS may need to send NULL RPC calls in order to |
| 611 | * release remaining GSS contexts. This mechanism ensures |
| 612 | * that it can do so safely. |
| 613 | */ |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 614 | atomic_inc(&clnt->cl_count); |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 615 | rpcauth_release(clnt->cl_auth); |
| 616 | clnt->cl_auth = NULL; |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 617 | if (atomic_dec_and_test(&clnt->cl_count)) |
| 618 | rpc_free_client(clnt); |
Trond Myklebust | 1dd17ec | 2007-06-26 16:57:41 -0400 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 622 | * Release reference to the RPC client |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | */ |
| 624 | void |
| 625 | rpc_release_client(struct rpc_clnt *clnt) |
| 626 | { |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 627 | dprintk("RPC: rpc_release_client(%p)\n", clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 629 | if (list_empty(&clnt->cl_tasks)) |
| 630 | wake_up(&destroy_wait); |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 631 | if (atomic_dec_and_test(&clnt->cl_count)) |
| 632 | rpc_free_auth(clnt); |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 633 | } |
| 634 | |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 635 | /** |
| 636 | * rpc_bind_new_program - bind a new RPC program to an existing client |
Randy Dunlap | 65b6e42 | 2008-02-13 15:03:23 -0800 | [diff] [blame] | 637 | * @old: old rpc_client |
| 638 | * @program: rpc program to set |
| 639 | * @vers: rpc program version |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 640 | * |
| 641 | * Clones the rpc client and sets up a new RPC program. This is mainly |
| 642 | * of use for enabling different RPC programs to share the same transport. |
| 643 | * The Sun NFSv2/v3 ACL protocol can do this. |
| 644 | */ |
| 645 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old, |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 646 | const struct rpc_program *program, |
Chuck Lever | 89eb21c | 2007-09-11 18:00:09 -0400 | [diff] [blame] | 647 | u32 vers) |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 648 | { |
| 649 | struct rpc_clnt *clnt; |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 650 | const struct rpc_version *version; |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 651 | int err; |
| 652 | |
| 653 | BUG_ON(vers >= program->nrvers || !program->version[vers]); |
| 654 | version = program->version[vers]; |
| 655 | clnt = rpc_clone_client(old); |
| 656 | if (IS_ERR(clnt)) |
| 657 | goto out; |
| 658 | clnt->cl_procinfo = version->procs; |
| 659 | clnt->cl_maxproc = version->nrprocs; |
| 660 | clnt->cl_protname = program->name; |
| 661 | clnt->cl_prog = program->number; |
| 662 | clnt->cl_vers = version->number; |
| 663 | clnt->cl_stats = program->stats; |
Chuck Lever | caabea8 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 664 | err = rpc_ping(clnt); |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 665 | if (err != 0) { |
| 666 | rpc_shutdown_client(clnt); |
| 667 | clnt = ERR_PTR(err); |
| 668 | } |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 669 | out: |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 670 | return clnt; |
| 671 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 672 | EXPORT_SYMBOL_GPL(rpc_bind_new_program); |
Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 673 | |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 674 | void rpc_task_release_client(struct rpc_task *task) |
| 675 | { |
| 676 | struct rpc_clnt *clnt = task->tk_client; |
| 677 | |
| 678 | if (clnt != NULL) { |
| 679 | /* Remove from client task list */ |
| 680 | spin_lock(&clnt->cl_lock); |
| 681 | list_del(&task->tk_task); |
| 682 | spin_unlock(&clnt->cl_lock); |
| 683 | task->tk_client = NULL; |
| 684 | |
| 685 | rpc_release_client(clnt); |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | static |
| 690 | void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt) |
| 691 | { |
| 692 | if (clnt != NULL) { |
| 693 | rpc_task_release_client(task); |
| 694 | task->tk_client = clnt; |
Trond Myklebust | 006abe8 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 695 | atomic_inc(&clnt->cl_count); |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 696 | if (clnt->cl_softrtry) |
| 697 | task->tk_flags |= RPC_TASK_SOFT; |
| 698 | /* Add to the client's list of all tasks */ |
| 699 | spin_lock(&clnt->cl_lock); |
| 700 | list_add_tail(&task->tk_task, &clnt->cl_tasks); |
| 701 | spin_unlock(&clnt->cl_lock); |
| 702 | } |
| 703 | } |
| 704 | |
Andy Adamson | cbdabc7 | 2011-03-01 01:34:20 +0000 | [diff] [blame] | 705 | void rpc_task_reset_client(struct rpc_task *task, struct rpc_clnt *clnt) |
| 706 | { |
| 707 | rpc_task_release_client(task); |
| 708 | rpc_task_set_client(task, clnt); |
| 709 | } |
| 710 | EXPORT_SYMBOL_GPL(rpc_task_reset_client); |
| 711 | |
| 712 | |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 713 | static void |
| 714 | rpc_task_set_rpc_message(struct rpc_task *task, const struct rpc_message *msg) |
| 715 | { |
| 716 | if (msg != NULL) { |
| 717 | task->tk_msg.rpc_proc = msg->rpc_proc; |
| 718 | task->tk_msg.rpc_argp = msg->rpc_argp; |
| 719 | task->tk_msg.rpc_resp = msg->rpc_resp; |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 720 | if (msg->rpc_cred != NULL) |
| 721 | task->tk_msg.rpc_cred = get_rpccred(msg->rpc_cred); |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 722 | } |
| 723 | } |
| 724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | /* |
| 726 | * Default callback for async RPC calls |
| 727 | */ |
| 728 | static void |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 729 | rpc_default_callback(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | { |
| 731 | } |
| 732 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 733 | static const struct rpc_call_ops rpc_default_ops = { |
| 734 | .rpc_call_done = rpc_default_callback, |
| 735 | }; |
| 736 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 737 | /** |
| 738 | * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it |
| 739 | * @task_setup_data: pointer to task initialisation data |
| 740 | */ |
| 741 | struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data) |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 742 | { |
Trond Myklebust | 19445b9 | 2010-04-16 16:41:10 -0400 | [diff] [blame] | 743 | struct rpc_task *task; |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 744 | |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 745 | task = rpc_new_task(task_setup_data); |
Trond Myklebust | 19445b9 | 2010-04-16 16:41:10 -0400 | [diff] [blame] | 746 | if (IS_ERR(task)) |
Trond Myklebust | 5085925 | 2007-10-25 18:19:37 -0400 | [diff] [blame] | 747 | goto out; |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 748 | |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 749 | rpc_task_set_client(task, task_setup_data->rpc_client); |
| 750 | rpc_task_set_rpc_message(task, task_setup_data->rpc_message); |
| 751 | |
Trond Myklebust | 58f9612 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 752 | if (task->tk_action == NULL) |
| 753 | rpc_call_start(task); |
| 754 | |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 755 | atomic_inc(&task->tk_count); |
| 756 | rpc_execute(task); |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 757 | out: |
Trond Myklebust | 19445b9 | 2010-04-16 16:41:10 -0400 | [diff] [blame] | 758 | return task; |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 759 | } |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 760 | EXPORT_SYMBOL_GPL(rpc_run_task); |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 761 | |
| 762 | /** |
| 763 | * rpc_call_sync - Perform a synchronous RPC call |
| 764 | * @clnt: pointer to RPC client |
| 765 | * @msg: RPC call parameters |
| 766 | * @flags: RPC call flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | */ |
Trond Myklebust | cbc2005 | 2008-02-14 11:11:30 -0500 | [diff] [blame] | 768 | int rpc_call_sync(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { |
| 770 | struct rpc_task *task; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 771 | struct rpc_task_setup task_setup_data = { |
| 772 | .rpc_client = clnt, |
| 773 | .rpc_message = msg, |
| 774 | .callback_ops = &rpc_default_ops, |
| 775 | .flags = flags, |
| 776 | }; |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 777 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | BUG_ON(flags & RPC_TASK_ASYNC); |
| 780 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 781 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 782 | if (IS_ERR(task)) |
| 783 | return PTR_ERR(task); |
Trond Myklebust | e60859a | 2006-01-03 09:55:10 +0100 | [diff] [blame] | 784 | status = task->tk_status; |
Trond Myklebust | bde8f00 | 2007-01-24 11:54:53 -0800 | [diff] [blame] | 785 | rpc_put_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | return status; |
| 787 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 788 | EXPORT_SYMBOL_GPL(rpc_call_sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 790 | /** |
| 791 | * rpc_call_async - Perform an asynchronous RPC call |
| 792 | * @clnt: pointer to RPC client |
| 793 | * @msg: RPC call parameters |
| 794 | * @flags: RPC call flags |
Randy Dunlap | 65b6e42 | 2008-02-13 15:03:23 -0800 | [diff] [blame] | 795 | * @tk_ops: RPC call ops |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 796 | * @data: user call data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | */ |
| 798 | int |
Trond Myklebust | cbc2005 | 2008-02-14 11:11:30 -0500 | [diff] [blame] | 799 | rpc_call_async(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 800 | const struct rpc_call_ops *tk_ops, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | { |
| 802 | struct rpc_task *task; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 803 | struct rpc_task_setup task_setup_data = { |
| 804 | .rpc_client = clnt, |
| 805 | .rpc_message = msg, |
| 806 | .callback_ops = tk_ops, |
| 807 | .callback_data = data, |
| 808 | .flags = flags|RPC_TASK_ASYNC, |
| 809 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 811 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 6e5b70e | 2007-06-12 10:02:37 -0400 | [diff] [blame] | 812 | if (IS_ERR(task)) |
| 813 | return PTR_ERR(task); |
| 814 | rpc_put_task(task); |
| 815 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 817 | EXPORT_SYMBOL_GPL(rpc_call_async); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 819 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 820 | /** |
| 821 | * rpc_run_bc_task - Allocate a new RPC task for backchannel use, then run |
| 822 | * rpc_execute against it |
Jaswinder Singh Rajput | 7a73fdd | 2009-09-24 14:58:42 -0400 | [diff] [blame] | 823 | * @req: RPC request |
| 824 | * @tk_ops: RPC call ops |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 825 | */ |
| 826 | struct rpc_task *rpc_run_bc_task(struct rpc_rqst *req, |
Jaswinder Singh Rajput | 7a73fdd | 2009-09-24 14:58:42 -0400 | [diff] [blame] | 827 | const struct rpc_call_ops *tk_ops) |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 828 | { |
| 829 | struct rpc_task *task; |
| 830 | struct xdr_buf *xbufp = &req->rq_snd_buf; |
| 831 | struct rpc_task_setup task_setup_data = { |
| 832 | .callback_ops = tk_ops, |
| 833 | }; |
| 834 | |
| 835 | dprintk("RPC: rpc_run_bc_task req= %p\n", req); |
| 836 | /* |
| 837 | * Create an rpc_task to send the data |
| 838 | */ |
| 839 | task = rpc_new_task(&task_setup_data); |
Trond Myklebust | 19445b9 | 2010-04-16 16:41:10 -0400 | [diff] [blame] | 840 | if (IS_ERR(task)) { |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 841 | xprt_free_bc_request(req); |
| 842 | goto out; |
| 843 | } |
| 844 | task->tk_rqstp = req; |
| 845 | |
| 846 | /* |
| 847 | * Set up the xdr_buf length. |
| 848 | * This also indicates that the buffer is XDR encoded already. |
| 849 | */ |
| 850 | xbufp->len = xbufp->head[0].iov_len + xbufp->page_len + |
| 851 | xbufp->tail[0].iov_len; |
| 852 | |
| 853 | task->tk_action = call_bc_transmit; |
| 854 | atomic_inc(&task->tk_count); |
| 855 | BUG_ON(atomic_read(&task->tk_count) != 2); |
| 856 | rpc_execute(task); |
| 857 | |
| 858 | out: |
| 859 | dprintk("RPC: rpc_run_bc_task: task= %p\n", task); |
| 860 | return task; |
| 861 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 862 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | void |
Trond Myklebust | 77de2c5 | 2007-10-25 18:40:21 -0400 | [diff] [blame] | 865 | rpc_call_start(struct rpc_task *task) |
| 866 | { |
| 867 | task->tk_action = call_start; |
| 868 | } |
| 869 | EXPORT_SYMBOL_GPL(rpc_call_start); |
| 870 | |
Chuck Lever | ed39440 | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 871 | /** |
| 872 | * rpc_peeraddr - extract remote peer address from clnt's xprt |
| 873 | * @clnt: RPC client structure |
| 874 | * @buf: target buffer |
Randy Dunlap | 65b6e42 | 2008-02-13 15:03:23 -0800 | [diff] [blame] | 875 | * @bufsize: length of target buffer |
Chuck Lever | ed39440 | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 876 | * |
| 877 | * Returns the number of bytes that are actually in the stored address. |
| 878 | */ |
| 879 | size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize) |
| 880 | { |
| 881 | size_t bytes; |
| 882 | struct rpc_xprt *xprt = clnt->cl_xprt; |
| 883 | |
| 884 | bytes = sizeof(xprt->addr); |
| 885 | if (bytes > bufsize) |
| 886 | bytes = bufsize; |
| 887 | memcpy(buf, &clnt->cl_xprt->addr, bytes); |
Chuck Lever | c4efcb1 | 2006-08-22 20:06:19 -0400 | [diff] [blame] | 888 | return xprt->addrlen; |
Chuck Lever | ed39440 | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 889 | } |
Chuck Lever | b86acd5 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 890 | EXPORT_SYMBOL_GPL(rpc_peeraddr); |
Chuck Lever | ed39440 | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 891 | |
Chuck Lever | f425eba | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 892 | /** |
| 893 | * rpc_peeraddr2str - return remote peer address in printable format |
| 894 | * @clnt: RPC client structure |
| 895 | * @format: address format |
| 896 | * |
| 897 | */ |
Chuck Lever | b454ae9 | 2008-01-07 18:34:48 -0500 | [diff] [blame] | 898 | const char *rpc_peeraddr2str(struct rpc_clnt *clnt, |
| 899 | enum rpc_display_format_t format) |
Chuck Lever | f425eba | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 900 | { |
| 901 | struct rpc_xprt *xprt = clnt->cl_xprt; |
Chuck Lever | 7559c7a | 2006-12-05 16:35:37 -0500 | [diff] [blame] | 902 | |
| 903 | if (xprt->address_strings[format] != NULL) |
| 904 | return xprt->address_strings[format]; |
| 905 | else |
| 906 | return "unprintable"; |
Chuck Lever | f425eba | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 907 | } |
Chuck Lever | b86acd5 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 908 | EXPORT_SYMBOL_GPL(rpc_peeraddr2str); |
Chuck Lever | f425eba | 2006-08-22 20:06:18 -0400 | [diff] [blame] | 909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | void |
| 911 | rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize) |
| 912 | { |
| 913 | struct rpc_xprt *xprt = clnt->cl_xprt; |
Chuck Lever | 470056c | 2005-08-25 16:25:56 -0700 | [diff] [blame] | 914 | if (xprt->ops->set_buffer_size) |
| 915 | xprt->ops->set_buffer_size(xprt, sndsize, rcvsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 917 | EXPORT_SYMBOL_GPL(rpc_setbufsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | |
| 919 | /* |
| 920 | * Return size of largest payload RPC client can support, in bytes |
| 921 | * |
| 922 | * For stream transports, this is one RPC record fragment (see RFC |
| 923 | * 1831), as we don't support multi-record requests yet. For datagram |
| 924 | * transports, this is the size of an IP packet minus the IP, UDP, and |
| 925 | * RPC header sizes. |
| 926 | */ |
| 927 | size_t rpc_max_payload(struct rpc_clnt *clnt) |
| 928 | { |
| 929 | return clnt->cl_xprt->max_payload; |
| 930 | } |
Chuck Lever | b86acd5 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 931 | EXPORT_SYMBOL_GPL(rpc_max_payload); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 933 | /** |
| 934 | * rpc_force_rebind - force transport to check that remote port is unchanged |
| 935 | * @clnt: client to rebind |
| 936 | * |
| 937 | */ |
| 938 | void rpc_force_rebind(struct rpc_clnt *clnt) |
| 939 | { |
| 940 | if (clnt->cl_autobind) |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 941 | xprt_clear_bound(clnt->cl_xprt); |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 942 | } |
Chuck Lever | b86acd5 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 943 | EXPORT_SYMBOL_GPL(rpc_force_rebind); |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | /* |
Andy Adamson | aae2006 | 2009-04-01 09:22:40 -0400 | [diff] [blame] | 946 | * Restart an (async) RPC call from the call_prepare state. |
| 947 | * Usually called from within the exit handler. |
| 948 | */ |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 949 | int |
Andy Adamson | aae2006 | 2009-04-01 09:22:40 -0400 | [diff] [blame] | 950 | rpc_restart_call_prepare(struct rpc_task *task) |
| 951 | { |
| 952 | if (RPC_ASSASSINATED(task)) |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 953 | return 0; |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 954 | task->tk_action = call_start; |
| 955 | if (task->tk_ops->rpc_call_prepare != NULL) |
| 956 | task->tk_action = rpc_prepare_task; |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 957 | return 1; |
Andy Adamson | aae2006 | 2009-04-01 09:22:40 -0400 | [diff] [blame] | 958 | } |
| 959 | EXPORT_SYMBOL_GPL(rpc_restart_call_prepare); |
| 960 | |
| 961 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | * Restart an (async) RPC call. Usually called from within the |
| 963 | * exit handler. |
| 964 | */ |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 965 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | rpc_restart_call(struct rpc_task *task) |
| 967 | { |
| 968 | if (RPC_ASSASSINATED(task)) |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 969 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | task->tk_action = call_start; |
Trond Myklebust | f1f88fc | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 971 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 973 | EXPORT_SYMBOL_GPL(rpc_restart_call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Chuck Lever | 3748f1e | 2008-05-21 17:09:12 -0400 | [diff] [blame] | 975 | #ifdef RPC_DEBUG |
| 976 | static const char *rpc_proc_name(const struct rpc_task *task) |
| 977 | { |
| 978 | const struct rpc_procinfo *proc = task->tk_msg.rpc_proc; |
| 979 | |
| 980 | if (proc) { |
| 981 | if (proc->p_name) |
| 982 | return proc->p_name; |
| 983 | else |
| 984 | return "NULL"; |
| 985 | } else |
| 986 | return "no proc"; |
| 987 | } |
| 988 | #endif |
| 989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | /* |
| 991 | * 0. Initial state |
| 992 | * |
| 993 | * Other FSM states can be visited zero or more times, but |
| 994 | * this state is visited exactly once for each RPC. |
| 995 | */ |
| 996 | static void |
| 997 | call_start(struct rpc_task *task) |
| 998 | { |
| 999 | struct rpc_clnt *clnt = task->tk_client; |
| 1000 | |
Chuck Lever | 3748f1e | 2008-05-21 17:09:12 -0400 | [diff] [blame] | 1001 | dprintk("RPC: %5u call_start %s%d proc %s (%s)\n", task->tk_pid, |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1002 | clnt->cl_protname, clnt->cl_vers, |
Chuck Lever | 3748f1e | 2008-05-21 17:09:12 -0400 | [diff] [blame] | 1003 | rpc_proc_name(task), |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1004 | (RPC_IS_ASYNC(task) ? "async" : "sync")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | |
| 1006 | /* Increment call count */ |
| 1007 | task->tk_msg.rpc_proc->p_count++; |
| 1008 | clnt->cl_stats->rpccnt++; |
| 1009 | task->tk_action = call_reserve; |
| 1010 | } |
| 1011 | |
| 1012 | /* |
| 1013 | * 1. Reserve an RPC call slot |
| 1014 | */ |
| 1015 | static void |
| 1016 | call_reserve(struct rpc_task *task) |
| 1017 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1018 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | task->tk_status = 0; |
| 1021 | task->tk_action = call_reserveresult; |
| 1022 | xprt_reserve(task); |
| 1023 | } |
| 1024 | |
| 1025 | /* |
| 1026 | * 1b. Grok the result of xprt_reserve() |
| 1027 | */ |
| 1028 | static void |
| 1029 | call_reserveresult(struct rpc_task *task) |
| 1030 | { |
| 1031 | int status = task->tk_status; |
| 1032 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1033 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
| 1035 | /* |
| 1036 | * After a call to xprt_reserve(), we must have either |
| 1037 | * a request slot or else an error status. |
| 1038 | */ |
| 1039 | task->tk_status = 0; |
| 1040 | if (status >= 0) { |
| 1041 | if (task->tk_rqstp) { |
J. Bruce Fields | f2d47d0 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1042 | task->tk_action = call_refresh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | return; |
| 1044 | } |
| 1045 | |
| 1046 | printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1047 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | rpc_exit(task, -EIO); |
| 1049 | return; |
| 1050 | } |
| 1051 | |
| 1052 | /* |
| 1053 | * Even though there was an error, we may have acquired |
| 1054 | * a request slot somehow. Make sure not to leak it. |
| 1055 | */ |
| 1056 | if (task->tk_rqstp) { |
| 1057 | printk(KERN_ERR "%s: status=%d, request allocated anyway\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1058 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | xprt_release(task); |
| 1060 | } |
| 1061 | |
| 1062 | switch (status) { |
| 1063 | case -EAGAIN: /* woken up; retry */ |
| 1064 | task->tk_action = call_reserve; |
| 1065 | return; |
| 1066 | case -EIO: /* probably a shutdown */ |
| 1067 | break; |
| 1068 | default: |
| 1069 | printk(KERN_ERR "%s: unrecognized error %d, exiting\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1070 | __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | break; |
| 1072 | } |
| 1073 | rpc_exit(task, status); |
| 1074 | } |
| 1075 | |
| 1076 | /* |
J. Bruce Fields | 5557624 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1077 | * 2. Bind and/or refresh the credentials |
| 1078 | */ |
| 1079 | static void |
| 1080 | call_refresh(struct rpc_task *task) |
| 1081 | { |
| 1082 | dprint_status(task); |
| 1083 | |
| 1084 | task->tk_action = call_refreshresult; |
| 1085 | task->tk_status = 0; |
| 1086 | task->tk_client->cl_stats->rpcauthrefresh++; |
| 1087 | rpcauth_refreshcred(task); |
| 1088 | } |
| 1089 | |
| 1090 | /* |
| 1091 | * 2a. Process the results of a credential refresh |
| 1092 | */ |
| 1093 | static void |
| 1094 | call_refreshresult(struct rpc_task *task) |
| 1095 | { |
| 1096 | int status = task->tk_status; |
| 1097 | |
| 1098 | dprint_status(task); |
| 1099 | |
| 1100 | task->tk_status = 0; |
Trond Myklebust | 5fc4397 | 2010-11-20 11:13:31 -0500 | [diff] [blame] | 1101 | task->tk_action = call_refresh; |
J. Bruce Fields | 5557624 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1102 | switch (status) { |
Trond Myklebust | 5fc4397 | 2010-11-20 11:13:31 -0500 | [diff] [blame] | 1103 | case 0: |
| 1104 | if (rpcauth_uptodatecred(task)) |
| 1105 | task->tk_action = call_allocate; |
J. Bruce Fields | 5557624 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1106 | return; |
| 1107 | case -ETIMEDOUT: |
| 1108 | rpc_delay(task, 3*HZ); |
Trond Myklebust | 5fc4397 | 2010-11-20 11:13:31 -0500 | [diff] [blame] | 1109 | case -EAGAIN: |
| 1110 | status = -EACCES; |
| 1111 | if (!task->tk_cred_retry) |
| 1112 | break; |
| 1113 | task->tk_cred_retry--; |
| 1114 | dprintk("RPC: %5u %s: retry refresh creds\n", |
| 1115 | task->tk_pid, __func__); |
| 1116 | return; |
J. Bruce Fields | 5557624 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1117 | } |
Trond Myklebust | 5fc4397 | 2010-11-20 11:13:31 -0500 | [diff] [blame] | 1118 | dprintk("RPC: %5u %s: refresh creds failed with error %d\n", |
| 1119 | task->tk_pid, __func__, status); |
| 1120 | rpc_exit(task, status); |
J. Bruce Fields | 5557624 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | /* |
| 1124 | * 2b. Allocate the buffer. For details, see sched.c:rpc_malloc. |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 1125 | * (Note: buffer memory is freed in xprt_release). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | */ |
| 1127 | static void |
| 1128 | call_allocate(struct rpc_task *task) |
| 1129 | { |
J. Bruce Fields | f2d47d0 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1130 | unsigned int slack = task->tk_rqstp->rq_cred->cr_auth->au_cslack; |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 1131 | struct rpc_rqst *req = task->tk_rqstp; |
| 1132 | struct rpc_xprt *xprt = task->tk_xprt; |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1133 | struct rpc_procinfo *proc = task->tk_msg.rpc_proc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1135 | dprint_status(task); |
| 1136 | |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1137 | task->tk_status = 0; |
J. Bruce Fields | f2d47d0 | 2010-09-12 19:55:25 -0400 | [diff] [blame] | 1138 | task->tk_action = call_bind; |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1139 | |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 1140 | if (req->rq_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | return; |
| 1142 | |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1143 | if (proc->p_proc != 0) { |
| 1144 | BUG_ON(proc->p_arglen == 0); |
| 1145 | if (proc->p_decode != NULL) |
| 1146 | BUG_ON(proc->p_replen == 0); |
| 1147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1149 | /* |
| 1150 | * Calculate the size (in quads) of the RPC call |
| 1151 | * and reply headers, and convert both values |
| 1152 | * to byte sizes. |
| 1153 | */ |
| 1154 | req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen; |
| 1155 | req->rq_callsize <<= 2; |
| 1156 | req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen; |
| 1157 | req->rq_rcvsize <<= 2; |
| 1158 | |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 1159 | req->rq_buffer = xprt->ops->buf_alloc(task, |
| 1160 | req->rq_callsize + req->rq_rcvsize); |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1161 | if (req->rq_buffer != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | return; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1163 | |
| 1164 | dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | |
Trond Myklebust | 5afa9133 | 2011-06-17 10:14:59 -0400 | [diff] [blame] | 1166 | if (RPC_IS_ASYNC(task) || !fatal_signal_pending(current)) { |
Trond Myklebust | b6e9c71 | 2007-10-01 12:06:44 -0400 | [diff] [blame] | 1167 | task->tk_action = call_allocate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | rpc_delay(task, HZ>>4); |
| 1169 | return; |
| 1170 | } |
| 1171 | |
| 1172 | rpc_exit(task, -ERESTARTSYS); |
| 1173 | } |
| 1174 | |
Trond Myklebust | 940e331 | 2005-11-09 21:45:24 -0500 | [diff] [blame] | 1175 | static inline int |
| 1176 | rpc_task_need_encode(struct rpc_task *task) |
| 1177 | { |
| 1178 | return task->tk_rqstp->rq_snd_buf.len == 0; |
| 1179 | } |
| 1180 | |
| 1181 | static inline void |
| 1182 | rpc_task_force_reencode(struct rpc_task *task) |
| 1183 | { |
| 1184 | task->tk_rqstp->rq_snd_buf.len = 0; |
Trond Myklebust | 2574cc9 | 2009-08-28 11:12:12 -0400 | [diff] [blame] | 1185 | task->tk_rqstp->rq_bytes_sent = 0; |
Trond Myklebust | 940e331 | 2005-11-09 21:45:24 -0500 | [diff] [blame] | 1186 | } |
| 1187 | |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1188 | static inline void |
| 1189 | rpc_xdr_buf_init(struct xdr_buf *buf, void *start, size_t len) |
| 1190 | { |
| 1191 | buf->head[0].iov_base = start; |
| 1192 | buf->head[0].iov_len = len; |
| 1193 | buf->tail[0].iov_len = 0; |
| 1194 | buf->page_len = 0; |
\"Talpey, Thomas\ | 4f22ccc | 2007-09-10 13:44:58 -0400 | [diff] [blame] | 1195 | buf->flags = 0; |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1196 | buf->len = 0; |
| 1197 | buf->buflen = len; |
| 1198 | } |
| 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | /* |
| 1201 | * 3. Encode arguments of an RPC call |
| 1202 | */ |
| 1203 | static void |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1204 | rpc_xdr_encode(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | struct rpc_rqst *req = task->tk_rqstp; |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 1207 | kxdreproc_t encode; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1208 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1210 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 1212 | rpc_xdr_buf_init(&req->rq_snd_buf, |
| 1213 | req->rq_buffer, |
| 1214 | req->rq_callsize); |
| 1215 | rpc_xdr_buf_init(&req->rq_rcv_buf, |
| 1216 | (char *)req->rq_buffer + req->rq_callsize, |
| 1217 | req->rq_rcvsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1219 | p = rpc_encode_header(task); |
| 1220 | if (p == NULL) { |
| 1221 | printk(KERN_INFO "RPC: couldn't encode RPC header, exit EIO\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | rpc_exit(task, -EIO); |
| 1223 | return; |
| 1224 | } |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1225 | |
| 1226 | encode = task->tk_msg.rpc_proc->p_encode; |
J. Bruce Fields | f368031 | 2005-10-13 16:54:48 -0400 | [diff] [blame] | 1227 | if (encode == NULL) |
| 1228 | return; |
| 1229 | |
| 1230 | task->tk_status = rpcauth_wrap_req(task, encode, req, p, |
| 1231 | task->tk_msg.rpc_argp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | /* |
| 1235 | * 4. Get the server port number if not yet set |
| 1236 | */ |
| 1237 | static void |
| 1238 | call_bind(struct rpc_task *task) |
| 1239 | { |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 1240 | struct rpc_xprt *xprt = task->tk_xprt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1242 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1244 | task->tk_action = call_connect; |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 1245 | if (!xprt_bound(xprt)) { |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1246 | task->tk_action = call_bind_status; |
Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 1247 | task->tk_timeout = xprt->bind_timeout; |
Chuck Lever | bbf7c1d | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 1248 | xprt->ops->rpcbind(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | } |
| 1250 | } |
| 1251 | |
| 1252 | /* |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1253 | * 4a. Sort out bind result |
| 1254 | */ |
| 1255 | static void |
| 1256 | call_bind_status(struct rpc_task *task) |
| 1257 | { |
Chuck Lever | 906462a | 2007-09-11 18:00:47 -0400 | [diff] [blame] | 1258 | int status = -EIO; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1259 | |
| 1260 | if (task->tk_status >= 0) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1261 | dprint_status(task); |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1262 | task->tk_status = 0; |
| 1263 | task->tk_action = call_connect; |
| 1264 | return; |
| 1265 | } |
| 1266 | |
Steve Dickson | 5753cba | 2012-02-06 10:08:08 -0500 | [diff] [blame] | 1267 | trace_rpc_bind_status(task); |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1268 | switch (task->tk_status) { |
Trond Myklebust | 381ba74 | 2008-07-07 12:18:53 -0400 | [diff] [blame] | 1269 | case -ENOMEM: |
| 1270 | dprintk("RPC: %5u rpcbind out of memory\n", task->tk_pid); |
| 1271 | rpc_delay(task, HZ >> 2); |
Chuck Lever | 2429cbf | 2007-09-11 18:00:41 -0400 | [diff] [blame] | 1272 | goto retry_timeout; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1273 | case -EACCES: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1274 | dprintk("RPC: %5u remote rpcbind: RPC program/version " |
| 1275 | "unavailable\n", task->tk_pid); |
Chuck Lever | b79dc8c | 2007-09-11 18:00:52 -0400 | [diff] [blame] | 1276 | /* fail immediately if this is an RPC ping */ |
| 1277 | if (task->tk_msg.rpc_proc->p_proc == 0) { |
| 1278 | status = -EOPNOTSUPP; |
| 1279 | break; |
| 1280 | } |
Trond Myklebust | 0b76011 | 2011-05-31 15:15:34 -0400 | [diff] [blame] | 1281 | if (task->tk_rebind_retry == 0) |
| 1282 | break; |
| 1283 | task->tk_rebind_retry--; |
Chuck Lever | ea635a5 | 2005-10-06 23:12:58 -0400 | [diff] [blame] | 1284 | rpc_delay(task, 3*HZ); |
Trond Myklebust | da45828 | 2006-08-31 15:44:52 -0400 | [diff] [blame] | 1285 | goto retry_timeout; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1286 | case -ETIMEDOUT: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1287 | dprintk("RPC: %5u rpcbind request timed out\n", |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1288 | task->tk_pid); |
Trond Myklebust | da45828 | 2006-08-31 15:44:52 -0400 | [diff] [blame] | 1289 | goto retry_timeout; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1290 | case -EPFNOSUPPORT: |
Chuck Lever | 906462a | 2007-09-11 18:00:47 -0400 | [diff] [blame] | 1291 | /* server doesn't support any rpcbind version we know of */ |
Chuck Lever | 012da15 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1292 | dprintk("RPC: %5u unrecognized remote rpcbind service\n", |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1293 | task->tk_pid); |
| 1294 | break; |
| 1295 | case -EPROTONOSUPPORT: |
Chuck Lever | 00a6e7b | 2007-03-29 16:48:33 -0400 | [diff] [blame] | 1296 | dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n", |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1297 | task->tk_pid); |
Chuck Lever | 00a6e7b | 2007-03-29 16:48:33 -0400 | [diff] [blame] | 1298 | task->tk_status = 0; |
| 1299 | task->tk_action = call_bind; |
| 1300 | return; |
Chuck Lever | 012da15 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1301 | case -ECONNREFUSED: /* connection problems */ |
| 1302 | case -ECONNRESET: |
| 1303 | case -ENOTCONN: |
| 1304 | case -EHOSTDOWN: |
| 1305 | case -EHOSTUNREACH: |
| 1306 | case -ENETUNREACH: |
| 1307 | case -EPIPE: |
| 1308 | dprintk("RPC: %5u remote rpcbind unreachable: %d\n", |
| 1309 | task->tk_pid, task->tk_status); |
| 1310 | if (!RPC_IS_SOFTCONN(task)) { |
| 1311 | rpc_delay(task, 5*HZ); |
| 1312 | goto retry_timeout; |
| 1313 | } |
| 1314 | status = task->tk_status; |
| 1315 | break; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1316 | default: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1317 | dprintk("RPC: %5u unrecognized rpcbind error (%d)\n", |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1318 | task->tk_pid, -task->tk_status); |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | rpc_exit(task, status); |
| 1322 | return; |
| 1323 | |
Trond Myklebust | da45828 | 2006-08-31 15:44:52 -0400 | [diff] [blame] | 1324 | retry_timeout: |
| 1325 | task->tk_action = call_timeout; |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1326 | } |
| 1327 | |
| 1328 | /* |
| 1329 | * 4b. Connect to the RPC server |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | */ |
| 1331 | static void |
| 1332 | call_connect(struct rpc_task *task) |
| 1333 | { |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1334 | struct rpc_xprt *xprt = task->tk_xprt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1336 | dprintk("RPC: %5u call_connect xprt %p %s connected\n", |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1337 | task->tk_pid, xprt, |
| 1338 | (xprt_connected(xprt) ? "is" : "is not")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1340 | task->tk_action = call_transmit; |
| 1341 | if (!xprt_connected(xprt)) { |
| 1342 | task->tk_action = call_connect_status; |
| 1343 | if (task->tk_status < 0) |
| 1344 | return; |
| 1345 | xprt_connect(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | } |
| 1348 | |
| 1349 | /* |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1350 | * 4c. Sort out connect result |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | */ |
| 1352 | static void |
| 1353 | call_connect_status(struct rpc_task *task) |
| 1354 | { |
| 1355 | struct rpc_clnt *clnt = task->tk_client; |
| 1356 | int status = task->tk_status; |
| 1357 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1358 | dprint_status(task); |
Chuck Lever | da35187 | 2005-08-11 16:25:11 -0400 | [diff] [blame] | 1359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | task->tk_status = 0; |
Trond Myklebust | 2a49199 | 2009-03-11 14:38:00 -0400 | [diff] [blame] | 1361 | if (status >= 0 || status == -EAGAIN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | clnt->cl_stats->netreconn++; |
| 1363 | task->tk_action = call_transmit; |
| 1364 | return; |
| 1365 | } |
| 1366 | |
Steve Dickson | 5753cba | 2012-02-06 10:08:08 -0500 | [diff] [blame] | 1367 | trace_rpc_connect_status(task, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | switch (status) { |
Trond Myklebust | da45828 | 2006-08-31 15:44:52 -0400 | [diff] [blame] | 1369 | /* if soft mounted, test if we've timed out */ |
| 1370 | case -ETIMEDOUT: |
| 1371 | task->tk_action = call_timeout; |
Trond Myklebust | 2a49199 | 2009-03-11 14:38:00 -0400 | [diff] [blame] | 1372 | break; |
| 1373 | default: |
| 1374 | rpc_exit(task, -EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | } |
| 1376 | } |
| 1377 | |
| 1378 | /* |
| 1379 | * 5. Transmit the RPC request, and wait for reply |
| 1380 | */ |
| 1381 | static void |
| 1382 | call_transmit(struct rpc_task *task) |
| 1383 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1384 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | |
| 1386 | task->tk_action = call_status; |
| 1387 | if (task->tk_status < 0) |
| 1388 | return; |
| 1389 | task->tk_status = xprt_prepare_transmit(task); |
| 1390 | if (task->tk_status != 0) |
| 1391 | return; |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1392 | task->tk_action = call_transmit_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | /* Encode here so that rpcsec_gss can use correct sequence number. */ |
Trond Myklebust | 940e331 | 2005-11-09 21:45:24 -0500 | [diff] [blame] | 1394 | if (rpc_task_need_encode(task)) { |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1395 | BUG_ON(task->tk_rqstp->rq_bytes_sent != 0); |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1396 | rpc_xdr_encode(task); |
Trond Myklebust | 5e5ce5b | 2005-10-18 14:20:11 -0700 | [diff] [blame] | 1397 | /* Did the encode result in an error condition? */ |
Trond Myklebust | 8b39f2b | 2008-05-14 19:48:25 -0700 | [diff] [blame] | 1398 | if (task->tk_status != 0) { |
| 1399 | /* Was the error nonfatal? */ |
| 1400 | if (task->tk_status == -EAGAIN) |
| 1401 | rpc_delay(task, HZ >> 4); |
| 1402 | else |
| 1403 | rpc_exit(task, task->tk_status); |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1404 | return; |
Trond Myklebust | 8b39f2b | 2008-05-14 19:48:25 -0700 | [diff] [blame] | 1405 | } |
Trond Myklebust | 5e5ce5b | 2005-10-18 14:20:11 -0700 | [diff] [blame] | 1406 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | xprt_transmit(task); |
| 1408 | if (task->tk_status < 0) |
| 1409 | return; |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1410 | /* |
| 1411 | * On success, ensure that we call xprt_end_transmit() before sleeping |
| 1412 | * in order to allow access to the socket to other RPC requests. |
| 1413 | */ |
| 1414 | call_transmit_status(task); |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 1415 | if (rpc_reply_expected(task)) |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1416 | return; |
| 1417 | task->tk_action = rpc_exit_task; |
Trond Myklebust | fda1393 | 2008-02-22 16:34:12 -0500 | [diff] [blame] | 1418 | rpc_wake_up_queued_task(&task->tk_xprt->pending, task); |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1419 | } |
| 1420 | |
| 1421 | /* |
| 1422 | * 5a. Handle cleanup after a transmission |
| 1423 | */ |
| 1424 | static void |
| 1425 | call_transmit_status(struct rpc_task *task) |
| 1426 | { |
| 1427 | task->tk_action = call_status; |
Chuck Lever | 206a134 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1428 | |
| 1429 | /* |
| 1430 | * Common case: success. Force the compiler to put this |
| 1431 | * test first. |
| 1432 | */ |
| 1433 | if (task->tk_status == 0) { |
| 1434 | xprt_end_transmit(task); |
| 1435 | rpc_task_force_reencode(task); |
| 1436 | return; |
| 1437 | } |
| 1438 | |
Trond Myklebust | 15f081c | 2009-03-11 14:37:57 -0400 | [diff] [blame] | 1439 | switch (task->tk_status) { |
| 1440 | case -EAGAIN: |
| 1441 | break; |
| 1442 | default: |
Chuck Lever | 206a134 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1443 | dprint_status(task); |
Trond Myklebust | 15f081c | 2009-03-11 14:37:57 -0400 | [diff] [blame] | 1444 | xprt_end_transmit(task); |
Chuck Lever | 09a21c4 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1445 | rpc_task_force_reencode(task); |
| 1446 | break; |
Trond Myklebust | 15f081c | 2009-03-11 14:37:57 -0400 | [diff] [blame] | 1447 | /* |
| 1448 | * Special cases: if we've been waiting on the |
| 1449 | * socket's write_space() callback, or if the |
| 1450 | * socket just returned a connection error, |
| 1451 | * then hold onto the transport lock. |
| 1452 | */ |
| 1453 | case -ECONNREFUSED: |
Trond Myklebust | 15f081c | 2009-03-11 14:37:57 -0400 | [diff] [blame] | 1454 | case -EHOSTDOWN: |
| 1455 | case -EHOSTUNREACH: |
| 1456 | case -ENETUNREACH: |
Chuck Lever | 09a21c4 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1457 | if (RPC_IS_SOFTCONN(task)) { |
| 1458 | xprt_end_transmit(task); |
| 1459 | rpc_exit(task, task->tk_status); |
| 1460 | break; |
| 1461 | } |
| 1462 | case -ECONNRESET: |
| 1463 | case -ENOTCONN: |
Trond Myklebust | c8485e4 | 2009-03-11 14:37:59 -0400 | [diff] [blame] | 1464 | case -EPIPE: |
Trond Myklebust | 15f081c | 2009-03-11 14:37:57 -0400 | [diff] [blame] | 1465 | rpc_task_force_reencode(task); |
| 1466 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | } |
| 1468 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1469 | #if defined(CONFIG_SUNRPC_BACKCHANNEL) |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 1470 | /* |
| 1471 | * 5b. Send the backchannel RPC reply. On error, drop the reply. In |
| 1472 | * addition, disconnect on connectivity errors. |
| 1473 | */ |
| 1474 | static void |
| 1475 | call_bc_transmit(struct rpc_task *task) |
| 1476 | { |
| 1477 | struct rpc_rqst *req = task->tk_rqstp; |
| 1478 | |
| 1479 | BUG_ON(task->tk_status != 0); |
| 1480 | task->tk_status = xprt_prepare_transmit(task); |
| 1481 | if (task->tk_status == -EAGAIN) { |
| 1482 | /* |
| 1483 | * Could not reserve the transport. Try again after the |
| 1484 | * transport is released. |
| 1485 | */ |
| 1486 | task->tk_status = 0; |
| 1487 | task->tk_action = call_bc_transmit; |
| 1488 | return; |
| 1489 | } |
| 1490 | |
| 1491 | task->tk_action = rpc_exit_task; |
| 1492 | if (task->tk_status < 0) { |
| 1493 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " |
| 1494 | "error: %d\n", task->tk_status); |
| 1495 | return; |
| 1496 | } |
| 1497 | |
| 1498 | xprt_transmit(task); |
| 1499 | xprt_end_transmit(task); |
| 1500 | dprint_status(task); |
| 1501 | switch (task->tk_status) { |
| 1502 | case 0: |
| 1503 | /* Success */ |
| 1504 | break; |
| 1505 | case -EHOSTDOWN: |
| 1506 | case -EHOSTUNREACH: |
| 1507 | case -ENETUNREACH: |
| 1508 | case -ETIMEDOUT: |
| 1509 | /* |
| 1510 | * Problem reaching the server. Disconnect and let the |
| 1511 | * forechannel reestablish the connection. The server will |
| 1512 | * have to retransmit the backchannel request and we'll |
| 1513 | * reprocess it. Since these ops are idempotent, there's no |
| 1514 | * need to cache our reply at this time. |
| 1515 | */ |
| 1516 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " |
| 1517 | "error: %d\n", task->tk_status); |
| 1518 | xprt_conditional_disconnect(task->tk_xprt, |
| 1519 | req->rq_connect_cookie); |
| 1520 | break; |
| 1521 | default: |
| 1522 | /* |
| 1523 | * We were unable to reply and will have to drop the |
| 1524 | * request. The server should reconnect and retransmit. |
| 1525 | */ |
| 1526 | BUG_ON(task->tk_status == -EAGAIN); |
| 1527 | printk(KERN_NOTICE "RPC: Could not send backchannel reply " |
| 1528 | "error: %d\n", task->tk_status); |
| 1529 | break; |
| 1530 | } |
| 1531 | rpc_wake_up_queued_task(&req->rq_xprt->pending, task); |
| 1532 | } |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 1533 | #endif /* CONFIG_SUNRPC_BACKCHANNEL */ |
Ricardo Labiaga | 55ae1aa | 2009-04-01 09:23:03 -0400 | [diff] [blame] | 1534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | /* |
| 1536 | * 6. Sort out the RPC call status |
| 1537 | */ |
| 1538 | static void |
| 1539 | call_status(struct rpc_task *task) |
| 1540 | { |
| 1541 | struct rpc_clnt *clnt = task->tk_client; |
| 1542 | struct rpc_rqst *req = task->tk_rqstp; |
| 1543 | int status; |
| 1544 | |
Ricardo Labiaga | dd2b63d | 2009-04-01 09:23:28 -0400 | [diff] [blame] | 1545 | if (req->rq_reply_bytes_recvd > 0 && !req->rq_bytes_sent) |
| 1546 | task->tk_status = req->rq_reply_bytes_recvd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1548 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
| 1550 | status = task->tk_status; |
| 1551 | if (status >= 0) { |
| 1552 | task->tk_action = call_decode; |
| 1553 | return; |
| 1554 | } |
| 1555 | |
Steve Dickson | 5753cba | 2012-02-06 10:08:08 -0500 | [diff] [blame] | 1556 | trace_rpc_call_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | task->tk_status = 0; |
| 1558 | switch(status) { |
Trond Myklebust | 7630399 | 2006-08-30 14:32:49 -0400 | [diff] [blame] | 1559 | case -EHOSTDOWN: |
| 1560 | case -EHOSTUNREACH: |
| 1561 | case -ENETUNREACH: |
| 1562 | /* |
| 1563 | * Delay any retries for 3 seconds, then handle as if it |
| 1564 | * were a timeout. |
| 1565 | */ |
| 1566 | rpc_delay(task, 3*HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | case -ETIMEDOUT: |
| 1568 | task->tk_action = call_timeout; |
Trond Myklebust | 241c39b | 2007-04-20 16:12:55 -0400 | [diff] [blame] | 1569 | if (task->tk_client->cl_discrtry) |
Trond Myklebust | 7c1d71c | 2008-04-17 16:52:57 -0400 | [diff] [blame] | 1570 | xprt_conditional_disconnect(task->tk_xprt, |
| 1571 | req->rq_connect_cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | break; |
Trond Myklebust | c8485e4 | 2009-03-11 14:37:59 -0400 | [diff] [blame] | 1573 | case -ECONNRESET: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | case -ECONNREFUSED: |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 1575 | rpc_force_rebind(clnt); |
Trond Myklebust | c8485e4 | 2009-03-11 14:37:59 -0400 | [diff] [blame] | 1576 | rpc_delay(task, 3*HZ); |
| 1577 | case -EPIPE: |
| 1578 | case -ENOTCONN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | task->tk_action = call_bind; |
| 1580 | break; |
| 1581 | case -EAGAIN: |
| 1582 | task->tk_action = call_transmit; |
| 1583 | break; |
| 1584 | case -EIO: |
| 1585 | /* shutdown or soft timeout */ |
| 1586 | rpc_exit(task, status); |
| 1587 | break; |
| 1588 | default: |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 1589 | if (clnt->cl_chatty) |
| 1590 | printk("%s: RPC call returned error %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | clnt->cl_protname, -status); |
| 1592 | rpc_exit(task, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | } |
| 1594 | } |
| 1595 | |
| 1596 | /* |
Trond Myklebust | e0ab53d | 2006-07-27 17:22:50 -0400 | [diff] [blame] | 1597 | * 6a. Handle RPC timeout |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | * We do not release the request slot, so we keep using the |
| 1599 | * same XID for all retransmits. |
| 1600 | */ |
| 1601 | static void |
| 1602 | call_timeout(struct rpc_task *task) |
| 1603 | { |
| 1604 | struct rpc_clnt *clnt = task->tk_client; |
| 1605 | |
| 1606 | if (xprt_adjust_timeout(task->tk_rqstp) == 0) { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1607 | dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | goto retry; |
| 1609 | } |
| 1610 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1611 | dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid); |
Chuck Lever | ef759a2 | 2006-03-20 13:44:17 -0500 | [diff] [blame] | 1612 | task->tk_timeouts++; |
| 1613 | |
Chuck Lever | 3a28bec | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1614 | if (RPC_IS_SOFTCONN(task)) { |
| 1615 | rpc_exit(task, -ETIMEDOUT); |
| 1616 | return; |
| 1617 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | if (RPC_IS_SOFT(task)) { |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 1619 | if (clnt->cl_chatty) |
| 1620 | printk(KERN_NOTICE "%s: server %s not responding, timed out\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | clnt->cl_protname, clnt->cl_server); |
Trond Myklebust | 7494d00 | 2011-04-24 14:28:45 -0400 | [diff] [blame] | 1622 | if (task->tk_flags & RPC_TASK_TIMEOUT) |
| 1623 | rpc_exit(task, -ETIMEDOUT); |
| 1624 | else |
| 1625 | rpc_exit(task, -EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | return; |
| 1627 | } |
| 1628 | |
Chuck Lever | f518e35a | 2006-01-03 09:55:52 +0100 | [diff] [blame] | 1629 | if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | task->tk_flags |= RPC_CALL_MAJORSEEN; |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 1631 | if (clnt->cl_chatty) |
| 1632 | printk(KERN_NOTICE "%s: server %s not responding, still trying\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | clnt->cl_protname, clnt->cl_server); |
| 1634 | } |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 1635 | rpc_force_rebind(clnt); |
Trond Myklebust | b48633b | 2008-04-22 16:47:55 -0400 | [diff] [blame] | 1636 | /* |
| 1637 | * Did our request time out due to an RPCSEC_GSS out-of-sequence |
| 1638 | * event? RFC2203 requires the server to drop all such requests. |
| 1639 | */ |
| 1640 | rpcauth_invalcred(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | |
| 1642 | retry: |
| 1643 | clnt->cl_stats->rpcretrans++; |
| 1644 | task->tk_action = call_bind; |
| 1645 | task->tk_status = 0; |
| 1646 | } |
| 1647 | |
| 1648 | /* |
| 1649 | * 7. Decode the RPC reply |
| 1650 | */ |
| 1651 | static void |
| 1652 | call_decode(struct rpc_task *task) |
| 1653 | { |
| 1654 | struct rpc_clnt *clnt = task->tk_client; |
| 1655 | struct rpc_rqst *req = task->tk_rqstp; |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 1656 | kxdrdproc_t decode = task->tk_msg.rpc_proc->p_decode; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1657 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | |
Vasily Averin | 726fd6a | 2011-06-01 16:23:59 +0400 | [diff] [blame] | 1659 | dprint_status(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | |
Chuck Lever | f518e35a | 2006-01-03 09:55:52 +0100 | [diff] [blame] | 1661 | if (task->tk_flags & RPC_CALL_MAJORSEEN) { |
Olga Kornievskaia | b6b6152 | 2008-06-09 16:51:31 -0400 | [diff] [blame] | 1662 | if (clnt->cl_chatty) |
| 1663 | printk(KERN_NOTICE "%s: server %s OK\n", |
| 1664 | clnt->cl_protname, clnt->cl_server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | task->tk_flags &= ~RPC_CALL_MAJORSEEN; |
| 1666 | } |
| 1667 | |
Trond Myklebust | 43ac3f2 | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1668 | /* |
| 1669 | * Ensure that we see all writes made by xprt_complete_rqst() |
Ricardo Labiaga | dd2b63d | 2009-04-01 09:23:28 -0400 | [diff] [blame] | 1670 | * before it changed req->rq_reply_bytes_recvd. |
Trond Myklebust | 43ac3f2 | 2006-03-20 13:44:51 -0500 | [diff] [blame] | 1671 | */ |
| 1672 | smp_rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | req->rq_rcv_buf.len = req->rq_private_buf.len; |
| 1674 | |
| 1675 | /* Check that the softirq receive buffer is valid */ |
| 1676 | WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf, |
| 1677 | sizeof(req->rq_rcv_buf)) != 0); |
| 1678 | |
Trond Myklebust | 1e799b6 | 2008-03-21 16:19:41 -0400 | [diff] [blame] | 1679 | if (req->rq_rcv_buf.len < 12) { |
| 1680 | if (!RPC_IS_SOFT(task)) { |
| 1681 | task->tk_action = call_bind; |
| 1682 | clnt->cl_stats->rpcretrans++; |
| 1683 | goto out_retry; |
| 1684 | } |
| 1685 | dprintk("RPC: %s: too small RPC reply size (%d bytes)\n", |
| 1686 | clnt->cl_protname, task->tk_status); |
| 1687 | task->tk_action = call_timeout; |
| 1688 | goto out_retry; |
| 1689 | } |
| 1690 | |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1691 | p = rpc_verify_header(task); |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1692 | if (IS_ERR(p)) { |
| 1693 | if (p == ERR_PTR(-EAGAIN)) |
| 1694 | goto out_retry; |
| 1695 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | } |
| 1697 | |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1698 | task->tk_action = rpc_exit_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | |
Trond Myklebust | 6d5fcb5 | 2006-10-18 16:01:06 -0400 | [diff] [blame] | 1700 | if (decode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | task->tk_status = rpcauth_unwrap_resp(task, decode, req, p, |
| 1702 | task->tk_msg.rpc_resp); |
Trond Myklebust | 6d5fcb5 | 2006-10-18 16:01:06 -0400 | [diff] [blame] | 1703 | } |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1704 | dprintk("RPC: %5u call_decode result %d\n", task->tk_pid, |
| 1705 | task->tk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | return; |
| 1707 | out_retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | task->tk_status = 0; |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1709 | /* Note: rpc_verify_header() may have freed the RPC slot */ |
Trond Myklebust | 24b74bf | 2008-04-19 13:15:47 -0400 | [diff] [blame] | 1710 | if (task->tk_rqstp == req) { |
Ricardo Labiaga | dd2b63d | 2009-04-01 09:23:28 -0400 | [diff] [blame] | 1711 | req->rq_reply_bytes_recvd = req->rq_rcv_buf.len = 0; |
Trond Myklebust | 24b74bf | 2008-04-19 13:15:47 -0400 | [diff] [blame] | 1712 | if (task->tk_client->cl_discrtry) |
Trond Myklebust | 7c1d71c | 2008-04-17 16:52:57 -0400 | [diff] [blame] | 1713 | xprt_conditional_disconnect(task->tk_xprt, |
| 1714 | req->rq_connect_cookie); |
Trond Myklebust | 24b74bf | 2008-04-19 13:15:47 -0400 | [diff] [blame] | 1715 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | } |
| 1717 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1718 | static __be32 * |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1719 | rpc_encode_header(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | { |
| 1721 | struct rpc_clnt *clnt = task->tk_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | struct rpc_rqst *req = task->tk_rqstp; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1723 | __be32 *p = req->rq_svec[0].iov_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | |
| 1725 | /* FIXME: check buffer size? */ |
Chuck Lever | 808012f | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 1726 | |
| 1727 | p = xprt_skip_transport_header(task->tk_xprt, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | *p++ = req->rq_xid; /* XID */ |
| 1729 | *p++ = htonl(RPC_CALL); /* CALL */ |
| 1730 | *p++ = htonl(RPC_VERSION); /* RPC version */ |
| 1731 | *p++ = htonl(clnt->cl_prog); /* program number */ |
| 1732 | *p++ = htonl(clnt->cl_vers); /* program version */ |
| 1733 | *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */ |
Trond Myklebust | 334ccfd | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 1734 | p = rpcauth_marshcred(task, p); |
| 1735 | req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p); |
| 1736 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | } |
| 1738 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1739 | static __be32 * |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1740 | rpc_verify_header(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | { |
| 1742 | struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0]; |
| 1743 | int len = task->tk_rqstp->rq_rcv_buf.len >> 2; |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1744 | __be32 *p = iov->iov_base; |
| 1745 | u32 n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | int error = -EACCES; |
| 1747 | |
David Howells | e889649 | 2006-08-24 15:44:19 -0400 | [diff] [blame] | 1748 | if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) { |
| 1749 | /* RFC-1014 says that the representation of XDR data must be a |
| 1750 | * multiple of four bytes |
| 1751 | * - if it isn't pointer subtraction in the NFS client may give |
| 1752 | * undefined results |
| 1753 | */ |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1754 | dprintk("RPC: %5u %s: XDR representation not a multiple of" |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1755 | " 4 bytes: 0x%x\n", task->tk_pid, __func__, |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1756 | task->tk_rqstp->rq_rcv_buf.len); |
David Howells | e889649 | 2006-08-24 15:44:19 -0400 | [diff] [blame] | 1757 | goto out_eio; |
| 1758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | if ((len -= 3) < 0) |
| 1760 | goto out_overflow; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | |
Ricardo Labiaga | f4a2e41 | 2009-04-01 09:22:54 -0400 | [diff] [blame] | 1762 | p += 1; /* skip XID */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | if ((n = ntohl(*p++)) != RPC_REPLY) { |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1764 | dprintk("RPC: %5u %s: not an RPC reply: %x\n", |
Ricardo Labiaga | f4a2e41 | 2009-04-01 09:22:54 -0400 | [diff] [blame] | 1765 | task->tk_pid, __func__, n); |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1766 | goto out_garbage; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | } |
Ricardo Labiaga | f4a2e41 | 2009-04-01 09:22:54 -0400 | [diff] [blame] | 1768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) { |
| 1770 | if (--len < 0) |
| 1771 | goto out_overflow; |
| 1772 | switch ((n = ntohl(*p++))) { |
Joe Perches | 89f0e4f | 2011-07-01 09:43:12 +0000 | [diff] [blame] | 1773 | case RPC_AUTH_ERROR: |
| 1774 | break; |
| 1775 | case RPC_MISMATCH: |
| 1776 | dprintk("RPC: %5u %s: RPC call version mismatch!\n", |
| 1777 | task->tk_pid, __func__); |
| 1778 | error = -EPROTONOSUPPORT; |
| 1779 | goto out_err; |
| 1780 | default: |
| 1781 | dprintk("RPC: %5u %s: RPC call rejected, " |
| 1782 | "unknown error: %x\n", |
| 1783 | task->tk_pid, __func__, n); |
| 1784 | goto out_eio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | } |
| 1786 | if (--len < 0) |
| 1787 | goto out_overflow; |
| 1788 | switch ((n = ntohl(*p++))) { |
| 1789 | case RPC_AUTH_REJECTEDCRED: |
| 1790 | case RPC_AUTH_REJECTEDVERF: |
| 1791 | case RPCSEC_GSS_CREDPROBLEM: |
| 1792 | case RPCSEC_GSS_CTXPROBLEM: |
| 1793 | if (!task->tk_cred_retry) |
| 1794 | break; |
| 1795 | task->tk_cred_retry--; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1796 | dprintk("RPC: %5u %s: retry stale creds\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1797 | task->tk_pid, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | rpcauth_invalcred(task); |
Trond Myklebust | 220bcc2 | 2007-10-01 12:06:48 -0400 | [diff] [blame] | 1799 | /* Ensure we obtain a new XID! */ |
| 1800 | xprt_release(task); |
Trond Myklebust | 118df3d | 2010-10-24 17:17:31 -0400 | [diff] [blame] | 1801 | task->tk_action = call_reserve; |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1802 | goto out_retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | case RPC_AUTH_BADCRED: |
| 1804 | case RPC_AUTH_BADVERF: |
| 1805 | /* possibly garbled cred/verf? */ |
| 1806 | if (!task->tk_garb_retry) |
| 1807 | break; |
| 1808 | task->tk_garb_retry--; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1809 | dprintk("RPC: %5u %s: retry garbled creds\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1810 | task->tk_pid, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | task->tk_action = call_bind; |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1812 | goto out_retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | case RPC_AUTH_TOOWEAK: |
Chuck Lever | b0e1c57 | 2008-05-21 17:09:19 -0400 | [diff] [blame] | 1814 | printk(KERN_NOTICE "RPC: server %s requires stronger " |
Levent Serinol | 1356b8c | 2006-03-20 13:44:11 -0500 | [diff] [blame] | 1815 | "authentication.\n", task->tk_client->cl_server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | break; |
| 1817 | default: |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1818 | dprintk("RPC: %5u %s: unknown auth error: %x\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1819 | task->tk_pid, __func__, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | error = -EIO; |
| 1821 | } |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1822 | dprintk("RPC: %5u %s: call rejected %d\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1823 | task->tk_pid, __func__, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | goto out_err; |
| 1825 | } |
| 1826 | if (!(p = rpcauth_checkverf(task, p))) { |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1827 | dprintk("RPC: %5u %s: auth check failed\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1828 | task->tk_pid, __func__); |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1829 | goto out_garbage; /* bad verifier, retry */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | } |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 1831 | len = p - (__be32 *)iov->iov_base - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | if (len < 0) |
| 1833 | goto out_overflow; |
| 1834 | switch ((n = ntohl(*p++))) { |
| 1835 | case RPC_SUCCESS: |
| 1836 | return p; |
| 1837 | case RPC_PROG_UNAVAIL: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1838 | dprintk("RPC: %5u %s: program %u is unsupported by server %s\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1839 | task->tk_pid, __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | (unsigned int)task->tk_client->cl_prog, |
| 1841 | task->tk_client->cl_server); |
Andreas Gruenbacher | cdf4770 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 1842 | error = -EPFNOSUPPORT; |
| 1843 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | case RPC_PROG_MISMATCH: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1845 | dprintk("RPC: %5u %s: program %u, version %u unsupported by " |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1846 | "server %s\n", task->tk_pid, __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | (unsigned int)task->tk_client->cl_prog, |
| 1848 | (unsigned int)task->tk_client->cl_vers, |
| 1849 | task->tk_client->cl_server); |
Andreas Gruenbacher | cdf4770 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 1850 | error = -EPROTONOSUPPORT; |
| 1851 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | case RPC_PROC_UNAVAIL: |
Chuck Lever | 3748f1e | 2008-05-21 17:09:12 -0400 | [diff] [blame] | 1853 | dprintk("RPC: %5u %s: proc %s unsupported by program %u, " |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1854 | "version %u on server %s\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1855 | task->tk_pid, __func__, |
Chuck Lever | 3748f1e | 2008-05-21 17:09:12 -0400 | [diff] [blame] | 1856 | rpc_proc_name(task), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | task->tk_client->cl_prog, |
| 1858 | task->tk_client->cl_vers, |
| 1859 | task->tk_client->cl_server); |
Andreas Gruenbacher | cdf4770 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 1860 | error = -EOPNOTSUPP; |
| 1861 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | case RPC_GARBAGE_ARGS: |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1863 | dprintk("RPC: %5u %s: server saw garbage\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1864 | task->tk_pid, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | break; /* retry */ |
| 1866 | default: |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1867 | dprintk("RPC: %5u %s: server accept status: %x\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1868 | task->tk_pid, __func__, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | /* Also retry */ |
| 1870 | } |
| 1871 | |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1872 | out_garbage: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | task->tk_client->cl_stats->rpcgarbage++; |
| 1874 | if (task->tk_garb_retry) { |
| 1875 | task->tk_garb_retry--; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 1876 | dprintk("RPC: %5u %s: retrying\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1877 | task->tk_pid, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | task->tk_action = call_bind; |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1879 | out_retry: |
| 1880 | return ERR_PTR(-EAGAIN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | out_eio: |
| 1883 | error = -EIO; |
| 1884 | out_err: |
| 1885 | rpc_exit(task, error); |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1886 | dprintk("RPC: %5u %s: call failed with error %d\n", task->tk_pid, |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1887 | __func__, error); |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1888 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | out_overflow: |
Trond Myklebust | 8a702bb | 2007-06-27 18:30:26 -0400 | [diff] [blame] | 1890 | dprintk("RPC: %5u %s: server reply was truncated.\n", task->tk_pid, |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1891 | __func__); |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 1892 | goto out_garbage; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | } |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1894 | |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 1895 | static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj) |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1896 | { |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1897 | } |
| 1898 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 1899 | static int rpcproc_decode_null(void *rqstp, struct xdr_stream *xdr, void *obj) |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1900 | { |
| 1901 | return 0; |
| 1902 | } |
| 1903 | |
| 1904 | static struct rpc_procinfo rpcproc_null = { |
| 1905 | .p_encode = rpcproc_encode_null, |
| 1906 | .p_decode = rpcproc_decode_null, |
| 1907 | }; |
| 1908 | |
Chuck Lever | caabea8 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1909 | static int rpc_ping(struct rpc_clnt *clnt) |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1910 | { |
| 1911 | struct rpc_message msg = { |
| 1912 | .rpc_proc = &rpcproc_null, |
| 1913 | }; |
| 1914 | int err; |
| 1915 | msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0); |
Chuck Lever | caabea8 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1916 | err = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN); |
Trond Myklebust | 5ee0ed7 | 2005-06-22 17:16:20 +0000 | [diff] [blame] | 1917 | put_rpccred(msg.rpc_cred); |
| 1918 | return err; |
| 1919 | } |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1920 | |
Trond Myklebust | 5e1550d | 2007-06-23 10:17:16 -0400 | [diff] [blame] | 1921 | struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags) |
| 1922 | { |
| 1923 | struct rpc_message msg = { |
| 1924 | .rpc_proc = &rpcproc_null, |
| 1925 | .rpc_cred = cred, |
| 1926 | }; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1927 | struct rpc_task_setup task_setup_data = { |
| 1928 | .rpc_client = clnt, |
| 1929 | .rpc_message = &msg, |
| 1930 | .callback_ops = &rpc_default_ops, |
| 1931 | .flags = flags, |
| 1932 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1933 | return rpc_run_task(&task_setup_data); |
Trond Myklebust | 5e1550d | 2007-06-23 10:17:16 -0400 | [diff] [blame] | 1934 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1935 | EXPORT_SYMBOL_GPL(rpc_call_null); |
Trond Myklebust | 5e1550d | 2007-06-23 10:17:16 -0400 | [diff] [blame] | 1936 | |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1937 | #ifdef RPC_DEBUG |
Chuck Lever | 68a23ee | 2008-05-21 17:09:26 -0400 | [diff] [blame] | 1938 | static void rpc_show_header(void) |
| 1939 | { |
Chuck Lever | cb3997b | 2008-05-21 17:09:41 -0400 | [diff] [blame] | 1940 | printk(KERN_INFO "-pid- flgs status -client- --rqstp- " |
| 1941 | "-timeout ---ops--\n"); |
Chuck Lever | 68a23ee | 2008-05-21 17:09:26 -0400 | [diff] [blame] | 1942 | } |
| 1943 | |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1944 | static void rpc_show_task(const struct rpc_clnt *clnt, |
| 1945 | const struct rpc_task *task) |
| 1946 | { |
| 1947 | const char *rpc_waitq = "none"; |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1948 | |
| 1949 | if (RPC_IS_QUEUED(task)) |
| 1950 | rpc_waitq = rpc_qname(task->tk_waitqueue); |
| 1951 | |
Joe Perches | b3bceda | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 1952 | printk(KERN_INFO "%5u %04x %6d %8p %8p %8ld %8p %sv%u %s a:%ps q:%s\n", |
Chuck Lever | cb3997b | 2008-05-21 17:09:41 -0400 | [diff] [blame] | 1953 | task->tk_pid, task->tk_flags, task->tk_status, |
| 1954 | clnt, task->tk_rqstp, task->tk_timeout, task->tk_ops, |
| 1955 | clnt->cl_protname, clnt->cl_vers, rpc_proc_name(task), |
Joe Perches | b3bceda | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 1956 | task->tk_action, rpc_waitq); |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1957 | } |
| 1958 | |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 1959 | void rpc_show_tasks(struct net *net) |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1960 | { |
| 1961 | struct rpc_clnt *clnt; |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1962 | struct rpc_task *task; |
Chuck Lever | 68a23ee | 2008-05-21 17:09:26 -0400 | [diff] [blame] | 1963 | int header = 0; |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 1964 | struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1965 | |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 1966 | spin_lock(&sn->rpc_client_lock); |
| 1967 | list_for_each_entry(clnt, &sn->all_clients, cl_clients) { |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1968 | spin_lock(&clnt->cl_lock); |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1969 | list_for_each_entry(task, &clnt->cl_tasks, tk_task) { |
Chuck Lever | 68a23ee | 2008-05-21 17:09:26 -0400 | [diff] [blame] | 1970 | if (!header) { |
| 1971 | rpc_show_header(); |
| 1972 | header++; |
| 1973 | } |
Chuck Lever | 38e886e | 2008-05-21 17:09:33 -0400 | [diff] [blame] | 1974 | rpc_show_task(clnt, task); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1975 | } |
| 1976 | spin_unlock(&clnt->cl_lock); |
| 1977 | } |
Stanislav Kinsbursky | 70abc49 | 2012-01-12 22:07:51 +0400 | [diff] [blame] | 1978 | spin_unlock(&sn->rpc_client_lock); |
Trond Myklebust | 188fef1 | 2007-06-16 14:18:40 -0400 | [diff] [blame] | 1979 | } |
| 1980 | #endif |