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> |
| 13 | #include <linux/nfs.h> |
| 14 | #include <linux/nfs3.h> |
| 15 | #include <linux/nfs_fs.h> |
| 16 | #include <linux/nfs_page.h> |
| 17 | #include <linux/lockd/bind.h> |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 18 | #include <linux/nfs_mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 20 | #include "iostat.h" |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 21 | #include "internal.h" |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #define NFSDBG_FACILITY NFSDBG_PROC |
| 24 | |
Jeff Layton | b68d69b | 2010-01-07 09:42:04 -0500 | [diff] [blame^] | 25 | /* A wrapper to handle the EJUKEBOX and EKEYEXPIRED error messages */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | static int |
| 27 | nfs3_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags) |
| 28 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | do { |
| 31 | res = rpc_call_sync(clnt, msg, flags); |
Jeff Layton | b68d69b | 2010-01-07 09:42:04 -0500 | [diff] [blame^] | 32 | if (res != -EJUKEBOX && res != -EKEYEXPIRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | break; |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 34 | schedule_timeout_killable(NFS_JUKEBOX_RETRY_TIME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | res = -ERESTARTSYS; |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 36 | } while (!fatal_signal_pending(current)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | return res; |
| 38 | } |
| 39 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 40 | #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] | 41 | |
| 42 | static int |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 43 | nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
Jeff Layton | b68d69b | 2010-01-07 09:42:04 -0500 | [diff] [blame^] | 45 | if (task->tk_status != -EJUKEBOX && task->tk_status != -EKEYEXPIRED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return 0; |
Jeff Layton | b68d69b | 2010-01-07 09:42:04 -0500 | [diff] [blame^] | 47 | if (task->tk_status == -EJUKEBOX) |
| 48 | nfs_inc_stats(inode, NFSIOS_DELAY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | task->tk_status = 0; |
| 50 | rpc_restart_call(task); |
| 51 | rpc_delay(task, NFS_JUKEBOX_RETRY_TIME); |
| 52 | return 1; |
| 53 | } |
| 54 | |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 55 | static int |
| 56 | do_proc_get_root(struct rpc_clnt *client, struct nfs_fh *fhandle, |
| 57 | struct nfs_fsinfo *info) |
| 58 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 59 | struct rpc_message msg = { |
| 60 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO], |
| 61 | .rpc_argp = fhandle, |
| 62 | .rpc_resp = info, |
| 63 | }; |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 64 | int status; |
| 65 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 66 | dprintk("%s: call fsinfo\n", __func__); |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 67 | nfs_fattr_init(info->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 68 | status = rpc_call_sync(client, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 69 | dprintk("%s: reply fsinfo: %d\n", __func__, status); |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 70 | if (!(info->fattr->valid & NFS_ATTR_FATTR)) { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 71 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR]; |
| 72 | msg.rpc_resp = info->fattr; |
| 73 | status = rpc_call_sync(client, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 74 | dprintk("%s: reply getattr: %d\n", __func__, status); |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 75 | } |
| 76 | return status; |
| 77 | } |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 80 | * 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] | 81 | */ |
| 82 | static int |
| 83 | nfs3_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 84 | struct nfs_fsinfo *info) |
| 85 | { |
| 86 | int status; |
| 87 | |
J. Bruce Fields | 03c2173 | 2006-01-03 09:55:48 +0100 | [diff] [blame] | 88 | status = do_proc_get_root(server->client, fhandle, info); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 89 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 90 | status = do_proc_get_root(server->nfs_client->cl_rpcclient, fhandle, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | return status; |
| 92 | } |
| 93 | |
| 94 | /* |
| 95 | * One function for each procedure in the NFS protocol. |
| 96 | */ |
| 97 | static int |
| 98 | nfs3_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
| 99 | struct nfs_fattr *fattr) |
| 100 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 101 | struct rpc_message msg = { |
| 102 | .rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR], |
| 103 | .rpc_argp = fhandle, |
| 104 | .rpc_resp = fattr, |
| 105 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | int status; |
| 107 | |
| 108 | dprintk("NFS call getattr\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 109 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 110 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | dprintk("NFS reply getattr: %d\n", status); |
| 112 | return status; |
| 113 | } |
| 114 | |
| 115 | static int |
| 116 | nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, |
| 117 | struct iattr *sattr) |
| 118 | { |
| 119 | struct inode *inode = dentry->d_inode; |
| 120 | struct nfs3_sattrargs arg = { |
| 121 | .fh = NFS_FH(inode), |
| 122 | .sattr = sattr, |
| 123 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 124 | struct rpc_message msg = { |
| 125 | .rpc_proc = &nfs3_procedures[NFS3PROC_SETATTR], |
| 126 | .rpc_argp = &arg, |
| 127 | .rpc_resp = fattr, |
| 128 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | int status; |
| 130 | |
| 131 | dprintk("NFS call setattr\n"); |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 132 | if (sattr->ia_valid & ATTR_FILE) |
| 133 | msg.rpc_cred = nfs_file_cred(sattr->ia_file); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 134 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 135 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 136 | if (status == 0) |
| 137 | nfs_setattr_update_inode(inode, sattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | dprintk("NFS reply setattr: %d\n", status); |
| 139 | return status; |
| 140 | } |
| 141 | |
| 142 | static int |
| 143 | nfs3_proc_lookup(struct inode *dir, struct qstr *name, |
| 144 | struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 145 | { |
| 146 | struct nfs_fattr dir_attr; |
| 147 | struct nfs3_diropargs arg = { |
| 148 | .fh = NFS_FH(dir), |
| 149 | .name = name->name, |
| 150 | .len = name->len |
| 151 | }; |
| 152 | struct nfs3_diropres res = { |
| 153 | .dir_attr = &dir_attr, |
| 154 | .fh = fhandle, |
| 155 | .fattr = fattr |
| 156 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 157 | struct rpc_message msg = { |
| 158 | .rpc_proc = &nfs3_procedures[NFS3PROC_LOOKUP], |
| 159 | .rpc_argp = &arg, |
| 160 | .rpc_resp = &res, |
| 161 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | int status; |
| 163 | |
| 164 | dprintk("NFS call lookup %s\n", name->name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 165 | nfs_fattr_init(&dir_attr); |
| 166 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 167 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | 81c7688 | 2007-10-02 10:30:00 -0400 | [diff] [blame] | 168 | nfs_refresh_inode(dir, &dir_attr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 169 | if (status >= 0 && !(fattr->valid & NFS_ATTR_FATTR)) { |
| 170 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR]; |
| 171 | msg.rpc_argp = fhandle; |
| 172 | msg.rpc_resp = fattr; |
| 173 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
| 174 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | dprintk("NFS reply lookup: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | return status; |
| 177 | } |
| 178 | |
| 179 | static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 180 | { |
| 181 | struct nfs_fattr fattr; |
| 182 | struct nfs3_accessargs arg = { |
| 183 | .fh = NFS_FH(inode), |
| 184 | }; |
| 185 | struct nfs3_accessres res = { |
| 186 | .fattr = &fattr, |
| 187 | }; |
| 188 | struct rpc_message msg = { |
| 189 | .rpc_proc = &nfs3_procedures[NFS3PROC_ACCESS], |
| 190 | .rpc_argp = &arg, |
| 191 | .rpc_resp = &res, |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 192 | .rpc_cred = entry->cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | }; |
| 194 | int mode = entry->mask; |
| 195 | int status; |
| 196 | |
| 197 | dprintk("NFS call access\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | if (mode & MAY_READ) |
| 200 | arg.access |= NFS3_ACCESS_READ; |
| 201 | if (S_ISDIR(inode->i_mode)) { |
| 202 | if (mode & MAY_WRITE) |
| 203 | arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE; |
| 204 | if (mode & MAY_EXEC) |
| 205 | arg.access |= NFS3_ACCESS_LOOKUP; |
| 206 | } else { |
| 207 | if (mode & MAY_WRITE) |
| 208 | arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND; |
| 209 | if (mode & MAY_EXEC) |
| 210 | arg.access |= NFS3_ACCESS_EXECUTE; |
| 211 | } |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 212 | nfs_fattr_init(&fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
| 214 | nfs_refresh_inode(inode, &fattr); |
| 215 | if (status == 0) { |
| 216 | entry->mask = 0; |
| 217 | if (res.access & NFS3_ACCESS_READ) |
| 218 | entry->mask |= MAY_READ; |
| 219 | if (res.access & (NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE)) |
| 220 | entry->mask |= MAY_WRITE; |
| 221 | if (res.access & (NFS3_ACCESS_LOOKUP|NFS3_ACCESS_EXECUTE)) |
| 222 | entry->mask |= MAY_EXEC; |
| 223 | } |
| 224 | dprintk("NFS reply access: %d\n", status); |
| 225 | return status; |
| 226 | } |
| 227 | |
| 228 | static int nfs3_proc_readlink(struct inode *inode, struct page *page, |
| 229 | unsigned int pgbase, unsigned int pglen) |
| 230 | { |
| 231 | struct nfs_fattr fattr; |
| 232 | struct nfs3_readlinkargs args = { |
| 233 | .fh = NFS_FH(inode), |
| 234 | .pgbase = pgbase, |
| 235 | .pglen = pglen, |
| 236 | .pages = &page |
| 237 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 238 | struct rpc_message msg = { |
| 239 | .rpc_proc = &nfs3_procedures[NFS3PROC_READLINK], |
| 240 | .rpc_argp = &args, |
| 241 | .rpc_resp = &fattr, |
| 242 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | int status; |
| 244 | |
| 245 | dprintk("NFS call readlink\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 246 | nfs_fattr_init(&fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 247 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | nfs_refresh_inode(inode, &fattr); |
| 249 | dprintk("NFS reply readlink: %d\n", status); |
| 250 | return status; |
| 251 | } |
| 252 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 253 | struct nfs3_createdata { |
| 254 | struct rpc_message msg; |
| 255 | union { |
| 256 | struct nfs3_createargs create; |
| 257 | struct nfs3_mkdirargs mkdir; |
| 258 | struct nfs3_symlinkargs symlink; |
| 259 | struct nfs3_mknodargs mknod; |
| 260 | } arg; |
| 261 | struct nfs3_diropres res; |
| 262 | struct nfs_fh fh; |
| 263 | struct nfs_fattr fattr; |
| 264 | struct nfs_fattr dir_attr; |
| 265 | }; |
| 266 | |
| 267 | static struct nfs3_createdata *nfs3_alloc_createdata(void) |
| 268 | { |
| 269 | struct nfs3_createdata *data; |
| 270 | |
| 271 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 272 | if (data != NULL) { |
| 273 | data->msg.rpc_argp = &data->arg; |
| 274 | data->msg.rpc_resp = &data->res; |
| 275 | data->res.fh = &data->fh; |
| 276 | data->res.fattr = &data->fattr; |
| 277 | data->res.dir_attr = &data->dir_attr; |
| 278 | nfs_fattr_init(data->res.fattr); |
| 279 | nfs_fattr_init(data->res.dir_attr); |
| 280 | } |
| 281 | return data; |
| 282 | } |
| 283 | |
| 284 | static int nfs3_do_create(struct inode *dir, struct dentry *dentry, struct nfs3_createdata *data) |
| 285 | { |
| 286 | int status; |
| 287 | |
| 288 | status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0); |
| 289 | nfs_post_op_update_inode(dir, data->res.dir_attr); |
| 290 | if (status == 0) |
| 291 | status = nfs_instantiate(dentry, data->res.fh, data->res.fattr); |
| 292 | return status; |
| 293 | } |
| 294 | |
| 295 | static void nfs3_free_createdata(struct nfs3_createdata *data) |
| 296 | { |
| 297 | kfree(data); |
| 298 | } |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /* |
| 301 | * Create a regular file. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | */ |
| 303 | static int |
| 304 | nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 305 | int flags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 307 | struct nfs3_createdata *data; |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 308 | mode_t mode = sattr->ia_mode; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 309 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | dprintk("NFS call create %s\n", dentry->d_name.name); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 312 | |
| 313 | data = nfs3_alloc_createdata(); |
| 314 | if (data == NULL) |
| 315 | goto out; |
| 316 | |
| 317 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_CREATE]; |
| 318 | data->arg.create.fh = NFS_FH(dir); |
| 319 | data->arg.create.name = dentry->d_name.name; |
| 320 | data->arg.create.len = dentry->d_name.len; |
| 321 | data->arg.create.sattr = sattr; |
| 322 | |
| 323 | data->arg.create.createmode = NFS3_CREATE_UNCHECKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | if (flags & O_EXCL) { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 325 | data->arg.create.createmode = NFS3_CREATE_EXCLUSIVE; |
| 326 | data->arg.create.verifier[0] = jiffies; |
| 327 | data->arg.create.verifier[1] = current->pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 330 | sattr->ia_mode &= ~current_umask(); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 331 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 332 | for (;;) { |
| 333 | status = nfs3_do_create(dir, dentry, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 335 | if (status != -ENOTSUPP) |
| 336 | break; |
| 337 | /* If the server doesn't support the exclusive creation |
| 338 | * semantics, try again with simple 'guarded' mode. */ |
| 339 | switch (data->arg.create.createmode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | case NFS3_CREATE_EXCLUSIVE: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 341 | data->arg.create.createmode = NFS3_CREATE_GUARDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | break; |
| 343 | |
| 344 | case NFS3_CREATE_GUARDED: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 345 | data->arg.create.createmode = NFS3_CREATE_UNCHECKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | break; |
| 347 | |
| 348 | case NFS3_CREATE_UNCHECKED: |
| 349 | goto out; |
| 350 | } |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 351 | nfs_fattr_init(data->res.dir_attr); |
| 352 | nfs_fattr_init(data->res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | if (status != 0) |
| 356 | goto out; |
| 357 | |
| 358 | /* When we created the file with exclusive semantics, make |
| 359 | * sure we set the attributes afterwards. */ |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 360 | if (data->arg.create.createmode == NFS3_CREATE_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | dprintk("NFS call setattr (post-create)\n"); |
| 362 | |
| 363 | if (!(sattr->ia_valid & ATTR_ATIME_SET)) |
| 364 | sattr->ia_valid |= ATTR_ATIME; |
| 365 | if (!(sattr->ia_valid & ATTR_MTIME_SET)) |
| 366 | sattr->ia_valid |= ATTR_MTIME; |
| 367 | |
| 368 | /* Note: we could use a guarded setattr here, but I'm |
| 369 | * not sure this buys us anything (and I'd have |
| 370 | * to revamp the NFSv3 XDR code) */ |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 371 | status = nfs3_proc_setattr(dentry, data->res.fattr, sattr); |
| 372 | nfs_post_op_update_inode(dentry->d_inode, data->res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | dprintk("NFS reply setattr (post-create): %d\n", status); |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 374 | if (status != 0) |
| 375 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 377 | status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 379 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | dprintk("NFS reply create: %d\n", status); |
| 381 | return status; |
| 382 | } |
| 383 | |
| 384 | static int |
| 385 | nfs3_proc_remove(struct inode *dir, struct qstr *name) |
| 386 | { |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 387 | struct nfs_removeargs arg = { |
| 388 | .fh = NFS_FH(dir), |
| 389 | .name.len = name->len, |
| 390 | .name.name = name->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | }; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 392 | struct nfs_removeres res; |
| 393 | struct rpc_message msg = { |
| 394 | .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE], |
| 395 | .rpc_argp = &arg, |
| 396 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | }; |
| 398 | int status; |
| 399 | |
| 400 | dprintk("NFS call remove %s\n", name->name); |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 401 | nfs_fattr_init(&res.dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 403 | nfs_post_op_update_inode(dir, &res.dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | dprintk("NFS reply remove: %d\n", status); |
| 405 | return status; |
| 406 | } |
| 407 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 408 | static void |
| 409 | nfs3_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | static int |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 415 | nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 417 | struct nfs_removeres *res; |
| 418 | if (nfs3_async_handle_jukebox(task, dir)) |
| 419 | return 0; |
| 420 | res = task->tk_msg.rpc_resp; |
| 421 | nfs_post_op_update_inode(dir, &res->dir_attr); |
| 422 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | static int |
| 426 | nfs3_proc_rename(struct inode *old_dir, struct qstr *old_name, |
| 427 | struct inode *new_dir, struct qstr *new_name) |
| 428 | { |
| 429 | struct nfs_fattr old_dir_attr, new_dir_attr; |
| 430 | struct nfs3_renameargs arg = { |
| 431 | .fromfh = NFS_FH(old_dir), |
| 432 | .fromname = old_name->name, |
| 433 | .fromlen = old_name->len, |
| 434 | .tofh = NFS_FH(new_dir), |
| 435 | .toname = new_name->name, |
| 436 | .tolen = new_name->len |
| 437 | }; |
| 438 | struct nfs3_renameres res = { |
| 439 | .fromattr = &old_dir_attr, |
| 440 | .toattr = &new_dir_attr |
| 441 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 442 | struct rpc_message msg = { |
| 443 | .rpc_proc = &nfs3_procedures[NFS3PROC_RENAME], |
| 444 | .rpc_argp = &arg, |
| 445 | .rpc_resp = &res, |
| 446 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | int status; |
| 448 | |
| 449 | dprintk("NFS call rename %s -> %s\n", old_name->name, new_name->name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 450 | nfs_fattr_init(&old_dir_attr); |
| 451 | nfs_fattr_init(&new_dir_attr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 452 | status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 453 | nfs_post_op_update_inode(old_dir, &old_dir_attr); |
| 454 | nfs_post_op_update_inode(new_dir, &new_dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | dprintk("NFS reply rename: %d\n", status); |
| 456 | return status; |
| 457 | } |
| 458 | |
| 459 | static int |
| 460 | nfs3_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) |
| 461 | { |
| 462 | struct nfs_fattr dir_attr, fattr; |
| 463 | struct nfs3_linkargs arg = { |
| 464 | .fromfh = NFS_FH(inode), |
| 465 | .tofh = NFS_FH(dir), |
| 466 | .toname = name->name, |
| 467 | .tolen = name->len |
| 468 | }; |
| 469 | struct nfs3_linkres res = { |
| 470 | .dir_attr = &dir_attr, |
| 471 | .fattr = &fattr |
| 472 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 473 | struct rpc_message msg = { |
| 474 | .rpc_proc = &nfs3_procedures[NFS3PROC_LINK], |
| 475 | .rpc_argp = &arg, |
| 476 | .rpc_resp = &res, |
| 477 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | int status; |
| 479 | |
| 480 | dprintk("NFS call link %s\n", name->name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 481 | nfs_fattr_init(&dir_attr); |
| 482 | nfs_fattr_init(&fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 483 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 484 | nfs_post_op_update_inode(dir, &dir_attr); |
| 485 | nfs_post_op_update_inode(inode, &fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | dprintk("NFS reply link: %d\n", status); |
| 487 | return status; |
| 488 | } |
| 489 | |
| 490 | static int |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 491 | nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page, |
| 492 | unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 494 | struct nfs3_createdata *data; |
| 495 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 497 | if (len > NFS3_MAXPATHLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | return -ENAMETOOLONG; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 499 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 500 | dprintk("NFS call symlink %s\n", dentry->d_name.name); |
| 501 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 502 | data = nfs3_alloc_createdata(); |
| 503 | if (data == NULL) |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 504 | goto out; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 505 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_SYMLINK]; |
| 506 | data->arg.symlink.fromfh = NFS_FH(dir); |
| 507 | data->arg.symlink.fromname = dentry->d_name.name; |
| 508 | data->arg.symlink.fromlen = dentry->d_name.len; |
| 509 | data->arg.symlink.pages = &page; |
| 510 | data->arg.symlink.pathlen = len; |
| 511 | data->arg.symlink.sattr = sattr; |
| 512 | |
| 513 | status = nfs3_do_create(dir, dentry, data); |
| 514 | |
| 515 | nfs3_free_createdata(data); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 516 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | dprintk("NFS reply symlink: %d\n", status); |
| 518 | return status; |
| 519 | } |
| 520 | |
| 521 | static int |
| 522 | nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr) |
| 523 | { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 524 | struct nfs3_createdata *data; |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 525 | int mode = sattr->ia_mode; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 526 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
| 528 | dprintk("NFS call mkdir %s\n", dentry->d_name.name); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 529 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 530 | sattr->ia_mode &= ~current_umask(); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 531 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 532 | data = nfs3_alloc_createdata(); |
| 533 | if (data == NULL) |
| 534 | goto out; |
| 535 | |
| 536 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKDIR]; |
| 537 | data->arg.mkdir.fh = NFS_FH(dir); |
| 538 | data->arg.mkdir.name = dentry->d_name.name; |
| 539 | data->arg.mkdir.len = dentry->d_name.len; |
| 540 | data->arg.mkdir.sattr = sattr; |
| 541 | |
| 542 | status = nfs3_do_create(dir, dentry, data); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 543 | if (status != 0) |
| 544 | goto out; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 545 | |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 546 | status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode); |
| 547 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 548 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | dprintk("NFS reply mkdir: %d\n", status); |
| 550 | return status; |
| 551 | } |
| 552 | |
| 553 | static int |
| 554 | nfs3_proc_rmdir(struct inode *dir, struct qstr *name) |
| 555 | { |
| 556 | struct nfs_fattr dir_attr; |
| 557 | struct nfs3_diropargs arg = { |
| 558 | .fh = NFS_FH(dir), |
| 559 | .name = name->name, |
| 560 | .len = name->len |
| 561 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 562 | struct rpc_message msg = { |
| 563 | .rpc_proc = &nfs3_procedures[NFS3PROC_RMDIR], |
| 564 | .rpc_argp = &arg, |
| 565 | .rpc_resp = &dir_attr, |
| 566 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | int status; |
| 568 | |
| 569 | dprintk("NFS call rmdir %s\n", name->name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 570 | nfs_fattr_init(&dir_attr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 571 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 572 | nfs_post_op_update_inode(dir, &dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | dprintk("NFS reply rmdir: %d\n", status); |
| 574 | return status; |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * The READDIR implementation is somewhat hackish - we pass the user buffer |
| 579 | * to the encode function, which installs it in the receive iovec. |
| 580 | * The decode function itself doesn't perform any decoding, it just makes |
| 581 | * sure the reply is syntactically correct. |
| 582 | * |
| 583 | * Also note that this implementation handles both plain readdir and |
| 584 | * readdirplus. |
| 585 | */ |
| 586 | static int |
| 587 | nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
| 588 | u64 cookie, struct page *page, unsigned int count, int plus) |
| 589 | { |
| 590 | struct inode *dir = dentry->d_inode; |
| 591 | struct nfs_fattr dir_attr; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 592 | __be32 *verf = NFS_COOKIEVERF(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | struct nfs3_readdirargs arg = { |
| 594 | .fh = NFS_FH(dir), |
| 595 | .cookie = cookie, |
| 596 | .verf = {verf[0], verf[1]}, |
| 597 | .plus = plus, |
| 598 | .count = count, |
| 599 | .pages = &page |
| 600 | }; |
| 601 | struct nfs3_readdirres res = { |
| 602 | .dir_attr = &dir_attr, |
| 603 | .verf = verf, |
| 604 | .plus = plus |
| 605 | }; |
| 606 | struct rpc_message msg = { |
| 607 | .rpc_proc = &nfs3_procedures[NFS3PROC_READDIR], |
| 608 | .rpc_argp = &arg, |
| 609 | .rpc_resp = &res, |
| 610 | .rpc_cred = cred |
| 611 | }; |
| 612 | int status; |
| 613 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | if (plus) |
| 615 | msg.rpc_proc = &nfs3_procedures[NFS3PROC_READDIRPLUS]; |
| 616 | |
| 617 | dprintk("NFS call readdir%s %d\n", |
| 618 | plus? "plus" : "", (unsigned int) cookie); |
| 619 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 620 | nfs_fattr_init(&dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 622 | |
| 623 | nfs_invalidate_atime(dir); |
| 624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | nfs_refresh_inode(dir, &dir_attr); |
| 626 | dprintk("NFS reply readdir: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | return status; |
| 628 | } |
| 629 | |
| 630 | static int |
| 631 | nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
| 632 | dev_t rdev) |
| 633 | { |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 634 | struct nfs3_createdata *data; |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 635 | mode_t mode = sattr->ia_mode; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 636 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 638 | dprintk("NFS call mknod %s %u:%u\n", dentry->d_name.name, |
| 639 | MAJOR(rdev), MINOR(rdev)); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 640 | |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 641 | sattr->ia_mode &= ~current_umask(); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 642 | |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 643 | data = nfs3_alloc_createdata(); |
| 644 | if (data == NULL) |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 645 | goto out; |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 646 | |
| 647 | data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKNOD]; |
| 648 | data->arg.mknod.fh = NFS_FH(dir); |
| 649 | data->arg.mknod.name = dentry->d_name.name; |
| 650 | data->arg.mknod.len = dentry->d_name.len; |
| 651 | data->arg.mknod.sattr = sattr; |
| 652 | data->arg.mknod.rdev = rdev; |
| 653 | |
| 654 | switch (sattr->ia_mode & S_IFMT) { |
| 655 | case S_IFBLK: |
| 656 | data->arg.mknod.type = NF3BLK; |
| 657 | break; |
| 658 | case S_IFCHR: |
| 659 | data->arg.mknod.type = NF3CHR; |
| 660 | break; |
| 661 | case S_IFIFO: |
| 662 | data->arg.mknod.type = NF3FIFO; |
| 663 | break; |
| 664 | case S_IFSOCK: |
| 665 | data->arg.mknod.type = NF3SOCK; |
| 666 | break; |
| 667 | default: |
| 668 | status = -EINVAL; |
| 669 | goto out; |
| 670 | } |
| 671 | |
| 672 | status = nfs3_do_create(dir, dentry, data); |
Andreas Gruenbacher | 055ffbe | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 673 | if (status != 0) |
| 674 | goto out; |
| 675 | status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode); |
| 676 | out: |
Trond Myklebust | 0b4aae7 | 2008-06-20 17:00:23 -0400 | [diff] [blame] | 677 | nfs3_free_createdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | dprintk("NFS reply mknod: %d\n", status); |
| 679 | return status; |
| 680 | } |
| 681 | |
| 682 | static int |
| 683 | nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, |
| 684 | struct nfs_fsstat *stat) |
| 685 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 686 | struct rpc_message msg = { |
| 687 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSSTAT], |
| 688 | .rpc_argp = fhandle, |
| 689 | .rpc_resp = stat, |
| 690 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | int status; |
| 692 | |
| 693 | dprintk("NFS call fsstat\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 694 | nfs_fattr_init(stat->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 695 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | dprintk("NFS reply statfs: %d\n", status); |
| 697 | return status; |
| 698 | } |
| 699 | |
| 700 | static int |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 701 | do_proc_fsinfo(struct rpc_clnt *client, struct nfs_fh *fhandle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | struct nfs_fsinfo *info) |
| 703 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 704 | struct rpc_message msg = { |
| 705 | .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO], |
| 706 | .rpc_argp = fhandle, |
| 707 | .rpc_resp = info, |
| 708 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | int status; |
| 710 | |
| 711 | dprintk("NFS call fsinfo\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 712 | nfs_fattr_init(info->fattr); |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 713 | status = rpc_call_sync(client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | dprintk("NFS reply fsinfo: %d\n", status); |
| 715 | return status; |
| 716 | } |
| 717 | |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 718 | /* |
| 719 | * Bare-bones access to fsinfo: this is for nfs_get_root/nfs_get_sb via |
| 720 | * nfs_create_server |
| 721 | */ |
| 722 | static int |
| 723 | nfs3_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, |
| 724 | struct nfs_fsinfo *info) |
| 725 | { |
| 726 | int status; |
| 727 | |
| 728 | status = do_proc_fsinfo(server->client, fhandle, info); |
| 729 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 730 | status = do_proc_fsinfo(server->nfs_client->cl_rpcclient, fhandle, info); |
| 731 | return status; |
| 732 | } |
| 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | static int |
| 735 | nfs3_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 736 | struct nfs_pathconf *info) |
| 737 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 738 | struct rpc_message msg = { |
| 739 | .rpc_proc = &nfs3_procedures[NFS3PROC_PATHCONF], |
| 740 | .rpc_argp = fhandle, |
| 741 | .rpc_resp = info, |
| 742 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | int status; |
| 744 | |
| 745 | dprintk("NFS call pathconf\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 746 | nfs_fattr_init(info->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 747 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | dprintk("NFS reply pathconf: %d\n", status); |
| 749 | return status; |
| 750 | } |
| 751 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 752 | static int nfs3_read_done(struct rpc_task *task, struct nfs_read_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 754 | if (nfs3_async_handle_jukebox(task, data->inode)) |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 755 | return -EAGAIN; |
Trond Myklebust | 8850df9 | 2007-09-28 17:20:07 -0400 | [diff] [blame] | 756 | |
| 757 | nfs_invalidate_atime(data->inode); |
| 758 | nfs_refresh_inode(data->inode, &data->fattr); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 759 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 762 | static void nfs3_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 764 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_READ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 767 | static int nfs3_write_done(struct rpc_task *task, struct nfs_write_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 769 | if (nfs3_async_handle_jukebox(task, data->inode)) |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 770 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | if (task->tk_status >= 0) |
Trond Myklebust | 70ca885 | 2007-09-30 15:21:24 -0400 | [diff] [blame] | 772 | nfs_post_op_update_inode_force_wcc(data->inode, data->res.fattr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 773 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | } |
| 775 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 776 | static void nfs3_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 778 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_WRITE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 781 | static int nfs3_commit_done(struct rpc_task *task, struct nfs_write_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | { |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 783 | if (nfs3_async_handle_jukebox(task, data->inode)) |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 784 | return -EAGAIN; |
Trond Myklebust | 9e08a3c | 2007-10-08 14:10:31 -0400 | [diff] [blame] | 785 | nfs_refresh_inode(data->inode, data->res.fattr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 786 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | } |
| 788 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 789 | static void nfs3_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 791 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_COMMIT]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | static int |
| 795 | nfs3_proc_lock(struct file *filp, int cmd, struct file_lock *fl) |
| 796 | { |
Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 797 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 798 | |
| 799 | return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
| 801 | |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 802 | const struct nfs_rpc_ops nfs_v3_clientops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | .version = 3, /* protocol version */ |
| 804 | .dentry_ops = &nfs_dentry_operations, |
Andreas Gruenbacher | b7fa055 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 805 | .dir_inode_ops = &nfs3_dir_inode_operations, |
| 806 | .file_inode_ops = &nfs3_file_inode_operations, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | .getroot = nfs3_proc_get_root, |
| 808 | .getattr = nfs3_proc_getattr, |
| 809 | .setattr = nfs3_proc_setattr, |
| 810 | .lookup = nfs3_proc_lookup, |
| 811 | .access = nfs3_proc_access, |
| 812 | .readlink = nfs3_proc_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | .create = nfs3_proc_create, |
| 814 | .remove = nfs3_proc_remove, |
| 815 | .unlink_setup = nfs3_proc_unlink_setup, |
| 816 | .unlink_done = nfs3_proc_unlink_done, |
| 817 | .rename = nfs3_proc_rename, |
| 818 | .link = nfs3_proc_link, |
| 819 | .symlink = nfs3_proc_symlink, |
| 820 | .mkdir = nfs3_proc_mkdir, |
| 821 | .rmdir = nfs3_proc_rmdir, |
| 822 | .readdir = nfs3_proc_readdir, |
| 823 | .mknod = nfs3_proc_mknod, |
| 824 | .statfs = nfs3_proc_statfs, |
| 825 | .fsinfo = nfs3_proc_fsinfo, |
| 826 | .pathconf = nfs3_proc_pathconf, |
| 827 | .decode_dirent = nfs3_decode_dirent, |
| 828 | .read_setup = nfs3_proc_read_setup, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 829 | .read_done = nfs3_read_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | .write_setup = nfs3_proc_write_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 831 | .write_done = nfs3_write_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | .commit_setup = nfs3_proc_commit_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 833 | .commit_done = nfs3_commit_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | .lock = nfs3_proc_lock, |
Andreas Gruenbacher | 5c6a9f7 | 2005-06-22 17:16:27 +0000 | [diff] [blame] | 835 | .clear_acl_cache = nfs3_forget_cached_acls, |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 836 | .close_context = nfs_close_context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | }; |