Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/nfs/nfs3proc.c |
| 4 | * |
| 5 | * Client-side NFSv3 procedures stubs. |
| 6 | * |
| 7 | * Copyright (C) 1997, Olaf Kirch |
| 8 | */ |
| 9 | |
| 10 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/errno.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/sunrpc/clnt.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/nfs.h> |
| 16 | #include <linux/nfs3.h> |
| 17 | #include <linux/nfs_fs.h> |
| 18 | #include <linux/nfs_page.h> |
| 19 | #include <linux/lockd/bind.h> |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 20 | #include <linux/nfs_mount.h> |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 21 | #include <linux/freezer.h> |
Tejun Heo | 0a6be65 | 2014-02-03 14:31:07 -0500 | [diff] [blame] | 22 | #include <linux/xattr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 24 | #include "iostat.h" |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 25 | #include "internal.h" |
Anna Schumaker | 00a36a10 | 2014-09-03 12:19:08 -0400 | [diff] [blame] | 26 | #include "nfs3_fs.h" |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #define NFSDBG_FACILITY NFSDBG_PROC |
| 29 | |
Andy Adamson | eb96d5c | 2012-11-27 10:34:19 -0500 | [diff] [blame] | 30 | /* A wrapper to handle the EJUKEBOX error messages */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static int |
| 32 | nfs3_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags) |
| 33 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | do { |
| 36 | res = rpc_call_sync(clnt, msg, flags); |
Andy Adamson | eb96d5c | 2012-11-27 10:34:19 -0500 | [diff] [blame] | 37 | if (res != -EJUKEBOX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | break; |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 39 | freezable_schedule_timeout_killable_unsafe(NFS_JUKEBOX_RETRY_TIME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | res = -ERESTARTSYS; |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 41 | } while (!fatal_signal_pending(current)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | return res; |
| 43 | } |
| 44 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 45 | #define rpc_call_sync(clnt, msg, flags) nfs3_rpc_wrapper(clnt, msg, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | static int |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 48 | nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
Andy Adamson | eb96d5c | 2012-11-27 10:34:19 -0500 | [diff] [blame] | 50 | if (task->tk_status != -EJUKEBOX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | return 0; |
Jeff Layton | b68d69b | 2010-01-07 09:42:04 -0500 | [diff] [blame] | 52 | if (task->tk_status == -EJUKEBOX) |
| 53 | nfs_inc_stats(inode, NFSIOS_DELAY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | task->tk_status = 0; |
| 55 | rpc_restart_call(task); |
| 56 | rpc_delay(task, NFS_JUKEBOX_RETRY_TIME); |
| 57 | return 1; |
| 58 | } |
| 59 | |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 60 | static int |
| 61 | do_proc_get_root(struct rpc_clnt *client, struct nfs_fh *fhandle, |
| 62 | struct nfs_fsinfo *info) |
| 63 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 64 | struct rpc_message msg = { |
| 65 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO], |
| 66 | .rpc_argp = fhandle, |
| 67 | .rpc_resp = info, |
| 68 | }; |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 69 | int status; |
| 70 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 71 | dprintk("%s: call fsinfo\n", __func__); |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 72 | nfs_fattr_init(info->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 73 | status = rpc_call_sync(client, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 74 | dprintk("%s: reply fsinfo: %d\n", __func__, status); |
Trond Myklebust | 0866004 | 2012-08-20 12:42:15 -0400 | [diff] [blame] | 75 | if (status == 0 && !(info->fattr->valid & NFS_ATTR_FATTR)) { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 76 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR]; |
| 77 | msg.rpc_resp = info->fattr; |
| 78 | status = rpc_call_sync(client, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 79 | dprintk("%s: reply getattr: %d\n", __func__, status); |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 80 | } |
| 81 | return status; |
| 82 | } |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 85 | * Bare-bones access to getattr: this is for nfs_get_root/nfs_get_sb |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | */ |
| 87 | static int |
| 88 | nfs3_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 89 | struct nfs_fsinfo *info) |
| 90 | { |
| 91 | int status; |
| 92 | |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 93 | status = do_proc_get_root(server->client, fhandle, info); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 94 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 95 | status = do_proc_get_root(server->nfs_client->cl_rpcclient, fhandle, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | return status; |
| 97 | } |
| 98 | |
| 99 | /* |
| 100 | * One function for each procedure in the NFS protocol. |
| 101 | */ |
| 102 | static int |
| 103 | nfs3_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
Trond Myklebust | a841b54 | 2018-04-07 13:50:59 -0400 | [diff] [blame] | 104 | struct nfs_fattr *fattr, struct nfs4_label *label, |
| 105 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 107 | struct rpc_message msg = { |
| 108 | .rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR], |
| 109 | .rpc_argp = fhandle, |
| 110 | .rpc_resp = fattr, |
| 111 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | int status; |
Trond Myklebust | c74dfe9 | 2020-01-06 15:39:37 -0500 | [diff] [blame] | 113 | unsigned short task_flags = 0; |
| 114 | |
| 115 | /* Is this is an attribute revalidation, subject to softreval? */ |
| 116 | if (inode && (server->flags & NFS_MOUNT_SOFTREVAL)) |
| 117 | task_flags |= RPC_TASK_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | dprintk("NFS call getattr\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 120 | nfs_fattr_init(fattr); |
Trond Myklebust | c74dfe9 | 2020-01-06 15:39:37 -0500 | [diff] [blame] | 121 | status = rpc_call_sync(server->client, &msg, task_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | dprintk("NFS reply getattr: %d\n", status); |
| 123 | return status; |
| 124 | } |
| 125 | |
| 126 | static int |
| 127 | nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, |
| 128 | struct iattr *sattr) |
| 129 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 130 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | struct nfs3_sattrargs arg = { |
| 132 | .fh = NFS_FH(inode), |
| 133 | .sattr = sattr, |
| 134 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 135 | struct rpc_message msg = { |
| 136 | .rpc_proc = &nfs3_procedures[NFS3PROC_SETATTR], |
| 137 | .rpc_argp = &arg, |
| 138 | .rpc_resp = fattr, |
| 139 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | int status; |
| 141 | |
| 142 | dprintk("NFS call setattr\n"); |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 143 | if (sattr->ia_valid & ATTR_FILE) |
| 144 | msg.rpc_cred = nfs_file_cred(sattr->ia_file); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 145 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 146 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
chendt | dbc898a | 2018-03-29 16:13:09 +0800 | [diff] [blame] | 147 | if (status == 0) { |
Su Yanjun | fe1e8dbe | 2019-12-25 11:37:57 +0800 | [diff] [blame] | 148 | nfs_setattr_update_inode(inode, sattr, fattr); |
chendt | dbc898a | 2018-03-29 16:13:09 +0800 | [diff] [blame] | 149 | if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL) |
| 150 | nfs_zap_acl_cache(inode); |
chendt | dbc898a | 2018-03-29 16:13:09 +0800 | [diff] [blame] | 151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | dprintk("NFS reply setattr: %d\n", status); |
| 153 | return status; |
| 154 | } |
| 155 | |
| 156 | static int |
Trond Myklebust | 5f447cb | 2020-10-19 12:40:59 -0400 | [diff] [blame] | 157 | __nfs3_proc_lookup(struct inode *dir, const char *name, size_t len, |
| 158 | struct nfs_fh *fhandle, struct nfs_fattr *fattr, |
| 159 | unsigned short task_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | struct nfs3_diropargs arg = { |
| 162 | .fh = NFS_FH(dir), |
Trond Myklebust | 5f447cb | 2020-10-19 12:40:59 -0400 | [diff] [blame] | 163 | .name = name, |
| 164 | .len = len |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | }; |
| 166 | struct nfs3_diropres res = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | .fh = fhandle, |
| 168 | .fattr = fattr |
| 169 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 170 | struct rpc_message msg = { |
| 171 | .rpc_proc = &nfs3_procedures[NFS3PROC_LOOKUP], |
| 172 | .rpc_argp = &arg, |
| 173 | .rpc_resp = &res, |
| 174 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | int status; |
Trond Myklebust | f7b37b8 | 2020-01-14 12:06:34 -0500 | [diff] [blame] | 176 | |
Trond Myklebust | e1fb4d0 | 2010-04-16 16:22:47 -0400 | [diff] [blame] | 177 | res.dir_attr = nfs_alloc_fattr(); |
| 178 | if (res.dir_attr == NULL) |
| 179 | return -ENOMEM; |
| 180 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 181 | nfs_fattr_init(fattr); |
Trond Myklebust | f7b37b8 | 2020-01-14 12:06:34 -0500 | [diff] [blame] | 182 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, task_flags); |
Trond Myklebust | e1fb4d0 | 2010-04-16 16:22:47 -0400 | [diff] [blame] | 183 | nfs_refresh_inode(dir, res.dir_attr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 184 | if (status >= 0 && !(fattr->valid & NFS_ATTR_FATTR)) { |
| 185 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR]; |
| 186 | msg.rpc_argp = fhandle; |
| 187 | msg.rpc_resp = fattr; |
Trond Myklebust | f7b37b8 | 2020-01-14 12:06:34 -0500 | [diff] [blame] | 188 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, task_flags); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 189 | } |
Trond Myklebust | e1fb4d0 | 2010-04-16 16:22:47 -0400 | [diff] [blame] | 190 | nfs_free_fattr(res.dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | dprintk("NFS reply lookup: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return status; |
| 193 | } |
| 194 | |
Trond Myklebust | 5f447cb | 2020-10-19 12:40:59 -0400 | [diff] [blame] | 195 | static int |
| 196 | nfs3_proc_lookup(struct inode *dir, struct dentry *dentry, |
| 197 | struct nfs_fh *fhandle, struct nfs_fattr *fattr, |
| 198 | struct nfs4_label *label) |
| 199 | { |
| 200 | unsigned short task_flags = 0; |
| 201 | |
| 202 | /* Is this is an attribute revalidation, subject to softreval? */ |
| 203 | if (nfs_lookup_is_soft_revalidate(dentry)) |
| 204 | task_flags |= RPC_TASK_TIMEOUT; |
| 205 | |
| 206 | dprintk("NFS call lookup %pd2\n", dentry); |
| 207 | return __nfs3_proc_lookup(dir, dentry->d_name.name, |
| 208 | dentry->d_name.len, fhandle, fattr, |
| 209 | task_flags); |
| 210 | } |
| 211 | |
Trond Myklebust | 3c5e9a5 | 2020-10-19 12:45:53 -0400 | [diff] [blame] | 212 | static int nfs3_proc_lookupp(struct inode *inode, struct nfs_fh *fhandle, |
| 213 | struct nfs_fattr *fattr, struct nfs4_label *label) |
| 214 | { |
| 215 | const char dotdot[] = ".."; |
| 216 | const size_t len = strlen(dotdot); |
| 217 | unsigned short task_flags = 0; |
| 218 | |
| 219 | if (NFS_SERVER(inode)->flags & NFS_MOUNT_SOFTREVAL) |
| 220 | task_flags |= RPC_TASK_TIMEOUT; |
| 221 | |
| 222 | return __nfs3_proc_lookup(inode, dotdot, len, fhandle, fattr, |
| 223 | task_flags); |
| 224 | } |
| 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 227 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | struct nfs3_accessargs arg = { |
| 229 | .fh = NFS_FH(inode), |
Anna Schumaker | 1750d92 | 2017-07-26 12:00:21 -0400 | [diff] [blame] | 230 | .access = entry->mask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | }; |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 232 | struct nfs3_accessres res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | struct rpc_message msg = { |
| 234 | .rpc_proc = &nfs3_procedures[NFS3PROC_ACCESS], |
| 235 | .rpc_argp = &arg, |
| 236 | .rpc_resp = &res, |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 237 | .rpc_cred = entry->cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | }; |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 239 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | |
| 241 | dprintk("NFS call access\n"); |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 242 | res.fattr = nfs_alloc_fattr(); |
| 243 | if (res.fattr == NULL) |
| 244 | goto out; |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 247 | nfs_refresh_inode(inode, res.fattr); |
Trond Myklebust | eda3e20 | 2017-07-11 17:54:33 -0400 | [diff] [blame] | 248 | if (status == 0) |
| 249 | nfs_access_set_mask(entry, res.access); |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 250 | nfs_free_fattr(res.fattr); |
| 251 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | dprintk("NFS reply access: %d\n", status); |
| 253 | return status; |
| 254 | } |
| 255 | |
| 256 | static int nfs3_proc_readlink(struct inode *inode, struct page *page, |
| 257 | unsigned int pgbase, unsigned int pglen) |
| 258 | { |
Trond Myklebust | 3b14d65 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 259 | struct nfs_fattr *fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | struct nfs3_readlinkargs args = { |
| 261 | .fh = NFS_FH(inode), |
| 262 | .pgbase = pgbase, |
| 263 | .pglen = pglen, |
| 264 | .pages = &page |
| 265 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 266 | struct rpc_message msg = { |
| 267 | .rpc_proc = &nfs3_procedures[NFS3PROC_READLINK], |
| 268 | .rpc_argp = &args, |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 269 | }; |
Trond Myklebust | 3b14d65 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 270 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | dprintk("NFS call readlink\n"); |
Trond Myklebust | 3b14d65 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 273 | fattr = nfs_alloc_fattr(); |
| 274 | if (fattr == NULL) |
| 275 | goto out; |
| 276 | msg.rpc_resp = fattr; |
| 277 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 278 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | 3b14d65 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 279 | nfs_refresh_inode(inode, fattr); |
| 280 | nfs_free_fattr(fattr); |
| 281 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | dprintk("NFS reply readlink: %d\n", status); |
| 283 | return status; |
| 284 | } |
| 285 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 286 | struct nfs3_createdata { |
| 287 | struct rpc_message msg; |
| 288 | union { |
| 289 | struct nfs3_createargs create; |
| 290 | struct nfs3_mkdirargs mkdir; |
| 291 | struct nfs3_symlinkargs symlink; |
| 292 | struct nfs3_mknodargs mknod; |
| 293 | } arg; |
| 294 | struct nfs3_diropres res; |
| 295 | struct nfs_fh fh; |
| 296 | struct nfs_fattr fattr; |
| 297 | struct nfs_fattr dir_attr; |
| 298 | }; |
| 299 | |
| 300 | static struct nfs3_createdata *nfs3_alloc_createdata(void) |
| 301 | { |
| 302 | struct nfs3_createdata *data; |
| 303 | |
| 304 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 305 | if (data != NULL) { |
| 306 | data->msg.rpc_argp = &data->arg; |
| 307 | data->msg.rpc_resp = &data->res; |
| 308 | data->res.fh = &data->fh; |
| 309 | data->res.fattr = &data->fattr; |
| 310 | data->res.dir_attr = &data->dir_attr; |
| 311 | nfs_fattr_init(data->res.fattr); |
| 312 | nfs_fattr_init(data->res.dir_attr); |
| 313 | } |
| 314 | return data; |
| 315 | } |
| 316 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 317 | static struct dentry * |
| 318 | nfs3_do_create(struct inode *dir, struct dentry *dentry, struct nfs3_createdata *data) |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 319 | { |
| 320 | int status; |
| 321 | |
| 322 | status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0); |
| 323 | nfs_post_op_update_inode(dir, data->res.dir_attr); |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 324 | if (status != 0) |
| 325 | return ERR_PTR(status); |
| 326 | |
| 327 | return nfs_add_or_obtain(dentry, data->res.fh, data->res.fattr, NULL); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | static void nfs3_free_createdata(struct nfs3_createdata *data) |
| 331 | { |
| 332 | kfree(data); |
| 333 | } |
| 334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | /* |
| 336 | * Create a regular file. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | */ |
| 338 | static int |
| 339 | nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 340 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 342 | struct posix_acl *default_acl, *acl; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 343 | struct nfs3_createdata *data; |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 344 | struct dentry *d_alias; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 345 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 347 | dprintk("NFS call create %pd\n", dentry); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 348 | |
| 349 | data = nfs3_alloc_createdata(); |
| 350 | if (data == NULL) |
| 351 | goto out; |
| 352 | |
| 353 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_CREATE]; |
| 354 | data->arg.create.fh = NFS_FH(dir); |
| 355 | data->arg.create.name = dentry->d_name.name; |
| 356 | data->arg.create.len = dentry->d_name.len; |
| 357 | data->arg.create.sattr = sattr; |
| 358 | |
| 359 | data->arg.create.createmode = NFS3_CREATE_UNCHECKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (flags & O_EXCL) { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 361 | data->arg.create.createmode = NFS3_CREATE_EXCLUSIVE; |
Trond Myklebust | a9943d1 | 2013-08-20 21:04:11 -0400 | [diff] [blame] | 362 | data->arg.create.verifier[0] = cpu_to_be32(jiffies); |
| 363 | data->arg.create.verifier[1] = cpu_to_be32(current->pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 366 | status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl); |
| 367 | if (status) |
| 368 | goto out; |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 369 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 370 | for (;;) { |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 371 | d_alias = nfs3_do_create(dir, dentry, data); |
| 372 | status = PTR_ERR_OR_ZERO(d_alias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 374 | if (status != -ENOTSUPP) |
| 375 | break; |
| 376 | /* If the server doesn't support the exclusive creation |
| 377 | * semantics, try again with simple 'guarded' mode. */ |
| 378 | switch (data->arg.create.createmode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | case NFS3_CREATE_EXCLUSIVE: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 380 | data->arg.create.createmode = NFS3_CREATE_GUARDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | break; |
| 382 | |
| 383 | case NFS3_CREATE_GUARDED: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 384 | data->arg.create.createmode = NFS3_CREATE_UNCHECKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | break; |
| 386 | |
| 387 | case NFS3_CREATE_UNCHECKED: |
| 388 | goto out; |
| 389 | } |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 390 | nfs_fattr_init(data->res.dir_attr); |
| 391 | nfs_fattr_init(data->res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | if (status != 0) |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 395 | goto out_release_acls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 397 | if (d_alias) |
| 398 | dentry = d_alias; |
| 399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | /* When we created the file with exclusive semantics, make |
| 401 | * sure we set the attributes afterwards. */ |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 402 | if (data->arg.create.createmode == NFS3_CREATE_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | dprintk("NFS call setattr (post-create)\n"); |
| 404 | |
| 405 | if (!(sattr->ia_valid & ATTR_ATIME_SET)) |
| 406 | sattr->ia_valid |= ATTR_ATIME; |
| 407 | if (!(sattr->ia_valid & ATTR_MTIME_SET)) |
| 408 | sattr->ia_valid |= ATTR_MTIME; |
| 409 | |
| 410 | /* Note: we could use a guarded setattr here, but I'm |
| 411 | * not sure this buys us anything (and I'd have |
| 412 | * to revamp the NFSv3 XDR code) */ |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 413 | status = nfs3_proc_setattr(dentry, data->res.fattr, sattr); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 414 | nfs_post_op_update_inode(d_inode(dentry), data->res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | dprintk("NFS reply setattr (post-create): %d\n", status); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 416 | if (status != 0) |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 417 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 419 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 420 | status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 421 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 422 | out_dput: |
| 423 | dput(d_alias); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 424 | out_release_acls: |
| 425 | posix_acl_release(acl); |
| 426 | posix_acl_release(default_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 428 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | dprintk("NFS reply create: %d\n", status); |
| 430 | return status; |
| 431 | } |
| 432 | |
| 433 | static int |
Trond Myklebust | 912678d | 2018-03-20 16:43:15 -0400 | [diff] [blame] | 434 | nfs3_proc_remove(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 436 | struct nfs_removeargs arg = { |
| 437 | .fh = NFS_FH(dir), |
Trond Myklebust | 912678d | 2018-03-20 16:43:15 -0400 | [diff] [blame] | 438 | .name = dentry->d_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | }; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 440 | struct nfs_removeres res; |
| 441 | struct rpc_message msg = { |
| 442 | .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE], |
| 443 | .rpc_argp = &arg, |
| 444 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | }; |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 446 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Trond Myklebust | 912678d | 2018-03-20 16:43:15 -0400 | [diff] [blame] | 448 | dprintk("NFS call remove %pd2\n", dentry); |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 449 | res.dir_attr = nfs_alloc_fattr(); |
| 450 | if (res.dir_attr == NULL) |
| 451 | goto out; |
| 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 454 | nfs_post_op_update_inode(dir, res.dir_attr); |
| 455 | nfs_free_fattr(res.dir_attr); |
| 456 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | dprintk("NFS reply remove: %d\n", status); |
| 458 | return status; |
| 459 | } |
| 460 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 461 | static void |
Trond Myklebust | ed7e9ad | 2018-05-30 16:11:52 -0400 | [diff] [blame] | 462 | nfs3_proc_unlink_setup(struct rpc_message *msg, |
| 463 | struct dentry *dentry, |
| 464 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Bryan Schumaker | 34e137c | 2012-03-19 14:54:41 -0400 | [diff] [blame] | 469 | static void nfs3_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) |
| 470 | { |
| 471 | rpc_call_start(task); |
| 472 | } |
| 473 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | static int |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 475 | nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 477 | struct nfs_removeres *res; |
| 478 | if (nfs3_async_handle_jukebox(task, dir)) |
| 479 | return 0; |
| 480 | res = task->tk_msg.rpc_resp; |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 481 | nfs_post_op_update_inode(dir, res->dir_attr); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 482 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 485 | static void |
Trond Myklebust | f2c2c55 | 2018-03-20 16:43:16 -0400 | [diff] [blame] | 486 | nfs3_proc_rename_setup(struct rpc_message *msg, |
| 487 | struct dentry *old_dentry, |
| 488 | struct dentry *new_dentry) |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 489 | { |
| 490 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_RENAME]; |
| 491 | } |
| 492 | |
Bryan Schumaker | c6bfa1a | 2012-03-19 14:54:42 -0400 | [diff] [blame] | 493 | static void nfs3_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) |
| 494 | { |
| 495 | rpc_call_start(task); |
| 496 | } |
| 497 | |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 498 | static int |
| 499 | nfs3_proc_rename_done(struct rpc_task *task, struct inode *old_dir, |
| 500 | struct inode *new_dir) |
| 501 | { |
| 502 | struct nfs_renameres *res; |
| 503 | |
| 504 | if (nfs3_async_handle_jukebox(task, old_dir)) |
| 505 | return 0; |
| 506 | res = task->tk_msg.rpc_resp; |
| 507 | |
| 508 | nfs_post_op_update_inode(old_dir, res->old_fattr); |
| 509 | nfs_post_op_update_inode(new_dir, res->new_fattr); |
| 510 | return 1; |
| 511 | } |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | static int |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 514 | nfs3_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | struct nfs3_linkargs arg = { |
| 517 | .fromfh = NFS_FH(inode), |
| 518 | .tofh = NFS_FH(dir), |
| 519 | .toname = name->name, |
| 520 | .tolen = name->len |
| 521 | }; |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 522 | struct nfs3_linkres res; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 523 | struct rpc_message msg = { |
| 524 | .rpc_proc = &nfs3_procedures[NFS3PROC_LINK], |
| 525 | .rpc_argp = &arg, |
| 526 | .rpc_resp = &res, |
| 527 | }; |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 528 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
| 530 | dprintk("NFS call link %s\n", name->name); |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 531 | res.fattr = nfs_alloc_fattr(); |
| 532 | res.dir_attr = nfs_alloc_fattr(); |
| 533 | if (res.fattr == NULL || res.dir_attr == NULL) |
| 534 | goto out; |
| 535 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 536 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 537 | nfs_post_op_update_inode(dir, res.dir_attr); |
| 538 | nfs_post_op_update_inode(inode, res.fattr); |
| 539 | out: |
| 540 | nfs_free_fattr(res.dir_attr); |
| 541 | nfs_free_fattr(res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | dprintk("NFS reply link: %d\n", status); |
| 543 | return status; |
| 544 | } |
| 545 | |
| 546 | static int |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 547 | nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page, |
| 548 | unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 550 | struct nfs3_createdata *data; |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 551 | struct dentry *d_alias; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 552 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 554 | if (len > NFS3_MAXPATHLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | return -ENAMETOOLONG; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 556 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 557 | dprintk("NFS call symlink %pd\n", dentry); |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 558 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 559 | data = nfs3_alloc_createdata(); |
| 560 | if (data == NULL) |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 561 | goto out; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 562 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_SYMLINK]; |
| 563 | data->arg.symlink.fromfh = NFS_FH(dir); |
| 564 | data->arg.symlink.fromname = dentry->d_name.name; |
| 565 | data->arg.symlink.fromlen = dentry->d_name.len; |
| 566 | data->arg.symlink.pages = &page; |
| 567 | data->arg.symlink.pathlen = len; |
| 568 | data->arg.symlink.sattr = sattr; |
| 569 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 570 | d_alias = nfs3_do_create(dir, dentry, data); |
| 571 | status = PTR_ERR_OR_ZERO(d_alias); |
| 572 | |
| 573 | if (status == 0) |
| 574 | dput(d_alias); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 575 | |
| 576 | nfs3_free_createdata(data); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 577 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | dprintk("NFS reply symlink: %d\n", status); |
| 579 | return status; |
| 580 | } |
| 581 | |
| 582 | static int |
| 583 | nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr) |
| 584 | { |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 585 | struct posix_acl *default_acl, *acl; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 586 | struct nfs3_createdata *data; |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 587 | struct dentry *d_alias; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 588 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 590 | dprintk("NFS call mkdir %pd\n", dentry); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 591 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 592 | data = nfs3_alloc_createdata(); |
| 593 | if (data == NULL) |
| 594 | goto out; |
| 595 | |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 596 | status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl); |
| 597 | if (status) |
| 598 | goto out; |
| 599 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 600 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKDIR]; |
| 601 | data->arg.mkdir.fh = NFS_FH(dir); |
| 602 | data->arg.mkdir.name = dentry->d_name.name; |
| 603 | data->arg.mkdir.len = dentry->d_name.len; |
| 604 | data->arg.mkdir.sattr = sattr; |
| 605 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 606 | d_alias = nfs3_do_create(dir, dentry, data); |
| 607 | status = PTR_ERR_OR_ZERO(d_alias); |
| 608 | |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 609 | if (status != 0) |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 610 | goto out_release_acls; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 611 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 612 | if (d_alias) |
| 613 | dentry = d_alias; |
| 614 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 615 | status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 616 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 617 | dput(d_alias); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 618 | out_release_acls: |
| 619 | posix_acl_release(acl); |
| 620 | posix_acl_release(default_acl); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 621 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 622 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | dprintk("NFS reply mkdir: %d\n", status); |
| 624 | return status; |
| 625 | } |
| 626 | |
| 627 | static int |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 628 | nfs3_proc_rmdir(struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
Trond Myklebust | 39967dd | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 630 | struct nfs_fattr *dir_attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | struct nfs3_diropargs arg = { |
| 632 | .fh = NFS_FH(dir), |
| 633 | .name = name->name, |
| 634 | .len = name->len |
| 635 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 636 | struct rpc_message msg = { |
| 637 | .rpc_proc = &nfs3_procedures[NFS3PROC_RMDIR], |
| 638 | .rpc_argp = &arg, |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 639 | }; |
Trond Myklebust | 39967dd | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 640 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | dprintk("NFS call rmdir %s\n", name->name); |
Trond Myklebust | 39967dd | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 643 | dir_attr = nfs_alloc_fattr(); |
| 644 | if (dir_attr == NULL) |
| 645 | goto out; |
| 646 | |
| 647 | msg.rpc_resp = dir_attr; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 648 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | 39967dd | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 649 | nfs_post_op_update_inode(dir, dir_attr); |
| 650 | nfs_free_fattr(dir_attr); |
| 651 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | dprintk("NFS reply rmdir: %d\n", status); |
| 653 | return status; |
| 654 | } |
| 655 | |
| 656 | /* |
| 657 | * The READDIR implementation is somewhat hackish - we pass the user buffer |
| 658 | * to the encode function, which installs it in the receive iovec. |
| 659 | * The decode function itself doesn't perform any decoding, it just makes |
| 660 | * sure the reply is syntactically correct. |
| 661 | * |
| 662 | * Also note that this implementation handles both plain readdir and |
| 663 | * readdirplus. |
| 664 | */ |
| 665 | static int |
NeilBrown | 684f39b | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 666 | nfs3_proc_readdir(struct dentry *dentry, const struct cred *cred, |
Benjamin Coddington | a7a3b1e | 2017-06-20 08:33:44 -0400 | [diff] [blame] | 667 | u64 cookie, struct page **pages, unsigned int count, bool plus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 669 | struct inode *dir = d_inode(dentry); |
Trond Myklebust | c3f52af | 2012-09-03 14:56:02 -0400 | [diff] [blame] | 670 | __be32 *verf = NFS_I(dir)->cookieverf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | struct nfs3_readdirargs arg = { |
| 672 | .fh = NFS_FH(dir), |
| 673 | .cookie = cookie, |
| 674 | .verf = {verf[0], verf[1]}, |
| 675 | .plus = plus, |
| 676 | .count = count, |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 677 | .pages = pages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | }; |
| 679 | struct nfs3_readdirres res = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | .verf = verf, |
| 681 | .plus = plus |
| 682 | }; |
| 683 | struct rpc_message msg = { |
| 684 | .rpc_proc = &nfs3_procedures[NFS3PROC_READDIR], |
| 685 | .rpc_argp = &arg, |
| 686 | .rpc_resp = &res, |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 687 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | }; |
Trond Myklebust | aa49b4c | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 689 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | if (plus) |
| 692 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_READDIRPLUS]; |
| 693 | |
| 694 | dprintk("NFS call readdir%s %d\n", |
| 695 | plus? "plus" : "", (unsigned int) cookie); |
| 696 | |
Trond Myklebust | aa49b4c | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 697 | res.dir_attr = nfs_alloc_fattr(); |
| 698 | if (res.dir_attr == NULL) |
| 699 | goto out; |
| 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 702 | |
| 703 | nfs_invalidate_atime(dir); |
Trond Myklebust | aa49b4c | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 704 | nfs_refresh_inode(dir, res.dir_attr); |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 705 | |
Trond Myklebust | aa49b4c | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 706 | nfs_free_fattr(res.dir_attr); |
| 707 | out: |
Chuck Lever | d141d97 | 2010-09-21 16:55:47 -0400 | [diff] [blame] | 708 | dprintk("NFS reply readdir%s: %d\n", |
| 709 | plus? "plus" : "", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | return status; |
| 711 | } |
| 712 | |
| 713 | static int |
| 714 | nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
| 715 | dev_t rdev) |
| 716 | { |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 717 | struct posix_acl *default_acl, *acl; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 718 | struct nfs3_createdata *data; |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 719 | struct dentry *d_alias; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 720 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 722 | dprintk("NFS call mknod %pd %u:%u\n", dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | MAJOR(rdev), MINOR(rdev)); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 724 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 725 | data = nfs3_alloc_createdata(); |
| 726 | if (data == NULL) |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 727 | goto out; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 728 | |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 729 | status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl); |
| 730 | if (status) |
| 731 | goto out; |
| 732 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 733 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKNOD]; |
| 734 | data->arg.mknod.fh = NFS_FH(dir); |
| 735 | data->arg.mknod.name = dentry->d_name.name; |
| 736 | data->arg.mknod.len = dentry->d_name.len; |
| 737 | data->arg.mknod.sattr = sattr; |
| 738 | data->arg.mknod.rdev = rdev; |
| 739 | |
| 740 | switch (sattr->ia_mode & S_IFMT) { |
| 741 | case S_IFBLK: |
| 742 | data->arg.mknod.type = NF3BLK; |
| 743 | break; |
| 744 | case S_IFCHR: |
| 745 | data->arg.mknod.type = NF3CHR; |
| 746 | break; |
| 747 | case S_IFIFO: |
| 748 | data->arg.mknod.type = NF3FIFO; |
| 749 | break; |
| 750 | case S_IFSOCK: |
| 751 | data->arg.mknod.type = NF3SOCK; |
| 752 | break; |
| 753 | default: |
| 754 | status = -EINVAL; |
| 755 | goto out; |
| 756 | } |
| 757 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 758 | d_alias = nfs3_do_create(dir, dentry, data); |
| 759 | status = PTR_ERR_OR_ZERO(d_alias); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 760 | if (status != 0) |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 761 | goto out_release_acls; |
| 762 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 763 | if (d_alias) |
| 764 | dentry = d_alias; |
| 765 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 766 | status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 767 | |
Benjamin Coddington | 17fd6e4 | 2019-09-13 08:29:03 -0400 | [diff] [blame] | 768 | dput(d_alias); |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 769 | out_release_acls: |
| 770 | posix_acl_release(acl); |
| 771 | posix_acl_release(default_acl); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 772 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 773 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | dprintk("NFS reply mknod: %d\n", status); |
| 775 | return status; |
| 776 | } |
| 777 | |
| 778 | static int |
| 779 | nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, |
| 780 | struct nfs_fsstat *stat) |
| 781 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 782 | struct rpc_message msg = { |
| 783 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSSTAT], |
| 784 | .rpc_argp = fhandle, |
| 785 | .rpc_resp = stat, |
| 786 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | int status; |
| 788 | |
| 789 | dprintk("NFS call fsstat\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 790 | nfs_fattr_init(stat->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 791 | status = rpc_call_sync(server->client, &msg, 0); |
Chuck Lever | d141d97 | 2010-09-21 16:55:47 -0400 | [diff] [blame] | 792 | dprintk("NFS reply fsstat: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | return status; |
| 794 | } |
| 795 | |
| 796 | static int |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 797 | do_proc_fsinfo(struct rpc_clnt *client, struct nfs_fh *fhandle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | struct nfs_fsinfo *info) |
| 799 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 800 | struct rpc_message msg = { |
| 801 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO], |
| 802 | .rpc_argp = fhandle, |
| 803 | .rpc_resp = info, |
| 804 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | int status; |
| 806 | |
| 807 | dprintk("NFS call fsinfo\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 808 | nfs_fattr_init(info->fattr); |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 809 | status = rpc_call_sync(client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | dprintk("NFS reply fsinfo: %d\n", status); |
| 811 | return status; |
| 812 | } |
| 813 | |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 814 | /* |
| 815 | * Bare-bones access to fsinfo: this is for nfs_get_root/nfs_get_sb via |
| 816 | * nfs_create_server |
| 817 | */ |
| 818 | static int |
| 819 | nfs3_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, |
| 820 | struct nfs_fsinfo *info) |
| 821 | { |
| 822 | int status; |
| 823 | |
| 824 | status = do_proc_fsinfo(server->client, fhandle, info); |
| 825 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 826 | status = do_proc_fsinfo(server->nfs_client->cl_rpcclient, fhandle, info); |
| 827 | return status; |
| 828 | } |
| 829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | static int |
| 831 | nfs3_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 832 | struct nfs_pathconf *info) |
| 833 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 834 | struct rpc_message msg = { |
| 835 | .rpc_proc = &nfs3_procedures[NFS3PROC_PATHCONF], |
| 836 | .rpc_argp = fhandle, |
| 837 | .rpc_resp = info, |
| 838 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | int status; |
| 840 | |
| 841 | dprintk("NFS call pathconf\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 842 | nfs_fattr_init(info->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 843 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | dprintk("NFS reply pathconf: %d\n", status); |
| 845 | return status; |
| 846 | } |
| 847 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 848 | static int nfs3_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 850 | struct inode *inode = hdr->inode; |
Trond Myklebust | 8d8928d | 2018-03-05 12:03:00 -0500 | [diff] [blame] | 851 | struct nfs_server *server = NFS_SERVER(inode); |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 852 | |
Trond Myklebust | 16cecdf | 2014-06-22 12:55:11 -0400 | [diff] [blame] | 853 | if (hdr->pgio_done_cb != NULL) |
| 854 | return hdr->pgio_done_cb(task, hdr); |
| 855 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 856 | if (nfs3_async_handle_jukebox(task, inode)) |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 857 | return -EAGAIN; |
Trond Myklebust | 8850df9 | 2007-09-28 17:20:07 -0400 | [diff] [blame] | 858 | |
Trond Myklebust | 8d8928d | 2018-03-05 12:03:00 -0500 | [diff] [blame] | 859 | if (task->tk_status >= 0 && !server->read_hdrsize) |
| 860 | cmpxchg(&server->read_hdrsize, 0, hdr->res.replen); |
| 861 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 862 | nfs_invalidate_atime(inode); |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 863 | nfs_refresh_inode(inode, &hdr->fattr); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 864 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 867 | static void nfs3_proc_read_setup(struct nfs_pgio_header *hdr, |
| 868 | struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 870 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_READ]; |
Trond Myklebust | 8d8928d | 2018-03-05 12:03:00 -0500 | [diff] [blame] | 871 | hdr->args.replen = NFS_SERVER(hdr->inode)->read_hdrsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 874 | static int nfs3_proc_pgio_rpc_prepare(struct rpc_task *task, |
| 875 | struct nfs_pgio_header *hdr) |
Bryan Schumaker | ea7c330 | 2012-03-19 14:54:40 -0400 | [diff] [blame] | 876 | { |
| 877 | rpc_call_start(task); |
NeilBrown | ef1820f | 2013-09-04 17:04:49 +1000 | [diff] [blame] | 878 | return 0; |
Bryan Schumaker | ea7c330 | 2012-03-19 14:54:40 -0400 | [diff] [blame] | 879 | } |
| 880 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 881 | static int nfs3_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 883 | struct inode *inode = hdr->inode; |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 884 | |
Trond Myklebust | 16cecdf | 2014-06-22 12:55:11 -0400 | [diff] [blame] | 885 | if (hdr->pgio_done_cb != NULL) |
| 886 | return hdr->pgio_done_cb(task, hdr); |
| 887 | |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 888 | if (nfs3_async_handle_jukebox(task, inode)) |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 889 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | if (task->tk_status >= 0) |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 891 | nfs_writeback_update_inode(hdr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 892 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 895 | static void nfs3_proc_write_setup(struct nfs_pgio_header *hdr, |
Anna Schumaker | fb91fb0 | 2018-05-04 16:22:48 -0400 | [diff] [blame] | 896 | struct rpc_message *msg, |
| 897 | struct rpc_clnt **clnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 899 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_WRITE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | } |
| 901 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 902 | static void nfs3_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) |
| 903 | { |
| 904 | rpc_call_start(task); |
| 905 | } |
| 906 | |
| 907 | static int nfs3_commit_done(struct rpc_task *task, struct nfs_commit_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Trond Myklebust | 16cecdf | 2014-06-22 12:55:11 -0400 | [diff] [blame] | 909 | if (data->commit_done_cb != NULL) |
| 910 | return data->commit_done_cb(task, data); |
| 911 | |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 912 | if (nfs3_async_handle_jukebox(task, data->inode)) |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 913 | return -EAGAIN; |
Trond Myklebust | 9e08a3c | 2007-10-08 14:10:31 -0400 | [diff] [blame] | 914 | nfs_refresh_inode(data->inode, data->res.fattr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 915 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | } |
| 917 | |
Anna Schumaker | e9ae1ee | 2018-05-04 16:22:49 -0400 | [diff] [blame] | 918 | static void nfs3_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg, |
| 919 | struct rpc_clnt **clnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 921 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_COMMIT]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | } |
| 923 | |
Trond Myklebust | bb3393d | 2017-04-25 16:25:06 -0400 | [diff] [blame] | 924 | static void nfs3_nlm_alloc_call(void *data) |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 925 | { |
| 926 | struct nfs_lock_context *l_ctx = data; |
| 927 | if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags)) { |
| 928 | get_nfs_open_context(l_ctx->open_context); |
| 929 | nfs_get_lock_context(l_ctx->open_context); |
| 930 | } |
| 931 | } |
| 932 | |
Trond Myklebust | bb3393d | 2017-04-25 16:25:06 -0400 | [diff] [blame] | 933 | static bool nfs3_nlm_unlock_prepare(struct rpc_task *task, void *data) |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 934 | { |
| 935 | struct nfs_lock_context *l_ctx = data; |
| 936 | if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags)) |
| 937 | return nfs_async_iocounter_wait(task, l_ctx); |
| 938 | return false; |
| 939 | |
| 940 | } |
| 941 | |
Trond Myklebust | bb3393d | 2017-04-25 16:25:06 -0400 | [diff] [blame] | 942 | static void nfs3_nlm_release_call(void *data) |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 943 | { |
| 944 | struct nfs_lock_context *l_ctx = data; |
| 945 | struct nfs_open_context *ctx; |
| 946 | if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags)) { |
| 947 | ctx = l_ctx->open_context; |
| 948 | nfs_put_lock_context(l_ctx); |
| 949 | put_nfs_open_context(ctx); |
| 950 | } |
| 951 | } |
| 952 | |
Colin Ian King | 1b72040 | 2018-02-07 11:27:54 +0000 | [diff] [blame] | 953 | static const struct nlmclnt_operations nlmclnt_fl_close_lock_ops = { |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 954 | .nlmclnt_alloc_call = nfs3_nlm_alloc_call, |
| 955 | .nlmclnt_unlock_prepare = nfs3_nlm_unlock_prepare, |
| 956 | .nlmclnt_release_call = nfs3_nlm_release_call, |
| 957 | }; |
| 958 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | static int |
| 960 | nfs3_proc_lock(struct file *filp, int cmd, struct file_lock *fl) |
| 961 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 962 | struct inode *inode = file_inode(filp); |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 963 | struct nfs_lock_context *l_ctx = NULL; |
| 964 | struct nfs_open_context *ctx = nfs_file_open_context(filp); |
| 965 | int status; |
Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 966 | |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 967 | if (fl->fl_flags & FL_CLOSE) { |
| 968 | l_ctx = nfs_get_lock_context(ctx); |
| 969 | if (IS_ERR(l_ctx)) |
| 970 | l_ctx = NULL; |
| 971 | else |
| 972 | set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags); |
| 973 | } |
| 974 | |
| 975 | status = nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl, l_ctx); |
| 976 | |
| 977 | if (l_ctx) |
| 978 | nfs_put_lock_context(l_ctx); |
| 979 | |
| 980 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 983 | static int nfs3_have_delegation(struct inode *inode, fmode_t flags) |
| 984 | { |
| 985 | return 0; |
| 986 | } |
| 987 | |
Bryan Schumaker | ab96291 | 2012-07-16 16:39:11 -0400 | [diff] [blame] | 988 | static const struct inode_operations nfs3_dir_inode_operations = { |
| 989 | .create = nfs_create, |
| 990 | .lookup = nfs_lookup, |
| 991 | .link = nfs_link, |
| 992 | .unlink = nfs_unlink, |
| 993 | .symlink = nfs_symlink, |
| 994 | .mkdir = nfs_mkdir, |
| 995 | .rmdir = nfs_rmdir, |
| 996 | .mknod = nfs_mknod, |
| 997 | .rename = nfs_rename, |
| 998 | .permission = nfs_permission, |
| 999 | .getattr = nfs_getattr, |
| 1000 | .setattr = nfs_setattr, |
Christoph Hellwig | 5f13ee9 | 2014-01-30 06:01:52 -0800 | [diff] [blame] | 1001 | #ifdef CONFIG_NFS_V3_ACL |
Christoph Hellwig | 74adf83 | 2014-06-18 11:07:03 +0200 | [diff] [blame] | 1002 | .listxattr = nfs3_listxattr, |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 1003 | .get_acl = nfs3_get_acl, |
| 1004 | .set_acl = nfs3_set_acl, |
| 1005 | #endif |
Bryan Schumaker | ab96291 | 2012-07-16 16:39:11 -0400 | [diff] [blame] | 1006 | }; |
| 1007 | |
| 1008 | static const struct inode_operations nfs3_file_inode_operations = { |
| 1009 | .permission = nfs_permission, |
| 1010 | .getattr = nfs_getattr, |
| 1011 | .setattr = nfs_setattr, |
Christoph Hellwig | 5f13ee9 | 2014-01-30 06:01:52 -0800 | [diff] [blame] | 1012 | #ifdef CONFIG_NFS_V3_ACL |
Christoph Hellwig | 74adf83 | 2014-06-18 11:07:03 +0200 | [diff] [blame] | 1013 | .listxattr = nfs3_listxattr, |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 1014 | .get_acl = nfs3_get_acl, |
| 1015 | .set_acl = nfs3_set_acl, |
| 1016 | #endif |
Bryan Schumaker | ab96291 | 2012-07-16 16:39:11 -0400 | [diff] [blame] | 1017 | }; |
| 1018 | |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1019 | const struct nfs_rpc_ops nfs_v3_clientops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | .version = 3, /* protocol version */ |
| 1021 | .dentry_ops = &nfs_dentry_operations, |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 1022 | .dir_inode_ops = &nfs3_dir_inode_operations, |
| 1023 | .file_inode_ops = &nfs3_file_inode_operations, |
Jeff Layton | 1788ea6 | 2011-11-04 13:31:21 -0400 | [diff] [blame] | 1024 | .file_ops = &nfs_file_operations, |
Benjamin Coddington | f30cb75 | 2017-04-11 12:50:12 -0400 | [diff] [blame] | 1025 | .nlmclnt_ops = &nlmclnt_fl_close_lock_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | .getroot = nfs3_proc_get_root, |
Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 1027 | .submount = nfs_submount, |
David Howells | f2aedb7 | 2019-12-10 07:31:13 -0500 | [diff] [blame] | 1028 | .try_get_tree = nfs_try_get_tree, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | .getattr = nfs3_proc_getattr, |
| 1030 | .setattr = nfs3_proc_setattr, |
| 1031 | .lookup = nfs3_proc_lookup, |
Trond Myklebust | 3c5e9a5 | 2020-10-19 12:45:53 -0400 | [diff] [blame] | 1032 | .lookupp = nfs3_proc_lookupp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | .access = nfs3_proc_access, |
| 1034 | .readlink = nfs3_proc_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | .create = nfs3_proc_create, |
| 1036 | .remove = nfs3_proc_remove, |
| 1037 | .unlink_setup = nfs3_proc_unlink_setup, |
Bryan Schumaker | 34e137c | 2012-03-19 14:54:41 -0400 | [diff] [blame] | 1038 | .unlink_rpc_prepare = nfs3_proc_unlink_rpc_prepare, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | .unlink_done = nfs3_proc_unlink_done, |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 1040 | .rename_setup = nfs3_proc_rename_setup, |
Bryan Schumaker | c6bfa1a | 2012-03-19 14:54:42 -0400 | [diff] [blame] | 1041 | .rename_rpc_prepare = nfs3_proc_rename_rpc_prepare, |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 1042 | .rename_done = nfs3_proc_rename_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | .link = nfs3_proc_link, |
| 1044 | .symlink = nfs3_proc_symlink, |
| 1045 | .mkdir = nfs3_proc_mkdir, |
| 1046 | .rmdir = nfs3_proc_rmdir, |
| 1047 | .readdir = nfs3_proc_readdir, |
| 1048 | .mknod = nfs3_proc_mknod, |
| 1049 | .statfs = nfs3_proc_statfs, |
| 1050 | .fsinfo = nfs3_proc_fsinfo, |
| 1051 | .pathconf = nfs3_proc_pathconf, |
| 1052 | .decode_dirent = nfs3_decode_dirent, |
Anna Schumaker | a4cdda5 | 2014-05-06 09:12:31 -0400 | [diff] [blame] | 1053 | .pgio_rpc_prepare = nfs3_proc_pgio_rpc_prepare, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | .read_setup = nfs3_proc_read_setup, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1055 | .read_done = nfs3_read_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | .write_setup = nfs3_proc_write_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1057 | .write_done = nfs3_write_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | .commit_setup = nfs3_proc_commit_setup, |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1059 | .commit_rpc_prepare = nfs3_proc_commit_rpc_prepare, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1060 | .commit_done = nfs3_commit_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | .lock = nfs3_proc_lock, |
Christoph Hellwig | 013cdf1 | 2013-12-20 05:16:53 -0800 | [diff] [blame] | 1062 | .clear_acl_cache = forget_all_cached_acls, |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 1063 | .close_context = nfs_close_context, |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 1064 | .have_delegation = nfs3_have_delegation, |
Bryan Schumaker | 6663ee7 | 2012-06-20 15:53:46 -0400 | [diff] [blame] | 1065 | .alloc_client = nfs_alloc_client, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 1066 | .init_client = nfs_init_client, |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 1067 | .free_client = nfs_free_client, |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 1068 | .create_server = nfs3_create_server, |
| 1069 | .clone_server = nfs3_clone_server, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | }; |