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