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