Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/nfs/nfs4proc.c |
| 3 | * |
| 4 | * Client-side procedure declarations for NFSv4. |
| 5 | * |
| 6 | * Copyright (c) 2002 The Regents of the University of Michigan. |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * Kendrick Smith <kmsmith@umich.edu> |
| 10 | * Andy Adamson <andros@umich.edu> |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or without |
| 13 | * modification, are permitted provided that the following conditions |
| 14 | * are met: |
| 15 | * |
| 16 | * 1. Redistributions of source code must retain the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer. |
| 18 | * 2. Redistributions in binary form must reproduce the above copyright |
| 19 | * notice, this list of conditions and the following disclaimer in the |
| 20 | * documentation and/or other materials provided with the distribution. |
| 21 | * 3. Neither the name of the University nor the names of its |
| 22 | * contributors may be used to endorse or promote products derived |
| 23 | * from this software without specific prior written permission. |
| 24 | * |
| 25 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 26 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 27 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 28 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 30 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 31 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 32 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 33 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 34 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 35 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | */ |
| 37 | |
| 38 | #include <linux/mm.h> |
| 39 | #include <linux/utsname.h> |
| 40 | #include <linux/delay.h> |
| 41 | #include <linux/errno.h> |
| 42 | #include <linux/string.h> |
| 43 | #include <linux/sunrpc/clnt.h> |
| 44 | #include <linux/nfs.h> |
| 45 | #include <linux/nfs4.h> |
| 46 | #include <linux/nfs_fs.h> |
| 47 | #include <linux/nfs_page.h> |
| 48 | #include <linux/smp_lock.h> |
| 49 | #include <linux/namei.h> |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 50 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 52 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include "delegation.h" |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 54 | #include "iostat.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #define NFSDBG_FACILITY NFSDBG_PROC |
| 57 | |
Trond Myklebust | 2066fe8 | 2006-09-15 08:30:46 -0400 | [diff] [blame] | 58 | #define NFS4_POLL_RETRY_MIN (HZ/10) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #define NFS4_POLL_RETRY_MAX (15*HZ) |
| 60 | |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 61 | struct nfs4_opendata; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 62 | static int _nfs4_proc_open(struct nfs4_opendata *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 64 | static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 65 | static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception); |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 66 | static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp); |
Trond Myklebust | 9936781 | 2007-07-17 21:52:41 -0400 | [diff] [blame] | 67 | static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr); |
| 68 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | /* Prevent leaks of NFSv4 errors into userland */ |
| 71 | int nfs4_map_errors(int err) |
| 72 | { |
| 73 | if (err < -1000) { |
| 74 | dprintk("%s could not handle NFSv4 error %d\n", |
| 75 | __FUNCTION__, -err); |
| 76 | return -EIO; |
| 77 | } |
| 78 | return err; |
| 79 | } |
| 80 | |
| 81 | /* |
| 82 | * This is our standard bitmap for GETATTR requests. |
| 83 | */ |
| 84 | const u32 nfs4_fattr_bitmap[2] = { |
| 85 | FATTR4_WORD0_TYPE |
| 86 | | FATTR4_WORD0_CHANGE |
| 87 | | FATTR4_WORD0_SIZE |
| 88 | | FATTR4_WORD0_FSID |
| 89 | | FATTR4_WORD0_FILEID, |
| 90 | FATTR4_WORD1_MODE |
| 91 | | FATTR4_WORD1_NUMLINKS |
| 92 | | FATTR4_WORD1_OWNER |
| 93 | | FATTR4_WORD1_OWNER_GROUP |
| 94 | | FATTR4_WORD1_RAWDEV |
| 95 | | FATTR4_WORD1_SPACE_USED |
| 96 | | FATTR4_WORD1_TIME_ACCESS |
| 97 | | FATTR4_WORD1_TIME_METADATA |
| 98 | | FATTR4_WORD1_TIME_MODIFY |
| 99 | }; |
| 100 | |
| 101 | const u32 nfs4_statfs_bitmap[2] = { |
| 102 | FATTR4_WORD0_FILES_AVAIL |
| 103 | | FATTR4_WORD0_FILES_FREE |
| 104 | | FATTR4_WORD0_FILES_TOTAL, |
| 105 | FATTR4_WORD1_SPACE_AVAIL |
| 106 | | FATTR4_WORD1_SPACE_FREE |
| 107 | | FATTR4_WORD1_SPACE_TOTAL |
| 108 | }; |
| 109 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 110 | const u32 nfs4_pathconf_bitmap[2] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | FATTR4_WORD0_MAXLINK |
| 112 | | FATTR4_WORD0_MAXNAME, |
| 113 | 0 |
| 114 | }; |
| 115 | |
| 116 | const u32 nfs4_fsinfo_bitmap[2] = { FATTR4_WORD0_MAXFILESIZE |
| 117 | | FATTR4_WORD0_MAXREAD |
| 118 | | FATTR4_WORD0_MAXWRITE |
| 119 | | FATTR4_WORD0_LEASE_TIME, |
| 120 | 0 |
| 121 | }; |
| 122 | |
Manoj Naik | 830b8e3 | 2006-06-09 09:34:25 -0400 | [diff] [blame] | 123 | const u32 nfs4_fs_locations_bitmap[2] = { |
| 124 | FATTR4_WORD0_TYPE |
| 125 | | FATTR4_WORD0_CHANGE |
| 126 | | FATTR4_WORD0_SIZE |
| 127 | | FATTR4_WORD0_FSID |
| 128 | | FATTR4_WORD0_FILEID |
| 129 | | FATTR4_WORD0_FS_LOCATIONS, |
| 130 | FATTR4_WORD1_MODE |
| 131 | | FATTR4_WORD1_NUMLINKS |
| 132 | | FATTR4_WORD1_OWNER |
| 133 | | FATTR4_WORD1_OWNER_GROUP |
| 134 | | FATTR4_WORD1_RAWDEV |
| 135 | | FATTR4_WORD1_SPACE_USED |
| 136 | | FATTR4_WORD1_TIME_ACCESS |
| 137 | | FATTR4_WORD1_TIME_METADATA |
| 138 | | FATTR4_WORD1_TIME_MODIFY |
| 139 | | FATTR4_WORD1_MOUNTED_ON_FILEID |
| 140 | }; |
| 141 | |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 142 | static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | struct nfs4_readdir_arg *readdir) |
| 144 | { |
Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 145 | __be32 *start, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
| 147 | BUG_ON(readdir->count < 80); |
| 148 | if (cookie > 2) { |
Adrian Bunk | b7ef195 | 2005-06-22 17:16:28 +0000 | [diff] [blame] | 149 | readdir->cookie = cookie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier)); |
| 151 | return; |
| 152 | } |
| 153 | |
| 154 | readdir->cookie = 0; |
| 155 | memset(&readdir->verifier, 0, sizeof(readdir->verifier)); |
| 156 | if (cookie == 2) |
| 157 | return; |
| 158 | |
| 159 | /* |
| 160 | * NFSv4 servers do not return entries for '.' and '..' |
| 161 | * Therefore, we fake these entries here. We let '.' |
| 162 | * have cookie 0 and '..' have cookie 1. Note that |
| 163 | * when talking to the server, we always send cookie 0 |
| 164 | * instead of 1 or 2. |
| 165 | */ |
Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 166 | start = p = kmap_atomic(*readdir->pages, KM_USER0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
| 168 | if (cookie == 0) { |
| 169 | *p++ = xdr_one; /* next */ |
| 170 | *p++ = xdr_zero; /* cookie, first word */ |
| 171 | *p++ = xdr_one; /* cookie, second word */ |
| 172 | *p++ = xdr_one; /* entry len */ |
| 173 | memcpy(p, ".\0\0\0", 4); /* entry */ |
| 174 | p++; |
| 175 | *p++ = xdr_one; /* bitmap length */ |
| 176 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ |
| 177 | *p++ = htonl(8); /* attribute buffer length */ |
Peter Staubach | 4e769b9 | 2007-08-03 15:07:10 -0400 | [diff] [blame] | 178 | p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | *p++ = xdr_one; /* next */ |
| 182 | *p++ = xdr_zero; /* cookie, first word */ |
| 183 | *p++ = xdr_two; /* cookie, second word */ |
| 184 | *p++ = xdr_two; /* entry len */ |
| 185 | memcpy(p, "..\0\0", 4); /* entry */ |
| 186 | p++; |
| 187 | *p++ = xdr_one; /* bitmap length */ |
| 188 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ |
| 189 | *p++ = htonl(8); /* attribute buffer length */ |
Peter Staubach | 4e769b9 | 2007-08-03 15:07:10 -0400 | [diff] [blame] | 190 | p = xdr_encode_hyper(p, NFS_FILEID(dentry->d_parent->d_inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
| 192 | readdir->pgbase = (char *)p - (char *)start; |
| 193 | readdir->count -= readdir->pgbase; |
| 194 | kunmap_atomic(start, KM_USER0); |
| 195 | } |
| 196 | |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 197 | static void renew_lease(const struct nfs_server *server, unsigned long timestamp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 199 | struct nfs_client *clp = server->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | spin_lock(&clp->cl_lock); |
| 201 | if (time_before(clp->cl_last_renewal,timestamp)) |
| 202 | clp->cl_last_renewal = timestamp; |
| 203 | spin_unlock(&clp->cl_lock); |
| 204 | } |
| 205 | |
Trond Myklebust | 38478b2 | 2006-05-25 01:40:57 -0400 | [diff] [blame] | 206 | static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
Trond Myklebust | 38478b2 | 2006-05-25 01:40:57 -0400 | [diff] [blame] | 208 | struct nfs_inode *nfsi = NFS_I(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Trond Myklebust | 38478b2 | 2006-05-25 01:40:57 -0400 | [diff] [blame] | 210 | spin_lock(&dir->i_lock); |
Trond Myklebust | 40d2470 | 2007-10-08 09:24:22 -0400 | [diff] [blame] | 211 | nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA; |
| 212 | if (!cinfo->atomic || cinfo->before != nfsi->change_attr) |
| 213 | nfsi->cache_change_attribute = jiffies; |
| 214 | nfsi->change_attr = cinfo->after; |
Trond Myklebust | 38478b2 | 2006-05-25 01:40:57 -0400 | [diff] [blame] | 215 | spin_unlock(&dir->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 218 | struct nfs4_opendata { |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 219 | struct kref kref; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 220 | struct nfs_openargs o_arg; |
| 221 | struct nfs_openres o_res; |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 222 | struct nfs_open_confirmargs c_arg; |
| 223 | struct nfs_open_confirmres c_res; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 224 | struct nfs_fattr f_attr; |
| 225 | struct nfs_fattr dir_attr; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 226 | struct path path; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 227 | struct dentry *dir; |
| 228 | struct nfs4_state_owner *owner; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 229 | struct nfs4_state *state; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 230 | struct iattr attrs; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 231 | unsigned long timestamp; |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 232 | unsigned int rpc_done : 1; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 233 | int rpc_status; |
| 234 | int cancelled; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 235 | }; |
| 236 | |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 237 | |
| 238 | static void nfs4_init_opendata_res(struct nfs4_opendata *p) |
| 239 | { |
| 240 | p->o_res.f_attr = &p->f_attr; |
| 241 | p->o_res.dir_attr = &p->dir_attr; |
| 242 | p->o_res.server = p->o_arg.server; |
| 243 | nfs_fattr_init(&p->f_attr); |
| 244 | nfs_fattr_init(&p->dir_attr); |
| 245 | } |
| 246 | |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 247 | static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path, |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 248 | struct nfs4_state_owner *sp, int flags, |
| 249 | const struct iattr *attrs) |
| 250 | { |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 251 | struct dentry *parent = dget_parent(path->dentry); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 252 | struct inode *dir = parent->d_inode; |
| 253 | struct nfs_server *server = NFS_SERVER(dir); |
| 254 | struct nfs4_opendata *p; |
| 255 | |
| 256 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
| 257 | if (p == NULL) |
| 258 | goto err; |
| 259 | p->o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid); |
| 260 | if (p->o_arg.seqid == NULL) |
| 261 | goto err_free; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 262 | p->path.mnt = mntget(path->mnt); |
| 263 | p->path.dentry = dget(path->dentry); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 264 | p->dir = parent; |
| 265 | p->owner = sp; |
| 266 | atomic_inc(&sp->so_count); |
| 267 | p->o_arg.fh = NFS_FH(dir); |
| 268 | p->o_arg.open_flags = flags, |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 269 | p->o_arg.clientid = server->nfs_client->cl_clientid; |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 270 | p->o_arg.id = sp->so_owner_id.id; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 271 | p->o_arg.name = &p->path.dentry->d_name; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 272 | p->o_arg.server = server; |
| 273 | p->o_arg.bitmask = server->attr_bitmask; |
| 274 | p->o_arg.claim = NFS4_OPEN_CLAIM_NULL; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 275 | if (flags & O_EXCL) { |
| 276 | u32 *s = (u32 *) p->o_arg.u.verifier.data; |
| 277 | s[0] = jiffies; |
| 278 | s[1] = current->pid; |
| 279 | } else if (flags & O_CREAT) { |
| 280 | p->o_arg.u.attrs = &p->attrs; |
| 281 | memcpy(&p->attrs, attrs, sizeof(p->attrs)); |
| 282 | } |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 283 | p->c_arg.fh = &p->o_res.fh; |
| 284 | p->c_arg.stateid = &p->o_res.stateid; |
| 285 | p->c_arg.seqid = p->o_arg.seqid; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 286 | nfs4_init_opendata_res(p); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 287 | kref_init(&p->kref); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 288 | return p; |
| 289 | err_free: |
| 290 | kfree(p); |
| 291 | err: |
| 292 | dput(parent); |
| 293 | return NULL; |
| 294 | } |
| 295 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 296 | static void nfs4_opendata_free(struct kref *kref) |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 297 | { |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 298 | struct nfs4_opendata *p = container_of(kref, |
| 299 | struct nfs4_opendata, kref); |
| 300 | |
| 301 | nfs_free_seqid(p->o_arg.seqid); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 302 | if (p->state != NULL) |
| 303 | nfs4_put_open_state(p->state); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 304 | nfs4_put_state_owner(p->owner); |
| 305 | dput(p->dir); |
| 306 | dput(p->path.dentry); |
| 307 | mntput(p->path.mnt); |
| 308 | kfree(p); |
| 309 | } |
| 310 | |
| 311 | static void nfs4_opendata_put(struct nfs4_opendata *p) |
| 312 | { |
| 313 | if (p != NULL) |
| 314 | kref_put(&p->kref, nfs4_opendata_free); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 315 | } |
| 316 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 317 | static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task) |
| 318 | { |
| 319 | sigset_t oldset; |
| 320 | int ret; |
| 321 | |
| 322 | rpc_clnt_sigmask(task->tk_client, &oldset); |
| 323 | ret = rpc_wait_for_completion_task(task); |
| 324 | rpc_clnt_sigunmask(task->tk_client, &oldset); |
| 325 | return ret; |
| 326 | } |
| 327 | |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 328 | static int can_open_cached(struct nfs4_state *state, int mode) |
| 329 | { |
| 330 | int ret = 0; |
| 331 | switch (mode & (FMODE_READ|FMODE_WRITE|O_EXCL)) { |
| 332 | case FMODE_READ: |
| 333 | ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 334 | break; |
| 335 | case FMODE_WRITE: |
| 336 | ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 337 | break; |
| 338 | case FMODE_READ|FMODE_WRITE: |
| 339 | ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0; |
| 340 | } |
| 341 | return ret; |
| 342 | } |
| 343 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 344 | static int can_open_delegated(struct nfs_delegation *delegation, mode_t open_flags) |
| 345 | { |
| 346 | if ((delegation->type & open_flags) != open_flags) |
| 347 | return 0; |
| 348 | if (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) |
| 349 | return 0; |
| 350 | return 1; |
| 351 | } |
| 352 | |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 353 | static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags) |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 354 | { |
| 355 | switch (open_flags) { |
| 356 | case FMODE_WRITE: |
| 357 | state->n_wronly++; |
| 358 | break; |
| 359 | case FMODE_READ: |
| 360 | state->n_rdonly++; |
| 361 | break; |
| 362 | case FMODE_READ|FMODE_WRITE: |
| 363 | state->n_rdwr++; |
| 364 | } |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 365 | nfs4_state_set_mode_locked(state, state->state | open_flags); |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 366 | } |
| 367 | |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 368 | static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags) |
| 369 | { |
| 370 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
| 371 | memcpy(state->stateid.data, stateid->data, sizeof(state->stateid.data)); |
| 372 | memcpy(state->open_stateid.data, stateid->data, sizeof(state->open_stateid.data)); |
| 373 | switch (open_flags) { |
| 374 | case FMODE_READ: |
| 375 | set_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 376 | break; |
| 377 | case FMODE_WRITE: |
| 378 | set_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 379 | break; |
| 380 | case FMODE_READ|FMODE_WRITE: |
| 381 | set_bit(NFS_O_RDWR_STATE, &state->flags); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | static void nfs_set_open_stateid(struct nfs4_state *state, nfs4_stateid *stateid, int open_flags) |
| 386 | { |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 387 | write_seqlock(&state->seqlock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 388 | nfs_set_open_stateid_locked(state, stateid, open_flags); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 389 | write_sequnlock(&state->seqlock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | open_flags &= (FMODE_READ|FMODE_WRITE); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 395 | /* |
| 396 | * Protect the call to nfs4_state_set_mode_locked and |
| 397 | * serialise the stateid update |
| 398 | */ |
| 399 | write_seqlock(&state->seqlock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 400 | if (deleg_stateid != NULL) { |
| 401 | memcpy(state->stateid.data, deleg_stateid->data, sizeof(state->stateid.data)); |
| 402 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
| 403 | } |
| 404 | if (open_stateid != NULL) |
| 405 | nfs_set_open_stateid_locked(state, open_stateid, open_flags); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 406 | write_sequnlock(&state->seqlock); |
| 407 | spin_lock(&state->owner->so_lock); |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 408 | update_open_stateflags(state, open_flags); |
Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 409 | spin_unlock(&state->owner->so_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } |
| 411 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 412 | static void nfs4_return_incompatible_delegation(struct inode *inode, mode_t open_flags) |
| 413 | { |
| 414 | struct nfs_delegation *delegation; |
| 415 | |
| 416 | rcu_read_lock(); |
| 417 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 418 | if (delegation == NULL || (delegation->type & open_flags) == open_flags) { |
| 419 | rcu_read_unlock(); |
| 420 | return; |
| 421 | } |
| 422 | rcu_read_unlock(); |
| 423 | nfs_inode_return_delegation(inode); |
| 424 | } |
| 425 | |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 426 | static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata) |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 427 | { |
| 428 | struct nfs4_state *state = opendata->state; |
| 429 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 430 | struct nfs_delegation *delegation; |
| 431 | int open_mode = opendata->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL); |
| 432 | nfs4_stateid stateid; |
| 433 | int ret = -EAGAIN; |
| 434 | |
| 435 | rcu_read_lock(); |
| 436 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 437 | for (;;) { |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 438 | if (can_open_cached(state, open_mode)) { |
| 439 | spin_lock(&state->owner->so_lock); |
| 440 | if (can_open_cached(state, open_mode)) { |
| 441 | update_open_stateflags(state, open_mode); |
| 442 | spin_unlock(&state->owner->so_lock); |
| 443 | rcu_read_unlock(); |
| 444 | goto out_return_state; |
| 445 | } |
| 446 | spin_unlock(&state->owner->so_lock); |
| 447 | } |
| 448 | if (delegation == NULL) |
| 449 | break; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 450 | if (!can_open_delegated(delegation, open_mode)) |
| 451 | break; |
| 452 | /* Save the delegation */ |
| 453 | memcpy(stateid.data, delegation->stateid.data, sizeof(stateid.data)); |
| 454 | rcu_read_unlock(); |
| 455 | lock_kernel(); |
Trond Myklebust | af22f94 | 2007-08-10 17:45:10 -0400 | [diff] [blame] | 456 | ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 457 | unlock_kernel(); |
| 458 | if (ret != 0) |
| 459 | goto out; |
| 460 | ret = -EAGAIN; |
| 461 | rcu_read_lock(); |
| 462 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 463 | /* If no delegation, try a cached open */ |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 464 | if (delegation == NULL) |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 465 | continue; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 466 | /* Is the delegation still valid? */ |
| 467 | if (memcmp(stateid.data, delegation->stateid.data, sizeof(stateid.data)) != 0) |
| 468 | continue; |
| 469 | rcu_read_unlock(); |
| 470 | update_open_stateid(state, NULL, &stateid, open_mode); |
| 471 | goto out_return_state; |
| 472 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 473 | rcu_read_unlock(); |
| 474 | out: |
| 475 | return ERR_PTR(ret); |
| 476 | out_return_state: |
| 477 | atomic_inc(&state->count); |
| 478 | return state; |
| 479 | } |
| 480 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 481 | static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data) |
| 482 | { |
| 483 | struct inode *inode; |
| 484 | struct nfs4_state *state = NULL; |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 485 | struct nfs_delegation *delegation; |
| 486 | nfs4_stateid *deleg_stateid = NULL; |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 487 | int ret; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 488 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 489 | if (!data->rpc_done) { |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 490 | state = nfs4_try_open_cached(data); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 491 | goto out; |
| 492 | } |
| 493 | |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 494 | ret = -EAGAIN; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 495 | if (!(data->f_attr.valid & NFS_ATTR_FATTR)) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 496 | goto err; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 497 | inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 498 | ret = PTR_ERR(inode); |
Trond Myklebust | 03f28e3 | 2006-03-20 13:44:48 -0500 | [diff] [blame] | 499 | if (IS_ERR(inode)) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 500 | goto err; |
| 501 | ret = -ENOMEM; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 502 | state = nfs4_get_open_state(inode, data->owner); |
| 503 | if (state == NULL) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 504 | goto err_put_inode; |
Trond Myklebust | 549d6ed | 2007-07-03 16:42:45 -0400 | [diff] [blame] | 505 | if (data->o_res.delegation_type != 0) { |
Trond Myklebust | 549d6ed | 2007-07-03 16:42:45 -0400 | [diff] [blame] | 506 | int delegation_flags = 0; |
| 507 | |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 508 | rcu_read_lock(); |
| 509 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 510 | if (delegation) |
| 511 | delegation_flags = delegation->flags; |
| 512 | rcu_read_unlock(); |
Trond Myklebust | 549d6ed | 2007-07-03 16:42:45 -0400 | [diff] [blame] | 513 | if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM)) |
| 514 | nfs_inode_set_delegation(state->inode, |
| 515 | data->owner->so_cred, |
| 516 | &data->o_res); |
| 517 | else |
| 518 | nfs_inode_reclaim_delegation(state->inode, |
| 519 | data->owner->so_cred, |
| 520 | &data->o_res); |
| 521 | } |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 522 | rcu_read_lock(); |
| 523 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 524 | if (delegation != NULL) |
| 525 | deleg_stateid = &delegation->stateid; |
| 526 | update_open_stateid(state, &data->o_res.stateid, deleg_stateid, data->o_arg.open_flags); |
| 527 | rcu_read_unlock(); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 528 | iput(inode); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 529 | out: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 530 | return state; |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 531 | err_put_inode: |
| 532 | iput(inode); |
| 533 | err: |
| 534 | return ERR_PTR(ret); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 535 | } |
| 536 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 537 | static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state) |
| 538 | { |
| 539 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 540 | struct nfs_open_context *ctx; |
| 541 | |
| 542 | spin_lock(&state->inode->i_lock); |
| 543 | list_for_each_entry(ctx, &nfsi->open_files, list) { |
| 544 | if (ctx->state != state) |
| 545 | continue; |
| 546 | get_nfs_open_context(ctx); |
| 547 | spin_unlock(&state->inode->i_lock); |
| 548 | return ctx; |
| 549 | } |
| 550 | spin_unlock(&state->inode->i_lock); |
| 551 | return ERR_PTR(-ENOENT); |
| 552 | } |
| 553 | |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 554 | static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, struct nfs4_state *state) |
| 555 | { |
| 556 | struct nfs4_opendata *opendata; |
| 557 | |
| 558 | opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL); |
| 559 | if (opendata == NULL) |
| 560 | return ERR_PTR(-ENOMEM); |
| 561 | opendata->state = state; |
| 562 | atomic_inc(&state->count); |
| 563 | return opendata; |
| 564 | } |
| 565 | |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 566 | static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res) |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 567 | { |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 568 | struct nfs4_state *newstate; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 569 | int ret; |
| 570 | |
| 571 | opendata->o_arg.open_flags = openflags; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 572 | memset(&opendata->o_res, 0, sizeof(opendata->o_res)); |
| 573 | memset(&opendata->c_res, 0, sizeof(opendata->c_res)); |
| 574 | nfs4_init_opendata_res(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 575 | ret = _nfs4_proc_open(opendata); |
| 576 | if (ret != 0) |
| 577 | return ret; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 578 | newstate = nfs4_opendata_to_nfs4_state(opendata); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 579 | if (IS_ERR(newstate)) |
| 580 | return PTR_ERR(newstate); |
| 581 | nfs4_close_state(&opendata->path, newstate, openflags); |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 582 | *res = newstate; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 583 | return 0; |
| 584 | } |
| 585 | |
| 586 | static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state) |
| 587 | { |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 588 | struct nfs4_state *newstate; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 589 | int ret; |
| 590 | |
| 591 | /* memory barrier prior to reading state->n_* */ |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 592 | clear_bit(NFS_DELEGATED_STATE, &state->flags); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 593 | smp_rmb(); |
| 594 | if (state->n_rdwr != 0) { |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 595 | ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 596 | if (ret != 0) |
| 597 | return ret; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 598 | if (newstate != state) |
| 599 | return -ESTALE; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 600 | } |
| 601 | if (state->n_wronly != 0) { |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 602 | ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 603 | if (ret != 0) |
| 604 | return ret; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 605 | if (newstate != state) |
| 606 | return -ESTALE; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 607 | } |
| 608 | if (state->n_rdonly != 0) { |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 609 | ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 610 | if (ret != 0) |
| 611 | return ret; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 612 | if (newstate != state) |
| 613 | return -ESTALE; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 614 | } |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 615 | /* |
| 616 | * We may have performed cached opens for all three recoveries. |
| 617 | * Check if we need to update the current stateid. |
| 618 | */ |
| 619 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 && |
| 620 | memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) { |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 621 | write_seqlock(&state->seqlock); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 622 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
| 623 | memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 624 | write_sequnlock(&state->seqlock); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 625 | } |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 626 | return 0; |
| 627 | } |
| 628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | /* |
| 630 | * OPEN_RECLAIM: |
| 631 | * reclaim state on the server after a reboot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | */ |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 633 | static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 635 | struct nfs_delegation *delegation; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 636 | struct nfs4_opendata *opendata; |
| 637 | int delegation_type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | int status; |
| 639 | |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 640 | opendata = nfs4_open_recoverdata_alloc(ctx, state); |
| 641 | if (IS_ERR(opendata)) |
| 642 | return PTR_ERR(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 643 | opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS; |
| 644 | opendata->o_arg.fh = NFS_FH(state->inode); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 645 | rcu_read_lock(); |
| 646 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); |
| 647 | if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0) |
Trond Myklebust | 65bbf6b | 2007-08-27 09:57:46 -0400 | [diff] [blame] | 648 | delegation_type = delegation->type; |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 649 | rcu_read_unlock(); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 650 | opendata->o_arg.u.delegation_type = delegation_type; |
| 651 | status = nfs4_open_recover(opendata, state); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 652 | nfs4_opendata_put(opendata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | return status; |
| 654 | } |
| 655 | |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 656 | static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | { |
| 658 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 659 | struct nfs4_exception exception = { }; |
| 660 | int err; |
| 661 | do { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 662 | err = _nfs4_do_open_reclaim(ctx, state); |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 663 | if (err != -NFS4ERR_DELAY) |
| 664 | break; |
| 665 | nfs4_handle_exception(server, err, &exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } while (exception.retry); |
| 667 | return err; |
| 668 | } |
| 669 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 670 | static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 671 | { |
| 672 | struct nfs_open_context *ctx; |
| 673 | int ret; |
| 674 | |
| 675 | ctx = nfs4_state_find_open_context(state); |
| 676 | if (IS_ERR(ctx)) |
| 677 | return PTR_ERR(ctx); |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 678 | ret = nfs4_do_open_reclaim(ctx, state); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 679 | put_nfs_open_context(ctx); |
| 680 | return ret; |
| 681 | } |
| 682 | |
Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 683 | static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 685 | struct nfs4_opendata *opendata; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 686 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 688 | opendata = nfs4_open_recoverdata_alloc(ctx, state); |
| 689 | if (IS_ERR(opendata)) |
| 690 | return PTR_ERR(opendata); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 691 | opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR; |
Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 692 | memcpy(opendata->o_arg.u.delegation.data, stateid->data, |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 693 | sizeof(opendata->o_arg.u.delegation.data)); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 694 | ret = nfs4_open_recover(opendata, state); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 695 | nfs4_opendata_put(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 696 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 699 | int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | { |
| 701 | struct nfs4_exception exception = { }; |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 702 | struct nfs_server *server = NFS_SERVER(state->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | int err; |
| 704 | do { |
Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 705 | err = _nfs4_open_delegation_recall(ctx, state, stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | switch (err) { |
| 707 | case 0: |
| 708 | return err; |
| 709 | case -NFS4ERR_STALE_CLIENTID: |
| 710 | case -NFS4ERR_STALE_STATEID: |
| 711 | case -NFS4ERR_EXPIRED: |
| 712 | /* Don't recall a delegation if it was lost */ |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 713 | nfs4_schedule_state_recovery(server->nfs_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | return err; |
| 715 | } |
| 716 | err = nfs4_handle_exception(server, err, &exception); |
| 717 | } while (exception.retry); |
| 718 | return err; |
| 719 | } |
| 720 | |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 721 | static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | { |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 723 | struct nfs4_opendata *data = calldata; |
| 724 | struct rpc_message msg = { |
| 725 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM], |
| 726 | .rpc_argp = &data->c_arg, |
| 727 | .rpc_resp = &data->c_res, |
| 728 | .rpc_cred = data->owner->so_cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | }; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 730 | data->timestamp = jiffies; |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 731 | rpc_call_setup(task, &msg, 0); |
| 732 | } |
| 733 | |
| 734 | static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata) |
| 735 | { |
| 736 | struct nfs4_opendata *data = calldata; |
| 737 | |
| 738 | data->rpc_status = task->tk_status; |
| 739 | if (RPC_ASSASSINATED(task)) |
| 740 | return; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 741 | if (data->rpc_status == 0) { |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 742 | memcpy(data->o_res.stateid.data, data->c_res.stateid.data, |
| 743 | sizeof(data->o_res.stateid.data)); |
Trond Myklebust | bb22629 | 2008-01-02 15:19:18 -0500 | [diff] [blame] | 744 | nfs_confirm_seqid(&data->owner->so_seqid, 0); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 745 | renew_lease(data->o_res.server, data->timestamp); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 746 | data->rpc_done = 1; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 747 | } |
Trond Myklebust | 0f9f95e | 2007-07-08 16:19:56 -0400 | [diff] [blame] | 748 | nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | static void nfs4_open_confirm_release(void *calldata) |
| 752 | { |
| 753 | struct nfs4_opendata *data = calldata; |
| 754 | struct nfs4_state *state = NULL; |
| 755 | |
| 756 | /* If this request hasn't been cancelled, do nothing */ |
| 757 | if (data->cancelled == 0) |
| 758 | goto out_free; |
| 759 | /* In case of error, no cleanup! */ |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 760 | if (!data->rpc_done) |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 761 | goto out_free; |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 762 | state = nfs4_opendata_to_nfs4_state(data); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 763 | if (!IS_ERR(state)) |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 764 | nfs4_close_state(&data->path, state, data->o_arg.open_flags); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 765 | out_free: |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 766 | nfs4_opendata_put(data); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 767 | } |
| 768 | |
| 769 | static const struct rpc_call_ops nfs4_open_confirm_ops = { |
| 770 | .rpc_call_prepare = nfs4_open_confirm_prepare, |
| 771 | .rpc_call_done = nfs4_open_confirm_done, |
| 772 | .rpc_release = nfs4_open_confirm_release, |
| 773 | }; |
| 774 | |
| 775 | /* |
| 776 | * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata |
| 777 | */ |
| 778 | static int _nfs4_proc_open_confirm(struct nfs4_opendata *data) |
| 779 | { |
| 780 | struct nfs_server *server = NFS_SERVER(data->dir->d_inode); |
| 781 | struct rpc_task *task; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 782 | struct rpc_task_setup task_setup_data = { |
| 783 | .rpc_client = server->client, |
| 784 | .callback_ops = &nfs4_open_confirm_ops, |
| 785 | .callback_data = data, |
| 786 | .flags = RPC_TASK_ASYNC, |
| 787 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | int status; |
| 789 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 790 | kref_get(&data->kref); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 791 | data->rpc_done = 0; |
| 792 | data->rpc_status = 0; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 793 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 794 | if (IS_ERR(task)) |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 795 | return PTR_ERR(task); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 796 | status = nfs4_wait_for_completion_rpc_task(task); |
| 797 | if (status != 0) { |
| 798 | data->cancelled = 1; |
| 799 | smp_wmb(); |
| 800 | } else |
| 801 | status = data->rpc_status; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 802 | rpc_put_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | return status; |
| 804 | } |
| 805 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 806 | static void nfs4_open_prepare(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | { |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 808 | struct nfs4_opendata *data = calldata; |
| 809 | struct nfs4_state_owner *sp = data->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | struct rpc_message msg = { |
| 811 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN], |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 812 | .rpc_argp = &data->o_arg, |
| 813 | .rpc_resp = &data->o_res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | .rpc_cred = sp->so_cred, |
| 815 | }; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 816 | |
| 817 | if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0) |
| 818 | return; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 819 | /* |
| 820 | * Check if we still need to send an OPEN call, or if we can use |
| 821 | * a delegation instead. |
| 822 | */ |
| 823 | if (data->state != NULL) { |
| 824 | struct nfs_delegation *delegation; |
| 825 | |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 826 | if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL))) |
| 827 | goto out_no_action; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 828 | rcu_read_lock(); |
| 829 | delegation = rcu_dereference(NFS_I(data->state->inode)->delegation); |
| 830 | if (delegation != NULL && |
| 831 | (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) { |
| 832 | rcu_read_unlock(); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 833 | goto out_no_action; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 834 | } |
| 835 | rcu_read_unlock(); |
| 836 | } |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 837 | /* Update sequence id. */ |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 838 | data->o_arg.id = sp->so_owner_id.id; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 839 | data->o_arg.clientid = sp->so_client->cl_clientid; |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 840 | if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) { |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 841 | msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR]; |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 842 | nfs_copy_fh(&data->o_res.fh, data->o_arg.fh); |
| 843 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 844 | data->timestamp = jiffies; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 845 | rpc_call_setup(task, &msg, 0); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 846 | return; |
| 847 | out_no_action: |
| 848 | task->tk_action = NULL; |
| 849 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 850 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 852 | static void nfs4_open_done(struct rpc_task *task, void *calldata) |
| 853 | { |
| 854 | struct nfs4_opendata *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 856 | data->rpc_status = task->tk_status; |
| 857 | if (RPC_ASSASSINATED(task)) |
| 858 | return; |
| 859 | if (task->tk_status == 0) { |
| 860 | switch (data->o_res.f_attr->mode & S_IFMT) { |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 861 | case S_IFREG: |
| 862 | break; |
| 863 | case S_IFLNK: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 864 | data->rpc_status = -ELOOP; |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 865 | break; |
| 866 | case S_IFDIR: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 867 | data->rpc_status = -EISDIR; |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 868 | break; |
| 869 | default: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 870 | data->rpc_status = -ENOTDIR; |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 871 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 872 | renew_lease(data->o_res.server, data->timestamp); |
Trond Myklebust | 0f9f95e | 2007-07-08 16:19:56 -0400 | [diff] [blame] | 873 | if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)) |
| 874 | nfs_confirm_seqid(&data->owner->so_seqid, 0); |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 875 | } |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 876 | nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 877 | data->rpc_done = 1; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 878 | } |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 879 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 880 | static void nfs4_open_release(void *calldata) |
| 881 | { |
| 882 | struct nfs4_opendata *data = calldata; |
| 883 | struct nfs4_state *state = NULL; |
| 884 | |
| 885 | /* If this request hasn't been cancelled, do nothing */ |
| 886 | if (data->cancelled == 0) |
| 887 | goto out_free; |
| 888 | /* In case of error, no cleanup! */ |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 889 | if (data->rpc_status != 0 || !data->rpc_done) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 890 | goto out_free; |
| 891 | /* In case we need an open_confirm, no cleanup! */ |
| 892 | if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM) |
| 893 | goto out_free; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 894 | state = nfs4_opendata_to_nfs4_state(data); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 895 | if (!IS_ERR(state)) |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 896 | nfs4_close_state(&data->path, state, data->o_arg.open_flags); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 897 | out_free: |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 898 | nfs4_opendata_put(data); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | static const struct rpc_call_ops nfs4_open_ops = { |
| 902 | .rpc_call_prepare = nfs4_open_prepare, |
| 903 | .rpc_call_done = nfs4_open_done, |
| 904 | .rpc_release = nfs4_open_release, |
| 905 | }; |
| 906 | |
| 907 | /* |
| 908 | * Note: On error, nfs4_proc_open will free the struct nfs4_opendata |
| 909 | */ |
| 910 | static int _nfs4_proc_open(struct nfs4_opendata *data) |
| 911 | { |
| 912 | struct inode *dir = data->dir->d_inode; |
| 913 | struct nfs_server *server = NFS_SERVER(dir); |
| 914 | struct nfs_openargs *o_arg = &data->o_arg; |
| 915 | struct nfs_openres *o_res = &data->o_res; |
| 916 | struct rpc_task *task; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 917 | struct rpc_task_setup task_setup_data = { |
| 918 | .rpc_client = server->client, |
| 919 | .callback_ops = &nfs4_open_ops, |
| 920 | .callback_data = data, |
| 921 | .flags = RPC_TASK_ASYNC, |
| 922 | }; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 923 | int status; |
| 924 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 925 | kref_get(&data->kref); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 926 | data->rpc_done = 0; |
| 927 | data->rpc_status = 0; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 928 | data->cancelled = 0; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 929 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 930 | if (IS_ERR(task)) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 931 | return PTR_ERR(task); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 932 | status = nfs4_wait_for_completion_rpc_task(task); |
| 933 | if (status != 0) { |
| 934 | data->cancelled = 1; |
| 935 | smp_wmb(); |
| 936 | } else |
| 937 | status = data->rpc_status; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 938 | rpc_put_task(task); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 939 | if (status != 0 || !data->rpc_done) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 940 | return status; |
| 941 | |
Trond Myklebust | 9936781 | 2007-07-17 21:52:41 -0400 | [diff] [blame] | 942 | if (o_res->fh.size == 0) |
| 943 | _nfs4_proc_lookup(dir, o_arg->name, &o_res->fh, o_res->f_attr); |
| 944 | |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 945 | if (o_arg->open_flags & O_CREAT) { |
| 946 | update_changeattr(dir, &o_res->cinfo); |
| 947 | nfs_post_op_update_inode(dir, o_res->dir_attr); |
| 948 | } else |
| 949 | nfs_refresh_inode(dir, o_res->dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) { |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 951 | status = _nfs4_proc_open_confirm(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | if (status != 0) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 953 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | } |
| 955 | if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) |
Trond Myklebust | 9936781 | 2007-07-17 21:52:41 -0400 | [diff] [blame] | 956 | _nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 957 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | } |
| 959 | |
Trond Myklebust | 10afec90 | 2007-05-14 17:16:04 -0400 | [diff] [blame] | 960 | static int nfs4_recover_expired_lease(struct nfs_server *server) |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 961 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 962 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 6b30954 | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 963 | int ret; |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 964 | |
Trond Myklebust | 6b30954 | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 965 | for (;;) { |
| 966 | ret = nfs4_wait_clnt_recover(server->client, clp); |
| 967 | if (ret != 0) |
| 968 | return ret; |
| 969 | if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state)) |
| 970 | break; |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 971 | nfs4_schedule_state_recovery(clp); |
Trond Myklebust | 6b30954 | 2006-09-14 14:03:14 -0400 | [diff] [blame] | 972 | } |
| 973 | return 0; |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 974 | } |
| 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | /* |
| 977 | * OPEN_EXPIRED: |
| 978 | * reclaim state on the server after a network partition. |
| 979 | * Assumes caller holds the appropriate lock |
| 980 | */ |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 981 | static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | { |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 983 | struct nfs4_opendata *opendata; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 984 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 986 | opendata = nfs4_open_recoverdata_alloc(ctx, state); |
| 987 | if (IS_ERR(opendata)) |
| 988 | return PTR_ERR(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 989 | ret = nfs4_open_recover(opendata, state); |
| 990 | if (ret == -ESTALE) { |
| 991 | /* Invalidate the state owner so we don't ever use it again */ |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 992 | nfs4_drop_state_owner(state->owner); |
| 993 | d_drop(ctx->path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 995 | nfs4_opendata_put(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 996 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | } |
| 998 | |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 999 | static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1000 | { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1001 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1002 | struct nfs4_exception exception = { }; |
| 1003 | int err; |
| 1004 | |
| 1005 | do { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1006 | err = _nfs4_open_expired(ctx, state); |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1007 | if (err == -NFS4ERR_DELAY) |
| 1008 | nfs4_handle_exception(server, err, &exception); |
| 1009 | } while (exception.retry); |
| 1010 | return err; |
| 1011 | } |
| 1012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 1014 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | struct nfs_open_context *ctx; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1016 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1018 | ctx = nfs4_state_find_open_context(state); |
| 1019 | if (IS_ERR(ctx)) |
| 1020 | return PTR_ERR(ctx); |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1021 | ret = nfs4_do_open_expired(ctx, state); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1022 | put_nfs_open_context(ctx); |
| 1023 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | /* |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 1027 | * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-* |
| 1028 | * fields corresponding to attributes that were used to store the verifier. |
| 1029 | * Make sure we clobber those fields in the later setattr call |
| 1030 | */ |
| 1031 | static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr) |
| 1032 | { |
| 1033 | if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) && |
| 1034 | !(sattr->ia_valid & ATTR_ATIME_SET)) |
| 1035 | sattr->ia_valid |= ATTR_ATIME; |
| 1036 | |
| 1037 | if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) && |
| 1038 | !(sattr->ia_valid & ATTR_MTIME_SET)) |
| 1039 | sattr->ia_valid |= ATTR_MTIME; |
| 1040 | } |
| 1041 | |
| 1042 | /* |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1043 | * Returns a referenced nfs4_state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | */ |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1045 | static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | { |
| 1047 | struct nfs4_state_owner *sp; |
| 1048 | struct nfs4_state *state = NULL; |
| 1049 | struct nfs_server *server = NFS_SERVER(dir); |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1050 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1051 | struct nfs4_opendata *opendata; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1052 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | /* Protect against reboot recovery conflicts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | status = -ENOMEM; |
| 1056 | if (!(sp = nfs4_get_state_owner(server, cred))) { |
| 1057 | dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n"); |
| 1058 | goto out_err; |
| 1059 | } |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 1060 | status = nfs4_recover_expired_lease(server); |
| 1061 | if (status != 0) |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 1062 | goto err_put_state_owner; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1063 | if (path->dentry->d_inode != NULL) |
| 1064 | nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE)); |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 1065 | down_read(&clp->cl_sem); |
| 1066 | status = -ENOMEM; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1067 | opendata = nfs4_opendata_alloc(path, sp, flags, sattr); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1068 | if (opendata == NULL) |
Trond Myklebust | 76723de | 2006-09-15 08:11:51 -0400 | [diff] [blame] | 1069 | goto err_release_rwsem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1071 | if (path->dentry->d_inode != NULL) |
| 1072 | opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp); |
| 1073 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1074 | status = _nfs4_proc_open(opendata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | if (status != 0) |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1076 | goto err_opendata_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 1078 | if (opendata->o_arg.open_flags & O_EXCL) |
| 1079 | nfs4_exclusive_attrset(opendata, sattr); |
| 1080 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1081 | state = nfs4_opendata_to_nfs4_state(opendata); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1082 | status = PTR_ERR(state); |
| 1083 | if (IS_ERR(state)) |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1084 | goto err_opendata_put; |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1085 | nfs4_opendata_put(opendata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | nfs4_put_state_owner(sp); |
| 1087 | up_read(&clp->cl_sem); |
| 1088 | *res = state; |
| 1089 | return 0; |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1090 | err_opendata_put: |
| 1091 | nfs4_opendata_put(opendata); |
Trond Myklebust | 76723de | 2006-09-15 08:11:51 -0400 | [diff] [blame] | 1092 | err_release_rwsem: |
| 1093 | up_read(&clp->cl_sem); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1094 | err_put_state_owner: |
| 1095 | nfs4_put_state_owner(sp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | out_err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | *res = NULL; |
| 1098 | return status; |
| 1099 | } |
| 1100 | |
| 1101 | |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1102 | static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | { |
| 1104 | struct nfs4_exception exception = { }; |
| 1105 | struct nfs4_state *res; |
| 1106 | int status; |
| 1107 | |
| 1108 | do { |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1109 | status = _nfs4_do_open(dir, path, flags, sattr, cred, &res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | if (status == 0) |
| 1111 | break; |
| 1112 | /* NOTE: BAD_SEQID means the server and client disagree about the |
| 1113 | * book-keeping w.r.t. state-changing operations |
| 1114 | * (OPEN/CLOSE/LOCK/LOCKU...) |
| 1115 | * It is actually a sign of a bug on the client or on the server. |
| 1116 | * |
| 1117 | * If we receive a BAD_SEQID error in the particular case of |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1118 | * doing an OPEN, we assume that nfs_increment_open_seqid() will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | * have unhashed the old state_owner for us, and that we can |
| 1120 | * therefore safely retry using a new one. We should still warn |
| 1121 | * the user though... |
| 1122 | */ |
| 1123 | if (status == -NFS4ERR_BAD_SEQID) { |
Trond Myklebust | 6f43ddc | 2007-07-08 16:49:11 -0400 | [diff] [blame] | 1124 | printk(KERN_WARNING "NFS: v4 server %s " |
| 1125 | " returned a bad sequence-id error!\n", |
| 1126 | NFS_SERVER(dir)->nfs_client->cl_hostname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | exception.retry = 1; |
| 1128 | continue; |
| 1129 | } |
Trond Myklebust | 550f574 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 1130 | /* |
| 1131 | * BAD_STATEID on OPEN means that the server cancelled our |
| 1132 | * state before it received the OPEN_CONFIRM. |
| 1133 | * Recover by retrying the request as per the discussion |
| 1134 | * on Page 181 of RFC3530. |
| 1135 | */ |
| 1136 | if (status == -NFS4ERR_BAD_STATEID) { |
| 1137 | exception.retry = 1; |
| 1138 | continue; |
| 1139 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1140 | if (status == -EAGAIN) { |
| 1141 | /* We must have found a delegation */ |
| 1142 | exception.retry = 1; |
| 1143 | continue; |
| 1144 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir), |
| 1146 | status, &exception)); |
| 1147 | } while (exception.retry); |
| 1148 | return res; |
| 1149 | } |
| 1150 | |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1151 | static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr, |
| 1152 | struct iattr *sattr, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1154 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | struct nfs_setattrargs arg = { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1156 | .fh = NFS_FH(inode), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | .iap = sattr, |
| 1158 | .server = server, |
| 1159 | .bitmask = server->attr_bitmask, |
| 1160 | }; |
| 1161 | struct nfs_setattrres res = { |
| 1162 | .fattr = fattr, |
| 1163 | .server = server, |
| 1164 | }; |
| 1165 | struct rpc_message msg = { |
| 1166 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], |
| 1167 | .rpc_argp = &arg, |
| 1168 | .rpc_resp = &res, |
| 1169 | }; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 1170 | unsigned long timestamp = jiffies; |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 1171 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1173 | nfs_fattr_init(fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1175 | if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) { |
| 1176 | /* Use that stateid */ |
| 1177 | } else if (state != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | msg.rpc_cred = state->owner->so_cred; |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1179 | nfs4_copy_stateid(&arg.stateid, state, current->files); |
| 1180 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid)); |
| 1182 | |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 1183 | status = rpc_call_sync(server->client, &msg, 0); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 1184 | if (status == 0 && state != NULL) |
| 1185 | renew_lease(server, timestamp); |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 1186 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | } |
| 1188 | |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1189 | static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr, |
| 1190 | struct iattr *sattr, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1192 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | struct nfs4_exception exception = { }; |
| 1194 | int err; |
| 1195 | do { |
| 1196 | err = nfs4_handle_exception(server, |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1197 | _nfs4_do_setattr(inode, fattr, sattr, state), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | &exception); |
| 1199 | } while (exception.retry); |
| 1200 | return err; |
| 1201 | } |
| 1202 | |
| 1203 | struct nfs4_closedata { |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1204 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | struct inode *inode; |
| 1206 | struct nfs4_state *state; |
| 1207 | struct nfs_closeargs arg; |
| 1208 | struct nfs_closeres res; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 1209 | struct nfs_fattr fattr; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 1210 | unsigned long timestamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | }; |
| 1212 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1213 | static void nfs4_free_closedata(void *data) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1214 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1215 | struct nfs4_closedata *calldata = data; |
| 1216 | struct nfs4_state_owner *sp = calldata->state->owner; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1217 | |
| 1218 | nfs4_put_open_state(calldata->state); |
| 1219 | nfs_free_seqid(calldata->arg.seqid); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1220 | nfs4_put_state_owner(sp); |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1221 | dput(calldata->path.dentry); |
| 1222 | mntput(calldata->path.mnt); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1223 | kfree(calldata); |
| 1224 | } |
| 1225 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1226 | static void nfs4_close_done(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1228 | struct nfs4_closedata *calldata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | struct nfs4_state *state = calldata->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | struct nfs_server *server = NFS_SERVER(calldata->inode); |
| 1231 | |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 1232 | if (RPC_ASSASSINATED(task)) |
| 1233 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | /* hmm. we are done with the inode, and in the process of freeing |
| 1235 | * the state_owner. we keep this around to process errors |
| 1236 | */ |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1237 | nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | switch (task->tk_status) { |
| 1239 | case 0: |
Trond Myklebust | 45328c3 | 2007-07-26 17:47:34 -0400 | [diff] [blame] | 1240 | nfs_set_open_stateid(state, &calldata->res.stateid, 0); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 1241 | renew_lease(server, calldata->timestamp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | break; |
| 1243 | case -NFS4ERR_STALE_STATEID: |
| 1244 | case -NFS4ERR_EXPIRED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | break; |
| 1246 | default: |
| 1247 | if (nfs4_async_handle_error(task, server) == -EAGAIN) { |
| 1248 | rpc_restart_call(task); |
| 1249 | return; |
| 1250 | } |
| 1251 | } |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 1252 | nfs_refresh_inode(calldata->inode, calldata->res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | } |
| 1254 | |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 1255 | static void nfs4_close_prepare(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 1257 | struct nfs4_closedata *calldata = data; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1258 | struct nfs4_state *state = calldata->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | struct rpc_message msg = { |
| 1260 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE], |
| 1261 | .rpc_argp = &calldata->arg, |
| 1262 | .rpc_resp = &calldata->res, |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1263 | .rpc_cred = state->owner->so_cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | }; |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1265 | int clear_rd, clear_wr, clear_rdwr; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1266 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1267 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1268 | return; |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1269 | |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1270 | clear_rd = clear_wr = clear_rdwr = 0; |
Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 1271 | spin_lock(&state->owner->so_lock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1272 | /* Calculate the change in open mode */ |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 1273 | if (state->n_rdwr == 0) { |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1274 | if (state->n_rdonly == 0) { |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1275 | clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 1276 | clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags); |
| 1277 | } |
| 1278 | if (state->n_wronly == 0) { |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1279 | clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1280 | clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags); |
| 1281 | } |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 1282 | } |
Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 1283 | spin_unlock(&state->owner->so_lock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1284 | if (!clear_rd && !clear_wr && !clear_rdwr) { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1285 | /* Note: exit _without_ calling nfs4_close_done */ |
| 1286 | task->tk_action = NULL; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1287 | return; |
| 1288 | } |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 1289 | nfs_fattr_init(calldata->res.fattr); |
Trond Myklebust | 45328c3 | 2007-07-26 17:47:34 -0400 | [diff] [blame] | 1290 | if (test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE]; |
Trond Myklebust | 45328c3 | 2007-07-26 17:47:34 -0400 | [diff] [blame] | 1292 | calldata->arg.open_flags = FMODE_READ; |
| 1293 | } else if (test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0) { |
| 1294 | msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE]; |
| 1295 | calldata->arg.open_flags = FMODE_WRITE; |
| 1296 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 1297 | calldata->timestamp = jiffies; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1298 | rpc_call_setup(task, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | } |
| 1300 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1301 | static const struct rpc_call_ops nfs4_close_ops = { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 1302 | .rpc_call_prepare = nfs4_close_prepare, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 1303 | .rpc_call_done = nfs4_close_done, |
| 1304 | .rpc_release = nfs4_free_closedata, |
| 1305 | }; |
| 1306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | /* |
| 1308 | * It is possible for data to be read/written from a mem-mapped file |
| 1309 | * after the sys_close call (which hits the vfs layer as a flush). |
| 1310 | * This means that we can't safely call nfsv4 close on a file until |
| 1311 | * the inode is cleared. This in turn means that we are not good |
| 1312 | * NFSv4 citizens - we do not indicate to the server to update the file's |
| 1313 | * share state even when we are done with one of the three share |
| 1314 | * stateid's in the inode. |
| 1315 | * |
| 1316 | * NOTE: Caller must be holding the sp->so_owner semaphore! |
| 1317 | */ |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1318 | int nfs4_do_close(struct path *path, struct nfs4_state *state, int wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | { |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1320 | struct nfs_server *server = NFS_SERVER(state->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | struct nfs4_closedata *calldata; |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 1322 | struct nfs4_state_owner *sp = state->owner; |
| 1323 | struct rpc_task *task; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1324 | struct rpc_task_setup task_setup_data = { |
| 1325 | .rpc_client = server->client, |
| 1326 | .callback_ops = &nfs4_close_ops, |
| 1327 | .flags = RPC_TASK_ASYNC, |
| 1328 | }; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1329 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1331 | calldata = kmalloc(sizeof(*calldata), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | if (calldata == NULL) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1333 | goto out; |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1334 | calldata->inode = state->inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | calldata->state = state; |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1336 | calldata->arg.fh = NFS_FH(state->inode); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1337 | calldata->arg.stateid = &state->open_stateid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | /* Serialization for the sequence id */ |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1339 | calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1340 | if (calldata->arg.seqid == NULL) |
| 1341 | goto out_free_calldata; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 1342 | calldata->arg.bitmask = server->attr_bitmask; |
| 1343 | calldata->res.fattr = &calldata->fattr; |
| 1344 | calldata->res.server = server; |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1345 | calldata->path.mnt = mntget(path->mnt); |
| 1346 | calldata->path.dentry = dget(path->dentry); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1347 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1348 | task_setup_data.callback_data = calldata; |
| 1349 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 1350 | if (IS_ERR(task)) |
| 1351 | return PTR_ERR(task); |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1352 | status = 0; |
| 1353 | if (wait) |
| 1354 | status = rpc_wait_for_completion_task(task); |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 1355 | rpc_put_task(task); |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1356 | return status; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1357 | out_free_calldata: |
| 1358 | kfree(calldata); |
| 1359 | out: |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 1360 | nfs4_put_open_state(state); |
| 1361 | nfs4_put_state_owner(sp); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 1362 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | } |
| 1364 | |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1365 | static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state) |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1366 | { |
| 1367 | struct file *filp; |
Trond Myklebust | 1b45c46 | 2007-07-03 13:04:56 -0400 | [diff] [blame] | 1368 | int ret; |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1369 | |
Trond Myklebust | 1b45c46 | 2007-07-03 13:04:56 -0400 | [diff] [blame] | 1370 | /* If the open_intent is for execute, we have an extra check to make */ |
| 1371 | if (nd->intent.open.flags & FMODE_EXEC) { |
Trond Myklebust | af22f94 | 2007-08-10 17:45:10 -0400 | [diff] [blame] | 1372 | ret = nfs_may_open(state->inode, |
Trond Myklebust | 1b45c46 | 2007-07-03 13:04:56 -0400 | [diff] [blame] | 1373 | state->owner->so_cred, |
| 1374 | nd->intent.open.flags); |
| 1375 | if (ret < 0) |
| 1376 | goto out_close; |
| 1377 | } |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1378 | filp = lookup_instantiate_filp(nd, path->dentry, NULL); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1379 | if (!IS_ERR(filp)) { |
| 1380 | struct nfs_open_context *ctx; |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 1381 | ctx = nfs_file_open_context(filp); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1382 | ctx->state = state; |
Trond Myklebust | 95cf959 | 2006-04-18 13:14:06 -0400 | [diff] [blame] | 1383 | return 0; |
| 1384 | } |
Trond Myklebust | 1b45c46 | 2007-07-03 13:04:56 -0400 | [diff] [blame] | 1385 | ret = PTR_ERR(filp); |
| 1386 | out_close: |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1387 | nfs4_close_sync(path, state, nd->intent.open.flags); |
Trond Myklebust | 1b45c46 | 2007-07-03 13:04:56 -0400 | [diff] [blame] | 1388 | return ret; |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
| 1391 | struct dentry * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd) |
| 1393 | { |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 1394 | struct dentry *parent; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1395 | struct path path = { |
| 1396 | .mnt = nd->mnt, |
| 1397 | .dentry = dentry, |
| 1398 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | struct iattr attr; |
| 1400 | struct rpc_cred *cred; |
| 1401 | struct nfs4_state *state; |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1402 | struct dentry *res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | |
| 1404 | if (nd->flags & LOOKUP_CREATE) { |
| 1405 | attr.ia_mode = nd->intent.open.create_mode; |
| 1406 | attr.ia_valid = ATTR_MODE; |
| 1407 | if (!IS_POSIXACL(dir)) |
| 1408 | attr.ia_mode &= ~current->fs->umask; |
| 1409 | } else { |
| 1410 | attr.ia_valid = 0; |
| 1411 | BUG_ON(nd->intent.open.flags & O_CREAT); |
| 1412 | } |
| 1413 | |
David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1414 | cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | if (IS_ERR(cred)) |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1416 | return (struct dentry *)cred; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 1417 | parent = dentry->d_parent; |
| 1418 | /* Protect against concurrent sillydeletes */ |
| 1419 | nfs_block_sillyrename(parent); |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1420 | state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | put_rpccred(cred); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1422 | if (IS_ERR(state)) { |
Trond Myklebust | d75340c | 2007-10-01 21:42:01 -0400 | [diff] [blame] | 1423 | if (PTR_ERR(state) == -ENOENT) { |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1424 | d_add(dentry, NULL); |
Trond Myklebust | d75340c | 2007-10-01 21:42:01 -0400 | [diff] [blame] | 1425 | nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); |
| 1426 | } |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 1427 | nfs_unblock_sillyrename(parent); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1428 | return (struct dentry *)state; |
| 1429 | } |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1430 | res = d_add_unique(dentry, igrab(state->inode)); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1431 | if (res != NULL) |
Trond Myklebust | deee936 | 2007-08-27 11:33:00 -0400 | [diff] [blame] | 1432 | path.dentry = res; |
Trond Myklebust | d75340c | 2007-10-01 21:42:01 -0400 | [diff] [blame] | 1433 | nfs_set_verifier(path.dentry, nfs_save_change_attribute(dir)); |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 1434 | nfs_unblock_sillyrename(parent); |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1435 | nfs4_intent_set_file(nd, &path, state); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1436 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | } |
| 1438 | |
| 1439 | int |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1440 | nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | { |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1442 | struct path path = { |
| 1443 | .mnt = nd->mnt, |
| 1444 | .dentry = dentry, |
| 1445 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | struct rpc_cred *cred; |
| 1447 | struct nfs4_state *state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | |
David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1449 | cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | if (IS_ERR(cred)) |
| 1451 | return PTR_ERR(cred); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1452 | state = nfs4_do_open(dir, &path, openflags, NULL, cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | put_rpccred(cred); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1454 | if (IS_ERR(state)) { |
| 1455 | switch (PTR_ERR(state)) { |
| 1456 | case -EPERM: |
| 1457 | case -EACCES: |
| 1458 | case -EDQUOT: |
| 1459 | case -ENOSPC: |
| 1460 | case -EROFS: |
| 1461 | lookup_instantiate_filp(nd, (struct dentry *)state, NULL); |
| 1462 | return 1; |
Chuck Lever | b87c0ad | 2006-10-19 23:28:42 -0700 | [diff] [blame] | 1463 | default: |
| 1464 | goto out_drop; |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1465 | } |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1466 | } |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1467 | if (state->inode == dentry->d_inode) { |
Trond Myklebust | d75340c | 2007-10-01 21:42:01 -0400 | [diff] [blame] | 1468 | nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1469 | nfs4_intent_set_file(nd, &path, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | return 1; |
| 1471 | } |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1472 | nfs4_close_sync(&path, state, openflags); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1473 | out_drop: |
| 1474 | d_drop(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | return 0; |
| 1476 | } |
| 1477 | |
| 1478 | |
| 1479 | static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
| 1480 | { |
| 1481 | struct nfs4_server_caps_res res = {}; |
| 1482 | struct rpc_message msg = { |
| 1483 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], |
| 1484 | .rpc_argp = fhandle, |
| 1485 | .rpc_resp = &res, |
| 1486 | }; |
| 1487 | int status; |
| 1488 | |
| 1489 | status = rpc_call_sync(server->client, &msg, 0); |
| 1490 | if (status == 0) { |
| 1491 | memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask)); |
| 1492 | if (res.attr_bitmask[0] & FATTR4_WORD0_ACL) |
| 1493 | server->caps |= NFS_CAP_ACLS; |
| 1494 | if (res.has_links != 0) |
| 1495 | server->caps |= NFS_CAP_HARDLINKS; |
| 1496 | if (res.has_symlinks != 0) |
| 1497 | server->caps |= NFS_CAP_SYMLINKS; |
| 1498 | server->acl_bitmask = res.acl_bitmask; |
| 1499 | } |
| 1500 | return status; |
| 1501 | } |
| 1502 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 1503 | int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | { |
| 1505 | struct nfs4_exception exception = { }; |
| 1506 | int err; |
| 1507 | do { |
| 1508 | err = nfs4_handle_exception(server, |
| 1509 | _nfs4_server_capabilities(server, fhandle), |
| 1510 | &exception); |
| 1511 | } while (exception.retry); |
| 1512 | return err; |
| 1513 | } |
| 1514 | |
| 1515 | static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 1516 | struct nfs_fsinfo *info) |
| 1517 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | struct nfs4_lookup_root_arg args = { |
| 1519 | .bitmask = nfs4_fattr_bitmap, |
| 1520 | }; |
| 1521 | struct nfs4_lookup_res res = { |
| 1522 | .server = server, |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1523 | .fattr = info->fattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | .fh = fhandle, |
| 1525 | }; |
| 1526 | struct rpc_message msg = { |
| 1527 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT], |
| 1528 | .rpc_argp = &args, |
| 1529 | .rpc_resp = &res, |
| 1530 | }; |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1531 | nfs_fattr_init(info->fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | return rpc_call_sync(server->client, &msg, 0); |
| 1533 | } |
| 1534 | |
| 1535 | static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 1536 | struct nfs_fsinfo *info) |
| 1537 | { |
| 1538 | struct nfs4_exception exception = { }; |
| 1539 | int err; |
| 1540 | do { |
| 1541 | err = nfs4_handle_exception(server, |
| 1542 | _nfs4_lookup_root(server, fhandle, info), |
| 1543 | &exception); |
| 1544 | } while (exception.retry); |
| 1545 | return err; |
| 1546 | } |
| 1547 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1548 | /* |
| 1549 | * get the file handle for the "/" directory on the server |
| 1550 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle, |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1552 | struct nfs_fsinfo *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | int status; |
| 1555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | status = nfs4_lookup_root(server, fhandle, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | if (status == 0) |
| 1558 | status = nfs4_server_capabilities(server, fhandle); |
| 1559 | if (status == 0) |
| 1560 | status = nfs4_do_fsinfo(server, fhandle, info); |
Trond Myklebust | c12e87f | 2006-03-13 21:20:47 -0800 | [diff] [blame] | 1561 | return nfs4_map_errors(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | } |
| 1563 | |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 1564 | /* |
| 1565 | * Get locations and (maybe) other attributes of a referral. |
| 1566 | * Note that we'll actually follow the referral later when |
| 1567 | * we detect fsid mismatch in inode revalidation |
| 1568 | */ |
Trond Myklebust | 56659e9 | 2007-07-17 21:52:39 -0400 | [diff] [blame] | 1569 | static int nfs4_get_referral(struct inode *dir, const struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle) |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 1570 | { |
| 1571 | int status = -ENOMEM; |
| 1572 | struct page *page = NULL; |
| 1573 | struct nfs4_fs_locations *locations = NULL; |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 1574 | |
| 1575 | page = alloc_page(GFP_KERNEL); |
| 1576 | if (page == NULL) |
| 1577 | goto out; |
| 1578 | locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL); |
| 1579 | if (locations == NULL) |
| 1580 | goto out; |
| 1581 | |
Trond Myklebust | c228fd3 | 2007-01-13 02:28:11 -0500 | [diff] [blame] | 1582 | status = nfs4_proc_fs_locations(dir, name, locations, page); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 1583 | if (status != 0) |
| 1584 | goto out; |
| 1585 | /* Make sure server returned a different fsid for the referral */ |
| 1586 | if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) { |
| 1587 | dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name); |
| 1588 | status = -EIO; |
| 1589 | goto out; |
| 1590 | } |
| 1591 | |
| 1592 | memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr)); |
| 1593 | fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL; |
| 1594 | if (!fattr->mode) |
| 1595 | fattr->mode = S_IFDIR; |
| 1596 | memset(fhandle, 0, sizeof(struct nfs_fh)); |
| 1597 | out: |
| 1598 | if (page) |
| 1599 | __free_page(page); |
| 1600 | if (locations) |
| 1601 | kfree(locations); |
| 1602 | return status; |
| 1603 | } |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 1606 | { |
| 1607 | struct nfs4_getattr_arg args = { |
| 1608 | .fh = fhandle, |
| 1609 | .bitmask = server->attr_bitmask, |
| 1610 | }; |
| 1611 | struct nfs4_getattr_res res = { |
| 1612 | .fattr = fattr, |
| 1613 | .server = server, |
| 1614 | }; |
| 1615 | struct rpc_message msg = { |
| 1616 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], |
| 1617 | .rpc_argp = &args, |
| 1618 | .rpc_resp = &res, |
| 1619 | }; |
| 1620 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1621 | nfs_fattr_init(fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | return rpc_call_sync(server->client, &msg, 0); |
| 1623 | } |
| 1624 | |
| 1625 | static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 1626 | { |
| 1627 | struct nfs4_exception exception = { }; |
| 1628 | int err; |
| 1629 | do { |
| 1630 | err = nfs4_handle_exception(server, |
| 1631 | _nfs4_proc_getattr(server, fhandle, fattr), |
| 1632 | &exception); |
| 1633 | } while (exception.retry); |
| 1634 | return err; |
| 1635 | } |
| 1636 | |
| 1637 | /* |
| 1638 | * The file is not closed if it is opened due to the a request to change |
| 1639 | * the size of the file. The open call will not be needed once the |
| 1640 | * VFS layer lookup-intents are implemented. |
| 1641 | * |
| 1642 | * Close is called when the inode is destroyed. |
| 1643 | * If we haven't opened the file for O_WRONLY, we |
| 1644 | * need to in the size_change case to obtain a stateid. |
| 1645 | * |
| 1646 | * Got race? |
| 1647 | * Because OPEN is always done by name in nfsv4, it is |
| 1648 | * possible that we opened a different file by the same |
| 1649 | * name. We can recognize this race condition, but we |
| 1650 | * can't do anything about it besides returning an error. |
| 1651 | * |
| 1652 | * This will be fixed with VFS changes (lookup-intent). |
| 1653 | */ |
| 1654 | static int |
| 1655 | nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, |
| 1656 | struct iattr *sattr) |
| 1657 | { |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1658 | struct rpc_cred *cred; |
| 1659 | struct inode *inode = dentry->d_inode; |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 1660 | struct nfs_open_context *ctx; |
| 1661 | struct nfs4_state *state = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | int status; |
| 1663 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 1664 | nfs_fattr_init(fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | |
David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1666 | cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0); |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1667 | if (IS_ERR(cred)) |
| 1668 | return PTR_ERR(cred); |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 1669 | |
| 1670 | /* Search for an existing open(O_WRITE) file */ |
| 1671 | ctx = nfs_find_open_context(inode, cred, FMODE_WRITE); |
| 1672 | if (ctx != NULL) |
| 1673 | state = ctx->state; |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1674 | |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1675 | status = nfs4_do_setattr(inode, fattr, sattr, state); |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 1676 | if (status == 0) |
| 1677 | nfs_setattr_update_inode(inode, sattr); |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 1678 | if (ctx != NULL) |
| 1679 | put_nfs_open_context(ctx); |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1680 | put_rpccred(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | return status; |
| 1682 | } |
| 1683 | |
Trond Myklebust | 56659e9 | 2007-07-17 21:52:39 -0400 | [diff] [blame] | 1684 | static int _nfs4_proc_lookupfh(struct nfs_server *server, const struct nfs_fh *dirfh, |
| 1685 | const struct qstr *name, struct nfs_fh *fhandle, |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1686 | struct nfs_fattr *fattr) |
| 1687 | { |
| 1688 | int status; |
| 1689 | struct nfs4_lookup_arg args = { |
| 1690 | .bitmask = server->attr_bitmask, |
| 1691 | .dir_fh = dirfh, |
| 1692 | .name = name, |
| 1693 | }; |
| 1694 | struct nfs4_lookup_res res = { |
| 1695 | .server = server, |
| 1696 | .fattr = fattr, |
| 1697 | .fh = fhandle, |
| 1698 | }; |
| 1699 | struct rpc_message msg = { |
| 1700 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP], |
| 1701 | .rpc_argp = &args, |
| 1702 | .rpc_resp = &res, |
| 1703 | }; |
| 1704 | |
| 1705 | nfs_fattr_init(fattr); |
| 1706 | |
| 1707 | dprintk("NFS call lookupfh %s\n", name->name); |
| 1708 | status = rpc_call_sync(server->client, &msg, 0); |
| 1709 | dprintk("NFS reply lookupfh: %d\n", status); |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1710 | return status; |
| 1711 | } |
| 1712 | |
| 1713 | static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh, |
| 1714 | struct qstr *name, struct nfs_fh *fhandle, |
| 1715 | struct nfs_fattr *fattr) |
| 1716 | { |
| 1717 | struct nfs4_exception exception = { }; |
| 1718 | int err; |
| 1719 | do { |
Trond Myklebust | 4e56e08 | 2007-07-01 18:13:52 -0400 | [diff] [blame] | 1720 | err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr); |
| 1721 | /* FIXME: !!!! */ |
| 1722 | if (err == -NFS4ERR_MOVED) { |
| 1723 | err = -EREMOTE; |
| 1724 | break; |
| 1725 | } |
| 1726 | err = nfs4_handle_exception(server, err, &exception); |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1727 | } while (exception.retry); |
| 1728 | return err; |
| 1729 | } |
| 1730 | |
Trond Myklebust | 56659e9 | 2007-07-17 21:52:39 -0400 | [diff] [blame] | 1731 | static int _nfs4_proc_lookup(struct inode *dir, const struct qstr *name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 1733 | { |
Trond Myklebust | 4e56e08 | 2007-07-01 18:13:52 -0400 | [diff] [blame] | 1734 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | |
| 1736 | dprintk("NFS call lookup %s\n", name->name); |
Trond Myklebust | 4e56e08 | 2007-07-01 18:13:52 -0400 | [diff] [blame] | 1737 | status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 1738 | if (status == -NFS4ERR_MOVED) |
| 1739 | status = nfs4_get_referral(dir, name, fattr, fhandle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | dprintk("NFS reply lookup: %d\n", status); |
| 1741 | return status; |
| 1742 | } |
| 1743 | |
| 1744 | static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 1745 | { |
| 1746 | struct nfs4_exception exception = { }; |
| 1747 | int err; |
| 1748 | do { |
| 1749 | err = nfs4_handle_exception(NFS_SERVER(dir), |
| 1750 | _nfs4_proc_lookup(dir, name, fhandle, fattr), |
| 1751 | &exception); |
| 1752 | } while (exception.retry); |
| 1753 | return err; |
| 1754 | } |
| 1755 | |
| 1756 | static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 1757 | { |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 1758 | struct nfs_server *server = NFS_SERVER(inode); |
| 1759 | struct nfs_fattr fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | struct nfs4_accessargs args = { |
| 1761 | .fh = NFS_FH(inode), |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 1762 | .bitmask = server->attr_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | }; |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 1764 | struct nfs4_accessres res = { |
| 1765 | .server = server, |
| 1766 | .fattr = &fattr, |
| 1767 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | struct rpc_message msg = { |
| 1769 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS], |
| 1770 | .rpc_argp = &args, |
| 1771 | .rpc_resp = &res, |
| 1772 | .rpc_cred = entry->cred, |
| 1773 | }; |
| 1774 | int mode = entry->mask; |
| 1775 | int status; |
| 1776 | |
| 1777 | /* |
| 1778 | * Determine which access bits we want to ask for... |
| 1779 | */ |
| 1780 | if (mode & MAY_READ) |
| 1781 | args.access |= NFS4_ACCESS_READ; |
| 1782 | if (S_ISDIR(inode->i_mode)) { |
| 1783 | if (mode & MAY_WRITE) |
| 1784 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE; |
| 1785 | if (mode & MAY_EXEC) |
| 1786 | args.access |= NFS4_ACCESS_LOOKUP; |
| 1787 | } else { |
| 1788 | if (mode & MAY_WRITE) |
| 1789 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND; |
| 1790 | if (mode & MAY_EXEC) |
| 1791 | args.access |= NFS4_ACCESS_EXECUTE; |
| 1792 | } |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 1793 | nfs_fattr_init(&fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
| 1795 | if (!status) { |
| 1796 | entry->mask = 0; |
| 1797 | if (res.access & NFS4_ACCESS_READ) |
| 1798 | entry->mask |= MAY_READ; |
| 1799 | if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE)) |
| 1800 | entry->mask |= MAY_WRITE; |
| 1801 | if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE)) |
| 1802 | entry->mask |= MAY_EXEC; |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 1803 | nfs_refresh_inode(inode, &fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | } |
| 1805 | return status; |
| 1806 | } |
| 1807 | |
| 1808 | static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 1809 | { |
| 1810 | struct nfs4_exception exception = { }; |
| 1811 | int err; |
| 1812 | do { |
| 1813 | err = nfs4_handle_exception(NFS_SERVER(inode), |
| 1814 | _nfs4_proc_access(inode, entry), |
| 1815 | &exception); |
| 1816 | } while (exception.retry); |
| 1817 | return err; |
| 1818 | } |
| 1819 | |
| 1820 | /* |
| 1821 | * TODO: For the time being, we don't try to get any attributes |
| 1822 | * along with any of the zero-copy operations READ, READDIR, |
| 1823 | * READLINK, WRITE. |
| 1824 | * |
| 1825 | * In the case of the first three, we want to put the GETATTR |
| 1826 | * after the read-type operation -- this is because it is hard |
| 1827 | * to predict the length of a GETATTR response in v4, and thus |
| 1828 | * align the READ data correctly. This means that the GETATTR |
| 1829 | * may end up partially falling into the page cache, and we should |
| 1830 | * shift it into the 'tail' of the xdr_buf before processing. |
| 1831 | * To do this efficiently, we need to know the total length |
| 1832 | * of data received, which doesn't seem to be available outside |
| 1833 | * of the RPC layer. |
| 1834 | * |
| 1835 | * In the case of WRITE, we also want to put the GETATTR after |
| 1836 | * the operation -- in this case because we want to make sure |
| 1837 | * we get the post-operation mtime and size. This means that |
| 1838 | * we can't use xdr_encode_pages() as written: we need a variant |
| 1839 | * of it which would leave room in the 'tail' iovec. |
| 1840 | * |
| 1841 | * Both of these changes to the XDR layer would in fact be quite |
| 1842 | * minor, but I decided to leave them for a subsequent patch. |
| 1843 | */ |
| 1844 | static int _nfs4_proc_readlink(struct inode *inode, struct page *page, |
| 1845 | unsigned int pgbase, unsigned int pglen) |
| 1846 | { |
| 1847 | struct nfs4_readlink args = { |
| 1848 | .fh = NFS_FH(inode), |
| 1849 | .pgbase = pgbase, |
| 1850 | .pglen = pglen, |
| 1851 | .pages = &page, |
| 1852 | }; |
| 1853 | struct rpc_message msg = { |
| 1854 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK], |
| 1855 | .rpc_argp = &args, |
| 1856 | .rpc_resp = NULL, |
| 1857 | }; |
| 1858 | |
| 1859 | return rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
| 1860 | } |
| 1861 | |
| 1862 | static int nfs4_proc_readlink(struct inode *inode, struct page *page, |
| 1863 | unsigned int pgbase, unsigned int pglen) |
| 1864 | { |
| 1865 | struct nfs4_exception exception = { }; |
| 1866 | int err; |
| 1867 | do { |
| 1868 | err = nfs4_handle_exception(NFS_SERVER(inode), |
| 1869 | _nfs4_proc_readlink(inode, page, pgbase, pglen), |
| 1870 | &exception); |
| 1871 | } while (exception.retry); |
| 1872 | return err; |
| 1873 | } |
| 1874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | /* |
| 1876 | * Got race? |
| 1877 | * We will need to arrange for the VFS layer to provide an atomic open. |
| 1878 | * Until then, this create/open method is prone to inefficiency and race |
| 1879 | * conditions due to the lookup, create, and open VFS calls from sys_open() |
| 1880 | * placed on the wire. |
| 1881 | * |
| 1882 | * Given the above sorry state of affairs, I'm simply sending an OPEN. |
| 1883 | * The file will be opened again in the subsequent VFS open call |
| 1884 | * (nfs4_proc_file_open). |
| 1885 | * |
| 1886 | * The open for read will just hang around to be used by any process that |
| 1887 | * opens the file O_RDONLY. This will all be resolved with the VFS changes. |
| 1888 | */ |
| 1889 | |
| 1890 | static int |
| 1891 | nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1892 | int flags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1894 | struct path path = { |
| 1895 | .mnt = nd->mnt, |
| 1896 | .dentry = dentry, |
| 1897 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | struct nfs4_state *state; |
| 1899 | struct rpc_cred *cred; |
| 1900 | int status = 0; |
| 1901 | |
David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 1902 | cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | if (IS_ERR(cred)) { |
| 1904 | status = PTR_ERR(cred); |
| 1905 | goto out; |
| 1906 | } |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1907 | state = nfs4_do_open(dir, &path, flags, sattr, cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | put_rpccred(cred); |
Trond Myklebust | d4d9cdc | 2007-10-02 18:38:53 -0400 | [diff] [blame] | 1909 | d_drop(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | if (IS_ERR(state)) { |
| 1911 | status = PTR_ERR(state); |
| 1912 | goto out; |
| 1913 | } |
Trond Myklebust | d4d9cdc | 2007-10-02 18:38:53 -0400 | [diff] [blame] | 1914 | d_add(dentry, igrab(state->inode)); |
Trond Myklebust | d75340c | 2007-10-01 21:42:01 -0400 | [diff] [blame] | 1915 | nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | if (flags & O_EXCL) { |
| 1917 | struct nfs_fattr fattr; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 1918 | status = nfs4_do_setattr(state->inode, &fattr, sattr, state); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1919 | if (status == 0) |
Trond Myklebust | 65e4308 | 2005-08-16 11:49:44 -0400 | [diff] [blame] | 1920 | nfs_setattr_update_inode(state->inode, sattr); |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 1921 | nfs_post_op_update_inode(state->inode, &fattr); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1922 | } |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1923 | if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0) |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 1924 | status = nfs4_intent_set_file(nd, &path, state); |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 1925 | else |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 1926 | nfs4_close_sync(&path, state, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | out: |
| 1928 | return status; |
| 1929 | } |
| 1930 | |
| 1931 | static int _nfs4_proc_remove(struct inode *dir, struct qstr *name) |
| 1932 | { |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1933 | struct nfs_server *server = NFS_SERVER(dir); |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1934 | struct nfs_removeargs args = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | .fh = NFS_FH(dir), |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1936 | .name.len = name->len, |
| 1937 | .name.name = name->name, |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1938 | .bitmask = server->attr_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | }; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1940 | struct nfs_removeres res = { |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1941 | .server = server, |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1942 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | struct rpc_message msg = { |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1944 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE], |
| 1945 | .rpc_argp = &args, |
| 1946 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | }; |
| 1948 | int status; |
| 1949 | |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1950 | nfs_fattr_init(&res.dir_attr); |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1951 | status = rpc_call_sync(server->client, &msg, 0); |
| 1952 | if (status == 0) { |
| 1953 | update_changeattr(dir, &res.cinfo); |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 1954 | nfs_post_op_update_inode(dir, &res.dir_attr); |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 1955 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | return status; |
| 1957 | } |
| 1958 | |
| 1959 | static int nfs4_proc_remove(struct inode *dir, struct qstr *name) |
| 1960 | { |
| 1961 | struct nfs4_exception exception = { }; |
| 1962 | int err; |
| 1963 | do { |
| 1964 | err = nfs4_handle_exception(NFS_SERVER(dir), |
| 1965 | _nfs4_proc_remove(dir, name), |
| 1966 | &exception); |
| 1967 | } while (exception.retry); |
| 1968 | return err; |
| 1969 | } |
| 1970 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1971 | static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1973 | struct nfs_server *server = NFS_SERVER(dir); |
| 1974 | struct nfs_removeargs *args = msg->rpc_argp; |
| 1975 | struct nfs_removeres *res = msg->rpc_resp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1977 | args->bitmask = server->attr_bitmask; |
| 1978 | res->server = server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | } |
| 1981 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1982 | static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 1984 | struct nfs_removeres *res = task->tk_msg.rpc_resp; |
| 1985 | |
| 1986 | if (nfs4_async_handle_error(task, res->server) == -EAGAIN) |
| 1987 | return 0; |
| 1988 | update_changeattr(dir, &res->cinfo); |
| 1989 | nfs_post_op_update_inode(dir, &res->dir_attr); |
| 1990 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | } |
| 1992 | |
| 1993 | static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name, |
| 1994 | struct inode *new_dir, struct qstr *new_name) |
| 1995 | { |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 1996 | struct nfs_server *server = NFS_SERVER(old_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | struct nfs4_rename_arg arg = { |
| 1998 | .old_dir = NFS_FH(old_dir), |
| 1999 | .new_dir = NFS_FH(new_dir), |
| 2000 | .old_name = old_name, |
| 2001 | .new_name = new_name, |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 2002 | .bitmask = server->attr_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | }; |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 2004 | struct nfs_fattr old_fattr, new_fattr; |
| 2005 | struct nfs4_rename_res res = { |
| 2006 | .server = server, |
| 2007 | .old_fattr = &old_fattr, |
| 2008 | .new_fattr = &new_fattr, |
| 2009 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | struct rpc_message msg = { |
| 2011 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME], |
| 2012 | .rpc_argp = &arg, |
| 2013 | .rpc_resp = &res, |
| 2014 | }; |
| 2015 | int status; |
| 2016 | |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 2017 | nfs_fattr_init(res.old_fattr); |
| 2018 | nfs_fattr_init(res.new_fattr); |
| 2019 | status = rpc_call_sync(server->client, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | |
| 2021 | if (!status) { |
| 2022 | update_changeattr(old_dir, &res.old_cinfo); |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 2023 | nfs_post_op_update_inode(old_dir, res.old_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | update_changeattr(new_dir, &res.new_cinfo); |
Trond Myklebust | 6caf2c8 | 2005-10-27 22:12:43 -0400 | [diff] [blame] | 2025 | nfs_post_op_update_inode(new_dir, res.new_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | } |
| 2027 | return status; |
| 2028 | } |
| 2029 | |
| 2030 | static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name, |
| 2031 | struct inode *new_dir, struct qstr *new_name) |
| 2032 | { |
| 2033 | struct nfs4_exception exception = { }; |
| 2034 | int err; |
| 2035 | do { |
| 2036 | err = nfs4_handle_exception(NFS_SERVER(old_dir), |
| 2037 | _nfs4_proc_rename(old_dir, old_name, |
| 2038 | new_dir, new_name), |
| 2039 | &exception); |
| 2040 | } while (exception.retry); |
| 2041 | return err; |
| 2042 | } |
| 2043 | |
| 2044 | static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) |
| 2045 | { |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2046 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | struct nfs4_link_arg arg = { |
| 2048 | .fh = NFS_FH(inode), |
| 2049 | .dir_fh = NFS_FH(dir), |
| 2050 | .name = name, |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2051 | .bitmask = server->attr_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | }; |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2053 | struct nfs_fattr fattr, dir_attr; |
| 2054 | struct nfs4_link_res res = { |
| 2055 | .server = server, |
| 2056 | .fattr = &fattr, |
| 2057 | .dir_attr = &dir_attr, |
| 2058 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | struct rpc_message msg = { |
| 2060 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK], |
| 2061 | .rpc_argp = &arg, |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2062 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | }; |
| 2064 | int status; |
| 2065 | |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2066 | nfs_fattr_init(res.fattr); |
| 2067 | nfs_fattr_init(res.dir_attr); |
| 2068 | status = rpc_call_sync(server->client, &msg, 0); |
| 2069 | if (!status) { |
| 2070 | update_changeattr(dir, &res.cinfo); |
| 2071 | nfs_post_op_update_inode(dir, res.dir_attr); |
Trond Myklebust | 73a3d07 | 2006-05-25 01:40:47 -0400 | [diff] [blame] | 2072 | nfs_post_op_update_inode(inode, res.fattr); |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 2073 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | |
| 2075 | return status; |
| 2076 | } |
| 2077 | |
| 2078 | static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name) |
| 2079 | { |
| 2080 | struct nfs4_exception exception = { }; |
| 2081 | int err; |
| 2082 | do { |
| 2083 | err = nfs4_handle_exception(NFS_SERVER(inode), |
| 2084 | _nfs4_proc_link(inode, dir, name), |
| 2085 | &exception); |
| 2086 | } while (exception.retry); |
| 2087 | return err; |
| 2088 | } |
| 2089 | |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2090 | static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 2091 | struct page *page, unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | { |
| 2093 | struct nfs_server *server = NFS_SERVER(dir); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2094 | struct nfs_fh fhandle; |
| 2095 | struct nfs_fattr fattr, dir_fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | struct nfs4_create_arg arg = { |
| 2097 | .dir_fh = NFS_FH(dir), |
| 2098 | .server = server, |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2099 | .name = &dentry->d_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | .attrs = sattr, |
| 2101 | .ftype = NF4LNK, |
| 2102 | .bitmask = server->attr_bitmask, |
| 2103 | }; |
| 2104 | struct nfs4_create_res res = { |
| 2105 | .server = server, |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2106 | .fh = &fhandle, |
| 2107 | .fattr = &fattr, |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2108 | .dir_fattr = &dir_fattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | }; |
| 2110 | struct rpc_message msg = { |
| 2111 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK], |
| 2112 | .rpc_argp = &arg, |
| 2113 | .rpc_resp = &res, |
| 2114 | }; |
| 2115 | int status; |
| 2116 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 2117 | if (len > NFS4_MAXPATHLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | return -ENAMETOOLONG; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2119 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 2120 | arg.u.symlink.pages = &page; |
| 2121 | arg.u.symlink.len = len; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2122 | nfs_fattr_init(&fattr); |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2123 | nfs_fattr_init(&dir_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | |
| 2125 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2126 | if (!status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | update_changeattr(dir, &res.dir_cinfo); |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2128 | nfs_post_op_update_inode(dir, res.dir_fattr); |
| 2129 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 2130 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | return status; |
| 2132 | } |
| 2133 | |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 2134 | static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 2135 | struct page *page, unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | { |
| 2137 | struct nfs4_exception exception = { }; |
| 2138 | int err; |
| 2139 | do { |
| 2140 | err = nfs4_handle_exception(NFS_SERVER(dir), |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 2141 | _nfs4_proc_symlink(dir, dentry, page, |
| 2142 | len, sattr), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | &exception); |
| 2144 | } while (exception.retry); |
| 2145 | return err; |
| 2146 | } |
| 2147 | |
| 2148 | static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, |
| 2149 | struct iattr *sattr) |
| 2150 | { |
| 2151 | struct nfs_server *server = NFS_SERVER(dir); |
| 2152 | struct nfs_fh fhandle; |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2153 | struct nfs_fattr fattr, dir_fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | struct nfs4_create_arg arg = { |
| 2155 | .dir_fh = NFS_FH(dir), |
| 2156 | .server = server, |
| 2157 | .name = &dentry->d_name, |
| 2158 | .attrs = sattr, |
| 2159 | .ftype = NF4DIR, |
| 2160 | .bitmask = server->attr_bitmask, |
| 2161 | }; |
| 2162 | struct nfs4_create_res res = { |
| 2163 | .server = server, |
| 2164 | .fh = &fhandle, |
| 2165 | .fattr = &fattr, |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2166 | .dir_fattr = &dir_fattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | }; |
| 2168 | struct rpc_message msg = { |
| 2169 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE], |
| 2170 | .rpc_argp = &arg, |
| 2171 | .rpc_resp = &res, |
| 2172 | }; |
| 2173 | int status; |
| 2174 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 2175 | nfs_fattr_init(&fattr); |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2176 | nfs_fattr_init(&dir_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | |
| 2178 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
| 2179 | if (!status) { |
| 2180 | update_changeattr(dir, &res.dir_cinfo); |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2181 | nfs_post_op_update_inode(dir, res.dir_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | status = nfs_instantiate(dentry, &fhandle, &fattr); |
| 2183 | } |
| 2184 | return status; |
| 2185 | } |
| 2186 | |
| 2187 | static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, |
| 2188 | struct iattr *sattr) |
| 2189 | { |
| 2190 | struct nfs4_exception exception = { }; |
| 2191 | int err; |
| 2192 | do { |
| 2193 | err = nfs4_handle_exception(NFS_SERVER(dir), |
| 2194 | _nfs4_proc_mkdir(dir, dentry, sattr), |
| 2195 | &exception); |
| 2196 | } while (exception.retry); |
| 2197 | return err; |
| 2198 | } |
| 2199 | |
| 2200 | static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
| 2201 | u64 cookie, struct page *page, unsigned int count, int plus) |
| 2202 | { |
| 2203 | struct inode *dir = dentry->d_inode; |
| 2204 | struct nfs4_readdir_arg args = { |
| 2205 | .fh = NFS_FH(dir), |
| 2206 | .pages = &page, |
| 2207 | .pgbase = 0, |
| 2208 | .count = count, |
| 2209 | .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask, |
| 2210 | }; |
| 2211 | struct nfs4_readdir_res res; |
| 2212 | struct rpc_message msg = { |
| 2213 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR], |
| 2214 | .rpc_argp = &args, |
| 2215 | .rpc_resp = &res, |
| 2216 | .rpc_cred = cred, |
| 2217 | }; |
| 2218 | int status; |
| 2219 | |
Trond Myklebust | eadf459 | 2005-06-22 17:16:39 +0000 | [diff] [blame] | 2220 | dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__, |
| 2221 | dentry->d_parent->d_name.name, |
| 2222 | dentry->d_name.name, |
| 2223 | (unsigned long long)cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args); |
| 2225 | res.pgbase = args.pgbase; |
| 2226 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
| 2227 | if (status == 0) |
| 2228 | memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE); |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 2229 | |
| 2230 | nfs_invalidate_atime(dir); |
| 2231 | |
Trond Myklebust | eadf459 | 2005-06-22 17:16:39 +0000 | [diff] [blame] | 2232 | dprintk("%s: returns %d\n", __FUNCTION__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | return status; |
| 2234 | } |
| 2235 | |
| 2236 | static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
| 2237 | u64 cookie, struct page *page, unsigned int count, int plus) |
| 2238 | { |
| 2239 | struct nfs4_exception exception = { }; |
| 2240 | int err; |
| 2241 | do { |
| 2242 | err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode), |
| 2243 | _nfs4_proc_readdir(dentry, cred, cookie, |
| 2244 | page, count, plus), |
| 2245 | &exception); |
| 2246 | } while (exception.retry); |
| 2247 | return err; |
| 2248 | } |
| 2249 | |
| 2250 | static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, |
| 2251 | struct iattr *sattr, dev_t rdev) |
| 2252 | { |
| 2253 | struct nfs_server *server = NFS_SERVER(dir); |
| 2254 | struct nfs_fh fh; |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2255 | struct nfs_fattr fattr, dir_fattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | struct nfs4_create_arg arg = { |
| 2257 | .dir_fh = NFS_FH(dir), |
| 2258 | .server = server, |
| 2259 | .name = &dentry->d_name, |
| 2260 | .attrs = sattr, |
| 2261 | .bitmask = server->attr_bitmask, |
| 2262 | }; |
| 2263 | struct nfs4_create_res res = { |
| 2264 | .server = server, |
| 2265 | .fh = &fh, |
| 2266 | .fattr = &fattr, |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2267 | .dir_fattr = &dir_fattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | }; |
| 2269 | struct rpc_message msg = { |
| 2270 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE], |
| 2271 | .rpc_argp = &arg, |
| 2272 | .rpc_resp = &res, |
| 2273 | }; |
| 2274 | int status; |
| 2275 | int mode = sattr->ia_mode; |
| 2276 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 2277 | nfs_fattr_init(&fattr); |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2278 | nfs_fattr_init(&dir_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | |
| 2280 | BUG_ON(!(sattr->ia_valid & ATTR_MODE)); |
| 2281 | BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode)); |
| 2282 | if (S_ISFIFO(mode)) |
| 2283 | arg.ftype = NF4FIFO; |
| 2284 | else if (S_ISBLK(mode)) { |
| 2285 | arg.ftype = NF4BLK; |
| 2286 | arg.u.device.specdata1 = MAJOR(rdev); |
| 2287 | arg.u.device.specdata2 = MINOR(rdev); |
| 2288 | } |
| 2289 | else if (S_ISCHR(mode)) { |
| 2290 | arg.ftype = NF4CHR; |
| 2291 | arg.u.device.specdata1 = MAJOR(rdev); |
| 2292 | arg.u.device.specdata2 = MINOR(rdev); |
| 2293 | } |
| 2294 | else |
| 2295 | arg.ftype = NF4SOCK; |
| 2296 | |
| 2297 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
| 2298 | if (status == 0) { |
| 2299 | update_changeattr(dir, &res.dir_cinfo); |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2300 | nfs_post_op_update_inode(dir, res.dir_fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | status = nfs_instantiate(dentry, &fh, &fattr); |
| 2302 | } |
| 2303 | return status; |
| 2304 | } |
| 2305 | |
| 2306 | static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, |
| 2307 | struct iattr *sattr, dev_t rdev) |
| 2308 | { |
| 2309 | struct nfs4_exception exception = { }; |
| 2310 | int err; |
| 2311 | do { |
| 2312 | err = nfs4_handle_exception(NFS_SERVER(dir), |
| 2313 | _nfs4_proc_mknod(dir, dentry, sattr, rdev), |
| 2314 | &exception); |
| 2315 | } while (exception.retry); |
| 2316 | return err; |
| 2317 | } |
| 2318 | |
| 2319 | static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, |
| 2320 | struct nfs_fsstat *fsstat) |
| 2321 | { |
| 2322 | struct nfs4_statfs_arg args = { |
| 2323 | .fh = fhandle, |
| 2324 | .bitmask = server->attr_bitmask, |
| 2325 | }; |
| 2326 | struct rpc_message msg = { |
| 2327 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS], |
| 2328 | .rpc_argp = &args, |
| 2329 | .rpc_resp = fsstat, |
| 2330 | }; |
| 2331 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 2332 | nfs_fattr_init(fsstat->fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | return rpc_call_sync(server->client, &msg, 0); |
| 2334 | } |
| 2335 | |
| 2336 | static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat) |
| 2337 | { |
| 2338 | struct nfs4_exception exception = { }; |
| 2339 | int err; |
| 2340 | do { |
| 2341 | err = nfs4_handle_exception(server, |
| 2342 | _nfs4_proc_statfs(server, fhandle, fsstat), |
| 2343 | &exception); |
| 2344 | } while (exception.retry); |
| 2345 | return err; |
| 2346 | } |
| 2347 | |
| 2348 | static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, |
| 2349 | struct nfs_fsinfo *fsinfo) |
| 2350 | { |
| 2351 | struct nfs4_fsinfo_arg args = { |
| 2352 | .fh = fhandle, |
| 2353 | .bitmask = server->attr_bitmask, |
| 2354 | }; |
| 2355 | struct rpc_message msg = { |
| 2356 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO], |
| 2357 | .rpc_argp = &args, |
| 2358 | .rpc_resp = fsinfo, |
| 2359 | }; |
| 2360 | |
| 2361 | return rpc_call_sync(server->client, &msg, 0); |
| 2362 | } |
| 2363 | |
| 2364 | static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) |
| 2365 | { |
| 2366 | struct nfs4_exception exception = { }; |
| 2367 | int err; |
| 2368 | |
| 2369 | do { |
| 2370 | err = nfs4_handle_exception(server, |
| 2371 | _nfs4_do_fsinfo(server, fhandle, fsinfo), |
| 2372 | &exception); |
| 2373 | } while (exception.retry); |
| 2374 | return err; |
| 2375 | } |
| 2376 | |
| 2377 | static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) |
| 2378 | { |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 2379 | nfs_fattr_init(fsinfo->fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | return nfs4_do_fsinfo(server, fhandle, fsinfo); |
| 2381 | } |
| 2382 | |
| 2383 | static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 2384 | struct nfs_pathconf *pathconf) |
| 2385 | { |
| 2386 | struct nfs4_pathconf_arg args = { |
| 2387 | .fh = fhandle, |
| 2388 | .bitmask = server->attr_bitmask, |
| 2389 | }; |
| 2390 | struct rpc_message msg = { |
| 2391 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF], |
| 2392 | .rpc_argp = &args, |
| 2393 | .rpc_resp = pathconf, |
| 2394 | }; |
| 2395 | |
| 2396 | /* None of the pathconf attributes are mandatory to implement */ |
| 2397 | if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) { |
| 2398 | memset(pathconf, 0, sizeof(*pathconf)); |
| 2399 | return 0; |
| 2400 | } |
| 2401 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 2402 | nfs_fattr_init(pathconf->fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | return rpc_call_sync(server->client, &msg, 0); |
| 2404 | } |
| 2405 | |
| 2406 | static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 2407 | struct nfs_pathconf *pathconf) |
| 2408 | { |
| 2409 | struct nfs4_exception exception = { }; |
| 2410 | int err; |
| 2411 | |
| 2412 | do { |
| 2413 | err = nfs4_handle_exception(server, |
| 2414 | _nfs4_proc_pathconf(server, fhandle, pathconf), |
| 2415 | &exception); |
| 2416 | } while (exception.retry); |
| 2417 | return err; |
| 2418 | } |
| 2419 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2420 | static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | { |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2422 | struct nfs_server *server = NFS_SERVER(data->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2424 | if (nfs4_async_handle_error(task, server) == -EAGAIN) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | rpc_restart_call(task); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2426 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | } |
Trond Myklebust | 8850df9 | 2007-09-28 17:20:07 -0400 | [diff] [blame] | 2428 | |
| 2429 | nfs_invalidate_atime(data->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | if (task->tk_status > 0) |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2431 | renew_lease(server, data->timestamp); |
| 2432 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | } |
| 2434 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2435 | static void nfs4_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | data->timestamp = jiffies; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2438 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | } |
| 2440 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2441 | static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | struct inode *inode = data->inode; |
| 2444 | |
| 2445 | if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) { |
| 2446 | rpc_restart_call(task); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2447 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | } |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 2449 | if (task->tk_status >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | renew_lease(NFS_SERVER(inode), data->timestamp); |
Trond Myklebust | 70ca885 | 2007-09-30 15:21:24 -0400 | [diff] [blame] | 2451 | nfs_post_op_update_inode_force_wcc(inode, data->res.fattr); |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 2452 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2453 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | } |
| 2455 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2456 | static void nfs4_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | { |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2458 | struct nfs_server *server = NFS_SERVER(data->inode); |
| 2459 | |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 2460 | data->args.bitmask = server->attr_bitmask; |
| 2461 | data->res.server = server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | data->timestamp = jiffies; |
| 2463 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2464 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2465 | } |
| 2466 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2467 | static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | struct inode *inode = data->inode; |
| 2470 | |
| 2471 | if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) { |
| 2472 | rpc_restart_call(task); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2473 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2474 | } |
Trond Myklebust | 9e08a3c | 2007-10-08 14:10:31 -0400 | [diff] [blame] | 2475 | nfs_refresh_inode(inode, data->res.fattr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2476 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | } |
| 2478 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2479 | static void nfs4_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | { |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 2481 | struct nfs_server *server = NFS_SERVER(data->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 2483 | data->args.bitmask = server->attr_bitmask; |
| 2484 | data->res.server = server; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame^] | 2485 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | } |
| 2487 | |
| 2488 | /* |
| 2489 | * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special |
| 2490 | * standalone procedure for queueing an asynchronous RENEW. |
| 2491 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 2492 | static void nfs4_renew_done(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2493 | { |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2494 | struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp; |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 2495 | unsigned long timestamp = (unsigned long)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | |
| 2497 | if (task->tk_status < 0) { |
| 2498 | switch (task->tk_status) { |
| 2499 | case -NFS4ERR_STALE_CLIENTID: |
| 2500 | case -NFS4ERR_EXPIRED: |
| 2501 | case -NFS4ERR_CB_PATH_DOWN: |
| 2502 | nfs4_schedule_state_recovery(clp); |
| 2503 | } |
| 2504 | return; |
| 2505 | } |
| 2506 | spin_lock(&clp->cl_lock); |
| 2507 | if (time_before(clp->cl_last_renewal,timestamp)) |
| 2508 | clp->cl_last_renewal = timestamp; |
| 2509 | spin_unlock(&clp->cl_lock); |
| 2510 | } |
| 2511 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 2512 | static const struct rpc_call_ops nfs4_renew_ops = { |
| 2513 | .rpc_call_done = nfs4_renew_done, |
| 2514 | }; |
| 2515 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2516 | int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | { |
| 2518 | struct rpc_message msg = { |
| 2519 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], |
| 2520 | .rpc_argp = clp, |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 2521 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | }; |
| 2523 | |
| 2524 | return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 2525 | &nfs4_renew_ops, (void *)jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2526 | } |
| 2527 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2528 | int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | { |
| 2530 | struct rpc_message msg = { |
| 2531 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], |
| 2532 | .rpc_argp = clp, |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 2533 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | }; |
| 2535 | unsigned long now = jiffies; |
| 2536 | int status; |
| 2537 | |
| 2538 | status = rpc_call_sync(clp->cl_rpcclient, &msg, 0); |
| 2539 | if (status < 0) |
| 2540 | return status; |
| 2541 | spin_lock(&clp->cl_lock); |
| 2542 | if (time_before(clp->cl_last_renewal,now)) |
| 2543 | clp->cl_last_renewal = now; |
| 2544 | spin_unlock(&clp->cl_lock); |
| 2545 | return 0; |
| 2546 | } |
| 2547 | |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2548 | static inline int nfs4_server_supports_acls(struct nfs_server *server) |
| 2549 | { |
| 2550 | return (server->caps & NFS_CAP_ACLS) |
| 2551 | && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL) |
| 2552 | && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL); |
| 2553 | } |
| 2554 | |
| 2555 | /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that |
| 2556 | * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on |
| 2557 | * the stack. |
| 2558 | */ |
| 2559 | #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT) |
| 2560 | |
| 2561 | static void buf_to_pages(const void *buf, size_t buflen, |
| 2562 | struct page **pages, unsigned int *pgbase) |
| 2563 | { |
| 2564 | const void *p = buf; |
| 2565 | |
| 2566 | *pgbase = offset_in_page(buf); |
| 2567 | p -= *pgbase; |
| 2568 | while (p < buf + buflen) { |
| 2569 | *(pages++) = virt_to_page(p); |
| 2570 | p += PAGE_CACHE_SIZE; |
| 2571 | } |
| 2572 | } |
| 2573 | |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2574 | struct nfs4_cached_acl { |
| 2575 | int cached; |
| 2576 | size_t len; |
Andrew Morton | 3e9d415 | 2005-06-22 17:16:28 +0000 | [diff] [blame] | 2577 | char data[0]; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2578 | }; |
| 2579 | |
| 2580 | static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl) |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2581 | { |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2582 | struct nfs_inode *nfsi = NFS_I(inode); |
| 2583 | |
| 2584 | spin_lock(&inode->i_lock); |
| 2585 | kfree(nfsi->nfs4_acl); |
| 2586 | nfsi->nfs4_acl = acl; |
| 2587 | spin_unlock(&inode->i_lock); |
| 2588 | } |
| 2589 | |
| 2590 | static void nfs4_zap_acl_attr(struct inode *inode) |
| 2591 | { |
| 2592 | nfs4_set_cached_acl(inode, NULL); |
| 2593 | } |
| 2594 | |
| 2595 | static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen) |
| 2596 | { |
| 2597 | struct nfs_inode *nfsi = NFS_I(inode); |
| 2598 | struct nfs4_cached_acl *acl; |
| 2599 | int ret = -ENOENT; |
| 2600 | |
| 2601 | spin_lock(&inode->i_lock); |
| 2602 | acl = nfsi->nfs4_acl; |
| 2603 | if (acl == NULL) |
| 2604 | goto out; |
| 2605 | if (buf == NULL) /* user is just asking for length */ |
| 2606 | goto out_len; |
| 2607 | if (acl->cached == 0) |
| 2608 | goto out; |
| 2609 | ret = -ERANGE; /* see getxattr(2) man page */ |
| 2610 | if (acl->len > buflen) |
| 2611 | goto out; |
| 2612 | memcpy(buf, acl->data, acl->len); |
| 2613 | out_len: |
| 2614 | ret = acl->len; |
| 2615 | out: |
| 2616 | spin_unlock(&inode->i_lock); |
| 2617 | return ret; |
| 2618 | } |
| 2619 | |
| 2620 | static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len) |
| 2621 | { |
| 2622 | struct nfs4_cached_acl *acl; |
| 2623 | |
| 2624 | if (buf && acl_len <= PAGE_SIZE) { |
| 2625 | acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL); |
| 2626 | if (acl == NULL) |
| 2627 | goto out; |
| 2628 | acl->cached = 1; |
| 2629 | memcpy(acl->data, buf, acl_len); |
| 2630 | } else { |
| 2631 | acl = kmalloc(sizeof(*acl), GFP_KERNEL); |
| 2632 | if (acl == NULL) |
| 2633 | goto out; |
| 2634 | acl->cached = 0; |
| 2635 | } |
| 2636 | acl->len = acl_len; |
| 2637 | out: |
| 2638 | nfs4_set_cached_acl(inode, acl); |
| 2639 | } |
| 2640 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 2641 | static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2642 | { |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2643 | struct page *pages[NFS4ACL_MAXPAGES]; |
| 2644 | struct nfs_getaclargs args = { |
| 2645 | .fh = NFS_FH(inode), |
| 2646 | .acl_pages = pages, |
| 2647 | .acl_len = buflen, |
| 2648 | }; |
| 2649 | size_t resp_len = buflen; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2650 | void *resp_buf; |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2651 | struct rpc_message msg = { |
| 2652 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL], |
| 2653 | .rpc_argp = &args, |
| 2654 | .rpc_resp = &resp_len, |
| 2655 | }; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2656 | struct page *localpage = NULL; |
| 2657 | int ret; |
| 2658 | |
| 2659 | if (buflen < PAGE_SIZE) { |
| 2660 | /* As long as we're doing a round trip to the server anyway, |
| 2661 | * let's be prepared for a page of acl data. */ |
| 2662 | localpage = alloc_page(GFP_KERNEL); |
| 2663 | resp_buf = page_address(localpage); |
| 2664 | if (localpage == NULL) |
| 2665 | return -ENOMEM; |
| 2666 | args.acl_pages[0] = localpage; |
| 2667 | args.acl_pgbase = 0; |
J. Bruce Fields | 1d95db8 | 2005-10-13 16:54:32 -0400 | [diff] [blame] | 2668 | resp_len = args.acl_len = PAGE_SIZE; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2669 | } else { |
| 2670 | resp_buf = buf; |
| 2671 | buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase); |
| 2672 | } |
| 2673 | ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
| 2674 | if (ret) |
| 2675 | goto out_free; |
| 2676 | if (resp_len > args.acl_len) |
| 2677 | nfs4_write_cached_acl(inode, NULL, resp_len); |
| 2678 | else |
| 2679 | nfs4_write_cached_acl(inode, resp_buf, resp_len); |
| 2680 | if (buf) { |
| 2681 | ret = -ERANGE; |
| 2682 | if (resp_len > buflen) |
| 2683 | goto out_free; |
| 2684 | if (localpage) |
| 2685 | memcpy(buf, resp_buf, resp_len); |
| 2686 | } |
| 2687 | ret = resp_len; |
| 2688 | out_free: |
| 2689 | if (localpage) |
| 2690 | __free_page(localpage); |
| 2691 | return ret; |
| 2692 | } |
| 2693 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 2694 | static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
| 2695 | { |
| 2696 | struct nfs4_exception exception = { }; |
| 2697 | ssize_t ret; |
| 2698 | do { |
| 2699 | ret = __nfs4_get_acl_uncached(inode, buf, buflen); |
| 2700 | if (ret >= 0) |
| 2701 | break; |
| 2702 | ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception); |
| 2703 | } while (exception.retry); |
| 2704 | return ret; |
| 2705 | } |
| 2706 | |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2707 | static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen) |
| 2708 | { |
| 2709 | struct nfs_server *server = NFS_SERVER(inode); |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2710 | int ret; |
| 2711 | |
| 2712 | if (!nfs4_server_supports_acls(server)) |
| 2713 | return -EOPNOTSUPP; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2714 | ret = nfs_revalidate_inode(server, inode); |
| 2715 | if (ret < 0) |
| 2716 | return ret; |
| 2717 | ret = nfs4_read_cached_acl(inode, buf, buflen); |
| 2718 | if (ret != -ENOENT) |
| 2719 | return ret; |
| 2720 | return nfs4_get_acl_uncached(inode, buf, buflen); |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 2721 | } |
| 2722 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 2723 | static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2724 | { |
| 2725 | struct nfs_server *server = NFS_SERVER(inode); |
| 2726 | struct page *pages[NFS4ACL_MAXPAGES]; |
| 2727 | struct nfs_setaclargs arg = { |
| 2728 | .fh = NFS_FH(inode), |
| 2729 | .acl_pages = pages, |
| 2730 | .acl_len = buflen, |
| 2731 | }; |
| 2732 | struct rpc_message msg = { |
| 2733 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL], |
| 2734 | .rpc_argp = &arg, |
| 2735 | .rpc_resp = NULL, |
| 2736 | }; |
| 2737 | int ret; |
| 2738 | |
| 2739 | if (!nfs4_server_supports_acls(server)) |
| 2740 | return -EOPNOTSUPP; |
Trond Myklebust | 642ac54 | 2005-10-18 14:20:19 -0700 | [diff] [blame] | 2741 | nfs_inode_return_delegation(inode); |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2742 | buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase); |
David Howells | 1f16341 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 2743 | ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); |
J. Bruce Fields | 08efa20 | 2007-05-01 10:56:25 -0400 | [diff] [blame] | 2744 | nfs_zap_caches(inode); |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 2745 | return ret; |
| 2746 | } |
| 2747 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 2748 | static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
| 2749 | { |
| 2750 | struct nfs4_exception exception = { }; |
| 2751 | int err; |
| 2752 | do { |
| 2753 | err = nfs4_handle_exception(NFS_SERVER(inode), |
| 2754 | __nfs4_proc_set_acl(inode, buf, buflen), |
| 2755 | &exception); |
| 2756 | } while (exception.retry); |
| 2757 | return err; |
| 2758 | } |
| 2759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | static int |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 2761 | nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 2763 | struct nfs_client *clp = server->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | |
| 2765 | if (!clp || task->tk_status >= 0) |
| 2766 | return 0; |
| 2767 | switch(task->tk_status) { |
| 2768 | case -NFS4ERR_STALE_CLIENTID: |
| 2769 | case -NFS4ERR_STALE_STATEID: |
| 2770 | case -NFS4ERR_EXPIRED: |
| 2771 | rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL); |
| 2772 | nfs4_schedule_state_recovery(clp); |
Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 2773 | if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | rpc_wake_up_task(task); |
| 2775 | task->tk_status = 0; |
| 2776 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | case -NFS4ERR_DELAY: |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 2778 | nfs_inc_server_stats((struct nfs_server *) server, |
| 2779 | NFSIOS_DELAY); |
| 2780 | case -NFS4ERR_GRACE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
| 2782 | task->tk_status = 0; |
| 2783 | return -EAGAIN; |
| 2784 | case -NFS4ERR_OLD_STATEID: |
| 2785 | task->tk_status = 0; |
| 2786 | return -EAGAIN; |
| 2787 | } |
| 2788 | task->tk_status = nfs4_map_errors(task->tk_status); |
| 2789 | return 0; |
| 2790 | } |
| 2791 | |
Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 2792 | static int nfs4_wait_bit_interruptible(void *word) |
| 2793 | { |
| 2794 | if (signal_pending(current)) |
| 2795 | return -ERESTARTSYS; |
| 2796 | schedule(); |
| 2797 | return 0; |
| 2798 | } |
| 2799 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2800 | static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | sigset_t oldset; |
Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 2803 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | |
| 2805 | might_sleep(); |
| 2806 | |
Trond Myklebust | e148582 | 2006-12-13 16:43:13 -0500 | [diff] [blame] | 2807 | rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_); |
| 2808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2809 | rpc_clnt_sigmask(clnt, &oldset); |
Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 2810 | res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER, |
| 2811 | nfs4_wait_bit_interruptible, |
| 2812 | TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | rpc_clnt_sigunmask(clnt, &oldset); |
Trond Myklebust | e148582 | 2006-12-13 16:43:13 -0500 | [diff] [blame] | 2814 | |
| 2815 | rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | return res; |
| 2817 | } |
| 2818 | |
| 2819 | static int nfs4_delay(struct rpc_clnt *clnt, long *timeout) |
| 2820 | { |
| 2821 | sigset_t oldset; |
| 2822 | int res = 0; |
| 2823 | |
| 2824 | might_sleep(); |
| 2825 | |
| 2826 | if (*timeout <= 0) |
| 2827 | *timeout = NFS4_POLL_RETRY_MIN; |
| 2828 | if (*timeout > NFS4_POLL_RETRY_MAX) |
| 2829 | *timeout = NFS4_POLL_RETRY_MAX; |
| 2830 | rpc_clnt_sigmask(clnt, &oldset); |
| 2831 | if (clnt->cl_intr) { |
Nishanth Aravamudan | 041e0e3 | 2005-09-10 00:27:23 -0700 | [diff] [blame] | 2832 | schedule_timeout_interruptible(*timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | if (signalled()) |
| 2834 | res = -ERESTARTSYS; |
Nishanth Aravamudan | 041e0e3 | 2005-09-10 00:27:23 -0700 | [diff] [blame] | 2835 | } else |
| 2836 | schedule_timeout_uninterruptible(*timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | rpc_clnt_sigunmask(clnt, &oldset); |
| 2838 | *timeout <<= 1; |
| 2839 | return res; |
| 2840 | } |
| 2841 | |
| 2842 | /* This is the error handling routine for processes that are allowed |
| 2843 | * to sleep. |
| 2844 | */ |
Trond Myklebust | 10afec90 | 2007-05-14 17:16:04 -0400 | [diff] [blame] | 2845 | static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 2847 | struct nfs_client *clp = server->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | int ret = errorcode; |
| 2849 | |
| 2850 | exception->retry = 0; |
| 2851 | switch(errorcode) { |
| 2852 | case 0: |
| 2853 | return 0; |
| 2854 | case -NFS4ERR_STALE_CLIENTID: |
| 2855 | case -NFS4ERR_STALE_STATEID: |
| 2856 | case -NFS4ERR_EXPIRED: |
Trond Myklebust | 433fbe4 | 2006-01-03 09:55:22 +0100 | [diff] [blame] | 2857 | nfs4_schedule_state_recovery(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | ret = nfs4_wait_clnt_recover(server->client, clp); |
| 2859 | if (ret == 0) |
| 2860 | exception->retry = 1; |
| 2861 | break; |
Trond Myklebust | c514983 | 2006-09-15 08:25:04 -0400 | [diff] [blame] | 2862 | case -NFS4ERR_FILE_OPEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | case -NFS4ERR_GRACE: |
| 2864 | case -NFS4ERR_DELAY: |
| 2865 | ret = nfs4_delay(server->client, &exception->timeout); |
Trond Myklebust | 2c56617 | 2005-11-04 15:33:50 -0500 | [diff] [blame] | 2866 | if (ret != 0) |
| 2867 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | case -NFS4ERR_OLD_STATEID: |
Trond Myklebust | 2c56617 | 2005-11-04 15:33:50 -0500 | [diff] [blame] | 2869 | exception->retry = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2870 | } |
| 2871 | /* We failed to handle the error */ |
| 2872 | return nfs4_map_errors(ret); |
| 2873 | } |
| 2874 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2875 | int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | { |
| 2877 | nfs4_verifier sc_verifier; |
| 2878 | struct nfs4_setclientid setclientid = { |
| 2879 | .sc_verifier = &sc_verifier, |
| 2880 | .sc_prog = program, |
| 2881 | }; |
| 2882 | struct rpc_message msg = { |
| 2883 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID], |
| 2884 | .rpc_argp = &setclientid, |
| 2885 | .rpc_resp = clp, |
Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 2886 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | }; |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 2888 | __be32 *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | int loop = 0; |
| 2890 | int status; |
| 2891 | |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 2892 | p = (__be32*)sc_verifier.data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2893 | *p++ = htonl((u32)clp->cl_boot_time.tv_sec); |
| 2894 | *p = htonl((u32)clp->cl_boot_time.tv_nsec); |
| 2895 | |
| 2896 | for(;;) { |
| 2897 | setclientid.sc_name_len = scnprintf(setclientid.sc_name, |
| 2898 | sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u", |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 2899 | clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr), |
Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 2900 | cred->cr_ops->cr_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | clp->cl_id_uniquifier); |
| 2902 | setclientid.sc_netid_len = scnprintf(setclientid.sc_netid, |
| 2903 | sizeof(setclientid.sc_netid), "tcp"); |
| 2904 | setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr, |
| 2905 | sizeof(setclientid.sc_uaddr), "%s.%d.%d", |
| 2906 | clp->cl_ipaddr, port >> 8, port & 255); |
| 2907 | |
| 2908 | status = rpc_call_sync(clp->cl_rpcclient, &msg, 0); |
| 2909 | if (status != -NFS4ERR_CLID_INUSE) |
| 2910 | break; |
| 2911 | if (signalled()) |
| 2912 | break; |
| 2913 | if (loop++ & 1) |
| 2914 | ssleep(clp->cl_lease_time + 1); |
| 2915 | else |
| 2916 | if (++clp->cl_id_uniquifier == 0) |
| 2917 | break; |
| 2918 | } |
| 2919 | return status; |
| 2920 | } |
| 2921 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2922 | static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | { |
| 2924 | struct nfs_fsinfo fsinfo; |
| 2925 | struct rpc_message msg = { |
| 2926 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM], |
| 2927 | .rpc_argp = clp, |
| 2928 | .rpc_resp = &fsinfo, |
Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 2929 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2930 | }; |
| 2931 | unsigned long now; |
| 2932 | int status; |
| 2933 | |
| 2934 | now = jiffies; |
| 2935 | status = rpc_call_sync(clp->cl_rpcclient, &msg, 0); |
| 2936 | if (status == 0) { |
| 2937 | spin_lock(&clp->cl_lock); |
| 2938 | clp->cl_lease_time = fsinfo.lease_time * HZ; |
| 2939 | clp->cl_last_renewal = now; |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 2940 | clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | spin_unlock(&clp->cl_lock); |
| 2942 | } |
| 2943 | return status; |
| 2944 | } |
| 2945 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 2946 | int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred) |
Trond Myklebust | 51581f3 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 2947 | { |
| 2948 | long timeout; |
| 2949 | int err; |
| 2950 | do { |
| 2951 | err = _nfs4_proc_setclientid_confirm(clp, cred); |
| 2952 | switch (err) { |
| 2953 | case 0: |
| 2954 | return err; |
| 2955 | case -NFS4ERR_RESOURCE: |
| 2956 | /* The IBM lawyers misread another document! */ |
| 2957 | case -NFS4ERR_DELAY: |
| 2958 | err = nfs4_delay(clp->cl_rpcclient, &timeout); |
| 2959 | } |
| 2960 | } while (err == 0); |
| 2961 | return err; |
| 2962 | } |
| 2963 | |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2964 | struct nfs4_delegreturndata { |
| 2965 | struct nfs4_delegreturnargs args; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 2966 | struct nfs4_delegreturnres res; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2967 | struct nfs_fh fh; |
| 2968 | nfs4_stateid stateid; |
| 2969 | struct rpc_cred *cred; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2970 | unsigned long timestamp; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 2971 | struct nfs_fattr fattr; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2972 | int rpc_status; |
| 2973 | }; |
| 2974 | |
| 2975 | static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | { |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2977 | struct nfs4_delegreturndata *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | struct rpc_message msg = { |
| 2979 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN], |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2980 | .rpc_argp = &data->args, |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 2981 | .rpc_resp = &data->res, |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2982 | .rpc_cred = data->cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | }; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 2984 | nfs_fattr_init(data->res.fattr); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2985 | rpc_call_setup(task, &msg, 0); |
| 2986 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2988 | static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata) |
| 2989 | { |
| 2990 | struct nfs4_delegreturndata *data = calldata; |
| 2991 | data->rpc_status = task->tk_status; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2992 | if (data->rpc_status == 0) |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 2993 | renew_lease(data->res.server, data->timestamp); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 2994 | } |
| 2995 | |
| 2996 | static void nfs4_delegreturn_release(void *calldata) |
| 2997 | { |
| 2998 | struct nfs4_delegreturndata *data = calldata; |
| 2999 | |
| 3000 | put_rpccred(data->cred); |
| 3001 | kfree(calldata); |
| 3002 | } |
| 3003 | |
Jesper Juhl | c8d149f | 2006-03-20 13:44:07 -0500 | [diff] [blame] | 3004 | static const struct rpc_call_ops nfs4_delegreturn_ops = { |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3005 | .rpc_call_prepare = nfs4_delegreturn_prepare, |
| 3006 | .rpc_call_done = nfs4_delegreturn_done, |
| 3007 | .rpc_release = nfs4_delegreturn_release, |
| 3008 | }; |
| 3009 | |
| 3010 | static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid) |
| 3011 | { |
| 3012 | struct nfs4_delegreturndata *data; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3013 | struct nfs_server *server = NFS_SERVER(inode); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3014 | struct rpc_task *task; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3015 | struct rpc_task_setup task_setup_data = { |
| 3016 | .rpc_client = server->client, |
| 3017 | .callback_ops = &nfs4_delegreturn_ops, |
| 3018 | .flags = RPC_TASK_ASYNC, |
| 3019 | }; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3020 | int status; |
| 3021 | |
| 3022 | data = kmalloc(sizeof(*data), GFP_KERNEL); |
| 3023 | if (data == NULL) |
| 3024 | return -ENOMEM; |
| 3025 | data->args.fhandle = &data->fh; |
| 3026 | data->args.stateid = &data->stateid; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3027 | data->args.bitmask = server->attr_bitmask; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3028 | nfs_copy_fh(&data->fh, NFS_FH(inode)); |
| 3029 | memcpy(&data->stateid, stateid, sizeof(data->stateid)); |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3030 | data->res.fattr = &data->fattr; |
| 3031 | data->res.server = server; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3032 | data->cred = get_rpccred(cred); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3033 | data->timestamp = jiffies; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3034 | data->rpc_status = 0; |
| 3035 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3036 | task_setup_data.callback_data = data; |
| 3037 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 3038 | if (IS_ERR(task)) |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3039 | return PTR_ERR(task); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3040 | status = nfs4_wait_for_completion_rpc_task(task); |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3041 | if (status == 0) { |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3042 | status = data->rpc_status; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3043 | if (status == 0) |
Trond Myklebust | 9e08a3c | 2007-10-08 14:10:31 -0400 | [diff] [blame] | 3044 | nfs_refresh_inode(inode, &data->fattr); |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 3045 | } |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 3046 | rpc_put_task(task); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 3047 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | } |
| 3049 | |
| 3050 | int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid) |
| 3051 | { |
| 3052 | struct nfs_server *server = NFS_SERVER(inode); |
| 3053 | struct nfs4_exception exception = { }; |
| 3054 | int err; |
| 3055 | do { |
| 3056 | err = _nfs4_proc_delegreturn(inode, cred, stateid); |
| 3057 | switch (err) { |
| 3058 | case -NFS4ERR_STALE_STATEID: |
| 3059 | case -NFS4ERR_EXPIRED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3060 | case 0: |
| 3061 | return 0; |
| 3062 | } |
| 3063 | err = nfs4_handle_exception(server, err, &exception); |
| 3064 | } while (exception.retry); |
| 3065 | return err; |
| 3066 | } |
| 3067 | |
| 3068 | #define NFS4_LOCK_MINTIMEOUT (1 * HZ) |
| 3069 | #define NFS4_LOCK_MAXTIMEOUT (30 * HZ) |
| 3070 | |
| 3071 | /* |
| 3072 | * sleep, with exponential backoff, and retry the LOCK operation. |
| 3073 | */ |
| 3074 | static unsigned long |
| 3075 | nfs4_set_lock_task_retry(unsigned long timeout) |
| 3076 | { |
Nishanth Aravamudan | 041e0e3 | 2005-09-10 00:27:23 -0700 | [diff] [blame] | 3077 | schedule_timeout_interruptible(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | timeout <<= 1; |
| 3079 | if (timeout > NFS4_LOCK_MAXTIMEOUT) |
| 3080 | return NFS4_LOCK_MAXTIMEOUT; |
| 3081 | return timeout; |
| 3082 | } |
| 3083 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 3085 | { |
| 3086 | struct inode *inode = state->inode; |
| 3087 | struct nfs_server *server = NFS_SERVER(inode); |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3088 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3089 | struct nfs_lockt_args arg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | .fh = NFS_FH(inode), |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3091 | .fl = request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | }; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3093 | struct nfs_lockt_res res = { |
| 3094 | .denied = request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | }; |
| 3096 | struct rpc_message msg = { |
| 3097 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT], |
| 3098 | .rpc_argp = &arg, |
| 3099 | .rpc_resp = &res, |
| 3100 | .rpc_cred = state->owner->so_cred, |
| 3101 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3102 | struct nfs4_lock_state *lsp; |
| 3103 | int status; |
| 3104 | |
| 3105 | down_read(&clp->cl_sem); |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3106 | arg.lock_owner.clientid = clp->cl_clientid; |
Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 3107 | status = nfs4_set_lock_state(state, request); |
| 3108 | if (status != 0) |
| 3109 | goto out; |
| 3110 | lsp = request->fl_u.nfs4_fl.owner; |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 3111 | arg.lock_owner.id = lsp->ls_id.id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3112 | status = rpc_call_sync(server->client, &msg, 0); |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3113 | switch (status) { |
| 3114 | case 0: |
| 3115 | request->fl_type = F_UNLCK; |
| 3116 | break; |
| 3117 | case -NFS4ERR_DENIED: |
| 3118 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | } |
J. Bruce Fields | 70cc648 | 2007-02-22 18:48:53 -0500 | [diff] [blame] | 3120 | request->fl_ops->fl_release_private(request); |
Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 3121 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | up_read(&clp->cl_sem); |
| 3123 | return status; |
| 3124 | } |
| 3125 | |
| 3126 | static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 3127 | { |
| 3128 | struct nfs4_exception exception = { }; |
| 3129 | int err; |
| 3130 | |
| 3131 | do { |
| 3132 | err = nfs4_handle_exception(NFS_SERVER(state->inode), |
| 3133 | _nfs4_proc_getlk(state, cmd, request), |
| 3134 | &exception); |
| 3135 | } while (exception.retry); |
| 3136 | return err; |
| 3137 | } |
| 3138 | |
| 3139 | static int do_vfs_lock(struct file *file, struct file_lock *fl) |
| 3140 | { |
| 3141 | int res = 0; |
| 3142 | switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { |
| 3143 | case FL_POSIX: |
| 3144 | res = posix_lock_file_wait(file, fl); |
| 3145 | break; |
| 3146 | case FL_FLOCK: |
| 3147 | res = flock_lock_file_wait(file, fl); |
| 3148 | break; |
| 3149 | default: |
| 3150 | BUG(); |
| 3151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3152 | return res; |
| 3153 | } |
| 3154 | |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3155 | struct nfs4_unlockdata { |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3156 | struct nfs_locku_args arg; |
| 3157 | struct nfs_locku_res res; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3158 | struct nfs4_lock_state *lsp; |
| 3159 | struct nfs_open_context *ctx; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3160 | struct file_lock fl; |
| 3161 | const struct nfs_server *server; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3162 | unsigned long timestamp; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3163 | }; |
| 3164 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3165 | static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl, |
| 3166 | struct nfs_open_context *ctx, |
| 3167 | struct nfs4_lock_state *lsp, |
| 3168 | struct nfs_seqid *seqid) |
| 3169 | { |
| 3170 | struct nfs4_unlockdata *p; |
| 3171 | struct inode *inode = lsp->ls_state->inode; |
| 3172 | |
| 3173 | p = kmalloc(sizeof(*p), GFP_KERNEL); |
| 3174 | if (p == NULL) |
| 3175 | return NULL; |
| 3176 | p->arg.fh = NFS_FH(inode); |
| 3177 | p->arg.fl = &p->fl; |
| 3178 | p->arg.seqid = seqid; |
| 3179 | p->arg.stateid = &lsp->ls_stateid; |
| 3180 | p->lsp = lsp; |
| 3181 | atomic_inc(&lsp->ls_count); |
| 3182 | /* Ensure we don't close file until we're done freeing locks! */ |
| 3183 | p->ctx = get_nfs_open_context(ctx); |
| 3184 | memcpy(&p->fl, fl, sizeof(p->fl)); |
| 3185 | p->server = NFS_SERVER(inode); |
| 3186 | return p; |
| 3187 | } |
| 3188 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 3189 | static void nfs4_locku_release_calldata(void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3190 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3191 | struct nfs4_unlockdata *calldata = data; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3192 | nfs_free_seqid(calldata->arg.seqid); |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 3193 | nfs4_put_lock_state(calldata->lsp); |
| 3194 | put_nfs_open_context(calldata->ctx); |
| 3195 | kfree(calldata); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3196 | } |
| 3197 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3198 | static void nfs4_locku_done(struct rpc_task *task, void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3199 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3200 | struct nfs4_unlockdata *calldata = data; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3201 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 3202 | if (RPC_ASSASSINATED(task)) |
| 3203 | return; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3204 | nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3205 | switch (task->tk_status) { |
| 3206 | case 0: |
| 3207 | memcpy(calldata->lsp->ls_stateid.data, |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3208 | calldata->res.stateid.data, |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3209 | sizeof(calldata->lsp->ls_stateid.data)); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3210 | renew_lease(calldata->server, calldata->timestamp); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3211 | break; |
| 3212 | case -NFS4ERR_STALE_STATEID: |
| 3213 | case -NFS4ERR_EXPIRED: |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3214 | break; |
| 3215 | default: |
Trond Myklebust | a6a352e | 2006-12-13 16:43:06 -0500 | [diff] [blame] | 3216 | if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3217 | rpc_restart_call(task); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3218 | } |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3219 | } |
| 3220 | |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3221 | static void nfs4_locku_prepare(struct rpc_task *task, void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3222 | { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3223 | struct nfs4_unlockdata *calldata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | struct rpc_message msg = { |
| 3225 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU], |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3226 | .rpc_argp = &calldata->arg, |
| 3227 | .rpc_resp = &calldata->res, |
| 3228 | .rpc_cred = calldata->lsp->ls_state->owner->so_cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3229 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3231 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3232 | return; |
| 3233 | if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3234 | /* Note: exit _without_ running nfs4_locku_done */ |
| 3235 | task->tk_action = NULL; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3236 | return; |
| 3237 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3238 | calldata->timestamp = jiffies; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3239 | rpc_call_setup(task, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | } |
| 3241 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3242 | static const struct rpc_call_ops nfs4_locku_ops = { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3243 | .rpc_call_prepare = nfs4_locku_prepare, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3244 | .rpc_call_done = nfs4_locku_done, |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 3245 | .rpc_release = nfs4_locku_release_calldata, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3246 | }; |
| 3247 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3248 | static struct rpc_task *nfs4_do_unlck(struct file_lock *fl, |
| 3249 | struct nfs_open_context *ctx, |
| 3250 | struct nfs4_lock_state *lsp, |
| 3251 | struct nfs_seqid *seqid) |
| 3252 | { |
| 3253 | struct nfs4_unlockdata *data; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3254 | struct rpc_task_setup task_setup_data = { |
| 3255 | .rpc_client = NFS_CLIENT(lsp->ls_state->inode), |
| 3256 | .callback_ops = &nfs4_locku_ops, |
| 3257 | .flags = RPC_TASK_ASYNC, |
| 3258 | }; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3259 | |
Frank Filz | 137d6ac | 2007-07-09 15:32:29 -0700 | [diff] [blame] | 3260 | /* Ensure this is an unlock - when canceling a lock, the |
| 3261 | * canceled lock is passed in, and it won't be an unlock. |
| 3262 | */ |
| 3263 | fl->fl_type = F_UNLCK; |
| 3264 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3265 | data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid); |
| 3266 | if (data == NULL) { |
| 3267 | nfs_free_seqid(seqid); |
| 3268 | return ERR_PTR(-ENOMEM); |
| 3269 | } |
| 3270 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3271 | task_setup_data.callback_data = data; |
| 3272 | return rpc_run_task(&task_setup_data); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3273 | } |
| 3274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 3276 | { |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3277 | struct nfs_seqid *seqid; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3278 | struct nfs4_lock_state *lsp; |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 3279 | struct rpc_task *task; |
| 3280 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3282 | status = nfs4_set_lock_state(state, request); |
| 3283 | /* Unlock _before_ we do the RPC call */ |
| 3284 | request->fl_flags |= FL_EXISTS; |
| 3285 | if (do_vfs_lock(request->fl_file, request) == -ENOENT) |
| 3286 | goto out; |
| 3287 | if (status != 0) |
| 3288 | goto out; |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3289 | /* Is this a delegated lock? */ |
| 3290 | if (test_bit(NFS_DELEGATED_STATE, &state->flags)) |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3291 | goto out; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3292 | lsp = request->fl_u.nfs4_fl.owner; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3293 | seqid = nfs_alloc_seqid(&lsp->ls_seqid); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3294 | status = -ENOMEM; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3295 | if (seqid == NULL) |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3296 | goto out; |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 3297 | task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3298 | status = PTR_ERR(task); |
| 3299 | if (IS_ERR(task)) |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3300 | goto out; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3301 | status = nfs4_wait_for_completion_rpc_task(task); |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 3302 | rpc_put_task(task); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 3303 | out: |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 3304 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3305 | } |
| 3306 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3307 | struct nfs4_lockdata { |
| 3308 | struct nfs_lock_args arg; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 3309 | struct nfs_lock_res res; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3310 | struct nfs4_lock_state *lsp; |
| 3311 | struct nfs_open_context *ctx; |
| 3312 | struct file_lock fl; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3313 | unsigned long timestamp; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3314 | int rpc_status; |
| 3315 | int cancelled; |
| 3316 | }; |
| 3317 | |
| 3318 | static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl, |
| 3319 | struct nfs_open_context *ctx, struct nfs4_lock_state *lsp) |
| 3320 | { |
| 3321 | struct nfs4_lockdata *p; |
| 3322 | struct inode *inode = lsp->ls_state->inode; |
| 3323 | struct nfs_server *server = NFS_SERVER(inode); |
| 3324 | |
| 3325 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
| 3326 | if (p == NULL) |
| 3327 | return NULL; |
| 3328 | |
| 3329 | p->arg.fh = NFS_FH(inode); |
| 3330 | p->arg.fl = &p->fl; |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3331 | p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid); |
| 3332 | if (p->arg.open_seqid == NULL) |
| 3333 | goto out_free; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3334 | p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid); |
| 3335 | if (p->arg.lock_seqid == NULL) |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3336 | goto out_free_seqid; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3337 | p->arg.lock_stateid = &lsp->ls_stateid; |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3338 | p->arg.lock_owner.clientid = server->nfs_client->cl_clientid; |
Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 3339 | p->arg.lock_owner.id = lsp->ls_id.id; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3340 | p->lsp = lsp; |
| 3341 | atomic_inc(&lsp->ls_count); |
| 3342 | p->ctx = get_nfs_open_context(ctx); |
| 3343 | memcpy(&p->fl, fl, sizeof(p->fl)); |
| 3344 | return p; |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3345 | out_free_seqid: |
| 3346 | nfs_free_seqid(p->arg.open_seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3347 | out_free: |
| 3348 | kfree(p); |
| 3349 | return NULL; |
| 3350 | } |
| 3351 | |
| 3352 | static void nfs4_lock_prepare(struct rpc_task *task, void *calldata) |
| 3353 | { |
| 3354 | struct nfs4_lockdata *data = calldata; |
| 3355 | struct nfs4_state *state = data->lsp->ls_state; |
| 3356 | struct nfs4_state_owner *sp = state->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | struct rpc_message msg = { |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3358 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK], |
| 3359 | .rpc_argp = &data->arg, |
| 3360 | .rpc_resp = &data->res, |
| 3361 | .rpc_cred = sp->so_cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3362 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3364 | dprintk("%s: begin!\n", __FUNCTION__); |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3365 | if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0) |
| 3366 | return; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3367 | /* Do we need to do an open_to_lock_owner? */ |
| 3368 | if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) { |
Trond Myklebust | e6e2197 | 2008-01-02 16:27:16 -0500 | [diff] [blame] | 3369 | if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) |
| 3370 | return; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3371 | data->arg.open_stateid = &state->stateid; |
| 3372 | data->arg.new_lock_owner = 1; |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3373 | } else |
| 3374 | data->arg.new_lock_owner = 0; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3375 | data->timestamp = jiffies; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3376 | rpc_call_setup(task, &msg, 0); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3377 | dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status); |
| 3378 | } |
| 3379 | |
| 3380 | static void nfs4_lock_done(struct rpc_task *task, void *calldata) |
| 3381 | { |
| 3382 | struct nfs4_lockdata *data = calldata; |
| 3383 | |
| 3384 | dprintk("%s: begin!\n", __FUNCTION__); |
| 3385 | |
| 3386 | data->rpc_status = task->tk_status; |
| 3387 | if (RPC_ASSASSINATED(task)) |
| 3388 | goto out; |
| 3389 | if (data->arg.new_lock_owner != 0) { |
| 3390 | nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid); |
| 3391 | if (data->rpc_status == 0) |
| 3392 | nfs_confirm_seqid(&data->lsp->ls_seqid, 0); |
| 3393 | else |
| 3394 | goto out; |
| 3395 | } |
| 3396 | if (data->rpc_status == 0) { |
| 3397 | memcpy(data->lsp->ls_stateid.data, data->res.stateid.data, |
| 3398 | sizeof(data->lsp->ls_stateid.data)); |
| 3399 | data->lsp->ls_flags |= NFS_LOCK_INITIALIZED; |
Trond Myklebust | 88be9f9 | 2007-06-05 10:42:27 -0400 | [diff] [blame] | 3400 | renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3401 | } |
| 3402 | nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid); |
| 3403 | out: |
| 3404 | dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status); |
| 3405 | } |
| 3406 | |
| 3407 | static void nfs4_lock_release(void *calldata) |
| 3408 | { |
| 3409 | struct nfs4_lockdata *data = calldata; |
| 3410 | |
| 3411 | dprintk("%s: begin!\n", __FUNCTION__); |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 3412 | nfs_free_seqid(data->arg.open_seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3413 | if (data->cancelled != 0) { |
| 3414 | struct rpc_task *task; |
| 3415 | task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp, |
| 3416 | data->arg.lock_seqid); |
| 3417 | if (!IS_ERR(task)) |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 3418 | rpc_put_task(task); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3419 | dprintk("%s: cancelling lock!\n", __FUNCTION__); |
| 3420 | } else |
| 3421 | nfs_free_seqid(data->arg.lock_seqid); |
| 3422 | nfs4_put_lock_state(data->lsp); |
| 3423 | put_nfs_open_context(data->ctx); |
| 3424 | kfree(data); |
| 3425 | dprintk("%s: done!\n", __FUNCTION__); |
| 3426 | } |
| 3427 | |
| 3428 | static const struct rpc_call_ops nfs4_lock_ops = { |
| 3429 | .rpc_call_prepare = nfs4_lock_prepare, |
| 3430 | .rpc_call_done = nfs4_lock_done, |
| 3431 | .rpc_release = nfs4_lock_release, |
| 3432 | }; |
| 3433 | |
| 3434 | static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim) |
| 3435 | { |
| 3436 | struct nfs4_lockdata *data; |
| 3437 | struct rpc_task *task; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3438 | struct rpc_task_setup task_setup_data = { |
| 3439 | .rpc_client = NFS_CLIENT(state->inode), |
| 3440 | .callback_ops = &nfs4_lock_ops, |
| 3441 | .flags = RPC_TASK_ASYNC, |
| 3442 | }; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3443 | int ret; |
| 3444 | |
| 3445 | dprintk("%s: begin!\n", __FUNCTION__); |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 3446 | data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file), |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3447 | fl->fl_u.nfs4_fl.owner); |
| 3448 | if (data == NULL) |
| 3449 | return -ENOMEM; |
| 3450 | if (IS_SETLKW(cmd)) |
| 3451 | data->arg.block = 1; |
| 3452 | if (reclaim != 0) |
| 3453 | data->arg.reclaim = 1; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3454 | task_setup_data.callback_data = data; |
| 3455 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 3456 | if (IS_ERR(task)) |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3457 | return PTR_ERR(task); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3458 | ret = nfs4_wait_for_completion_rpc_task(task); |
| 3459 | if (ret == 0) { |
| 3460 | ret = data->rpc_status; |
| 3461 | if (ret == -NFS4ERR_DENIED) |
| 3462 | ret = -EAGAIN; |
| 3463 | } else |
| 3464 | data->cancelled = 1; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 3465 | rpc_put_task(task); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 3466 | dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret); |
| 3467 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | } |
| 3469 | |
| 3470 | static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request) |
| 3471 | { |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3472 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 3473 | struct nfs4_exception exception = { }; |
| 3474 | int err; |
| 3475 | |
| 3476 | do { |
Trond Myklebust | 42a2d13 | 2006-06-29 16:38:36 -0400 | [diff] [blame] | 3477 | /* Cache the lock if possible... */ |
| 3478 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) |
| 3479 | return 0; |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3480 | err = _nfs4_do_setlk(state, F_SETLK, request, 1); |
| 3481 | if (err != -NFS4ERR_DELAY) |
| 3482 | break; |
| 3483 | nfs4_handle_exception(server, err, &exception); |
| 3484 | } while (exception.retry); |
| 3485 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 | } |
| 3487 | |
| 3488 | static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request) |
| 3489 | { |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3490 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 3491 | struct nfs4_exception exception = { }; |
| 3492 | int err; |
| 3493 | |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3494 | err = nfs4_set_lock_state(state, request); |
| 3495 | if (err != 0) |
| 3496 | return err; |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3497 | do { |
Trond Myklebust | 42a2d13 | 2006-06-29 16:38:36 -0400 | [diff] [blame] | 3498 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) |
| 3499 | return 0; |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3500 | err = _nfs4_do_setlk(state, F_SETLK, request, 0); |
| 3501 | if (err != -NFS4ERR_DELAY) |
| 3502 | break; |
| 3503 | nfs4_handle_exception(server, err, &exception); |
| 3504 | } while (exception.retry); |
| 3505 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3506 | } |
| 3507 | |
| 3508 | static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 3509 | { |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 3510 | struct nfs_client *clp = state->owner->so_client; |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3511 | unsigned char fl_flags = request->fl_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | int status; |
| 3513 | |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3514 | /* Is this a delegated open? */ |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3515 | status = nfs4_set_lock_state(state, request); |
| 3516 | if (status != 0) |
| 3517 | goto out; |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3518 | request->fl_flags |= FL_ACCESS; |
| 3519 | status = do_vfs_lock(request->fl_file, request); |
| 3520 | if (status < 0) |
| 3521 | goto out; |
| 3522 | down_read(&clp->cl_sem); |
| 3523 | if (test_bit(NFS_DELEGATED_STATE, &state->flags)) { |
| 3524 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 3525 | /* Yes: cache locks! */ |
| 3526 | down_read(&nfsi->rwsem); |
| 3527 | /* ...but avoid races with delegation recall... */ |
| 3528 | if (test_bit(NFS_DELEGATED_STATE, &state->flags)) { |
| 3529 | request->fl_flags = fl_flags & ~FL_SLEEP; |
| 3530 | status = do_vfs_lock(request->fl_file, request); |
| 3531 | up_read(&nfsi->rwsem); |
| 3532 | goto out_unlock; |
| 3533 | } |
| 3534 | up_read(&nfsi->rwsem); |
| 3535 | } |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3536 | status = _nfs4_do_setlk(state, cmd, request, 0); |
| 3537 | if (status != 0) |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3538 | goto out_unlock; |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3539 | /* Note: we always want to sleep here! */ |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3540 | request->fl_flags = fl_flags | FL_SLEEP; |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 3541 | if (do_vfs_lock(request->fl_file, request) < 0) |
| 3542 | printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__); |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3543 | out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | up_read(&clp->cl_sem); |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 3545 | out: |
| 3546 | request->fl_flags = fl_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3547 | return status; |
| 3548 | } |
| 3549 | |
| 3550 | static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 3551 | { |
| 3552 | struct nfs4_exception exception = { }; |
| 3553 | int err; |
| 3554 | |
| 3555 | do { |
| 3556 | err = nfs4_handle_exception(NFS_SERVER(state->inode), |
| 3557 | _nfs4_proc_setlk(state, cmd, request), |
| 3558 | &exception); |
| 3559 | } while (exception.retry); |
| 3560 | return err; |
| 3561 | } |
| 3562 | |
| 3563 | static int |
| 3564 | nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) |
| 3565 | { |
| 3566 | struct nfs_open_context *ctx; |
| 3567 | struct nfs4_state *state; |
| 3568 | unsigned long timeout = NFS4_LOCK_MINTIMEOUT; |
| 3569 | int status; |
| 3570 | |
| 3571 | /* verify open state */ |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 3572 | ctx = nfs_file_open_context(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3573 | state = ctx->state; |
| 3574 | |
| 3575 | if (request->fl_start < 0 || request->fl_end < 0) |
| 3576 | return -EINVAL; |
| 3577 | |
| 3578 | if (IS_GETLK(cmd)) |
| 3579 | return nfs4_proc_getlk(state, F_GETLK, request); |
| 3580 | |
| 3581 | if (!(IS_SETLK(cmd) || IS_SETLKW(cmd))) |
| 3582 | return -EINVAL; |
| 3583 | |
| 3584 | if (request->fl_type == F_UNLCK) |
| 3585 | return nfs4_proc_unlck(state, cmd, request); |
| 3586 | |
| 3587 | do { |
| 3588 | status = nfs4_proc_setlk(state, cmd, request); |
| 3589 | if ((status != -EAGAIN) || IS_SETLK(cmd)) |
| 3590 | break; |
| 3591 | timeout = nfs4_set_lock_task_retry(timeout); |
| 3592 | status = -ERESTARTSYS; |
| 3593 | if (signalled()) |
| 3594 | break; |
| 3595 | } while(status < 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | return status; |
| 3597 | } |
| 3598 | |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 3599 | int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl) |
| 3600 | { |
| 3601 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 3602 | struct nfs4_exception exception = { }; |
| 3603 | int err; |
| 3604 | |
| 3605 | err = nfs4_set_lock_state(state, fl); |
| 3606 | if (err != 0) |
| 3607 | goto out; |
| 3608 | do { |
| 3609 | err = _nfs4_do_setlk(state, F_SETLK, fl, 0); |
| 3610 | if (err != -NFS4ERR_DELAY) |
| 3611 | break; |
| 3612 | err = nfs4_handle_exception(server, err, &exception); |
| 3613 | } while (exception.retry); |
| 3614 | out: |
| 3615 | return err; |
| 3616 | } |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3617 | |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3618 | #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl" |
| 3619 | |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3620 | int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf, |
| 3621 | size_t buflen, int flags) |
| 3622 | { |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 3623 | struct inode *inode = dentry->d_inode; |
| 3624 | |
| 3625 | if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0) |
| 3626 | return -EOPNOTSUPP; |
| 3627 | |
| 3628 | if (!S_ISREG(inode->i_mode) && |
| 3629 | (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX)) |
| 3630 | return -EPERM; |
| 3631 | |
| 3632 | return nfs4_proc_set_acl(inode, buf, buflen); |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3633 | } |
| 3634 | |
| 3635 | /* The getxattr man page suggests returning -ENODATA for unknown attributes, |
| 3636 | * and that's what we'll do for e.g. user attributes that haven't been set. |
| 3637 | * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported |
| 3638 | * attributes in kernel-managed attribute namespaces. */ |
| 3639 | ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf, |
| 3640 | size_t buflen) |
| 3641 | { |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3642 | struct inode *inode = dentry->d_inode; |
| 3643 | |
| 3644 | if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0) |
| 3645 | return -EOPNOTSUPP; |
| 3646 | |
| 3647 | return nfs4_proc_get_acl(inode, buf, buflen); |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3648 | } |
| 3649 | |
| 3650 | ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen) |
| 3651 | { |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3652 | size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1; |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3653 | |
J. Bruce Fields | 096455a | 2006-03-20 23:23:42 -0500 | [diff] [blame] | 3654 | if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode))) |
| 3655 | return 0; |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3656 | if (buf && buflen < len) |
| 3657 | return -ERANGE; |
| 3658 | if (buf) |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3659 | memcpy(buf, XATTR_NAME_NFSV4_ACL, len); |
| 3660 | return len; |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3661 | } |
| 3662 | |
Trond Myklebust | 56659e9 | 2007-07-17 21:52:39 -0400 | [diff] [blame] | 3663 | int nfs4_proc_fs_locations(struct inode *dir, const struct qstr *name, |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 3664 | struct nfs4_fs_locations *fs_locations, struct page *page) |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3665 | { |
| 3666 | struct nfs_server *server = NFS_SERVER(dir); |
| 3667 | u32 bitmask[2] = { |
Manoj Naik | 361e624 | 2006-06-09 09:34:24 -0400 | [diff] [blame] | 3668 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, |
| 3669 | [1] = FATTR4_WORD1_MOUNTED_ON_FILEID, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3670 | }; |
| 3671 | struct nfs4_fs_locations_arg args = { |
| 3672 | .dir_fh = NFS_FH(dir), |
Trond Myklebust | c228fd3 | 2007-01-13 02:28:11 -0500 | [diff] [blame] | 3673 | .name = name, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3674 | .page = page, |
| 3675 | .bitmask = bitmask, |
| 3676 | }; |
| 3677 | struct rpc_message msg = { |
| 3678 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], |
| 3679 | .rpc_argp = &args, |
Manoj Naik | 7aaa0b3 | 2006-06-09 09:34:23 -0400 | [diff] [blame] | 3680 | .rpc_resp = fs_locations, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3681 | }; |
| 3682 | int status; |
| 3683 | |
| 3684 | dprintk("%s: start\n", __FUNCTION__); |
Trond Myklebust | c228fd3 | 2007-01-13 02:28:11 -0500 | [diff] [blame] | 3685 | nfs_fattr_init(&fs_locations->fattr); |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3686 | fs_locations->server = server; |
Manoj Naik | 830b8e3 | 2006-06-09 09:34:25 -0400 | [diff] [blame] | 3687 | fs_locations->nlocations = 0; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 3688 | status = rpc_call_sync(server->client, &msg, 0); |
| 3689 | dprintk("%s: returned status = %d\n", __FUNCTION__, status); |
| 3690 | return status; |
| 3691 | } |
| 3692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = { |
| 3694 | .recover_open = nfs4_open_reclaim, |
| 3695 | .recover_lock = nfs4_lock_reclaim, |
| 3696 | }; |
| 3697 | |
| 3698 | struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = { |
| 3699 | .recover_open = nfs4_open_expired, |
| 3700 | .recover_lock = nfs4_lock_expired, |
| 3701 | }; |
| 3702 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 3703 | static const struct inode_operations nfs4_file_inode_operations = { |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3704 | .permission = nfs_permission, |
| 3705 | .getattr = nfs_getattr, |
| 3706 | .setattr = nfs_setattr, |
| 3707 | .getxattr = nfs4_getxattr, |
| 3708 | .setxattr = nfs4_setxattr, |
| 3709 | .listxattr = nfs4_listxattr, |
| 3710 | }; |
| 3711 | |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 3712 | const struct nfs_rpc_ops nfs_v4_clientops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3713 | .version = 4, /* protocol version */ |
| 3714 | .dentry_ops = &nfs4_dentry_operations, |
| 3715 | .dir_inode_ops = &nfs4_dir_inode_operations, |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 3716 | .file_inode_ops = &nfs4_file_inode_operations, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3717 | .getroot = nfs4_proc_get_root, |
| 3718 | .getattr = nfs4_proc_getattr, |
| 3719 | .setattr = nfs4_proc_setattr, |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3720 | .lookupfh = nfs4_proc_lookupfh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | .lookup = nfs4_proc_lookup, |
| 3722 | .access = nfs4_proc_access, |
| 3723 | .readlink = nfs4_proc_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | .create = nfs4_proc_create, |
| 3725 | .remove = nfs4_proc_remove, |
| 3726 | .unlink_setup = nfs4_proc_unlink_setup, |
| 3727 | .unlink_done = nfs4_proc_unlink_done, |
| 3728 | .rename = nfs4_proc_rename, |
| 3729 | .link = nfs4_proc_link, |
| 3730 | .symlink = nfs4_proc_symlink, |
| 3731 | .mkdir = nfs4_proc_mkdir, |
| 3732 | .rmdir = nfs4_proc_remove, |
| 3733 | .readdir = nfs4_proc_readdir, |
| 3734 | .mknod = nfs4_proc_mknod, |
| 3735 | .statfs = nfs4_proc_statfs, |
| 3736 | .fsinfo = nfs4_proc_fsinfo, |
| 3737 | .pathconf = nfs4_proc_pathconf, |
David Howells | e9326dc | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 3738 | .set_capabilities = nfs4_server_capabilities, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | .decode_dirent = nfs4_decode_dirent, |
| 3740 | .read_setup = nfs4_proc_read_setup, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 3741 | .read_done = nfs4_read_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | .write_setup = nfs4_proc_write_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 3743 | .write_done = nfs4_write_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3744 | .commit_setup = nfs4_proc_commit_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 3745 | .commit_done = nfs4_commit_done, |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 3746 | .file_open = nfs_open, |
| 3747 | .file_release = nfs_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3748 | .lock = nfs4_proc_lock, |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 3749 | .clear_acl_cache = nfs4_zap_acl_attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | }; |
| 3751 | |
| 3752 | /* |
| 3753 | * Local variables: |
| 3754 | * c-basic-offset: 8 |
| 3755 | * End: |
| 3756 | */ |