Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/proc.c |
| 3 | * |
| 4 | * Copyright (C) 1992, 1993, 1994 Rick Sladkey |
| 5 | * |
| 6 | * OS-independent nfs remote procedure call functions |
| 7 | * |
| 8 | * Tuned by Alan Cox <A.Cox@swansea.ac.uk> for >3K buffers |
| 9 | * so at last we can have decent(ish) throughput off a |
| 10 | * Sun server. |
| 11 | * |
| 12 | * Coding optimized and cleaned up by Florian La Roche. |
| 13 | * Note: Error returns are optimized for NFS_OK, which isn't translated via |
| 14 | * nfs_stat_to_errno(), but happens to be already the right return code. |
| 15 | * |
| 16 | * Also, the code currently doesn't check the size of the packet, when |
| 17 | * it decodes the packet. |
| 18 | * |
| 19 | * Feel free to fix it and mail me the diffs if it worries you. |
| 20 | * |
| 21 | * Completely rewritten to support the new RPC call interface; |
| 22 | * rewrote and moved the entire XDR stuff to xdr.c |
| 23 | * --Olaf Kirch June 1996 |
| 24 | * |
| 25 | * The code below initializes all auto variables explicitly, otherwise |
| 26 | * it will fail to work as a module (gcc generates a memset call for an |
| 27 | * incomplete struct). |
| 28 | */ |
| 29 | |
| 30 | #include <linux/types.h> |
| 31 | #include <linux/param.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/time.h> |
| 34 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/errno.h> |
| 36 | #include <linux/string.h> |
| 37 | #include <linux/in.h> |
| 38 | #include <linux/pagemap.h> |
| 39 | #include <linux/sunrpc/clnt.h> |
| 40 | #include <linux/nfs.h> |
| 41 | #include <linux/nfs2.h> |
| 42 | #include <linux/nfs_fs.h> |
| 43 | #include <linux/nfs_page.h> |
| 44 | #include <linux/lockd/bind.h> |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 45 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | #define NFSDBG_FACILITY NFSDBG_PROC |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
Jeff Layton | 97cefcc | 2010-01-08 12:17:21 -0500 | [diff] [blame^] | 50 | * wrapper to handle the -EKEYEXPIRED error message. This should generally |
| 51 | * only happen if using krb5 auth and a user's TGT expires. NFSv2 doesn't |
| 52 | * support the NFSERR_JUKEBOX error code, but we handle this situation in the |
| 53 | * same way that we handle that error with NFSv3. |
| 54 | */ |
| 55 | static int |
| 56 | nfs_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags) |
| 57 | { |
| 58 | int res; |
| 59 | do { |
| 60 | res = rpc_call_sync(clnt, msg, flags); |
| 61 | if (res != -EKEYEXPIRED) |
| 62 | break; |
| 63 | schedule_timeout_killable(NFS_JUKEBOX_RETRY_TIME); |
| 64 | res = -ERESTARTSYS; |
| 65 | } while (!fatal_signal_pending(current)); |
| 66 | return res; |
| 67 | } |
| 68 | |
| 69 | #define rpc_call_sync(clnt, msg, flags) nfs_rpc_wrapper(clnt, msg, flags) |
| 70 | |
| 71 | static int |
| 72 | nfs_async_handle_expired_key(struct rpc_task *task) |
| 73 | { |
| 74 | if (task->tk_status != -EKEYEXPIRED) |
| 75 | return 0; |
| 76 | task->tk_status = 0; |
| 77 | rpc_restart_call(task); |
| 78 | rpc_delay(task, NFS_JUKEBOX_RETRY_TIME); |
| 79 | return 1; |
| 80 | } |
| 81 | |
| 82 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | * Bare-bones access to getattr: this is for nfs_read_super. |
| 84 | */ |
| 85 | static int |
| 86 | nfs_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 87 | struct nfs_fsinfo *info) |
| 88 | { |
| 89 | struct nfs_fattr *fattr = info->fattr; |
| 90 | struct nfs2_fsstat fsinfo; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 91 | struct rpc_message msg = { |
| 92 | .rpc_proc = &nfs_procedures[NFSPROC_GETATTR], |
| 93 | .rpc_argp = fhandle, |
| 94 | .rpc_resp = fattr, |
| 95 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | int status; |
| 97 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 98 | dprintk("%s: call getattr\n", __func__); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 99 | nfs_fattr_init(fattr); |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 100 | status = rpc_call_sync(server->client, &msg, 0); |
| 101 | /* Retry with default authentication if different */ |
| 102 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 103 | status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 104 | dprintk("%s: reply getattr: %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | if (status) |
| 106 | return status; |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 107 | dprintk("%s: call statfs\n", __func__); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 108 | msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS]; |
| 109 | msg.rpc_resp = &fsinfo; |
EG Keizer | 37ca8f5 | 2008-08-19 16:34:36 -0400 | [diff] [blame] | 110 | status = rpc_call_sync(server->client, &msg, 0); |
| 111 | /* Retry with default authentication if different */ |
| 112 | if (status && server->nfs_client->cl_rpcclient != server->client) |
| 113 | status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 114 | dprintk("%s: reply statfs: %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | if (status) |
| 116 | return status; |
| 117 | info->rtmax = NFS_MAXDATA; |
| 118 | info->rtpref = fsinfo.tsize; |
| 119 | info->rtmult = fsinfo.bsize; |
| 120 | info->wtmax = NFS_MAXDATA; |
| 121 | info->wtpref = fsinfo.tsize; |
| 122 | info->wtmult = fsinfo.bsize; |
| 123 | info->dtpref = fsinfo.tsize; |
| 124 | info->maxfilesize = 0x7FFFFFFF; |
| 125 | info->lease_time = 0; |
| 126 | return 0; |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * One function for each procedure in the NFS protocol. |
| 131 | */ |
| 132 | static int |
| 133 | nfs_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
| 134 | struct nfs_fattr *fattr) |
| 135 | { |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 136 | struct rpc_message msg = { |
| 137 | .rpc_proc = &nfs_procedures[NFSPROC_GETATTR], |
| 138 | .rpc_argp = fhandle, |
| 139 | .rpc_resp = fattr, |
| 140 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | int status; |
| 142 | |
| 143 | dprintk("NFS call getattr\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 144 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 145 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | dprintk("NFS reply getattr: %d\n", status); |
| 147 | return status; |
| 148 | } |
| 149 | |
| 150 | static int |
| 151 | nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, |
| 152 | struct iattr *sattr) |
| 153 | { |
| 154 | struct inode *inode = dentry->d_inode; |
| 155 | struct nfs_sattrargs arg = { |
| 156 | .fh = NFS_FH(inode), |
| 157 | .sattr = sattr |
| 158 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 159 | struct rpc_message msg = { |
| 160 | .rpc_proc = &nfs_procedures[NFSPROC_SETATTR], |
| 161 | .rpc_argp = &arg, |
| 162 | .rpc_resp = fattr, |
| 163 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | int status; |
| 165 | |
Trond Myklebust | cf3fff5 | 2006-01-03 09:55:53 +0100 | [diff] [blame] | 166 | /* Mask out the non-modebit related stuff from attr->ia_mode */ |
| 167 | sattr->ia_mode &= S_IALLUGO; |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | dprintk("NFS call setattr\n"); |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 170 | if (sattr->ia_valid & ATTR_FILE) |
| 171 | msg.rpc_cred = nfs_file_cred(sattr->ia_file); |
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(inode), &msg, 0); |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 174 | if (status == 0) |
| 175 | nfs_setattr_update_inode(inode, sattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | dprintk("NFS reply setattr: %d\n", status); |
| 177 | return status; |
| 178 | } |
| 179 | |
| 180 | static int |
| 181 | nfs_proc_lookup(struct inode *dir, struct qstr *name, |
| 182 | struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 183 | { |
| 184 | struct nfs_diropargs arg = { |
| 185 | .fh = NFS_FH(dir), |
| 186 | .name = name->name, |
| 187 | .len = name->len |
| 188 | }; |
| 189 | struct nfs_diropok res = { |
| 190 | .fh = fhandle, |
| 191 | .fattr = fattr |
| 192 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 193 | struct rpc_message msg = { |
| 194 | .rpc_proc = &nfs_procedures[NFSPROC_LOOKUP], |
| 195 | .rpc_argp = &arg, |
| 196 | .rpc_resp = &res, |
| 197 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | int status; |
| 199 | |
| 200 | dprintk("NFS call lookup %s\n", name->name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 201 | nfs_fattr_init(fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 202 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | dprintk("NFS reply lookup: %d\n", status); |
| 204 | return status; |
| 205 | } |
| 206 | |
| 207 | static int nfs_proc_readlink(struct inode *inode, struct page *page, |
| 208 | unsigned int pgbase, unsigned int pglen) |
| 209 | { |
| 210 | struct nfs_readlinkargs args = { |
| 211 | .fh = NFS_FH(inode), |
| 212 | .pgbase = pgbase, |
| 213 | .pglen = pglen, |
| 214 | .pages = &page |
| 215 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 216 | struct rpc_message msg = { |
| 217 | .rpc_proc = &nfs_procedures[NFSPROC_READLINK], |
| 218 | .rpc_argp = &args, |
| 219 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | int status; |
| 221 | |
| 222 | dprintk("NFS call readlink\n"); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 223 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | dprintk("NFS reply readlink: %d\n", status); |
| 225 | return status; |
| 226 | } |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | static int |
| 229 | nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 230 | int flags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | struct nfs_fh fhandle; |
| 233 | struct nfs_fattr fattr; |
| 234 | struct nfs_createargs arg = { |
| 235 | .fh = NFS_FH(dir), |
| 236 | .name = dentry->d_name.name, |
| 237 | .len = dentry->d_name.len, |
| 238 | .sattr = sattr |
| 239 | }; |
| 240 | struct nfs_diropok res = { |
| 241 | .fh = &fhandle, |
| 242 | .fattr = &fattr |
| 243 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 244 | struct rpc_message msg = { |
| 245 | .rpc_proc = &nfs_procedures[NFSPROC_CREATE], |
| 246 | .rpc_argp = &arg, |
| 247 | .rpc_resp = &res, |
| 248 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | int status; |
| 250 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 251 | nfs_fattr_init(&fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | dprintk("NFS call create %s\n", dentry->d_name.name); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 253 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | bad2a52 | 2007-10-20 13:07:21 -0400 | [diff] [blame] | 254 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | if (status == 0) |
| 256 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 257 | dprintk("NFS reply create: %d\n", status); |
| 258 | return status; |
| 259 | } |
| 260 | |
| 261 | /* |
| 262 | * In NFSv2, mknod is grafted onto the create call. |
| 263 | */ |
| 264 | static int |
| 265 | nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
| 266 | dev_t rdev) |
| 267 | { |
| 268 | struct nfs_fh fhandle; |
| 269 | struct nfs_fattr fattr; |
| 270 | struct nfs_createargs arg = { |
| 271 | .fh = NFS_FH(dir), |
| 272 | .name = dentry->d_name.name, |
| 273 | .len = dentry->d_name.len, |
| 274 | .sattr = sattr |
| 275 | }; |
| 276 | struct nfs_diropok res = { |
| 277 | .fh = &fhandle, |
| 278 | .fattr = &fattr |
| 279 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 280 | struct rpc_message msg = { |
| 281 | .rpc_proc = &nfs_procedures[NFSPROC_CREATE], |
| 282 | .rpc_argp = &arg, |
| 283 | .rpc_resp = &res, |
| 284 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | int status, mode; |
| 286 | |
| 287 | dprintk("NFS call mknod %s\n", dentry->d_name.name); |
| 288 | |
| 289 | mode = sattr->ia_mode; |
| 290 | if (S_ISFIFO(mode)) { |
| 291 | sattr->ia_mode = (mode & ~S_IFMT) | S_IFCHR; |
| 292 | sattr->ia_valid &= ~ATTR_SIZE; |
| 293 | } else if (S_ISCHR(mode) || S_ISBLK(mode)) { |
| 294 | sattr->ia_valid |= ATTR_SIZE; |
| 295 | sattr->ia_size = new_encode_dev(rdev);/* get out your barf bag */ |
| 296 | } |
| 297 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 298 | nfs_fattr_init(&fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 299 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 300 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
| 302 | if (status == -EINVAL && S_ISFIFO(mode)) { |
| 303 | sattr->ia_mode = mode; |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 304 | nfs_fattr_init(&fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 305 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | if (status == 0) |
| 308 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 309 | dprintk("NFS reply mknod: %d\n", status); |
| 310 | return status; |
| 311 | } |
| 312 | |
| 313 | static int |
| 314 | nfs_proc_remove(struct inode *dir, struct qstr *name) |
| 315 | { |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 316 | struct nfs_removeargs arg = { |
| 317 | .fh = NFS_FH(dir), |
| 318 | .name.len = name->len, |
| 319 | .name.name = name->name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | }; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 321 | struct rpc_message msg = { |
| 322 | .rpc_proc = &nfs_procedures[NFSPROC_REMOVE], |
| 323 | .rpc_argp = &arg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | }; |
| 325 | int status; |
| 326 | |
| 327 | dprintk("NFS call remove %s\n", name->name); |
| 328 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 329 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | dprintk("NFS reply remove: %d\n", status); |
| 332 | return status; |
| 333 | } |
| 334 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 335 | static void |
| 336 | nfs_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 341 | static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { |
Jeff Layton | 97cefcc | 2010-01-08 12:17:21 -0500 | [diff] [blame^] | 343 | if (nfs_async_handle_expired_key(task)) |
| 344 | return 0; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 345 | nfs_mark_for_revalidate(dir); |
| 346 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | static int |
| 350 | nfs_proc_rename(struct inode *old_dir, struct qstr *old_name, |
| 351 | struct inode *new_dir, struct qstr *new_name) |
| 352 | { |
| 353 | struct nfs_renameargs arg = { |
| 354 | .fromfh = NFS_FH(old_dir), |
| 355 | .fromname = old_name->name, |
| 356 | .fromlen = old_name->len, |
| 357 | .tofh = NFS_FH(new_dir), |
| 358 | .toname = new_name->name, |
| 359 | .tolen = new_name->len |
| 360 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 361 | struct rpc_message msg = { |
| 362 | .rpc_proc = &nfs_procedures[NFSPROC_RENAME], |
| 363 | .rpc_argp = &arg, |
| 364 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | int status; |
| 366 | |
| 367 | dprintk("NFS call rename %s -> %s\n", old_name->name, new_name->name); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 368 | status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 369 | nfs_mark_for_revalidate(old_dir); |
| 370 | nfs_mark_for_revalidate(new_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | dprintk("NFS reply rename: %d\n", status); |
| 372 | return status; |
| 373 | } |
| 374 | |
| 375 | static int |
| 376 | nfs_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) |
| 377 | { |
| 378 | struct nfs_linkargs arg = { |
| 379 | .fromfh = NFS_FH(inode), |
| 380 | .tofh = NFS_FH(dir), |
| 381 | .toname = name->name, |
| 382 | .tolen = name->len |
| 383 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 384 | struct rpc_message msg = { |
| 385 | .rpc_proc = &nfs_procedures[NFSPROC_LINK], |
| 386 | .rpc_argp = &arg, |
| 387 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | int status; |
| 389 | |
| 390 | dprintk("NFS call link %s\n", name->name); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 391 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
Trond Myklebust | 5ba7cc4 | 2005-12-03 15:20:17 -0500 | [diff] [blame] | 392 | nfs_mark_for_revalidate(inode); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 393 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | dprintk("NFS reply link: %d\n", status); |
| 395 | return status; |
| 396 | } |
| 397 | |
| 398 | static int |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 399 | nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page, |
| 400 | unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 402 | struct nfs_fh fhandle; |
| 403 | struct nfs_fattr fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | struct nfs_symlinkargs arg = { |
| 405 | .fromfh = NFS_FH(dir), |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 406 | .fromname = dentry->d_name.name, |
| 407 | .fromlen = dentry->d_name.len, |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 408 | .pages = &page, |
| 409 | .pathlen = len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | .sattr = sattr |
| 411 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 412 | struct rpc_message msg = { |
| 413 | .rpc_proc = &nfs_procedures[NFSPROC_SYMLINK], |
| 414 | .rpc_argp = &arg, |
| 415 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | int status; |
| 417 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 418 | if (len > NFS2_MAXPATHLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | return -ENAMETOOLONG; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 420 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 421 | dprintk("NFS call symlink %s\n", dentry->d_name.name); |
| 422 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 423 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 424 | nfs_mark_for_revalidate(dir); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 425 | |
| 426 | /* |
| 427 | * V2 SYMLINK requests don't return any attributes. Setting the |
| 428 | * filehandle size to zero indicates to nfs_instantiate that it |
| 429 | * should fill in the data with a LOOKUP call on the wire. |
| 430 | */ |
| 431 | if (status == 0) { |
| 432 | nfs_fattr_init(&fattr); |
| 433 | fhandle.size = 0; |
| 434 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 435 | } |
| 436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | dprintk("NFS reply symlink: %d\n", status); |
| 438 | return status; |
| 439 | } |
| 440 | |
| 441 | static int |
| 442 | nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr) |
| 443 | { |
| 444 | struct nfs_fh fhandle; |
| 445 | struct nfs_fattr fattr; |
| 446 | struct nfs_createargs arg = { |
| 447 | .fh = NFS_FH(dir), |
| 448 | .name = dentry->d_name.name, |
| 449 | .len = dentry->d_name.len, |
| 450 | .sattr = sattr |
| 451 | }; |
| 452 | struct nfs_diropok res = { |
| 453 | .fh = &fhandle, |
| 454 | .fattr = &fattr |
| 455 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 456 | struct rpc_message msg = { |
| 457 | .rpc_proc = &nfs_procedures[NFSPROC_MKDIR], |
| 458 | .rpc_argp = &arg, |
| 459 | .rpc_resp = &res, |
| 460 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | int status; |
| 462 | |
| 463 | dprintk("NFS call mkdir %s\n", dentry->d_name.name); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 464 | nfs_fattr_init(&fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 465 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 466 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | if (status == 0) |
| 468 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 469 | dprintk("NFS reply mkdir: %d\n", status); |
| 470 | return status; |
| 471 | } |
| 472 | |
| 473 | static int |
| 474 | nfs_proc_rmdir(struct inode *dir, struct qstr *name) |
| 475 | { |
| 476 | struct nfs_diropargs arg = { |
| 477 | .fh = NFS_FH(dir), |
| 478 | .name = name->name, |
| 479 | .len = name->len |
| 480 | }; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 481 | struct rpc_message msg = { |
| 482 | .rpc_proc = &nfs_procedures[NFSPROC_RMDIR], |
| 483 | .rpc_argp = &arg, |
| 484 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | int status; |
| 486 | |
| 487 | dprintk("NFS call rmdir %s\n", name->name); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 488 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 489 | nfs_mark_for_revalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | dprintk("NFS reply rmdir: %d\n", status); |
| 491 | return status; |
| 492 | } |
| 493 | |
| 494 | /* |
| 495 | * The READDIR implementation is somewhat hackish - we pass a temporary |
| 496 | * buffer to the encode function, which installs it in the receive |
| 497 | * the receive iovec. The decode function just parses the reply to make |
| 498 | * sure it is syntactically correct; the entries itself are decoded |
| 499 | * from nfs_readdir by calling the decode_entry function directly. |
| 500 | */ |
| 501 | static int |
| 502 | nfs_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
| 503 | u64 cookie, struct page *page, unsigned int count, int plus) |
| 504 | { |
| 505 | struct inode *dir = dentry->d_inode; |
| 506 | struct nfs_readdirargs arg = { |
| 507 | .fh = NFS_FH(dir), |
| 508 | .cookie = cookie, |
| 509 | .count = count, |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 510 | .pages = &page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | }; |
| 512 | struct rpc_message msg = { |
| 513 | .rpc_proc = &nfs_procedures[NFSPROC_READDIR], |
| 514 | .rpc_argp = &arg, |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 515 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | }; |
| 517 | int status; |
| 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | dprintk("NFS call readdir %d\n", (unsigned int)cookie); |
| 520 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
| 521 | |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 522 | nfs_invalidate_atime(dir); |
| 523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | dprintk("NFS reply readdir: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | return status; |
| 526 | } |
| 527 | |
| 528 | static int |
| 529 | nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, |
| 530 | struct nfs_fsstat *stat) |
| 531 | { |
| 532 | struct nfs2_fsstat fsinfo; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 533 | struct rpc_message msg = { |
| 534 | .rpc_proc = &nfs_procedures[NFSPROC_STATFS], |
| 535 | .rpc_argp = fhandle, |
| 536 | .rpc_resp = &fsinfo, |
| 537 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | int status; |
| 539 | |
| 540 | dprintk("NFS call statfs\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 541 | nfs_fattr_init(stat->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 542 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | dprintk("NFS reply statfs: %d\n", status); |
| 544 | if (status) |
| 545 | goto out; |
| 546 | stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize; |
| 547 | stat->fbytes = (u64)fsinfo.bfree * fsinfo.bsize; |
| 548 | stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize; |
| 549 | stat->tfiles = 0; |
| 550 | stat->ffiles = 0; |
| 551 | stat->afiles = 0; |
| 552 | out: |
| 553 | return status; |
| 554 | } |
| 555 | |
| 556 | static int |
| 557 | nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, |
| 558 | struct nfs_fsinfo *info) |
| 559 | { |
| 560 | struct nfs2_fsstat fsinfo; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 561 | struct rpc_message msg = { |
| 562 | .rpc_proc = &nfs_procedures[NFSPROC_STATFS], |
| 563 | .rpc_argp = fhandle, |
| 564 | .rpc_resp = &fsinfo, |
| 565 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | int status; |
| 567 | |
| 568 | dprintk("NFS call fsinfo\n"); |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 569 | nfs_fattr_init(info->fattr); |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 570 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | dprintk("NFS reply fsinfo: %d\n", status); |
| 572 | if (status) |
| 573 | goto out; |
| 574 | info->rtmax = NFS_MAXDATA; |
| 575 | info->rtpref = fsinfo.tsize; |
| 576 | info->rtmult = fsinfo.bsize; |
| 577 | info->wtmax = NFS_MAXDATA; |
| 578 | info->wtpref = fsinfo.tsize; |
| 579 | info->wtmult = fsinfo.bsize; |
| 580 | info->dtpref = fsinfo.tsize; |
| 581 | info->maxfilesize = 0x7FFFFFFF; |
| 582 | info->lease_time = 0; |
| 583 | out: |
| 584 | return status; |
| 585 | } |
| 586 | |
| 587 | static int |
| 588 | nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 589 | struct nfs_pathconf *info) |
| 590 | { |
| 591 | info->max_link = 0; |
| 592 | info->max_namelen = NFS2_MAXNAMLEN; |
| 593 | return 0; |
| 594 | } |
| 595 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 596 | static int nfs_read_done(struct rpc_task *task, struct nfs_read_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
Jeff Layton | 97cefcc | 2010-01-08 12:17:21 -0500 | [diff] [blame^] | 598 | if (nfs_async_handle_expired_key(task)) |
| 599 | return -EAGAIN; |
| 600 | |
Trond Myklebust | 8850df9 | 2007-09-28 17:20:07 -0400 | [diff] [blame] | 601 | nfs_invalidate_atime(data->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | if (task->tk_status >= 0) { |
| 603 | nfs_refresh_inode(data->inode, data->res.fattr); |
| 604 | /* Emulate the eof flag, which isn't normally needed in NFSv2 |
| 605 | * as it is guaranteed to always return the file attributes |
| 606 | */ |
| 607 | if (data->args.offset + data->args.count >= data->res.fattr->size) |
| 608 | data->res.eof = 1; |
| 609 | } |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 610 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 613 | static void nfs_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 615 | msg->rpc_proc = &nfs_procedures[NFSPROC_READ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 618 | static int nfs_write_done(struct rpc_task *task, struct nfs_write_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | { |
Jeff Layton | 97cefcc | 2010-01-08 12:17:21 -0500 | [diff] [blame^] | 620 | if (nfs_async_handle_expired_key(task)) |
| 621 | return -EAGAIN; |
| 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | if (task->tk_status >= 0) |
Trond Myklebust | 70ca885 | 2007-09-30 15:21:24 -0400 | [diff] [blame] | 624 | nfs_post_op_update_inode_force_wcc(data->inode, data->res.fattr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 625 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
| 627 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 628 | static void nfs_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */ |
| 631 | data->args.stable = NFS_FILE_SYNC; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 632 | msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | static void |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 636 | nfs_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | { |
| 638 | BUG(); |
| 639 | } |
| 640 | |
| 641 | static int |
| 642 | nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl) |
| 643 | { |
Chuck Lever | 1093a60 | 2008-01-11 17:09:59 -0500 | [diff] [blame] | 644 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 645 | |
| 646 | return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
| 648 | |
Trond Myklebust | 2116271 | 2008-05-20 19:34:39 -0400 | [diff] [blame] | 649 | /* Helper functions for NFS lock bounds checking */ |
| 650 | #define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL) |
| 651 | static int nfs_lock_check_bounds(const struct file_lock *fl) |
| 652 | { |
| 653 | __s32 start, end; |
| 654 | |
| 655 | start = (__s32)fl->fl_start; |
| 656 | if ((loff_t)start != fl->fl_start) |
| 657 | goto out_einval; |
| 658 | |
| 659 | if (fl->fl_end != OFFSET_MAX) { |
| 660 | end = (__s32)fl->fl_end; |
| 661 | if ((loff_t)end != fl->fl_end) |
| 662 | goto out_einval; |
| 663 | } else |
| 664 | end = NFS_LOCK32_OFFSET_MAX; |
| 665 | |
| 666 | if (start < 0 || start > end) |
| 667 | goto out_einval; |
| 668 | return 0; |
| 669 | out_einval: |
| 670 | return -EINVAL; |
| 671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 673 | const struct nfs_rpc_ops nfs_v2_clientops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | .version = 2, /* protocol version */ |
| 675 | .dentry_ops = &nfs_dentry_operations, |
| 676 | .dir_inode_ops = &nfs_dir_inode_operations, |
J. Bruce Fields | 92cfc62 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 677 | .file_inode_ops = &nfs_file_inode_operations, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | .getroot = nfs_proc_get_root, |
| 679 | .getattr = nfs_proc_getattr, |
| 680 | .setattr = nfs_proc_setattr, |
| 681 | .lookup = nfs_proc_lookup, |
| 682 | .access = NULL, /* access */ |
| 683 | .readlink = nfs_proc_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | .create = nfs_proc_create, |
| 685 | .remove = nfs_proc_remove, |
| 686 | .unlink_setup = nfs_proc_unlink_setup, |
| 687 | .unlink_done = nfs_proc_unlink_done, |
| 688 | .rename = nfs_proc_rename, |
| 689 | .link = nfs_proc_link, |
| 690 | .symlink = nfs_proc_symlink, |
| 691 | .mkdir = nfs_proc_mkdir, |
| 692 | .rmdir = nfs_proc_rmdir, |
| 693 | .readdir = nfs_proc_readdir, |
| 694 | .mknod = nfs_proc_mknod, |
| 695 | .statfs = nfs_proc_statfs, |
| 696 | .fsinfo = nfs_proc_fsinfo, |
| 697 | .pathconf = nfs_proc_pathconf, |
| 698 | .decode_dirent = nfs_decode_dirent, |
| 699 | .read_setup = nfs_proc_read_setup, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 700 | .read_done = nfs_read_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | .write_setup = nfs_proc_write_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 702 | .write_done = nfs_write_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | .commit_setup = nfs_proc_commit_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | .lock = nfs_proc_lock, |
Trond Myklebust | 2116271 | 2008-05-20 19:34:39 -0400 | [diff] [blame] | 705 | .lock_check_bounds = nfs_lock_check_bounds, |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 706 | .close_context = nfs_close_context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | }; |