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