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