blob: 3a2af8053767afb129bd80e0fce06762bb3c734e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Myklebust02a913a2005-10-18 14:20:17 -070050#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trond Myklebust4ce79712005-06-22 17:16:21 +000052#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "delegation.h"
Chuck Lever006ea732006-03-20 13:44:14 -050054#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define NFSDBG_FACILITY NFSDBG_PROC
57
Trond Myklebust2066fe82006-09-15 08:30:46 -040058#define NFS4_POLL_RETRY_MIN (HZ/10)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define NFS4_POLL_RETRY_MAX (15*HZ)
60
Trond Myklebustcdd4e682006-01-03 09:55:12 +010061struct nfs4_opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +010062static int _nfs4_proc_open(struct nfs4_opendata *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070064static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry);
Trond Myklebustfaf5f492005-10-18 14:20:15 -070066static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception);
David Howellsadfa6f92006-08-22 20:06:08 -040067static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp);
Trond Myklebustaac00a82007-07-05 19:02:21 -040068static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Prevent leaks of NFSv4 errors into userland */
71int 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 */
84const 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
101const 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 Myklebust4ce79712005-06-22 17:16:21 +0000110const u32 nfs4_pathconf_bitmap[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 FATTR4_WORD0_MAXLINK
112 | FATTR4_WORD0_MAXNAME,
113 0
114};
115
116const 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 Naik830b8e32006-06-09 09:34:25 -0400123const 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 Virobc4785c2006-10-19 23:28:51 -0700142static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct nfs4_readdir_arg *readdir)
144{
Al Viro0dbb4c62006-10-19 23:28:49 -0700145 __be32 *start, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 BUG_ON(readdir->count < 80);
148 if (cookie > 2) {
Adrian Bunkb7ef1952005-06-22 17:16:28 +0000149 readdir->cookie = cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 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 Viro0dbb4c62006-10-19 23:28:49 -0700166 start = p = kmap_atomic(*readdir->pages, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
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 Myklebust26e976a2006-01-03 09:55:21 +0100197static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
David Howells7539bba2006-08-22 20:06:09 -0400199 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 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 Myklebust38478b22006-05-25 01:40:57 -0400206static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Trond Myklebust38478b22006-05-25 01:40:57 -0400208 struct nfs_inode *nfsi = NFS_I(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Trond Myklebust38478b22006-05-25 01:40:57 -0400210 spin_lock(&dir->i_lock);
211 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (cinfo->before == nfsi->change_attr && cinfo->atomic)
213 nfsi->change_attr = cinfo->after;
Trond Myklebust38478b22006-05-25 01:40:57 -0400214 spin_unlock(&dir->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100217struct nfs4_opendata {
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400218 struct kref kref;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100219 struct nfs_openargs o_arg;
220 struct nfs_openres o_res;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100221 struct nfs_open_confirmargs c_arg;
222 struct nfs_open_confirmres c_res;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100223 struct nfs_fattr f_attr;
224 struct nfs_fattr dir_attr;
Trond Myklebustad389da2007-06-05 12:30:00 -0400225 struct path path;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100226 struct dentry *dir;
227 struct nfs4_state_owner *owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400228 struct nfs4_state *state;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100229 struct iattr attrs;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100230 unsigned long timestamp;
Trond Myklebust3e309912007-07-07 13:19:59 -0400231 unsigned int rpc_done : 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100232 int rpc_status;
233 int cancelled;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100234};
235
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400236
237static 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 Myklebustad389da2007-06-05 12:30:00 -0400246static struct nfs4_opendata *nfs4_opendata_alloc(struct path *path,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100247 struct nfs4_state_owner *sp, int flags,
248 const struct iattr *attrs)
249{
Trond Myklebustad389da2007-06-05 12:30:00 -0400250 struct dentry *parent = dget_parent(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100251 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 Myklebustad389da2007-06-05 12:30:00 -0400261 p->path.mnt = mntget(path->mnt);
262 p->path.dentry = dget(path->dentry);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100263 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 Howells7539bba2006-08-22 20:06:09 -0400268 p->o_arg.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400269 p->o_arg.id = sp->so_owner_id.id;
Trond Myklebustad389da2007-06-05 12:30:00 -0400270 p->o_arg.name = &p->path.dentry->d_name;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100271 p->o_arg.server = server;
272 p->o_arg.bitmask = server->attr_bitmask;
273 p->o_arg.claim = NFS4_OPEN_CLAIM_NULL;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100274 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 Myklebustcdd4e682006-01-03 09:55:12 +0100282 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 Myklebust2ced46c2007-07-03 23:48:13 -0400285 nfs4_init_opendata_res(p);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400286 kref_init(&p->kref);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100287 return p;
288err_free:
289 kfree(p);
290err:
291 dput(parent);
292 return NULL;
293}
294
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400295static void nfs4_opendata_free(struct kref *kref)
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100296{
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400297 struct nfs4_opendata *p = container_of(kref,
298 struct nfs4_opendata, kref);
299
300 nfs_free_seqid(p->o_arg.seqid);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400301 if (p->state != NULL)
302 nfs4_put_open_state(p->state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400303 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
310static void nfs4_opendata_put(struct nfs4_opendata *p)
311{
312 if (p != NULL)
313 kref_put(&p->kref, nfs4_opendata_free);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100314}
315
Trond Myklebust06f814a2006-01-03 09:55:07 +0100316static 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 Myklebust6ee41262007-07-08 14:11:36 -0400327static 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 Myklebustaac00a82007-07-05 19:02:21 -0400345static 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 Myklebust003707c2007-07-05 18:07:55 -0400354static void update_open_stateflags(struct nfs4_state *state, mode_t open_flags)
Trond Myklebuste7616922006-01-03 09:55:13 +0100355{
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 Myklebust003707c2007-07-05 18:07:55 -0400366 nfs4_state_set_mode_locked(state, state->state | open_flags);
Trond Myklebuste7616922006-01-03 09:55:13 +0100367}
368
Trond Myklebust003707c2007-07-05 18:07:55 -0400369static 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
386static 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
395static void update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *deleg_stateid, int open_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct inode *inode = state->inode;
398
399 open_flags &= (FMODE_READ|FMODE_WRITE);
Trond Myklebustd5308382005-11-04 15:33:38 -0500400 /* Protect against nfs4_find_state_byowner() */
Trond Myklebustec073422005-10-20 14:22:47 -0700401 spin_lock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 spin_lock(&inode->i_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -0400403 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 Myklebuste7616922006-01-03 09:55:13 +0100409 update_open_stateflags(state, open_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 spin_unlock(&inode->i_lock);
Trond Myklebustec073422005-10-20 14:22:47 -0700411 spin_unlock(&state->owner->so_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Trond Myklebustaac00a82007-07-05 19:02:21 -0400414static 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 Myklebust6ee41262007-07-08 14:11:36 -0400428static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
Trond Myklebustaac00a82007-07-05 19:02:21 -0400429{
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 Myklebustaac00a82007-07-05 19:02:21 -0400439 for (;;) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400440 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 Myklebustaac00a82007-07-05 19:02:21 -0400452 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 Myklebust6ee41262007-07-08 14:11:36 -0400465 /* If no delegation, try a cached open */
Trond Myklebustaac00a82007-07-05 19:02:21 -0400466 if (delegation == NULL)
Trond Myklebust6ee41262007-07-08 14:11:36 -0400467 continue;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400468 /* 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 Myklebustaac00a82007-07-05 19:02:21 -0400475 rcu_read_unlock();
476out:
477 return ERR_PTR(ret);
478out_return_state:
479 atomic_inc(&state->count);
480 return state;
481}
482
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100483static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
484{
485 struct inode *inode;
486 struct nfs4_state *state = NULL;
Trond Myklebust003707c2007-07-05 18:07:55 -0400487 struct nfs_delegation *delegation;
488 nfs4_stateid *deleg_stateid = NULL;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400489 int ret;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100490
Trond Myklebustaac00a82007-07-05 19:02:21 -0400491 if (!data->rpc_done) {
Trond Myklebust6ee41262007-07-08 14:11:36 -0400492 state = nfs4_try_open_cached(data);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400493 goto out;
494 }
495
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400496 ret = -EAGAIN;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100497 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400498 goto err;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100499 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400500 ret = PTR_ERR(inode);
Trond Myklebust03f28e32006-03-20 13:44:48 -0500501 if (IS_ERR(inode))
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400502 goto err;
503 ret = -ENOMEM;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100504 state = nfs4_get_open_state(inode, data->owner);
505 if (state == NULL)
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400506 goto err_put_inode;
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400507 if (data->o_res.delegation_type != 0) {
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400508 int delegation_flags = 0;
509
Trond Myklebust003707c2007-07-05 18:07:55 -0400510 rcu_read_lock();
511 delegation = rcu_dereference(NFS_I(inode)->delegation);
512 if (delegation)
513 delegation_flags = delegation->flags;
514 rcu_read_unlock();
Trond Myklebust549d6ed2007-07-03 16:42:45 -0400515 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 Myklebust003707c2007-07-05 18:07:55 -0400524 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 Myklebust24ac23a2006-01-03 09:55:11 +0100530 iput(inode);
Trond Myklebustaac00a82007-07-05 19:02:21 -0400531out:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100532 return state;
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400533err_put_inode:
534 iput(inode);
535err:
536 return ERR_PTR(ret);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100537}
538
Trond Myklebust864472e2006-01-03 09:55:15 +0100539static 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 Myklebust2ced46c2007-07-03 23:48:13 -0400556static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, struct nfs4_state **res)
Trond Myklebust864472e2006-01-03 09:55:15 +0100557{
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400558 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100559 int ret;
560
561 opendata->o_arg.open_flags = openflags;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400562 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 Myklebust864472e2006-01-03 09:55:15 +0100565 ret = _nfs4_proc_open(opendata);
566 if (ret != 0)
567 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400568 newstate = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400569 if (IS_ERR(newstate))
570 return PTR_ERR(newstate);
571 nfs4_close_state(&opendata->path, newstate, openflags);
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400572 *res = newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100573 return 0;
574}
575
576static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
577{
Trond Myklebust864472e2006-01-03 09:55:15 +0100578 struct nfs4_state *newstate;
Trond Myklebust864472e2006-01-03 09:55:15 +0100579 int ret;
580
581 /* memory barrier prior to reading state->n_* */
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400582 clear_bit(NFS_DELEGATED_STATE, &state->flags);
Trond Myklebust864472e2006-01-03 09:55:15 +0100583 smp_rmb();
584 if (state->n_rdwr != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400585 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100586 if (ret != 0)
587 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400588 if (newstate != state)
589 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100590 }
591 if (state->n_wronly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400592 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100593 if (ret != 0)
594 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400595 if (newstate != state)
596 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100597 }
598 if (state->n_rdonly != 0) {
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400599 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
Trond Myklebust864472e2006-01-03 09:55:15 +0100600 if (ret != 0)
601 return ret;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400602 if (newstate != state)
603 return -ESTALE;
Trond Myklebust864472e2006-01-03 09:55:15 +0100604 }
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400605 /*
606 * We may have performed cached opens for all three recoveries.
607 * Check if we need to update the current stateid.
608 */
609 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
610 memcmp(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data)) != 0) {
611 spin_lock(&state->owner->so_lock);
612 spin_lock(&state->inode->i_lock);
613 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
614 memcpy(state->stateid.data, state->open_stateid.data, sizeof(state->stateid.data));
615 spin_unlock(&state->inode->i_lock);
616 spin_unlock(&state->owner->so_lock);
617 }
Trond Myklebust864472e2006-01-03 09:55:15 +0100618 return 0;
619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
622 * OPEN_RECLAIM:
623 * reclaim state on the server after a reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400625static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400627 struct nfs_delegation *delegation;
Trond Myklebust864472e2006-01-03 09:55:15 +0100628 struct nfs4_opendata *opendata;
629 int delegation_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int status;
631
Trond Myklebustad389da2007-06-05 12:30:00 -0400632 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
Trond Myklebust864472e2006-01-03 09:55:15 +0100633 if (opendata == NULL)
Trond Myklebustcee54fc2005-10-18 14:20:12 -0700634 return -ENOMEM;
Trond Myklebust864472e2006-01-03 09:55:15 +0100635 opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
636 opendata->o_arg.fh = NFS_FH(state->inode);
637 nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400638 rcu_read_lock();
639 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
640 if (delegation != NULL && (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) != 0)
641 delegation_type = delegation->flags;
642 rcu_read_unlock();
Trond Myklebust864472e2006-01-03 09:55:15 +0100643 opendata->o_arg.u.delegation_type = delegation_type;
644 status = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400645 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return status;
647}
648
Trond Myklebust539cd032007-06-05 11:46:42 -0400649static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 struct nfs_server *server = NFS_SERVER(state->inode);
652 struct nfs4_exception exception = { };
653 int err;
654 do {
Trond Myklebust539cd032007-06-05 11:46:42 -0400655 err = _nfs4_do_open_reclaim(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +0000656 if (err != -NFS4ERR_DELAY)
657 break;
658 nfs4_handle_exception(server, err, &exception);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 } while (exception.retry);
660 return err;
661}
662
Trond Myklebust864472e2006-01-03 09:55:15 +0100663static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
664{
665 struct nfs_open_context *ctx;
666 int ret;
667
668 ctx = nfs4_state_find_open_context(state);
669 if (IS_ERR(ctx))
670 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -0400671 ret = nfs4_do_open_reclaim(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +0100672 put_nfs_open_context(ctx);
673 return ret;
674}
675
Trond Myklebust13437e12007-07-06 15:10:43 -0400676static int _nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678 struct nfs4_state_owner *sp = state->owner;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100679 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100680 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Trond Myklebustad389da2007-06-05 12:30:00 -0400682 opendata = nfs4_opendata_alloc(&ctx->path, sp, 0, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100683 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100684 return -ENOMEM;
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100685 opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
Trond Myklebust13437e12007-07-06 15:10:43 -0400686 memcpy(opendata->o_arg.u.delegation.data, stateid->data,
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100687 sizeof(opendata->o_arg.u.delegation.data));
Trond Myklebust864472e2006-01-03 09:55:15 +0100688 ret = nfs4_open_recover(opendata, state);
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400689 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +0100690 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Trond Myklebust13437e12007-07-06 15:10:43 -0400693int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct nfs4_exception exception = { };
Trond Myklebust539cd032007-06-05 11:46:42 -0400696 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int err;
698 do {
Trond Myklebust13437e12007-07-06 15:10:43 -0400699 err = _nfs4_open_delegation_recall(ctx, state, stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 switch (err) {
701 case 0:
702 return err;
703 case -NFS4ERR_STALE_CLIENTID:
704 case -NFS4ERR_STALE_STATEID:
705 case -NFS4ERR_EXPIRED:
706 /* Don't recall a delegation if it was lost */
David Howells7539bba2006-08-22 20:06:09 -0400707 nfs4_schedule_state_recovery(server->nfs_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return err;
709 }
710 err = nfs4_handle_exception(server, err, &exception);
711 } while (exception.retry);
712 return err;
713}
714
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100715static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100717 struct nfs4_opendata *data = calldata;
718 struct rpc_message msg = {
719 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
720 .rpc_argp = &data->c_arg,
721 .rpc_resp = &data->c_res,
722 .rpc_cred = data->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 };
Trond Myklebust26e976a2006-01-03 09:55:21 +0100724 data->timestamp = jiffies;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100725 rpc_call_setup(task, &msg, 0);
726}
727
728static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
729{
730 struct nfs4_opendata *data = calldata;
731
732 data->rpc_status = task->tk_status;
733 if (RPC_ASSASSINATED(task))
734 return;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100735 if (data->rpc_status == 0) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100736 memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
737 sizeof(data->o_res.stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +0100738 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust3e309912007-07-07 13:19:59 -0400739 data->rpc_done = 1;
Trond Myklebust26e976a2006-01-03 09:55:21 +0100740 }
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100741 nfs_confirm_seqid(&data->owner->so_seqid, data->rpc_status);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400742 nfs_increment_open_seqid(data->rpc_status, data->c_arg.seqid);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100743}
744
745static void nfs4_open_confirm_release(void *calldata)
746{
747 struct nfs4_opendata *data = calldata;
748 struct nfs4_state *state = NULL;
749
750 /* If this request hasn't been cancelled, do nothing */
751 if (data->cancelled == 0)
752 goto out_free;
753 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400754 if (!data->rpc_done)
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100755 goto out_free;
756 nfs_confirm_seqid(&data->owner->so_seqid, 0);
757 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400758 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400759 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100760out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400761 nfs4_opendata_put(data);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100762}
763
764static const struct rpc_call_ops nfs4_open_confirm_ops = {
765 .rpc_call_prepare = nfs4_open_confirm_prepare,
766 .rpc_call_done = nfs4_open_confirm_done,
767 .rpc_release = nfs4_open_confirm_release,
768};
769
770/*
771 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
772 */
773static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
774{
775 struct nfs_server *server = NFS_SERVER(data->dir->d_inode);
776 struct rpc_task *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 int status;
778
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400779 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400780 data->rpc_done = 0;
781 data->rpc_status = 0;
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100782 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_confirm_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500783 if (IS_ERR(task))
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100784 return PTR_ERR(task);
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100785 status = nfs4_wait_for_completion_rpc_task(task);
786 if (status != 0) {
787 data->cancelled = 1;
788 smp_wmb();
789 } else
790 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500791 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return status;
793}
794
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100795static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100797 struct nfs4_opendata *data = calldata;
798 struct nfs4_state_owner *sp = data->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct rpc_message msg = {
800 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100801 .rpc_argp = &data->o_arg,
802 .rpc_resp = &data->o_res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 .rpc_cred = sp->so_cred,
804 };
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100805
806 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
807 return;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400808 /*
809 * Check if we still need to send an OPEN call, or if we can use
810 * a delegation instead.
811 */
812 if (data->state != NULL) {
813 struct nfs_delegation *delegation;
814
Trond Myklebust6ee41262007-07-08 14:11:36 -0400815 if (can_open_cached(data->state, data->o_arg.open_flags & (FMODE_READ|FMODE_WRITE|O_EXCL)))
816 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400817 rcu_read_lock();
818 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
819 if (delegation != NULL &&
820 (delegation->flags & NFS_DELEGATION_NEED_RECLAIM) == 0) {
821 rcu_read_unlock();
Trond Myklebust6ee41262007-07-08 14:11:36 -0400822 goto out_no_action;
Trond Myklebustaac00a82007-07-05 19:02:21 -0400823 }
824 rcu_read_unlock();
825 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100826 /* Update sequence id. */
Trond Myklebust9f958ab2007-07-02 13:58:33 -0400827 data->o_arg.id = sp->so_owner_id.id;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100828 data->o_arg.clientid = sp->so_client->cl_clientid;
Trond Myklebust864472e2006-01-03 09:55:15 +0100829 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
830 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
Trond Myklebust26e976a2006-01-03 09:55:21 +0100831 data->timestamp = jiffies;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100832 rpc_call_setup(task, &msg, 0);
Trond Myklebust6ee41262007-07-08 14:11:36 -0400833 return;
834out_no_action:
835 task->tk_action = NULL;
836
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100839static void nfs4_open_done(struct rpc_task *task, void *calldata)
840{
841 struct nfs4_opendata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100843 data->rpc_status = task->tk_status;
844 if (RPC_ASSASSINATED(task))
845 return;
846 if (task->tk_status == 0) {
847 switch (data->o_res.f_attr->mode & S_IFMT) {
Trond Myklebust6f926b52005-10-18 14:20:18 -0700848 case S_IFREG:
849 break;
850 case S_IFLNK:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100851 data->rpc_status = -ELOOP;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700852 break;
853 case S_IFDIR:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100854 data->rpc_status = -EISDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700855 break;
856 default:
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100857 data->rpc_status = -ENOTDIR;
Trond Myklebust6f926b52005-10-18 14:20:18 -0700858 }
Trond Myklebust26e976a2006-01-03 09:55:21 +0100859 renew_lease(data->o_res.server, data->timestamp);
Trond Myklebust0f9f95e2007-07-08 16:19:56 -0400860 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
861 nfs_confirm_seqid(&data->owner->so_seqid, 0);
Trond Myklebust6f926b52005-10-18 14:20:18 -0700862 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100863 nfs_increment_open_seqid(data->rpc_status, data->o_arg.seqid);
Trond Myklebust3e309912007-07-07 13:19:59 -0400864 data->rpc_done = 1;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100865}
Trond Myklebust6f926b52005-10-18 14:20:18 -0700866
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100867static void nfs4_open_release(void *calldata)
868{
869 struct nfs4_opendata *data = calldata;
870 struct nfs4_state *state = NULL;
871
872 /* If this request hasn't been cancelled, do nothing */
873 if (data->cancelled == 0)
874 goto out_free;
875 /* In case of error, no cleanup! */
Trond Myklebust3e309912007-07-07 13:19:59 -0400876 if (data->rpc_status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100877 goto out_free;
878 /* In case we need an open_confirm, no cleanup! */
879 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
880 goto out_free;
881 nfs_confirm_seqid(&data->owner->so_seqid, 0);
882 state = nfs4_opendata_to_nfs4_state(data);
Trond Myklebust1b370bc2007-07-07 08:04:47 -0400883 if (!IS_ERR(state))
Trond Myklebust4a35bd42007-06-05 10:31:33 -0400884 nfs4_close_state(&data->path, state, data->o_arg.open_flags);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100885out_free:
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400886 nfs4_opendata_put(data);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100887}
888
889static const struct rpc_call_ops nfs4_open_ops = {
890 .rpc_call_prepare = nfs4_open_prepare,
891 .rpc_call_done = nfs4_open_done,
892 .rpc_release = nfs4_open_release,
893};
894
895/*
896 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
897 */
898static int _nfs4_proc_open(struct nfs4_opendata *data)
899{
900 struct inode *dir = data->dir->d_inode;
901 struct nfs_server *server = NFS_SERVER(dir);
902 struct nfs_openargs *o_arg = &data->o_arg;
903 struct nfs_openres *o_res = &data->o_res;
904 struct rpc_task *task;
905 int status;
906
Trond Myklebustc6d00e62007-06-17 16:02:44 -0400907 kref_get(&data->kref);
Trond Myklebust3e309912007-07-07 13:19:59 -0400908 data->rpc_done = 0;
909 data->rpc_status = 0;
Trond Myklebust2ced46c2007-07-03 23:48:13 -0400910 data->cancelled = 0;
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100911 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_open_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -0500912 if (IS_ERR(task))
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100913 return PTR_ERR(task);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100914 status = nfs4_wait_for_completion_rpc_task(task);
915 if (status != 0) {
916 data->cancelled = 1;
917 smp_wmb();
918 } else
919 status = data->rpc_status;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500920 rpc_put_task(task);
Trond Myklebust3e309912007-07-07 13:19:59 -0400921 if (status != 0 || !data->rpc_done)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100922 return status;
923
Trond Myklebust56ae19f2005-10-27 22:12:40 -0400924 if (o_arg->open_flags & O_CREAT) {
925 update_changeattr(dir, &o_res->cinfo);
926 nfs_post_op_update_inode(dir, o_res->dir_attr);
927 } else
928 nfs_refresh_inode(dir, o_res->dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
Trond Myklebustcdd4e682006-01-03 09:55:12 +0100930 status = _nfs4_proc_open_confirm(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (status != 0)
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100932 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
David Howells8fa5c002006-08-22 20:06:12 -0400935 return server->nfs_client->rpc_ops->getattr(server, &o_res->fh, o_res->f_attr);
Trond Myklebust24ac23a2006-01-03 09:55:11 +0100936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openflags)
940{
941 struct nfs_access_entry cache;
942 int mask = 0;
943 int status;
944
945 if (openflags & FMODE_READ)
946 mask |= MAY_READ;
947 if (openflags & FMODE_WRITE)
948 mask |= MAY_WRITE;
Trond Myklebust1b45c462007-07-03 13:04:56 -0400949 if (openflags & FMODE_EXEC)
950 mask |= MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 status = nfs_access_get_cached(inode, cred, &cache);
952 if (status == 0)
953 goto out;
954
955 /* Be clever: ask server to check for all possible rights */
956 cache.mask = MAY_EXEC | MAY_WRITE | MAY_READ;
957 cache.cred = cred;
958 cache.jiffies = jiffies;
959 status = _nfs4_proc_access(inode, &cache);
960 if (status != 0)
961 return status;
962 nfs_access_add_cache(inode, &cache);
963out:
964 if ((cache.mask & mask) == mask)
965 return 0;
966 return -EACCES;
967}
968
Trond Myklebust10afec92007-05-14 17:16:04 -0400969static int nfs4_recover_expired_lease(struct nfs_server *server)
Trond Myklebust58d97142006-01-03 09:55:24 +0100970{
David Howells7539bba2006-08-22 20:06:09 -0400971 struct nfs_client *clp = server->nfs_client;
Trond Myklebust6b309542006-09-14 14:03:14 -0400972 int ret;
Trond Myklebust58d97142006-01-03 09:55:24 +0100973
Trond Myklebust6b309542006-09-14 14:03:14 -0400974 for (;;) {
975 ret = nfs4_wait_clnt_recover(server->client, clp);
976 if (ret != 0)
977 return ret;
978 if (!test_and_clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state))
979 break;
Trond Myklebust58d97142006-01-03 09:55:24 +0100980 nfs4_schedule_state_recovery(clp);
Trond Myklebust6b309542006-09-14 14:03:14 -0400981 }
982 return 0;
Trond Myklebust58d97142006-01-03 09:55:24 +0100983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/*
986 * OPEN_EXPIRED:
987 * reclaim state on the server after a network partition.
988 * Assumes caller holds the appropriate lock
989 */
Trond Myklebust539cd032007-06-05 11:46:42 -0400990static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100992 struct nfs4_opendata *opendata;
Trond Myklebust864472e2006-01-03 09:55:15 +0100993 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Trond Myklebust1ac7e2f2007-07-08 21:04:15 -0400995 opendata = nfs4_opendata_alloc(&ctx->path, state->owner, 0, NULL);
Trond Myklebuste56e0b782006-01-03 09:55:08 +0100996 if (opendata == NULL)
Trond Myklebust864472e2006-01-03 09:55:15 +0100997 return -ENOMEM;
998 ret = nfs4_open_recover(opendata, state);
999 if (ret == -ESTALE) {
1000 /* Invalidate the state owner so we don't ever use it again */
Trond Myklebust539cd032007-06-05 11:46:42 -04001001 nfs4_drop_state_owner(state->owner);
1002 d_drop(ctx->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001004 nfs4_opendata_put(opendata);
Trond Myklebust864472e2006-01-03 09:55:15 +01001005 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Trond Myklebust539cd032007-06-05 11:46:42 -04001008static inline int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
Trond Myklebust202b50d2005-06-22 17:16:29 +00001009{
Trond Myklebust539cd032007-06-05 11:46:42 -04001010 struct nfs_server *server = NFS_SERVER(state->inode);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001011 struct nfs4_exception exception = { };
1012 int err;
1013
1014 do {
Trond Myklebust539cd032007-06-05 11:46:42 -04001015 err = _nfs4_open_expired(ctx, state);
Trond Myklebust202b50d2005-06-22 17:16:29 +00001016 if (err == -NFS4ERR_DELAY)
1017 nfs4_handle_exception(server, err, &exception);
1018 } while (exception.retry);
1019 return err;
1020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
1023{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct nfs_open_context *ctx;
Trond Myklebust864472e2006-01-03 09:55:15 +01001025 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Trond Myklebust864472e2006-01-03 09:55:15 +01001027 ctx = nfs4_state_find_open_context(state);
1028 if (IS_ERR(ctx))
1029 return PTR_ERR(ctx);
Trond Myklebust539cd032007-06-05 11:46:42 -04001030 ret = nfs4_do_open_expired(ctx, state);
Trond Myklebust864472e2006-01-03 09:55:15 +01001031 put_nfs_open_context(ctx);
1032 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/*
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001036 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1037 * fields corresponding to attributes that were used to store the verifier.
1038 * Make sure we clobber those fields in the later setattr call
1039 */
1040static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
1041{
1042 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
1043 !(sattr->ia_valid & ATTR_ATIME_SET))
1044 sattr->ia_valid |= ATTR_ATIME;
1045
1046 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
1047 !(sattr->ia_valid & ATTR_MTIME_SET))
1048 sattr->ia_valid |= ATTR_MTIME;
1049}
1050
1051/*
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001052 * Returns a referenced nfs4_state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
Trond Myklebustad389da2007-06-05 12:30:00 -04001054static int _nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred, struct nfs4_state **res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 struct nfs4_state_owner *sp;
1057 struct nfs4_state *state = NULL;
1058 struct nfs_server *server = NFS_SERVER(dir);
David Howells7539bba2006-08-22 20:06:09 -04001059 struct nfs_client *clp = server->nfs_client;
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001060 struct nfs4_opendata *opendata;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001061 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /* Protect against reboot recovery conflicts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 status = -ENOMEM;
1065 if (!(sp = nfs4_get_state_owner(server, cred))) {
1066 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1067 goto out_err;
1068 }
Trond Myklebust58d97142006-01-03 09:55:24 +01001069 status = nfs4_recover_expired_lease(server);
1070 if (status != 0)
Trond Myklebustb4454fe2006-01-03 09:55:25 +01001071 goto err_put_state_owner;
Trond Myklebustaac00a82007-07-05 19:02:21 -04001072 if (path->dentry->d_inode != NULL)
1073 nfs4_return_incompatible_delegation(path->dentry->d_inode, flags & (FMODE_READ|FMODE_WRITE));
Trond Myklebust58d97142006-01-03 09:55:24 +01001074 down_read(&clp->cl_sem);
1075 status = -ENOMEM;
Trond Myklebustad389da2007-06-05 12:30:00 -04001076 opendata = nfs4_opendata_alloc(path, sp, flags, sattr);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001077 if (opendata == NULL)
Trond Myklebust76723de2006-09-15 08:11:51 -04001078 goto err_release_rwsem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Trond Myklebustaac00a82007-07-05 19:02:21 -04001080 if (path->dentry->d_inode != NULL)
1081 opendata->state = nfs4_get_open_state(path->dentry->d_inode, sp);
1082
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001083 status = _nfs4_proc_open(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (status != 0)
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001085 goto err_opendata_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001087 if (opendata->o_arg.open_flags & O_EXCL)
1088 nfs4_exclusive_attrset(opendata, sattr);
1089
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001090 state = nfs4_opendata_to_nfs4_state(opendata);
Trond Myklebust1b370bc2007-07-07 08:04:47 -04001091 status = PTR_ERR(state);
1092 if (IS_ERR(state))
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001093 goto err_opendata_put;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001094 nfs4_opendata_put(opendata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 nfs4_put_state_owner(sp);
1096 up_read(&clp->cl_sem);
1097 *res = state;
1098 return 0;
Trond Myklebustc6d00e62007-06-17 16:02:44 -04001099err_opendata_put:
1100 nfs4_opendata_put(opendata);
Trond Myklebust76723de2006-09-15 08:11:51 -04001101err_release_rwsem:
1102 up_read(&clp->cl_sem);
Trond Myklebuste56e0b782006-01-03 09:55:08 +01001103err_put_state_owner:
1104 nfs4_put_state_owner(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 *res = NULL;
1107 return status;
1108}
1109
1110
Trond Myklebustad389da2007-06-05 12:30:00 -04001111static struct nfs4_state *nfs4_do_open(struct inode *dir, struct path *path, int flags, struct iattr *sattr, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 struct nfs4_exception exception = { };
1114 struct nfs4_state *res;
1115 int status;
1116
1117 do {
Trond Myklebustad389da2007-06-05 12:30:00 -04001118 status = _nfs4_do_open(dir, path, flags, sattr, cred, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (status == 0)
1120 break;
1121 /* NOTE: BAD_SEQID means the server and client disagree about the
1122 * book-keeping w.r.t. state-changing operations
1123 * (OPEN/CLOSE/LOCK/LOCKU...)
1124 * It is actually a sign of a bug on the client or on the server.
1125 *
1126 * If we receive a BAD_SEQID error in the particular case of
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001127 * doing an OPEN, we assume that nfs_increment_open_seqid() will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * have unhashed the old state_owner for us, and that we can
1129 * therefore safely retry using a new one. We should still warn
1130 * the user though...
1131 */
1132 if (status == -NFS4ERR_BAD_SEQID) {
Trond Myklebust6f43ddc2007-07-08 16:49:11 -04001133 printk(KERN_WARNING "NFS: v4 server %s "
1134 " returned a bad sequence-id error!\n",
1135 NFS_SERVER(dir)->nfs_client->cl_hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 exception.retry = 1;
1137 continue;
1138 }
Trond Myklebust550f5742005-10-18 14:20:21 -07001139 /*
1140 * BAD_STATEID on OPEN means that the server cancelled our
1141 * state before it received the OPEN_CONFIRM.
1142 * Recover by retrying the request as per the discussion
1143 * on Page 181 of RFC3530.
1144 */
1145 if (status == -NFS4ERR_BAD_STATEID) {
1146 exception.retry = 1;
1147 continue;
1148 }
Trond Myklebustaac00a82007-07-05 19:02:21 -04001149 if (status == -EAGAIN) {
1150 /* We must have found a delegation */
1151 exception.retry = 1;
1152 continue;
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 res = ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir),
1155 status, &exception));
1156 } while (exception.retry);
1157 return res;
1158}
1159
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001160static int _nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1161 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001163 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 struct nfs_setattrargs arg = {
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001165 .fh = NFS_FH(inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 .iap = sattr,
1167 .server = server,
1168 .bitmask = server->attr_bitmask,
1169 };
1170 struct nfs_setattrres res = {
1171 .fattr = fattr,
1172 .server = server,
1173 };
1174 struct rpc_message msg = {
1175 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
1176 .rpc_argp = &arg,
1177 .rpc_resp = &res,
1178 };
Trond Myklebust26e976a2006-01-03 09:55:21 +01001179 unsigned long timestamp = jiffies;
Trond Myklebust65e43082005-08-16 11:49:44 -04001180 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Trond Myklebust0e574af2005-10-27 22:12:38 -04001182 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001184 if (nfs4_copy_delegation_stateid(&arg.stateid, inode)) {
1185 /* Use that stateid */
1186 } else if (state != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 msg.rpc_cred = state->owner->so_cred;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001188 nfs4_copy_stateid(&arg.stateid, state, current->files);
1189 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 memcpy(&arg.stateid, &zero_stateid, sizeof(arg.stateid));
1191
Trond Myklebust65e43082005-08-16 11:49:44 -04001192 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001193 if (status == 0 && state != NULL)
1194 renew_lease(server, timestamp);
Trond Myklebust65e43082005-08-16 11:49:44 -04001195 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001198static int nfs4_do_setattr(struct inode *inode, struct nfs_fattr *fattr,
1199 struct iattr *sattr, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001201 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct nfs4_exception exception = { };
1203 int err;
1204 do {
1205 err = nfs4_handle_exception(server,
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001206 _nfs4_do_setattr(inode, fattr, sattr, state),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 &exception);
1208 } while (exception.retry);
1209 return err;
1210}
1211
1212struct nfs4_closedata {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001213 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct inode *inode;
1215 struct nfs4_state *state;
1216 struct nfs_closeargs arg;
1217 struct nfs_closeres res;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001218 struct nfs_fattr fattr;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001219 unsigned long timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220};
1221
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001222static void nfs4_free_closedata(void *data)
Trond Myklebust95121352005-10-18 14:20:12 -07001223{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001224 struct nfs4_closedata *calldata = data;
1225 struct nfs4_state_owner *sp = calldata->state->owner;
Trond Myklebust95121352005-10-18 14:20:12 -07001226
1227 nfs4_put_open_state(calldata->state);
1228 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001229 nfs4_put_state_owner(sp);
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001230 dput(calldata->path.dentry);
1231 mntput(calldata->path.mnt);
Trond Myklebust95121352005-10-18 14:20:12 -07001232 kfree(calldata);
1233}
1234
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001235static void nfs4_close_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001237 struct nfs4_closedata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 struct nfs_server *server = NFS_SERVER(calldata->inode);
1240
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001241 if (RPC_ASSASSINATED(task))
1242 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /* hmm. we are done with the inode, and in the process of freeing
1244 * the state_owner. we keep this around to process errors
1245 */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001246 nfs_increment_open_seqid(task->tk_status, calldata->arg.seqid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 switch (task->tk_status) {
1248 case 0:
Trond Myklebust003707c2007-07-05 18:07:55 -04001249 nfs_set_open_stateid(state, &calldata->res.stateid, calldata->arg.open_flags);
Trond Myklebust26e976a2006-01-03 09:55:21 +01001250 renew_lease(server, calldata->timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 break;
1252 case -NFS4ERR_STALE_STATEID:
1253 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 break;
1255 default:
1256 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
1257 rpc_restart_call(task);
1258 return;
1259 }
1260 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001261 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001264static void nfs4_close_prepare(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001266 struct nfs4_closedata *calldata = data;
Trond Myklebust95121352005-10-18 14:20:12 -07001267 struct nfs4_state *state = calldata->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 struct rpc_message msg = {
1269 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
1270 .rpc_argp = &calldata->arg,
1271 .rpc_resp = &calldata->res,
Trond Myklebust95121352005-10-18 14:20:12 -07001272 .rpc_cred = state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 };
Trond Myklebust003707c2007-07-05 18:07:55 -04001274 int clear_rd, clear_wr, clear_rdwr;
1275 int mode;
Trond Myklebust95121352005-10-18 14:20:12 -07001276
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001277 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebust95121352005-10-18 14:20:12 -07001278 return;
Trond Myklebust003707c2007-07-05 18:07:55 -04001279
1280 mode = FMODE_READ|FMODE_WRITE;
1281 clear_rd = clear_wr = clear_rdwr = 0;
Trond Myklebust4cecb762005-11-04 15:32:58 -05001282 spin_lock(&state->owner->so_lock);
1283 spin_lock(&calldata->inode->i_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001284 /* Calculate the change in open mode */
Trond Myklebuste7616922006-01-03 09:55:13 +01001285 if (state->n_rdwr == 0) {
Trond Myklebust003707c2007-07-05 18:07:55 -04001286 if (state->n_rdonly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +01001287 mode &= ~FMODE_READ;
Trond Myklebust003707c2007-07-05 18:07:55 -04001288 clear_rd |= test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1289 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1290 }
1291 if (state->n_wronly == 0) {
Trond Myklebuste7616922006-01-03 09:55:13 +01001292 mode &= ~FMODE_WRITE;
Trond Myklebust003707c2007-07-05 18:07:55 -04001293 clear_wr |= test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1294 clear_rdwr |= test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags);
1295 }
Trond Myklebuste7616922006-01-03 09:55:13 +01001296 }
Trond Myklebust4cecb762005-11-04 15:32:58 -05001297 spin_unlock(&calldata->inode->i_lock);
1298 spin_unlock(&state->owner->so_lock);
Trond Myklebust003707c2007-07-05 18:07:55 -04001299 if (!clear_rd && !clear_wr && !clear_rdwr) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001300 /* Note: exit _without_ calling nfs4_close_done */
1301 task->tk_action = NULL;
Trond Myklebust95121352005-10-18 14:20:12 -07001302 return;
1303 }
Trond Myklebust516a6af2005-10-27 22:12:41 -04001304 nfs_fattr_init(calldata->res.fattr);
Trond Myklebust95121352005-10-18 14:20:12 -07001305 if (mode != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
Trond Myklebust95121352005-10-18 14:20:12 -07001307 calldata->arg.open_flags = mode;
Trond Myklebust26e976a2006-01-03 09:55:21 +01001308 calldata->timestamp = jiffies;
Trond Myklebust95121352005-10-18 14:20:12 -07001309 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001312static const struct rpc_call_ops nfs4_close_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01001313 .rpc_call_prepare = nfs4_close_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001314 .rpc_call_done = nfs4_close_done,
1315 .rpc_release = nfs4_free_closedata,
1316};
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318/*
1319 * It is possible for data to be read/written from a mem-mapped file
1320 * after the sys_close call (which hits the vfs layer as a flush).
1321 * This means that we can't safely call nfsv4 close on a file until
1322 * the inode is cleared. This in turn means that we are not good
1323 * NFSv4 citizens - we do not indicate to the server to update the file's
1324 * share state even when we are done with one of the three share
1325 * stateid's in the inode.
1326 *
1327 * NOTE: Caller must be holding the sp->so_owner semaphore!
1328 */
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001329int nfs4_do_close(struct path *path, struct nfs4_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001331 struct nfs_server *server = NFS_SERVER(state->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 struct nfs4_closedata *calldata;
Trond Myklebustb39e6252007-06-11 23:05:07 -04001333 struct nfs4_state_owner *sp = state->owner;
1334 struct rpc_task *task;
Trond Myklebust95121352005-10-18 14:20:12 -07001335 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Trond Myklebust95121352005-10-18 14:20:12 -07001337 calldata = kmalloc(sizeof(*calldata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (calldata == NULL)
Trond Myklebust95121352005-10-18 14:20:12 -07001339 goto out;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001340 calldata->inode = state->inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 calldata->state = state;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001342 calldata->arg.fh = NFS_FH(state->inode);
Trond Myklebust003707c2007-07-05 18:07:55 -04001343 calldata->arg.stateid = &state->open_stateid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* Serialization for the sequence id */
Trond Myklebustcee54fc2005-10-18 14:20:12 -07001345 calldata->arg.seqid = nfs_alloc_seqid(&state->owner->so_seqid);
Trond Myklebust95121352005-10-18 14:20:12 -07001346 if (calldata->arg.seqid == NULL)
1347 goto out_free_calldata;
Trond Myklebust516a6af2005-10-27 22:12:41 -04001348 calldata->arg.bitmask = server->attr_bitmask;
1349 calldata->res.fattr = &calldata->fattr;
1350 calldata->res.server = server;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001351 calldata->path.mnt = mntget(path->mnt);
1352 calldata->path.dentry = dget(path->dentry);
Trond Myklebust95121352005-10-18 14:20:12 -07001353
Trond Myklebustb39e6252007-06-11 23:05:07 -04001354 task = rpc_run_task(server->client, RPC_TASK_ASYNC, &nfs4_close_ops, calldata);
1355 if (IS_ERR(task))
1356 return PTR_ERR(task);
1357 rpc_put_task(task);
1358 return 0;
Trond Myklebust95121352005-10-18 14:20:12 -07001359out_free_calldata:
1360 kfree(calldata);
1361out:
Trond Myklebustb39e6252007-06-11 23:05:07 -04001362 nfs4_put_open_state(state);
1363 nfs4_put_state_owner(sp);
Trond Myklebust95121352005-10-18 14:20:12 -07001364 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001367static int nfs4_intent_set_file(struct nameidata *nd, struct path *path, struct nfs4_state *state)
Trond Myklebust02a913a2005-10-18 14:20:17 -07001368{
1369 struct file *filp;
Trond Myklebust1b45c462007-07-03 13:04:56 -04001370 int ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001371
Trond Myklebust1b45c462007-07-03 13:04:56 -04001372 /* If the open_intent is for execute, we have an extra check to make */
1373 if (nd->intent.open.flags & FMODE_EXEC) {
1374 ret = _nfs4_do_access(state->inode,
1375 state->owner->so_cred,
1376 nd->intent.open.flags);
1377 if (ret < 0)
1378 goto out_close;
1379 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001380 filp = lookup_instantiate_filp(nd, path->dentry, NULL);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001381 if (!IS_ERR(filp)) {
1382 struct nfs_open_context *ctx;
1383 ctx = (struct nfs_open_context *)filp->private_data;
1384 ctx->state = state;
Trond Myklebust95cf9592006-04-18 13:14:06 -04001385 return 0;
1386 }
Trond Myklebust1b45c462007-07-03 13:04:56 -04001387 ret = PTR_ERR(filp);
1388out_close:
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001389 nfs4_close_state(path, state, nd->intent.open.flags);
Trond Myklebust1b45c462007-07-03 13:04:56 -04001390 return ret;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001391}
1392
1393struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
1395{
Trond Myklebustad389da2007-06-05 12:30:00 -04001396 struct path path = {
1397 .mnt = nd->mnt,
1398 .dentry = dentry,
1399 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 struct iattr attr;
1401 struct rpc_cred *cred;
1402 struct nfs4_state *state;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001403 struct dentry *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (nd->flags & LOOKUP_CREATE) {
1406 attr.ia_mode = nd->intent.open.create_mode;
1407 attr.ia_valid = ATTR_MODE;
1408 if (!IS_POSIXACL(dir))
1409 attr.ia_mode &= ~current->fs->umask;
1410 } else {
1411 attr.ia_valid = 0;
1412 BUG_ON(nd->intent.open.flags & O_CREAT);
1413 }
1414
David Howells1f163412006-08-22 20:06:11 -04001415 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (IS_ERR(cred))
Trond Myklebust02a913a2005-10-18 14:20:17 -07001417 return (struct dentry *)cred;
Trond Myklebustad389da2007-06-05 12:30:00 -04001418 state = nfs4_do_open(dir, &path, nd->intent.open.flags, &attr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001420 if (IS_ERR(state)) {
1421 if (PTR_ERR(state) == -ENOENT)
1422 d_add(dentry, NULL);
1423 return (struct dentry *)state;
1424 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001425 res = d_add_unique(dentry, igrab(state->inode));
Trond Myklebust02a913a2005-10-18 14:20:17 -07001426 if (res != NULL)
1427 dentry = res;
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001428 nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001429 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
1432int
Trond Myklebust02a913a2005-10-18 14:20:17 -07001433nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Trond Myklebustad389da2007-06-05 12:30:00 -04001435 struct path path = {
1436 .mnt = nd->mnt,
1437 .dentry = dentry,
1438 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct rpc_cred *cred;
1440 struct nfs4_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
David Howells1f163412006-08-22 20:06:11 -04001442 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (IS_ERR(cred))
1444 return PTR_ERR(cred);
Trond Myklebustaac00a82007-07-05 19:02:21 -04001445 state = nfs4_do_open(dir, &path, openflags, NULL, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 put_rpccred(cred);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001447 if (IS_ERR(state)) {
1448 switch (PTR_ERR(state)) {
1449 case -EPERM:
1450 case -EACCES:
1451 case -EDQUOT:
1452 case -ENOSPC:
1453 case -EROFS:
1454 lookup_instantiate_filp(nd, (struct dentry *)state, NULL);
1455 return 1;
Chuck Leverb87c0ad2006-10-19 23:28:42 -07001456 default:
1457 goto out_drop;
Trond Myklebust02a913a2005-10-18 14:20:17 -07001458 }
Trond Myklebust02a913a2005-10-18 14:20:17 -07001459 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001460 if (state->inode == dentry->d_inode) {
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001461 nfs4_intent_set_file(nd, &path, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return 1;
1463 }
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001464 nfs4_close_state(&path, state, openflags);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001465out_drop:
1466 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return 0;
1468}
1469
1470
1471static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
1472{
1473 struct nfs4_server_caps_res res = {};
1474 struct rpc_message msg = {
1475 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
1476 .rpc_argp = fhandle,
1477 .rpc_resp = &res,
1478 };
1479 int status;
1480
1481 status = rpc_call_sync(server->client, &msg, 0);
1482 if (status == 0) {
1483 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
1484 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL)
1485 server->caps |= NFS_CAP_ACLS;
1486 if (res.has_links != 0)
1487 server->caps |= NFS_CAP_HARDLINKS;
1488 if (res.has_symlinks != 0)
1489 server->caps |= NFS_CAP_SYMLINKS;
1490 server->acl_bitmask = res.acl_bitmask;
1491 }
1492 return status;
1493}
1494
Trond Myklebust55a97592006-06-09 09:34:19 -04001495int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 struct nfs4_exception exception = { };
1498 int err;
1499 do {
1500 err = nfs4_handle_exception(server,
1501 _nfs4_server_capabilities(server, fhandle),
1502 &exception);
1503 } while (exception.retry);
1504 return err;
1505}
1506
1507static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1508 struct nfs_fsinfo *info)
1509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 struct nfs4_lookup_root_arg args = {
1511 .bitmask = nfs4_fattr_bitmap,
1512 };
1513 struct nfs4_lookup_res res = {
1514 .server = server,
Trond Myklebust0e574af2005-10-27 22:12:38 -04001515 .fattr = info->fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .fh = fhandle,
1517 };
1518 struct rpc_message msg = {
1519 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
1520 .rpc_argp = &args,
1521 .rpc_resp = &res,
1522 };
Trond Myklebust0e574af2005-10-27 22:12:38 -04001523 nfs_fattr_init(info->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return rpc_call_sync(server->client, &msg, 0);
1525}
1526
1527static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
1528 struct nfs_fsinfo *info)
1529{
1530 struct nfs4_exception exception = { };
1531 int err;
1532 do {
1533 err = nfs4_handle_exception(server,
1534 _nfs4_lookup_root(server, fhandle, info),
1535 &exception);
1536 } while (exception.retry);
1537 return err;
1538}
1539
David Howells54ceac42006-08-22 20:06:13 -04001540/*
1541 * get the file handle for the "/" directory on the server
1542 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
David Howells54ceac42006-08-22 20:06:13 -04001544 struct nfs_fsinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int status;
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 status = nfs4_lookup_root(server, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (status == 0)
1550 status = nfs4_server_capabilities(server, fhandle);
1551 if (status == 0)
1552 status = nfs4_do_fsinfo(server, fhandle, info);
Trond Myklebustc12e87f2006-03-13 21:20:47 -08001553 return nfs4_map_errors(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
Manoj Naik6b97fd32006-06-09 09:34:29 -04001556/*
1557 * Get locations and (maybe) other attributes of a referral.
1558 * Note that we'll actually follow the referral later when
1559 * we detect fsid mismatch in inode revalidation
1560 */
1561static int nfs4_get_referral(struct inode *dir, struct qstr *name, struct nfs_fattr *fattr, struct nfs_fh *fhandle)
1562{
1563 int status = -ENOMEM;
1564 struct page *page = NULL;
1565 struct nfs4_fs_locations *locations = NULL;
Manoj Naik6b97fd32006-06-09 09:34:29 -04001566
1567 page = alloc_page(GFP_KERNEL);
1568 if (page == NULL)
1569 goto out;
1570 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
1571 if (locations == NULL)
1572 goto out;
1573
Trond Myklebustc228fd32007-01-13 02:28:11 -05001574 status = nfs4_proc_fs_locations(dir, name, locations, page);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001575 if (status != 0)
1576 goto out;
1577 /* Make sure server returned a different fsid for the referral */
1578 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
1579 dprintk("%s: server did not return a different fsid for a referral at %s\n", __FUNCTION__, name->name);
1580 status = -EIO;
1581 goto out;
1582 }
1583
1584 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
1585 fattr->valid |= NFS_ATTR_FATTR_V4_REFERRAL;
1586 if (!fattr->mode)
1587 fattr->mode = S_IFDIR;
1588 memset(fhandle, 0, sizeof(struct nfs_fh));
1589out:
1590 if (page)
1591 __free_page(page);
1592 if (locations)
1593 kfree(locations);
1594 return status;
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1598{
1599 struct nfs4_getattr_arg args = {
1600 .fh = fhandle,
1601 .bitmask = server->attr_bitmask,
1602 };
1603 struct nfs4_getattr_res res = {
1604 .fattr = fattr,
1605 .server = server,
1606 };
1607 struct rpc_message msg = {
1608 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
1609 .rpc_argp = &args,
1610 .rpc_resp = &res,
1611 };
1612
Trond Myklebust0e574af2005-10-27 22:12:38 -04001613 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return rpc_call_sync(server->client, &msg, 0);
1615}
1616
1617static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1618{
1619 struct nfs4_exception exception = { };
1620 int err;
1621 do {
1622 err = nfs4_handle_exception(server,
1623 _nfs4_proc_getattr(server, fhandle, fattr),
1624 &exception);
1625 } while (exception.retry);
1626 return err;
1627}
1628
1629/*
1630 * The file is not closed if it is opened due to the a request to change
1631 * the size of the file. The open call will not be needed once the
1632 * VFS layer lookup-intents are implemented.
1633 *
1634 * Close is called when the inode is destroyed.
1635 * If we haven't opened the file for O_WRONLY, we
1636 * need to in the size_change case to obtain a stateid.
1637 *
1638 * Got race?
1639 * Because OPEN is always done by name in nfsv4, it is
1640 * possible that we opened a different file by the same
1641 * name. We can recognize this race condition, but we
1642 * can't do anything about it besides returning an error.
1643 *
1644 * This will be fixed with VFS changes (lookup-intent).
1645 */
1646static int
1647nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
1648 struct iattr *sattr)
1649{
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001650 struct rpc_cred *cred;
1651 struct inode *inode = dentry->d_inode;
Trond Myklebustd5308382005-11-04 15:33:38 -05001652 struct nfs_open_context *ctx;
1653 struct nfs4_state *state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 int status;
1655
Trond Myklebust0e574af2005-10-27 22:12:38 -04001656 nfs_fattr_init(fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
David Howells1f163412006-08-22 20:06:11 -04001658 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001659 if (IS_ERR(cred))
1660 return PTR_ERR(cred);
Trond Myklebustd5308382005-11-04 15:33:38 -05001661
1662 /* Search for an existing open(O_WRITE) file */
1663 ctx = nfs_find_open_context(inode, cred, FMODE_WRITE);
1664 if (ctx != NULL)
1665 state = ctx->state;
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001666
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001667 status = nfs4_do_setattr(inode, fattr, sattr, state);
Trond Myklebust65e43082005-08-16 11:49:44 -04001668 if (status == 0)
1669 nfs_setattr_update_inode(inode, sattr);
Trond Myklebustd5308382005-11-04 15:33:38 -05001670 if (ctx != NULL)
1671 put_nfs_open_context(ctx);
Trond Myklebust08e9eac2005-06-22 17:16:29 +00001672 put_rpccred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 return status;
1674}
1675
David Howells2b3de442006-08-22 20:06:09 -04001676static int _nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1677 struct qstr *name, struct nfs_fh *fhandle,
1678 struct nfs_fattr *fattr)
1679{
1680 int status;
1681 struct nfs4_lookup_arg args = {
1682 .bitmask = server->attr_bitmask,
1683 .dir_fh = dirfh,
1684 .name = name,
1685 };
1686 struct nfs4_lookup_res res = {
1687 .server = server,
1688 .fattr = fattr,
1689 .fh = fhandle,
1690 };
1691 struct rpc_message msg = {
1692 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
1693 .rpc_argp = &args,
1694 .rpc_resp = &res,
1695 };
1696
1697 nfs_fattr_init(fattr);
1698
1699 dprintk("NFS call lookupfh %s\n", name->name);
1700 status = rpc_call_sync(server->client, &msg, 0);
1701 dprintk("NFS reply lookupfh: %d\n", status);
David Howells2b3de442006-08-22 20:06:09 -04001702 return status;
1703}
1704
1705static int nfs4_proc_lookupfh(struct nfs_server *server, struct nfs_fh *dirfh,
1706 struct qstr *name, struct nfs_fh *fhandle,
1707 struct nfs_fattr *fattr)
1708{
1709 struct nfs4_exception exception = { };
1710 int err;
1711 do {
Trond Myklebust4e56e082007-07-01 18:13:52 -04001712 err = _nfs4_proc_lookupfh(server, dirfh, name, fhandle, fattr);
1713 /* FIXME: !!!! */
1714 if (err == -NFS4ERR_MOVED) {
1715 err = -EREMOTE;
1716 break;
1717 }
1718 err = nfs4_handle_exception(server, err, &exception);
David Howells2b3de442006-08-22 20:06:09 -04001719 } while (exception.retry);
1720 return err;
1721}
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static int _nfs4_proc_lookup(struct inode *dir, struct qstr *name,
1724 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1725{
Trond Myklebust4e56e082007-07-01 18:13:52 -04001726 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust4e56e082007-07-01 18:13:52 -04001729 status = _nfs4_proc_lookupfh(NFS_SERVER(dir), NFS_FH(dir), name, fhandle, fattr);
Manoj Naik6b97fd32006-06-09 09:34:29 -04001730 if (status == -NFS4ERR_MOVED)
1731 status = nfs4_get_referral(dir, name, fattr, fhandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 dprintk("NFS reply lookup: %d\n", status);
1733 return status;
1734}
1735
1736static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh *fhandle, struct nfs_fattr *fattr)
1737{
1738 struct nfs4_exception exception = { };
1739 int err;
1740 do {
1741 err = nfs4_handle_exception(NFS_SERVER(dir),
1742 _nfs4_proc_lookup(dir, name, fhandle, fattr),
1743 &exception);
1744 } while (exception.retry);
1745 return err;
1746}
1747
1748static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1749{
1750 struct nfs4_accessargs args = {
1751 .fh = NFS_FH(inode),
1752 };
1753 struct nfs4_accessres res = { 0 };
1754 struct rpc_message msg = {
1755 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
1756 .rpc_argp = &args,
1757 .rpc_resp = &res,
1758 .rpc_cred = entry->cred,
1759 };
1760 int mode = entry->mask;
1761 int status;
1762
1763 /*
1764 * Determine which access bits we want to ask for...
1765 */
1766 if (mode & MAY_READ)
1767 args.access |= NFS4_ACCESS_READ;
1768 if (S_ISDIR(inode->i_mode)) {
1769 if (mode & MAY_WRITE)
1770 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
1771 if (mode & MAY_EXEC)
1772 args.access |= NFS4_ACCESS_LOOKUP;
1773 } else {
1774 if (mode & MAY_WRITE)
1775 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
1776 if (mode & MAY_EXEC)
1777 args.access |= NFS4_ACCESS_EXECUTE;
1778 }
1779 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1780 if (!status) {
1781 entry->mask = 0;
1782 if (res.access & NFS4_ACCESS_READ)
1783 entry->mask |= MAY_READ;
1784 if (res.access & (NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE))
1785 entry->mask |= MAY_WRITE;
1786 if (res.access & (NFS4_ACCESS_LOOKUP|NFS4_ACCESS_EXECUTE))
1787 entry->mask |= MAY_EXEC;
1788 }
1789 return status;
1790}
1791
1792static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
1793{
1794 struct nfs4_exception exception = { };
1795 int err;
1796 do {
1797 err = nfs4_handle_exception(NFS_SERVER(inode),
1798 _nfs4_proc_access(inode, entry),
1799 &exception);
1800 } while (exception.retry);
1801 return err;
1802}
1803
1804/*
1805 * TODO: For the time being, we don't try to get any attributes
1806 * along with any of the zero-copy operations READ, READDIR,
1807 * READLINK, WRITE.
1808 *
1809 * In the case of the first three, we want to put the GETATTR
1810 * after the read-type operation -- this is because it is hard
1811 * to predict the length of a GETATTR response in v4, and thus
1812 * align the READ data correctly. This means that the GETATTR
1813 * may end up partially falling into the page cache, and we should
1814 * shift it into the 'tail' of the xdr_buf before processing.
1815 * To do this efficiently, we need to know the total length
1816 * of data received, which doesn't seem to be available outside
1817 * of the RPC layer.
1818 *
1819 * In the case of WRITE, we also want to put the GETATTR after
1820 * the operation -- in this case because we want to make sure
1821 * we get the post-operation mtime and size. This means that
1822 * we can't use xdr_encode_pages() as written: we need a variant
1823 * of it which would leave room in the 'tail' iovec.
1824 *
1825 * Both of these changes to the XDR layer would in fact be quite
1826 * minor, but I decided to leave them for a subsequent patch.
1827 */
1828static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
1829 unsigned int pgbase, unsigned int pglen)
1830{
1831 struct nfs4_readlink args = {
1832 .fh = NFS_FH(inode),
1833 .pgbase = pgbase,
1834 .pglen = pglen,
1835 .pages = &page,
1836 };
1837 struct rpc_message msg = {
1838 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
1839 .rpc_argp = &args,
1840 .rpc_resp = NULL,
1841 };
1842
1843 return rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1844}
1845
1846static int nfs4_proc_readlink(struct inode *inode, struct page *page,
1847 unsigned int pgbase, unsigned int pglen)
1848{
1849 struct nfs4_exception exception = { };
1850 int err;
1851 do {
1852 err = nfs4_handle_exception(NFS_SERVER(inode),
1853 _nfs4_proc_readlink(inode, page, pgbase, pglen),
1854 &exception);
1855 } while (exception.retry);
1856 return err;
1857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859/*
1860 * Got race?
1861 * We will need to arrange for the VFS layer to provide an atomic open.
1862 * Until then, this create/open method is prone to inefficiency and race
1863 * conditions due to the lookup, create, and open VFS calls from sys_open()
1864 * placed on the wire.
1865 *
1866 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1867 * The file will be opened again in the subsequent VFS open call
1868 * (nfs4_proc_file_open).
1869 *
1870 * The open for read will just hang around to be used by any process that
1871 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1872 */
1873
1874static int
1875nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -07001876 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
Trond Myklebustad389da2007-06-05 12:30:00 -04001878 struct path path = {
1879 .mnt = nd->mnt,
1880 .dentry = dentry,
1881 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 struct nfs4_state *state;
1883 struct rpc_cred *cred;
1884 int status = 0;
1885
David Howells1f163412006-08-22 20:06:11 -04001886 cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (IS_ERR(cred)) {
1888 status = PTR_ERR(cred);
1889 goto out;
1890 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001891 state = nfs4_do_open(dir, &path, flags, sattr, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 put_rpccred(cred);
1893 if (IS_ERR(state)) {
1894 status = PTR_ERR(state);
1895 goto out;
1896 }
Trond Myklebust24ac23a2006-01-03 09:55:11 +01001897 d_instantiate(dentry, igrab(state->inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (flags & O_EXCL) {
1899 struct nfs_fattr fattr;
Trond Myklebust3e4f6292006-03-20 13:44:46 -05001900 status = nfs4_do_setattr(state->inode, &fattr, sattr, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001901 if (status == 0)
Trond Myklebust65e43082005-08-16 11:49:44 -04001902 nfs_setattr_update_inode(state->inode, sattr);
Jeff Laytonaa53ed52007-06-05 14:49:03 -04001903 nfs_post_op_update_inode(state->inode, &fattr);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001904 }
Trond Myklebustad389da2007-06-05 12:30:00 -04001905 if (status == 0 && (nd->flags & LOOKUP_OPEN) != 0)
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001906 status = nfs4_intent_set_file(nd, &path, state);
Trond Myklebust02a913a2005-10-18 14:20:17 -07001907 else
Trond Myklebust4a35bd42007-06-05 10:31:33 -04001908 nfs4_close_state(&path, state, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909out:
1910 return status;
1911}
1912
1913static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
1914{
Trond Myklebust16e42952005-10-27 22:12:44 -04001915 struct nfs_server *server = NFS_SERVER(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 struct nfs4_remove_arg args = {
1917 .fh = NFS_FH(dir),
1918 .name = name,
Trond Myklebust16e42952005-10-27 22:12:44 -04001919 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 };
Trond Myklebust16e42952005-10-27 22:12:44 -04001921 struct nfs_fattr dir_attr;
1922 struct nfs4_remove_res res = {
1923 .server = server,
1924 .dir_attr = &dir_attr,
1925 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 struct rpc_message msg = {
1927 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
1928 .rpc_argp = &args,
1929 .rpc_resp = &res,
1930 };
1931 int status;
1932
Trond Myklebust16e42952005-10-27 22:12:44 -04001933 nfs_fattr_init(res.dir_attr);
1934 status = rpc_call_sync(server->client, &msg, 0);
1935 if (status == 0) {
1936 update_changeattr(dir, &res.cinfo);
1937 nfs_post_op_update_inode(dir, res.dir_attr);
1938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return status;
1940}
1941
1942static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
1943{
1944 struct nfs4_exception exception = { };
1945 int err;
1946 do {
1947 err = nfs4_handle_exception(NFS_SERVER(dir),
1948 _nfs4_proc_remove(dir, name),
1949 &exception);
1950 } while (exception.retry);
1951 return err;
1952}
1953
1954struct unlink_desc {
1955 struct nfs4_remove_arg args;
Trond Myklebust16e42952005-10-27 22:12:44 -04001956 struct nfs4_remove_res res;
1957 struct nfs_fattr dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958};
1959
1960static int nfs4_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir,
1961 struct qstr *name)
1962{
Trond Myklebust16e42952005-10-27 22:12:44 -04001963 struct nfs_server *server = NFS_SERVER(dir->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 struct unlink_desc *up;
1965
Robert P. J. Day5cbded52006-12-13 00:35:56 -08001966 up = kmalloc(sizeof(*up), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 if (!up)
1968 return -ENOMEM;
1969
1970 up->args.fh = NFS_FH(dir->d_inode);
1971 up->args.name = name;
Trond Myklebust16e42952005-10-27 22:12:44 -04001972 up->args.bitmask = server->attr_bitmask;
1973 up->res.server = server;
1974 up->res.dir_attr = &up->dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
1977 msg->rpc_argp = &up->args;
1978 msg->rpc_resp = &up->res;
1979 return 0;
1980}
1981
1982static int nfs4_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
1983{
1984 struct rpc_message *msg = &task->tk_msg;
1985 struct unlink_desc *up;
1986
1987 if (msg->rpc_resp != NULL) {
1988 up = container_of(msg->rpc_resp, struct unlink_desc, res);
Trond Myklebust16e42952005-10-27 22:12:44 -04001989 update_changeattr(dir->d_inode, &up->res.cinfo);
1990 nfs_post_op_update_inode(dir->d_inode, up->res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 kfree(up);
1992 msg->rpc_resp = NULL;
1993 msg->rpc_argp = NULL;
1994 }
1995 return 0;
1996}
1997
1998static int _nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
1999 struct inode *new_dir, struct qstr *new_name)
2000{
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002001 struct nfs_server *server = NFS_SERVER(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct nfs4_rename_arg arg = {
2003 .old_dir = NFS_FH(old_dir),
2004 .new_dir = NFS_FH(new_dir),
2005 .old_name = old_name,
2006 .new_name = new_name,
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002007 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 };
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002009 struct nfs_fattr old_fattr, new_fattr;
2010 struct nfs4_rename_res res = {
2011 .server = server,
2012 .old_fattr = &old_fattr,
2013 .new_fattr = &new_fattr,
2014 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 struct rpc_message msg = {
2016 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME],
2017 .rpc_argp = &arg,
2018 .rpc_resp = &res,
2019 };
2020 int status;
2021
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002022 nfs_fattr_init(res.old_fattr);
2023 nfs_fattr_init(res.new_fattr);
2024 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 if (!status) {
2027 update_changeattr(old_dir, &res.old_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002028 nfs_post_op_update_inode(old_dir, res.old_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 update_changeattr(new_dir, &res.new_cinfo);
Trond Myklebust6caf2c82005-10-27 22:12:43 -04002030 nfs_post_op_update_inode(new_dir, res.new_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032 return status;
2033}
2034
2035static int nfs4_proc_rename(struct inode *old_dir, struct qstr *old_name,
2036 struct inode *new_dir, struct qstr *new_name)
2037{
2038 struct nfs4_exception exception = { };
2039 int err;
2040 do {
2041 err = nfs4_handle_exception(NFS_SERVER(old_dir),
2042 _nfs4_proc_rename(old_dir, old_name,
2043 new_dir, new_name),
2044 &exception);
2045 } while (exception.retry);
2046 return err;
2047}
2048
2049static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2050{
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002051 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 struct nfs4_link_arg arg = {
2053 .fh = NFS_FH(inode),
2054 .dir_fh = NFS_FH(dir),
2055 .name = name,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002056 .bitmask = server->attr_bitmask,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 };
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002058 struct nfs_fattr fattr, dir_attr;
2059 struct nfs4_link_res res = {
2060 .server = server,
2061 .fattr = &fattr,
2062 .dir_attr = &dir_attr,
2063 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct rpc_message msg = {
2065 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
2066 .rpc_argp = &arg,
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002067 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 };
2069 int status;
2070
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002071 nfs_fattr_init(res.fattr);
2072 nfs_fattr_init(res.dir_attr);
2073 status = rpc_call_sync(server->client, &msg, 0);
2074 if (!status) {
2075 update_changeattr(dir, &res.cinfo);
2076 nfs_post_op_update_inode(dir, res.dir_attr);
Trond Myklebust73a3d072006-05-25 01:40:47 -04002077 nfs_post_op_update_inode(inode, res.fattr);
Trond Myklebust91ba2ee2005-10-27 22:12:42 -04002078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 return status;
2081}
2082
2083static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
2084{
2085 struct nfs4_exception exception = { };
2086 int err;
2087 do {
2088 err = nfs4_handle_exception(NFS_SERVER(inode),
2089 _nfs4_proc_link(inode, dir, name),
2090 &exception);
2091 } while (exception.retry);
2092 return err;
2093}
2094
Chuck Lever4f390c12006-08-22 20:06:22 -04002095static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002096 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
2098 struct nfs_server *server = NFS_SERVER(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -04002099 struct nfs_fh fhandle;
2100 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 struct nfs4_create_arg arg = {
2102 .dir_fh = NFS_FH(dir),
2103 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002104 .name = &dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 .attrs = sattr,
2106 .ftype = NF4LNK,
2107 .bitmask = server->attr_bitmask,
2108 };
2109 struct nfs4_create_res res = {
2110 .server = server,
Chuck Lever4f390c12006-08-22 20:06:22 -04002111 .fh = &fhandle,
2112 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002113 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 };
2115 struct rpc_message msg = {
2116 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK],
2117 .rpc_argp = &arg,
2118 .rpc_resp = &res,
2119 };
2120 int status;
2121
Chuck Lever94a6d752006-08-22 20:06:23 -04002122 if (len > NFS4_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -04002124
Chuck Lever94a6d752006-08-22 20:06:23 -04002125 arg.u.symlink.pages = &page;
2126 arg.u.symlink.len = len;
Chuck Lever4f390c12006-08-22 20:06:22 -04002127 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002128 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Chuck Lever4f390c12006-08-22 20:06:22 -04002131 if (!status) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 update_changeattr(dir, &res.dir_cinfo);
Chuck Lever4f390c12006-08-22 20:06:22 -04002133 nfs_post_op_update_inode(dir, res.dir_fattr);
2134 status = nfs_instantiate(dentry, &fhandle, &fattr);
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 return status;
2137}
2138
Chuck Lever4f390c12006-08-22 20:06:22 -04002139static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
Chuck Lever94a6d752006-08-22 20:06:23 -04002140 struct page *page, unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 struct nfs4_exception exception = { };
2143 int err;
2144 do {
2145 err = nfs4_handle_exception(NFS_SERVER(dir),
Chuck Lever94a6d752006-08-22 20:06:23 -04002146 _nfs4_proc_symlink(dir, dentry, page,
2147 len, sattr),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 &exception);
2149 } while (exception.retry);
2150 return err;
2151}
2152
2153static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2154 struct iattr *sattr)
2155{
2156 struct nfs_server *server = NFS_SERVER(dir);
2157 struct nfs_fh fhandle;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002158 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 struct nfs4_create_arg arg = {
2160 .dir_fh = NFS_FH(dir),
2161 .server = server,
2162 .name = &dentry->d_name,
2163 .attrs = sattr,
2164 .ftype = NF4DIR,
2165 .bitmask = server->attr_bitmask,
2166 };
2167 struct nfs4_create_res res = {
2168 .server = server,
2169 .fh = &fhandle,
2170 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002171 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 };
2173 struct rpc_message msg = {
2174 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2175 .rpc_argp = &arg,
2176 .rpc_resp = &res,
2177 };
2178 int status;
2179
Trond Myklebust0e574af2005-10-27 22:12:38 -04002180 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002181 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
2183 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2184 if (!status) {
2185 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002186 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 status = nfs_instantiate(dentry, &fhandle, &fattr);
2188 }
2189 return status;
2190}
2191
2192static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
2193 struct iattr *sattr)
2194{
2195 struct nfs4_exception exception = { };
2196 int err;
2197 do {
2198 err = nfs4_handle_exception(NFS_SERVER(dir),
2199 _nfs4_proc_mkdir(dir, dentry, sattr),
2200 &exception);
2201 } while (exception.retry);
2202 return err;
2203}
2204
2205static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2206 u64 cookie, struct page *page, unsigned int count, int plus)
2207{
2208 struct inode *dir = dentry->d_inode;
2209 struct nfs4_readdir_arg args = {
2210 .fh = NFS_FH(dir),
2211 .pages = &page,
2212 .pgbase = 0,
2213 .count = count,
2214 .bitmask = NFS_SERVER(dentry->d_inode)->attr_bitmask,
2215 };
2216 struct nfs4_readdir_res res;
2217 struct rpc_message msg = {
2218 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
2219 .rpc_argp = &args,
2220 .rpc_resp = &res,
2221 .rpc_cred = cred,
2222 };
2223 int status;
2224
Trond Myklebusteadf4592005-06-22 17:16:39 +00002225 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__,
2226 dentry->d_parent->d_name.name,
2227 dentry->d_name.name,
2228 (unsigned long long)cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 nfs4_setup_readdir(cookie, NFS_COOKIEVERF(dir), dentry, &args);
2230 res.pgbase = args.pgbase;
2231 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2232 if (status == 0)
2233 memcpy(NFS_COOKIEVERF(dir), res.verifier.data, NFS4_VERIFIER_SIZE);
Trond Myklebusteadf4592005-06-22 17:16:39 +00002234 dprintk("%s: returns %d\n", __FUNCTION__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return status;
2236}
2237
2238static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
2239 u64 cookie, struct page *page, unsigned int count, int plus)
2240{
2241 struct nfs4_exception exception = { };
2242 int err;
2243 do {
2244 err = nfs4_handle_exception(NFS_SERVER(dentry->d_inode),
2245 _nfs4_proc_readdir(dentry, cred, cookie,
2246 page, count, plus),
2247 &exception);
2248 } while (exception.retry);
2249 return err;
2250}
2251
2252static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2253 struct iattr *sattr, dev_t rdev)
2254{
2255 struct nfs_server *server = NFS_SERVER(dir);
2256 struct nfs_fh fh;
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002257 struct nfs_fattr fattr, dir_fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 struct nfs4_create_arg arg = {
2259 .dir_fh = NFS_FH(dir),
2260 .server = server,
2261 .name = &dentry->d_name,
2262 .attrs = sattr,
2263 .bitmask = server->attr_bitmask,
2264 };
2265 struct nfs4_create_res res = {
2266 .server = server,
2267 .fh = &fh,
2268 .fattr = &fattr,
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002269 .dir_fattr = &dir_fattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 };
2271 struct rpc_message msg = {
2272 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE],
2273 .rpc_argp = &arg,
2274 .rpc_resp = &res,
2275 };
2276 int status;
2277 int mode = sattr->ia_mode;
2278
Trond Myklebust0e574af2005-10-27 22:12:38 -04002279 nfs_fattr_init(&fattr);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002280 nfs_fattr_init(&dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 BUG_ON(!(sattr->ia_valid & ATTR_MODE));
2283 BUG_ON(!S_ISFIFO(mode) && !S_ISBLK(mode) && !S_ISCHR(mode) && !S_ISSOCK(mode));
2284 if (S_ISFIFO(mode))
2285 arg.ftype = NF4FIFO;
2286 else if (S_ISBLK(mode)) {
2287 arg.ftype = NF4BLK;
2288 arg.u.device.specdata1 = MAJOR(rdev);
2289 arg.u.device.specdata2 = MINOR(rdev);
2290 }
2291 else if (S_ISCHR(mode)) {
2292 arg.ftype = NF4CHR;
2293 arg.u.device.specdata1 = MAJOR(rdev);
2294 arg.u.device.specdata2 = MINOR(rdev);
2295 }
2296 else
2297 arg.ftype = NF4SOCK;
2298
2299 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
2300 if (status == 0) {
2301 update_changeattr(dir, &res.dir_cinfo);
Trond Myklebust56ae19f2005-10-27 22:12:40 -04002302 nfs_post_op_update_inode(dir, res.dir_fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 status = nfs_instantiate(dentry, &fh, &fattr);
2304 }
2305 return status;
2306}
2307
2308static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
2309 struct iattr *sattr, dev_t rdev)
2310{
2311 struct nfs4_exception exception = { };
2312 int err;
2313 do {
2314 err = nfs4_handle_exception(NFS_SERVER(dir),
2315 _nfs4_proc_mknod(dir, dentry, sattr, rdev),
2316 &exception);
2317 } while (exception.retry);
2318 return err;
2319}
2320
2321static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
2322 struct nfs_fsstat *fsstat)
2323{
2324 struct nfs4_statfs_arg args = {
2325 .fh = fhandle,
2326 .bitmask = server->attr_bitmask,
2327 };
2328 struct rpc_message msg = {
2329 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
2330 .rpc_argp = &args,
2331 .rpc_resp = fsstat,
2332 };
2333
Trond Myklebust0e574af2005-10-27 22:12:38 -04002334 nfs_fattr_init(fsstat->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return rpc_call_sync(server->client, &msg, 0);
2336}
2337
2338static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
2339{
2340 struct nfs4_exception exception = { };
2341 int err;
2342 do {
2343 err = nfs4_handle_exception(server,
2344 _nfs4_proc_statfs(server, fhandle, fsstat),
2345 &exception);
2346 } while (exception.retry);
2347 return err;
2348}
2349
2350static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
2351 struct nfs_fsinfo *fsinfo)
2352{
2353 struct nfs4_fsinfo_arg args = {
2354 .fh = fhandle,
2355 .bitmask = server->attr_bitmask,
2356 };
2357 struct rpc_message msg = {
2358 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
2359 .rpc_argp = &args,
2360 .rpc_resp = fsinfo,
2361 };
2362
2363 return rpc_call_sync(server->client, &msg, 0);
2364}
2365
2366static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2367{
2368 struct nfs4_exception exception = { };
2369 int err;
2370
2371 do {
2372 err = nfs4_handle_exception(server,
2373 _nfs4_do_fsinfo(server, fhandle, fsinfo),
2374 &exception);
2375 } while (exception.retry);
2376 return err;
2377}
2378
2379static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
2380{
Trond Myklebust0e574af2005-10-27 22:12:38 -04002381 nfs_fattr_init(fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return nfs4_do_fsinfo(server, fhandle, fsinfo);
2383}
2384
2385static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2386 struct nfs_pathconf *pathconf)
2387{
2388 struct nfs4_pathconf_arg args = {
2389 .fh = fhandle,
2390 .bitmask = server->attr_bitmask,
2391 };
2392 struct rpc_message msg = {
2393 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
2394 .rpc_argp = &args,
2395 .rpc_resp = pathconf,
2396 };
2397
2398 /* None of the pathconf attributes are mandatory to implement */
2399 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
2400 memset(pathconf, 0, sizeof(*pathconf));
2401 return 0;
2402 }
2403
Trond Myklebust0e574af2005-10-27 22:12:38 -04002404 nfs_fattr_init(pathconf->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return rpc_call_sync(server->client, &msg, 0);
2406}
2407
2408static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
2409 struct nfs_pathconf *pathconf)
2410{
2411 struct nfs4_exception exception = { };
2412 int err;
2413
2414 do {
2415 err = nfs4_handle_exception(server,
2416 _nfs4_proc_pathconf(server, fhandle, pathconf),
2417 &exception);
2418 } while (exception.retry);
2419 return err;
2420}
2421
Trond Myklebustec06c092006-03-20 13:44:27 -05002422static int nfs4_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Trond Myklebustec06c092006-03-20 13:44:27 -05002424 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Trond Myklebustec06c092006-03-20 13:44:27 -05002426 if (nfs4_async_handle_error(task, server) == -EAGAIN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 rpc_restart_call(task);
Trond Myklebustec06c092006-03-20 13:44:27 -05002428 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 if (task->tk_status > 0)
Trond Myklebustec06c092006-03-20 13:44:27 -05002431 renew_lease(server, data->timestamp);
2432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433}
2434
Trond Myklebustec06c092006-03-20 13:44:27 -05002435static void nfs4_proc_read_setup(struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 struct rpc_message msg = {
2438 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ],
2439 .rpc_argp = &data->args,
2440 .rpc_resp = &data->res,
2441 .rpc_cred = data->cred,
2442 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444 data->timestamp = jiffies;
2445
Trond Myklebustec06c092006-03-20 13:44:27 -05002446 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447}
2448
Trond Myklebust788e7a82006-03-20 13:44:27 -05002449static int nfs4_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 struct inode *inode = data->inode;
2452
2453 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2454 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002455 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002457 if (task->tk_status >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 renew_lease(NFS_SERVER(inode), data->timestamp);
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002459 nfs_post_op_update_inode(inode, data->res.fattr);
2460 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05002461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
Trond Myklebust788e7a82006-03-20 13:44:27 -05002464static void nfs4_proc_write_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 struct rpc_message msg = {
2467 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE],
2468 .rpc_argp = &data->args,
2469 .rpc_resp = &data->res,
2470 .rpc_cred = data->cred,
2471 };
2472 struct inode *inode = data->inode;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002473 struct nfs_server *server = NFS_SERVER(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 int stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476 if (how & FLUSH_STABLE) {
2477 if (!NFS_I(inode)->ncommit)
2478 stable = NFS_FILE_SYNC;
2479 else
2480 stable = NFS_DATA_SYNC;
2481 } else
2482 stable = NFS_UNSTABLE;
2483 data->args.stable = stable;
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002484 data->args.bitmask = server->attr_bitmask;
2485 data->res.server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 data->timestamp = jiffies;
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 /* Finalize the task. */
Trond Myklebust788e7a82006-03-20 13:44:27 -05002490 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Trond Myklebust788e7a82006-03-20 13:44:27 -05002493static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 struct inode *inode = data->inode;
2496
2497 if (nfs4_async_handle_error(task, NFS_SERVER(inode)) == -EAGAIN) {
2498 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002499 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002501 if (task->tk_status >= 0)
2502 nfs_post_op_update_inode(inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05002503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Trond Myklebust788e7a82006-03-20 13:44:27 -05002506static void nfs4_proc_commit_setup(struct nfs_write_data *data, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 struct rpc_message msg = {
2509 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
2510 .rpc_argp = &data->args,
2511 .rpc_resp = &data->res,
2512 .rpc_cred = data->cred,
2513 };
Trond Myklebust788e7a82006-03-20 13:44:27 -05002514 struct nfs_server *server = NFS_SERVER(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Trond Myklebust4f9838c2005-10-27 22:12:44 -04002516 data->args.bitmask = server->attr_bitmask;
2517 data->res.server = server;
2518
Trond Myklebust788e7a82006-03-20 13:44:27 -05002519 rpc_call_setup(&data->task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
2522/*
2523 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2524 * standalone procedure for queueing an asynchronous RENEW.
2525 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002526static void nfs4_renew_done(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
David Howellsadfa6f92006-08-22 20:06:08 -04002528 struct nfs_client *clp = (struct nfs_client *)task->tk_msg.rpc_argp;
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002529 unsigned long timestamp = (unsigned long)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 if (task->tk_status < 0) {
2532 switch (task->tk_status) {
2533 case -NFS4ERR_STALE_CLIENTID:
2534 case -NFS4ERR_EXPIRED:
2535 case -NFS4ERR_CB_PATH_DOWN:
2536 nfs4_schedule_state_recovery(clp);
2537 }
2538 return;
2539 }
2540 spin_lock(&clp->cl_lock);
2541 if (time_before(clp->cl_last_renewal,timestamp))
2542 clp->cl_last_renewal = timestamp;
2543 spin_unlock(&clp->cl_lock);
2544}
2545
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002546static const struct rpc_call_ops nfs4_renew_ops = {
2547 .rpc_call_done = nfs4_renew_done,
2548};
2549
David Howellsadfa6f92006-08-22 20:06:08 -04002550int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
2552 struct rpc_message msg = {
2553 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2554 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002555 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 };
2557
2558 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_SOFT,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01002559 &nfs4_renew_ops, (void *)jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
2561
David Howellsadfa6f92006-08-22 20:06:08 -04002562int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563{
2564 struct rpc_message msg = {
2565 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
2566 .rpc_argp = clp,
Trond Myklebustb4454fe2006-01-03 09:55:25 +01002567 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 };
2569 unsigned long now = jiffies;
2570 int status;
2571
2572 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2573 if (status < 0)
2574 return status;
2575 spin_lock(&clp->cl_lock);
2576 if (time_before(clp->cl_last_renewal,now))
2577 clp->cl_last_renewal = now;
2578 spin_unlock(&clp->cl_lock);
2579 return 0;
2580}
2581
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002582static inline int nfs4_server_supports_acls(struct nfs_server *server)
2583{
2584 return (server->caps & NFS_CAP_ACLS)
2585 && (server->acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2586 && (server->acl_bitmask & ACL4_SUPPORT_DENY_ACL);
2587}
2588
2589/* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2590 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2591 * the stack.
2592 */
2593#define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2594
2595static void buf_to_pages(const void *buf, size_t buflen,
2596 struct page **pages, unsigned int *pgbase)
2597{
2598 const void *p = buf;
2599
2600 *pgbase = offset_in_page(buf);
2601 p -= *pgbase;
2602 while (p < buf + buflen) {
2603 *(pages++) = virt_to_page(p);
2604 p += PAGE_CACHE_SIZE;
2605 }
2606}
2607
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002608struct nfs4_cached_acl {
2609 int cached;
2610 size_t len;
Andrew Morton3e9d4152005-06-22 17:16:28 +00002611 char data[0];
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002612};
2613
2614static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002615{
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002616 struct nfs_inode *nfsi = NFS_I(inode);
2617
2618 spin_lock(&inode->i_lock);
2619 kfree(nfsi->nfs4_acl);
2620 nfsi->nfs4_acl = acl;
2621 spin_unlock(&inode->i_lock);
2622}
2623
2624static void nfs4_zap_acl_attr(struct inode *inode)
2625{
2626 nfs4_set_cached_acl(inode, NULL);
2627}
2628
2629static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
2630{
2631 struct nfs_inode *nfsi = NFS_I(inode);
2632 struct nfs4_cached_acl *acl;
2633 int ret = -ENOENT;
2634
2635 spin_lock(&inode->i_lock);
2636 acl = nfsi->nfs4_acl;
2637 if (acl == NULL)
2638 goto out;
2639 if (buf == NULL) /* user is just asking for length */
2640 goto out_len;
2641 if (acl->cached == 0)
2642 goto out;
2643 ret = -ERANGE; /* see getxattr(2) man page */
2644 if (acl->len > buflen)
2645 goto out;
2646 memcpy(buf, acl->data, acl->len);
2647out_len:
2648 ret = acl->len;
2649out:
2650 spin_unlock(&inode->i_lock);
2651 return ret;
2652}
2653
2654static void nfs4_write_cached_acl(struct inode *inode, const char *buf, size_t acl_len)
2655{
2656 struct nfs4_cached_acl *acl;
2657
2658 if (buf && acl_len <= PAGE_SIZE) {
2659 acl = kmalloc(sizeof(*acl) + acl_len, GFP_KERNEL);
2660 if (acl == NULL)
2661 goto out;
2662 acl->cached = 1;
2663 memcpy(acl->data, buf, acl_len);
2664 } else {
2665 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
2666 if (acl == NULL)
2667 goto out;
2668 acl->cached = 0;
2669 }
2670 acl->len = acl_len;
2671out:
2672 nfs4_set_cached_acl(inode, acl);
2673}
2674
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002675static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002676{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002677 struct page *pages[NFS4ACL_MAXPAGES];
2678 struct nfs_getaclargs args = {
2679 .fh = NFS_FH(inode),
2680 .acl_pages = pages,
2681 .acl_len = buflen,
2682 };
2683 size_t resp_len = buflen;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002684 void *resp_buf;
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002685 struct rpc_message msg = {
2686 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
2687 .rpc_argp = &args,
2688 .rpc_resp = &resp_len,
2689 };
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002690 struct page *localpage = NULL;
2691 int ret;
2692
2693 if (buflen < PAGE_SIZE) {
2694 /* As long as we're doing a round trip to the server anyway,
2695 * let's be prepared for a page of acl data. */
2696 localpage = alloc_page(GFP_KERNEL);
2697 resp_buf = page_address(localpage);
2698 if (localpage == NULL)
2699 return -ENOMEM;
2700 args.acl_pages[0] = localpage;
2701 args.acl_pgbase = 0;
J. Bruce Fields1d95db82005-10-13 16:54:32 -04002702 resp_len = args.acl_len = PAGE_SIZE;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002703 } else {
2704 resp_buf = buf;
2705 buf_to_pages(buf, buflen, args.acl_pages, &args.acl_pgbase);
2706 }
2707 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
2708 if (ret)
2709 goto out_free;
2710 if (resp_len > args.acl_len)
2711 nfs4_write_cached_acl(inode, NULL, resp_len);
2712 else
2713 nfs4_write_cached_acl(inode, resp_buf, resp_len);
2714 if (buf) {
2715 ret = -ERANGE;
2716 if (resp_len > buflen)
2717 goto out_free;
2718 if (localpage)
2719 memcpy(buf, resp_buf, resp_len);
2720 }
2721 ret = resp_len;
2722out_free:
2723 if (localpage)
2724 __free_page(localpage);
2725 return ret;
2726}
2727
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002728static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
2729{
2730 struct nfs4_exception exception = { };
2731 ssize_t ret;
2732 do {
2733 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
2734 if (ret >= 0)
2735 break;
2736 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
2737 } while (exception.retry);
2738 return ret;
2739}
2740
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002741static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
2742{
2743 struct nfs_server *server = NFS_SERVER(inode);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002744 int ret;
2745
2746 if (!nfs4_server_supports_acls(server))
2747 return -EOPNOTSUPP;
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002748 ret = nfs_revalidate_inode(server, inode);
2749 if (ret < 0)
2750 return ret;
2751 ret = nfs4_read_cached_acl(inode, buf, buflen);
2752 if (ret != -ENOENT)
2753 return ret;
2754 return nfs4_get_acl_uncached(inode, buf, buflen);
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00002755}
2756
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002757static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002758{
2759 struct nfs_server *server = NFS_SERVER(inode);
2760 struct page *pages[NFS4ACL_MAXPAGES];
2761 struct nfs_setaclargs arg = {
2762 .fh = NFS_FH(inode),
2763 .acl_pages = pages,
2764 .acl_len = buflen,
2765 };
2766 struct rpc_message msg = {
2767 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
2768 .rpc_argp = &arg,
2769 .rpc_resp = NULL,
2770 };
2771 int ret;
2772
2773 if (!nfs4_server_supports_acls(server))
2774 return -EOPNOTSUPP;
Trond Myklebust642ac542005-10-18 14:20:19 -07002775 nfs_inode_return_delegation(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002776 buf_to_pages(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
David Howells1f163412006-08-22 20:06:11 -04002777 ret = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
J. Bruce Fields08efa202007-05-01 10:56:25 -04002778 nfs_zap_caches(inode);
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00002779 return ret;
2780}
2781
Trond Myklebust16b4289c2006-08-24 12:27:15 -04002782static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
2783{
2784 struct nfs4_exception exception = { };
2785 int err;
2786 do {
2787 err = nfs4_handle_exception(NFS_SERVER(inode),
2788 __nfs4_proc_set_acl(inode, buf, buflen),
2789 &exception);
2790 } while (exception.retry);
2791 return err;
2792}
2793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794static int
Trond Myklebustfaf5f492005-10-18 14:20:15 -07002795nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
David Howells7539bba2006-08-22 20:06:09 -04002797 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799 if (!clp || task->tk_status >= 0)
2800 return 0;
2801 switch(task->tk_status) {
2802 case -NFS4ERR_STALE_CLIENTID:
2803 case -NFS4ERR_STALE_STATEID:
2804 case -NFS4ERR_EXPIRED:
2805 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL, NULL);
2806 nfs4_schedule_state_recovery(clp);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002807 if (test_bit(NFS4CLNT_STATE_RECOVER, &clp->cl_state) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 rpc_wake_up_task(task);
2809 task->tk_status = 0;
2810 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 case -NFS4ERR_DELAY:
Chuck Lever006ea732006-03-20 13:44:14 -05002812 nfs_inc_server_stats((struct nfs_server *) server,
2813 NFSIOS_DELAY);
2814 case -NFS4ERR_GRACE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 rpc_delay(task, NFS4_POLL_RETRY_MAX);
2816 task->tk_status = 0;
2817 return -EAGAIN;
2818 case -NFS4ERR_OLD_STATEID:
2819 task->tk_status = 0;
2820 return -EAGAIN;
2821 }
2822 task->tk_status = nfs4_map_errors(task->tk_status);
2823 return 0;
2824}
2825
Trond Myklebust433fbe42006-01-03 09:55:22 +01002826static int nfs4_wait_bit_interruptible(void *word)
2827{
2828 if (signal_pending(current))
2829 return -ERESTARTSYS;
2830 schedule();
2831 return 0;
2832}
2833
David Howellsadfa6f92006-08-22 20:06:08 -04002834static int nfs4_wait_clnt_recover(struct rpc_clnt *clnt, struct nfs_client *clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 sigset_t oldset;
Trond Myklebust433fbe42006-01-03 09:55:22 +01002837 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
2839 might_sleep();
2840
Trond Myklebuste1485822006-12-13 16:43:13 -05002841 rwsem_acquire(&clp->cl_sem.dep_map, 0, 0, _RET_IP_);
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 rpc_clnt_sigmask(clnt, &oldset);
Trond Myklebust433fbe42006-01-03 09:55:22 +01002844 res = wait_on_bit(&clp->cl_state, NFS4CLNT_STATE_RECOVER,
2845 nfs4_wait_bit_interruptible,
2846 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 rpc_clnt_sigunmask(clnt, &oldset);
Trond Myklebuste1485822006-12-13 16:43:13 -05002848
2849 rwsem_release(&clp->cl_sem.dep_map, 1, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 return res;
2851}
2852
2853static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
2854{
2855 sigset_t oldset;
2856 int res = 0;
2857
2858 might_sleep();
2859
2860 if (*timeout <= 0)
2861 *timeout = NFS4_POLL_RETRY_MIN;
2862 if (*timeout > NFS4_POLL_RETRY_MAX)
2863 *timeout = NFS4_POLL_RETRY_MAX;
2864 rpc_clnt_sigmask(clnt, &oldset);
2865 if (clnt->cl_intr) {
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002866 schedule_timeout_interruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (signalled())
2868 res = -ERESTARTSYS;
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002869 } else
2870 schedule_timeout_uninterruptible(*timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 rpc_clnt_sigunmask(clnt, &oldset);
2872 *timeout <<= 1;
2873 return res;
2874}
2875
2876/* This is the error handling routine for processes that are allowed
2877 * to sleep.
2878 */
Trond Myklebust10afec92007-05-14 17:16:04 -04002879static int nfs4_handle_exception(const struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
David Howells7539bba2006-08-22 20:06:09 -04002881 struct nfs_client *clp = server->nfs_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 int ret = errorcode;
2883
2884 exception->retry = 0;
2885 switch(errorcode) {
2886 case 0:
2887 return 0;
2888 case -NFS4ERR_STALE_CLIENTID:
2889 case -NFS4ERR_STALE_STATEID:
2890 case -NFS4ERR_EXPIRED:
Trond Myklebust433fbe42006-01-03 09:55:22 +01002891 nfs4_schedule_state_recovery(clp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 ret = nfs4_wait_clnt_recover(server->client, clp);
2893 if (ret == 0)
2894 exception->retry = 1;
2895 break;
Trond Myklebustc5149832006-09-15 08:25:04 -04002896 case -NFS4ERR_FILE_OPEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 case -NFS4ERR_GRACE:
2898 case -NFS4ERR_DELAY:
2899 ret = nfs4_delay(server->client, &exception->timeout);
Trond Myklebust2c566172005-11-04 15:33:50 -05002900 if (ret != 0)
2901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 case -NFS4ERR_OLD_STATEID:
Trond Myklebust2c566172005-11-04 15:33:50 -05002903 exception->retry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 }
2905 /* We failed to handle the error */
2906 return nfs4_map_errors(ret);
2907}
2908
David Howellsadfa6f92006-08-22 20:06:08 -04002909int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short port, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
2911 nfs4_verifier sc_verifier;
2912 struct nfs4_setclientid setclientid = {
2913 .sc_verifier = &sc_verifier,
2914 .sc_prog = program,
2915 };
2916 struct rpc_message msg = {
2917 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
2918 .rpc_argp = &setclientid,
2919 .rpc_resp = clp,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002920 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 };
Al Virobc4785c2006-10-19 23:28:51 -07002922 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 int loop = 0;
2924 int status;
2925
Al Virobc4785c2006-10-19 23:28:51 -07002926 p = (__be32*)sc_verifier.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 *p++ = htonl((u32)clp->cl_boot_time.tv_sec);
2928 *p = htonl((u32)clp->cl_boot_time.tv_nsec);
2929
2930 for(;;) {
2931 setclientid.sc_name_len = scnprintf(setclientid.sc_name,
2932 sizeof(setclientid.sc_name), "%s/%u.%u.%u.%u %s %u",
David Howells24c8dbb2006-08-22 20:06:10 -04002933 clp->cl_ipaddr, NIPQUAD(clp->cl_addr.sin_addr),
Trond Myklebust286d7d62006-01-03 09:55:26 +01002934 cred->cr_ops->cr_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 clp->cl_id_uniquifier);
2936 setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
2937 sizeof(setclientid.sc_netid), "tcp");
2938 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
2939 sizeof(setclientid.sc_uaddr), "%s.%d.%d",
2940 clp->cl_ipaddr, port >> 8, port & 255);
2941
2942 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2943 if (status != -NFS4ERR_CLID_INUSE)
2944 break;
2945 if (signalled())
2946 break;
2947 if (loop++ & 1)
2948 ssleep(clp->cl_lease_time + 1);
2949 else
2950 if (++clp->cl_id_uniquifier == 0)
2951 break;
2952 }
2953 return status;
2954}
2955
David Howellsadfa6f92006-08-22 20:06:08 -04002956static int _nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
2958 struct nfs_fsinfo fsinfo;
2959 struct rpc_message msg = {
2960 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
2961 .rpc_argp = clp,
2962 .rpc_resp = &fsinfo,
Trond Myklebust286d7d62006-01-03 09:55:26 +01002963 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 };
2965 unsigned long now;
2966 int status;
2967
2968 now = jiffies;
2969 status = rpc_call_sync(clp->cl_rpcclient, &msg, 0);
2970 if (status == 0) {
2971 spin_lock(&clp->cl_lock);
2972 clp->cl_lease_time = fsinfo.lease_time * HZ;
2973 clp->cl_last_renewal = now;
Trond Myklebust58d97142006-01-03 09:55:24 +01002974 clear_bit(NFS4CLNT_LEASE_EXPIRED, &clp->cl_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 spin_unlock(&clp->cl_lock);
2976 }
2977 return status;
2978}
2979
David Howellsadfa6f92006-08-22 20:06:08 -04002980int nfs4_proc_setclientid_confirm(struct nfs_client *clp, struct rpc_cred *cred)
Trond Myklebust51581f32006-03-20 13:44:47 -05002981{
2982 long timeout;
2983 int err;
2984 do {
2985 err = _nfs4_proc_setclientid_confirm(clp, cred);
2986 switch (err) {
2987 case 0:
2988 return err;
2989 case -NFS4ERR_RESOURCE:
2990 /* The IBM lawyers misread another document! */
2991 case -NFS4ERR_DELAY:
2992 err = nfs4_delay(clp->cl_rpcclient, &timeout);
2993 }
2994 } while (err == 0);
2995 return err;
2996}
2997
Trond Myklebustfe650402006-01-03 09:55:18 +01002998struct nfs4_delegreturndata {
2999 struct nfs4_delegreturnargs args;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003000 struct nfs4_delegreturnres res;
Trond Myklebustfe650402006-01-03 09:55:18 +01003001 struct nfs_fh fh;
3002 nfs4_stateid stateid;
3003 struct rpc_cred *cred;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003004 unsigned long timestamp;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003005 struct nfs_fattr fattr;
Trond Myklebustfe650402006-01-03 09:55:18 +01003006 int rpc_status;
3007};
3008
3009static void nfs4_delegreturn_prepare(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Trond Myklebustfe650402006-01-03 09:55:18 +01003011 struct nfs4_delegreturndata *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 struct rpc_message msg = {
3013 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
Trond Myklebustfe650402006-01-03 09:55:18 +01003014 .rpc_argp = &data->args,
Trond Myklebustfa178f22006-01-03 09:55:38 +01003015 .rpc_resp = &data->res,
Trond Myklebustfe650402006-01-03 09:55:18 +01003016 .rpc_cred = data->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 };
Trond Myklebustfa178f22006-01-03 09:55:38 +01003018 nfs_fattr_init(data->res.fattr);
Trond Myklebustfe650402006-01-03 09:55:18 +01003019 rpc_call_setup(task, &msg, 0);
3020}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Trond Myklebustfe650402006-01-03 09:55:18 +01003022static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
3023{
3024 struct nfs4_delegreturndata *data = calldata;
3025 data->rpc_status = task->tk_status;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003026 if (data->rpc_status == 0)
Trond Myklebustfa178f22006-01-03 09:55:38 +01003027 renew_lease(data->res.server, data->timestamp);
Trond Myklebustfe650402006-01-03 09:55:18 +01003028}
3029
3030static void nfs4_delegreturn_release(void *calldata)
3031{
3032 struct nfs4_delegreturndata *data = calldata;
3033
3034 put_rpccred(data->cred);
3035 kfree(calldata);
3036}
3037
Jesper Juhlc8d149f2006-03-20 13:44:07 -05003038static const struct rpc_call_ops nfs4_delegreturn_ops = {
Trond Myklebustfe650402006-01-03 09:55:18 +01003039 .rpc_call_prepare = nfs4_delegreturn_prepare,
3040 .rpc_call_done = nfs4_delegreturn_done,
3041 .rpc_release = nfs4_delegreturn_release,
3042};
3043
3044static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3045{
3046 struct nfs4_delegreturndata *data;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003047 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebustfe650402006-01-03 09:55:18 +01003048 struct rpc_task *task;
3049 int status;
3050
3051 data = kmalloc(sizeof(*data), GFP_KERNEL);
3052 if (data == NULL)
3053 return -ENOMEM;
3054 data->args.fhandle = &data->fh;
3055 data->args.stateid = &data->stateid;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003056 data->args.bitmask = server->attr_bitmask;
Trond Myklebustfe650402006-01-03 09:55:18 +01003057 nfs_copy_fh(&data->fh, NFS_FH(inode));
3058 memcpy(&data->stateid, stateid, sizeof(data->stateid));
Trond Myklebustfa178f22006-01-03 09:55:38 +01003059 data->res.fattr = &data->fattr;
3060 data->res.server = server;
Trond Myklebustfe650402006-01-03 09:55:18 +01003061 data->cred = get_rpccred(cred);
Trond Myklebust26e976a2006-01-03 09:55:21 +01003062 data->timestamp = jiffies;
Trond Myklebustfe650402006-01-03 09:55:18 +01003063 data->rpc_status = 0;
3064
3065 task = rpc_run_task(NFS_CLIENT(inode), RPC_TASK_ASYNC, &nfs4_delegreturn_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003066 if (IS_ERR(task))
Trond Myklebustfe650402006-01-03 09:55:18 +01003067 return PTR_ERR(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003068 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebustfa178f22006-01-03 09:55:38 +01003069 if (status == 0) {
Trond Myklebustfe650402006-01-03 09:55:18 +01003070 status = data->rpc_status;
Trond Myklebustfa178f22006-01-03 09:55:38 +01003071 if (status == 0)
3072 nfs_post_op_update_inode(inode, &data->fattr);
3073 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003074 rpc_put_task(task);
Trond Myklebustfe650402006-01-03 09:55:18 +01003075 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076}
3077
3078int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid)
3079{
3080 struct nfs_server *server = NFS_SERVER(inode);
3081 struct nfs4_exception exception = { };
3082 int err;
3083 do {
3084 err = _nfs4_proc_delegreturn(inode, cred, stateid);
3085 switch (err) {
3086 case -NFS4ERR_STALE_STATEID:
3087 case -NFS4ERR_EXPIRED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 case 0:
3089 return 0;
3090 }
3091 err = nfs4_handle_exception(server, err, &exception);
3092 } while (exception.retry);
3093 return err;
3094}
3095
3096#define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3097#define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3098
3099/*
3100 * sleep, with exponential backoff, and retry the LOCK operation.
3101 */
3102static unsigned long
3103nfs4_set_lock_task_retry(unsigned long timeout)
3104{
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003105 schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 timeout <<= 1;
3107 if (timeout > NFS4_LOCK_MAXTIMEOUT)
3108 return NFS4_LOCK_MAXTIMEOUT;
3109 return timeout;
3110}
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3113{
3114 struct inode *inode = state->inode;
3115 struct nfs_server *server = NFS_SERVER(inode);
David Howells7539bba2006-08-22 20:06:09 -04003116 struct nfs_client *clp = server->nfs_client;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003117 struct nfs_lockt_args arg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 .fh = NFS_FH(inode),
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003119 .fl = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 };
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003121 struct nfs_lockt_res res = {
3122 .denied = request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 };
3124 struct rpc_message msg = {
3125 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
3126 .rpc_argp = &arg,
3127 .rpc_resp = &res,
3128 .rpc_cred = state->owner->so_cred,
3129 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 struct nfs4_lock_state *lsp;
3131 int status;
3132
3133 down_read(&clp->cl_sem);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003134 arg.lock_owner.clientid = clp->cl_clientid;
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003135 status = nfs4_set_lock_state(state, request);
3136 if (status != 0)
3137 goto out;
3138 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003139 arg.lock_owner.id = lsp->ls_id.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 status = rpc_call_sync(server->client, &msg, 0);
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003141 switch (status) {
3142 case 0:
3143 request->fl_type = F_UNLCK;
3144 break;
3145 case -NFS4ERR_DENIED:
3146 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 }
J. Bruce Fields70cc6482007-02-22 18:48:53 -05003148 request->fl_ops->fl_release_private(request);
Trond Myklebust8d0a8a92005-06-22 17:16:32 +00003149out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 up_read(&clp->cl_sem);
3151 return status;
3152}
3153
3154static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3155{
3156 struct nfs4_exception exception = { };
3157 int err;
3158
3159 do {
3160 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3161 _nfs4_proc_getlk(state, cmd, request),
3162 &exception);
3163 } while (exception.retry);
3164 return err;
3165}
3166
3167static int do_vfs_lock(struct file *file, struct file_lock *fl)
3168{
3169 int res = 0;
3170 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
3171 case FL_POSIX:
3172 res = posix_lock_file_wait(file, fl);
3173 break;
3174 case FL_FLOCK:
3175 res = flock_lock_file_wait(file, fl);
3176 break;
3177 default:
3178 BUG();
3179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 return res;
3181}
3182
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003183struct nfs4_unlockdata {
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003184 struct nfs_locku_args arg;
3185 struct nfs_locku_res res;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003186 struct nfs4_lock_state *lsp;
3187 struct nfs_open_context *ctx;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003188 struct file_lock fl;
3189 const struct nfs_server *server;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003190 unsigned long timestamp;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003191};
3192
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003193static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
3194 struct nfs_open_context *ctx,
3195 struct nfs4_lock_state *lsp,
3196 struct nfs_seqid *seqid)
3197{
3198 struct nfs4_unlockdata *p;
3199 struct inode *inode = lsp->ls_state->inode;
3200
3201 p = kmalloc(sizeof(*p), GFP_KERNEL);
3202 if (p == NULL)
3203 return NULL;
3204 p->arg.fh = NFS_FH(inode);
3205 p->arg.fl = &p->fl;
3206 p->arg.seqid = seqid;
3207 p->arg.stateid = &lsp->ls_stateid;
3208 p->lsp = lsp;
3209 atomic_inc(&lsp->ls_count);
3210 /* Ensure we don't close file until we're done freeing locks! */
3211 p->ctx = get_nfs_open_context(ctx);
3212 memcpy(&p->fl, fl, sizeof(p->fl));
3213 p->server = NFS_SERVER(inode);
3214 return p;
3215}
3216
Trond Myklebust06f814a2006-01-03 09:55:07 +01003217static void nfs4_locku_release_calldata(void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003218{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003219 struct nfs4_unlockdata *calldata = data;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003220 nfs_free_seqid(calldata->arg.seqid);
Trond Myklebust06f814a2006-01-03 09:55:07 +01003221 nfs4_put_lock_state(calldata->lsp);
3222 put_nfs_open_context(calldata->ctx);
3223 kfree(calldata);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003224}
3225
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003226static void nfs4_locku_done(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003227{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003228 struct nfs4_unlockdata *calldata = data;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003229
Trond Myklebust06f814a2006-01-03 09:55:07 +01003230 if (RPC_ASSASSINATED(task))
3231 return;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003232 nfs_increment_lock_seqid(task->tk_status, calldata->arg.seqid);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003233 switch (task->tk_status) {
3234 case 0:
3235 memcpy(calldata->lsp->ls_stateid.data,
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003236 calldata->res.stateid.data,
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003237 sizeof(calldata->lsp->ls_stateid.data));
Trond Myklebust26e976a2006-01-03 09:55:21 +01003238 renew_lease(calldata->server, calldata->timestamp);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003239 break;
3240 case -NFS4ERR_STALE_STATEID:
3241 case -NFS4ERR_EXPIRED:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003242 break;
3243 default:
Trond Myklebusta6a352e2006-12-13 16:43:06 -05003244 if (nfs4_async_handle_error(task, calldata->server) == -EAGAIN)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003245 rpc_restart_call(task);
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003246 }
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003247}
3248
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003249static void nfs4_locku_prepare(struct rpc_task *task, void *data)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003250{
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003251 struct nfs4_unlockdata *calldata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 struct rpc_message msg = {
3253 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003254 .rpc_argp = &calldata->arg,
3255 .rpc_resp = &calldata->res,
3256 .rpc_cred = calldata->lsp->ls_state->owner->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003259 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003260 return;
3261 if ((calldata->lsp->ls_flags & NFS_LOCK_INITIALIZED) == 0) {
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003262 /* Note: exit _without_ running nfs4_locku_done */
3263 task->tk_action = NULL;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003264 return;
3265 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003266 calldata->timestamp = jiffies;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003267 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003270static const struct rpc_call_ops nfs4_locku_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +01003271 .rpc_call_prepare = nfs4_locku_prepare,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003272 .rpc_call_done = nfs4_locku_done,
Trond Myklebust06f814a2006-01-03 09:55:07 +01003273 .rpc_release = nfs4_locku_release_calldata,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01003274};
3275
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003276static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
3277 struct nfs_open_context *ctx,
3278 struct nfs4_lock_state *lsp,
3279 struct nfs_seqid *seqid)
3280{
3281 struct nfs4_unlockdata *data;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003282
3283 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
3284 if (data == NULL) {
3285 nfs_free_seqid(seqid);
3286 return ERR_PTR(-ENOMEM);
3287 }
3288
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003289 return rpc_run_task(NFS_CLIENT(lsp->ls_state->inode), RPC_TASK_ASYNC, &nfs4_locku_ops, data);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003290}
3291
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
3293{
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003294 struct nfs_seqid *seqid;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003295 struct nfs4_lock_state *lsp;
Trond Myklebust06f814a2006-01-03 09:55:07 +01003296 struct rpc_task *task;
3297 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
Trond Myklebust9b073572006-06-29 16:38:34 -04003299 status = nfs4_set_lock_state(state, request);
3300 /* Unlock _before_ we do the RPC call */
3301 request->fl_flags |= FL_EXISTS;
3302 if (do_vfs_lock(request->fl_file, request) == -ENOENT)
3303 goto out;
3304 if (status != 0)
3305 goto out;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003306 /* Is this a delegated lock? */
3307 if (test_bit(NFS_DELEGATED_STATE, &state->flags))
Trond Myklebust9b073572006-06-29 16:38:34 -04003308 goto out;
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003309 lsp = request->fl_u.nfs4_fl.owner;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003310 seqid = nfs_alloc_seqid(&lsp->ls_seqid);
Trond Myklebust9b073572006-06-29 16:38:34 -04003311 status = -ENOMEM;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003312 if (seqid == NULL)
Trond Myklebust9b073572006-06-29 16:38:34 -04003313 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003314 task = nfs4_do_unlck(request, request->fl_file->private_data, lsp, seqid);
3315 status = PTR_ERR(task);
3316 if (IS_ERR(task))
Trond Myklebust9b073572006-06-29 16:38:34 -04003317 goto out;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003318 status = nfs4_wait_for_completion_rpc_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003319 rpc_put_task(task);
Trond Myklebust9b073572006-06-29 16:38:34 -04003320out:
Trond Myklebustfaf5f492005-10-18 14:20:15 -07003321 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322}
3323
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003324struct nfs4_lockdata {
3325 struct nfs_lock_args arg;
Trond Myklebust911d1aa2006-01-03 09:55:16 +01003326 struct nfs_lock_res res;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003327 struct nfs4_lock_state *lsp;
3328 struct nfs_open_context *ctx;
3329 struct file_lock fl;
Trond Myklebust26e976a2006-01-03 09:55:21 +01003330 unsigned long timestamp;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003331 int rpc_status;
3332 int cancelled;
3333};
3334
3335static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
3336 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp)
3337{
3338 struct nfs4_lockdata *p;
3339 struct inode *inode = lsp->ls_state->inode;
3340 struct nfs_server *server = NFS_SERVER(inode);
3341
3342 p = kzalloc(sizeof(*p), GFP_KERNEL);
3343 if (p == NULL)
3344 return NULL;
3345
3346 p->arg.fh = NFS_FH(inode);
3347 p->arg.fl = &p->fl;
3348 p->arg.lock_seqid = nfs_alloc_seqid(&lsp->ls_seqid);
3349 if (p->arg.lock_seqid == NULL)
3350 goto out_free;
3351 p->arg.lock_stateid = &lsp->ls_stateid;
David Howells7539bba2006-08-22 20:06:09 -04003352 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
Trond Myklebust9f958ab2007-07-02 13:58:33 -04003353 p->arg.lock_owner.id = lsp->ls_id.id;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003354 p->lsp = lsp;
3355 atomic_inc(&lsp->ls_count);
3356 p->ctx = get_nfs_open_context(ctx);
3357 memcpy(&p->fl, fl, sizeof(p->fl));
3358 return p;
3359out_free:
3360 kfree(p);
3361 return NULL;
3362}
3363
3364static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
3365{
3366 struct nfs4_lockdata *data = calldata;
3367 struct nfs4_state *state = data->lsp->ls_state;
3368 struct nfs4_state_owner *sp = state->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 struct rpc_message msg = {
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003370 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
3371 .rpc_argp = &data->arg,
3372 .rpc_resp = &data->res,
3373 .rpc_cred = sp->so_cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003376 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
3377 return;
3378 dprintk("%s: begin!\n", __FUNCTION__);
3379 /* Do we need to do an open_to_lock_owner? */
3380 if (!(data->arg.lock_seqid->sequence->flags & NFS_SEQID_CONFIRMED)) {
3381 data->arg.open_seqid = nfs_alloc_seqid(&sp->so_seqid);
3382 if (data->arg.open_seqid == NULL) {
3383 data->rpc_status = -ENOMEM;
3384 task->tk_action = NULL;
Trond Myklebust06735b32005-10-18 14:20:15 -07003385 goto out;
Trond Myklebust06735b32005-10-18 14:20:15 -07003386 }
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003387 data->arg.open_stateid = &state->stateid;
3388 data->arg.new_lock_owner = 1;
3389 }
Trond Myklebust26e976a2006-01-03 09:55:21 +01003390 data->timestamp = jiffies;
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003391 rpc_call_setup(task, &msg, 0);
Trond Myklebust06735b32005-10-18 14:20:15 -07003392out:
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003393 dprintk("%s: done!, ret = %d\n", __FUNCTION__, data->rpc_status);
3394}
3395
3396static void nfs4_lock_done(struct rpc_task *task, void *calldata)
3397{
3398 struct nfs4_lockdata *data = calldata;
3399
3400 dprintk("%s: begin!\n", __FUNCTION__);
3401
3402 data->rpc_status = task->tk_status;
3403 if (RPC_ASSASSINATED(task))
3404 goto out;
3405 if (data->arg.new_lock_owner != 0) {
3406 nfs_increment_open_seqid(data->rpc_status, data->arg.open_seqid);
3407 if (data->rpc_status == 0)
3408 nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
3409 else
3410 goto out;
3411 }
3412 if (data->rpc_status == 0) {
3413 memcpy(data->lsp->ls_stateid.data, data->res.stateid.data,
3414 sizeof(data->lsp->ls_stateid.data));
3415 data->lsp->ls_flags |= NFS_LOCK_INITIALIZED;
Trond Myklebust88be9f92007-06-05 10:42:27 -04003416 renew_lease(NFS_SERVER(data->ctx->path.dentry->d_inode), data->timestamp);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003417 }
3418 nfs_increment_lock_seqid(data->rpc_status, data->arg.lock_seqid);
3419out:
3420 dprintk("%s: done, ret = %d!\n", __FUNCTION__, data->rpc_status);
3421}
3422
3423static void nfs4_lock_release(void *calldata)
3424{
3425 struct nfs4_lockdata *data = calldata;
3426
3427 dprintk("%s: begin!\n", __FUNCTION__);
3428 if (data->arg.open_seqid != NULL)
3429 nfs_free_seqid(data->arg.open_seqid);
3430 if (data->cancelled != 0) {
3431 struct rpc_task *task;
3432 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
3433 data->arg.lock_seqid);
3434 if (!IS_ERR(task))
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003435 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003436 dprintk("%s: cancelling lock!\n", __FUNCTION__);
3437 } else
3438 nfs_free_seqid(data->arg.lock_seqid);
3439 nfs4_put_lock_state(data->lsp);
3440 put_nfs_open_context(data->ctx);
3441 kfree(data);
3442 dprintk("%s: done!\n", __FUNCTION__);
3443}
3444
3445static const struct rpc_call_ops nfs4_lock_ops = {
3446 .rpc_call_prepare = nfs4_lock_prepare,
3447 .rpc_call_done = nfs4_lock_done,
3448 .rpc_release = nfs4_lock_release,
3449};
3450
3451static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int reclaim)
3452{
3453 struct nfs4_lockdata *data;
3454 struct rpc_task *task;
3455 int ret;
3456
3457 dprintk("%s: begin!\n", __FUNCTION__);
3458 data = nfs4_alloc_lockdata(fl, fl->fl_file->private_data,
3459 fl->fl_u.nfs4_fl.owner);
3460 if (data == NULL)
3461 return -ENOMEM;
3462 if (IS_SETLKW(cmd))
3463 data->arg.block = 1;
3464 if (reclaim != 0)
3465 data->arg.reclaim = 1;
3466 task = rpc_run_task(NFS_CLIENT(state->inode), RPC_TASK_ASYNC,
3467 &nfs4_lock_ops, data);
Trond Myklebust7a1218a2006-03-20 18:11:10 -05003468 if (IS_ERR(task))
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003469 return PTR_ERR(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003470 ret = nfs4_wait_for_completion_rpc_task(task);
3471 if (ret == 0) {
3472 ret = data->rpc_status;
3473 if (ret == -NFS4ERR_DENIED)
3474 ret = -EAGAIN;
3475 } else
3476 data->cancelled = 1;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -05003477 rpc_put_task(task);
Trond Myklebusta5d16a42006-01-03 09:55:17 +01003478 dprintk("%s: done, ret = %d!\n", __FUNCTION__, ret);
3479 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480}
3481
3482static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
3483{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003484 struct nfs_server *server = NFS_SERVER(state->inode);
3485 struct nfs4_exception exception = { };
3486 int err;
3487
3488 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003489 /* Cache the lock if possible... */
3490 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3491 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003492 err = _nfs4_do_setlk(state, F_SETLK, request, 1);
3493 if (err != -NFS4ERR_DELAY)
3494 break;
3495 nfs4_handle_exception(server, err, &exception);
3496 } while (exception.retry);
3497 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498}
3499
3500static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
3501{
Trond Myklebust202b50d2005-06-22 17:16:29 +00003502 struct nfs_server *server = NFS_SERVER(state->inode);
3503 struct nfs4_exception exception = { };
3504 int err;
3505
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003506 err = nfs4_set_lock_state(state, request);
3507 if (err != 0)
3508 return err;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003509 do {
Trond Myklebust42a2d132006-06-29 16:38:36 -04003510 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
3511 return 0;
Trond Myklebust202b50d2005-06-22 17:16:29 +00003512 err = _nfs4_do_setlk(state, F_SETLK, request, 0);
3513 if (err != -NFS4ERR_DELAY)
3514 break;
3515 nfs4_handle_exception(server, err, &exception);
3516 } while (exception.retry);
3517 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518}
3519
3520static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3521{
David Howellsadfa6f92006-08-22 20:06:08 -04003522 struct nfs_client *clp = state->owner->so_client;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003523 unsigned char fl_flags = request->fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 int status;
3525
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003526 /* Is this a delegated open? */
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003527 status = nfs4_set_lock_state(state, request);
3528 if (status != 0)
3529 goto out;
Trond Myklebust01c3b862006-06-29 16:38:39 -04003530 request->fl_flags |= FL_ACCESS;
3531 status = do_vfs_lock(request->fl_file, request);
3532 if (status < 0)
3533 goto out;
3534 down_read(&clp->cl_sem);
3535 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3536 struct nfs_inode *nfsi = NFS_I(state->inode);
3537 /* Yes: cache locks! */
3538 down_read(&nfsi->rwsem);
3539 /* ...but avoid races with delegation recall... */
3540 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
3541 request->fl_flags = fl_flags & ~FL_SLEEP;
3542 status = do_vfs_lock(request->fl_file, request);
3543 up_read(&nfsi->rwsem);
3544 goto out_unlock;
3545 }
3546 up_read(&nfsi->rwsem);
3547 }
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003548 status = _nfs4_do_setlk(state, cmd, request, 0);
3549 if (status != 0)
Trond Myklebust01c3b862006-06-29 16:38:39 -04003550 goto out_unlock;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003551 /* Note: we always want to sleep here! */
Trond Myklebust01c3b862006-06-29 16:38:39 -04003552 request->fl_flags = fl_flags | FL_SLEEP;
Trond Myklebust6bfc93e2005-11-04 15:39:36 -05003553 if (do_vfs_lock(request->fl_file, request) < 0)
3554 printk(KERN_WARNING "%s: VFS is out of sync with lock manager!\n", __FUNCTION__);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003555out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 up_read(&clp->cl_sem);
Trond Myklebust01c3b862006-06-29 16:38:39 -04003557out:
3558 request->fl_flags = fl_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 return status;
3560}
3561
3562static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
3563{
3564 struct nfs4_exception exception = { };
3565 int err;
3566
3567 do {
3568 err = nfs4_handle_exception(NFS_SERVER(state->inode),
3569 _nfs4_proc_setlk(state, cmd, request),
3570 &exception);
3571 } while (exception.retry);
3572 return err;
3573}
3574
3575static int
3576nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
3577{
3578 struct nfs_open_context *ctx;
3579 struct nfs4_state *state;
3580 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
3581 int status;
3582
3583 /* verify open state */
3584 ctx = (struct nfs_open_context *)filp->private_data;
3585 state = ctx->state;
3586
3587 if (request->fl_start < 0 || request->fl_end < 0)
3588 return -EINVAL;
3589
3590 if (IS_GETLK(cmd))
3591 return nfs4_proc_getlk(state, F_GETLK, request);
3592
3593 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
3594 return -EINVAL;
3595
3596 if (request->fl_type == F_UNLCK)
3597 return nfs4_proc_unlck(state, cmd, request);
3598
3599 do {
3600 status = nfs4_proc_setlk(state, cmd, request);
3601 if ((status != -EAGAIN) || IS_SETLK(cmd))
3602 break;
3603 timeout = nfs4_set_lock_task_retry(timeout);
3604 status = -ERESTARTSYS;
3605 if (signalled())
3606 break;
3607 } while(status < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 return status;
3609}
3610
Trond Myklebust888e6942005-11-04 15:38:11 -05003611int nfs4_lock_delegation_recall(struct nfs4_state *state, struct file_lock *fl)
3612{
3613 struct nfs_server *server = NFS_SERVER(state->inode);
3614 struct nfs4_exception exception = { };
3615 int err;
3616
3617 err = nfs4_set_lock_state(state, fl);
3618 if (err != 0)
3619 goto out;
3620 do {
3621 err = _nfs4_do_setlk(state, F_SETLK, fl, 0);
3622 if (err != -NFS4ERR_DELAY)
3623 break;
3624 err = nfs4_handle_exception(server, err, &exception);
3625 } while (exception.retry);
3626out:
3627 return err;
3628}
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003629
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003630#define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
3631
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003632int nfs4_setxattr(struct dentry *dentry, const char *key, const void *buf,
3633 size_t buflen, int flags)
3634{
J. Bruce Fields4b580ee2005-06-22 17:16:23 +00003635 struct inode *inode = dentry->d_inode;
3636
3637 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3638 return -EOPNOTSUPP;
3639
3640 if (!S_ISREG(inode->i_mode) &&
3641 (!S_ISDIR(inode->i_mode) || inode->i_mode & S_ISVTX))
3642 return -EPERM;
3643
3644 return nfs4_proc_set_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003645}
3646
3647/* The getxattr man page suggests returning -ENODATA for unknown attributes,
3648 * and that's what we'll do for e.g. user attributes that haven't been set.
3649 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
3650 * attributes in kernel-managed attribute namespaces. */
3651ssize_t nfs4_getxattr(struct dentry *dentry, const char *key, void *buf,
3652 size_t buflen)
3653{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003654 struct inode *inode = dentry->d_inode;
3655
3656 if (strcmp(key, XATTR_NAME_NFSV4_ACL) != 0)
3657 return -EOPNOTSUPP;
3658
3659 return nfs4_proc_get_acl(inode, buf, buflen);
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003660}
3661
3662ssize_t nfs4_listxattr(struct dentry *dentry, char *buf, size_t buflen)
3663{
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003664 size_t len = strlen(XATTR_NAME_NFSV4_ACL) + 1;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003665
J. Bruce Fields096455a2006-03-20 23:23:42 -05003666 if (!nfs4_server_supports_acls(NFS_SERVER(dentry->d_inode)))
3667 return 0;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003668 if (buf && buflen < len)
3669 return -ERANGE;
3670 if (buf)
J. Bruce Fieldsaa1870a2005-06-22 17:16:22 +00003671 memcpy(buf, XATTR_NAME_NFSV4_ACL, len);
3672 return len;
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003673}
3674
Trond Myklebustc228fd32007-01-13 02:28:11 -05003675int nfs4_proc_fs_locations(struct inode *dir, struct qstr *name,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003676 struct nfs4_fs_locations *fs_locations, struct page *page)
Trond Myklebust683b57b2006-06-09 09:34:22 -04003677{
3678 struct nfs_server *server = NFS_SERVER(dir);
3679 u32 bitmask[2] = {
Manoj Naik361e6242006-06-09 09:34:24 -04003680 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
3681 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003682 };
3683 struct nfs4_fs_locations_arg args = {
3684 .dir_fh = NFS_FH(dir),
Trond Myklebustc228fd32007-01-13 02:28:11 -05003685 .name = name,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003686 .page = page,
3687 .bitmask = bitmask,
3688 };
3689 struct rpc_message msg = {
3690 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
3691 .rpc_argp = &args,
Manoj Naik7aaa0b32006-06-09 09:34:23 -04003692 .rpc_resp = fs_locations,
Trond Myklebust683b57b2006-06-09 09:34:22 -04003693 };
3694 int status;
3695
3696 dprintk("%s: start\n", __FUNCTION__);
Trond Myklebustc228fd32007-01-13 02:28:11 -05003697 nfs_fattr_init(&fs_locations->fattr);
Trond Myklebust683b57b2006-06-09 09:34:22 -04003698 fs_locations->server = server;
Manoj Naik830b8e32006-06-09 09:34:25 -04003699 fs_locations->nlocations = 0;
Trond Myklebust683b57b2006-06-09 09:34:22 -04003700 status = rpc_call_sync(server->client, &msg, 0);
3701 dprintk("%s: returned status = %d\n", __FUNCTION__, status);
3702 return status;
3703}
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops = {
3706 .recover_open = nfs4_open_reclaim,
3707 .recover_lock = nfs4_lock_reclaim,
3708};
3709
3710struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops = {
3711 .recover_open = nfs4_open_expired,
3712 .recover_lock = nfs4_lock_expired,
3713};
3714
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003715static const struct inode_operations nfs4_file_inode_operations = {
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003716 .permission = nfs_permission,
3717 .getattr = nfs_getattr,
3718 .setattr = nfs_setattr,
3719 .getxattr = nfs4_getxattr,
3720 .setxattr = nfs4_setxattr,
3721 .listxattr = nfs4_listxattr,
3722};
3723
David Howells509de812006-08-22 20:06:11 -04003724const struct nfs_rpc_ops nfs_v4_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 .version = 4, /* protocol version */
3726 .dentry_ops = &nfs4_dentry_operations,
3727 .dir_inode_ops = &nfs4_dir_inode_operations,
J. Bruce Fields6b3b5492005-06-22 17:16:22 +00003728 .file_inode_ops = &nfs4_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 .getroot = nfs4_proc_get_root,
3730 .getattr = nfs4_proc_getattr,
3731 .setattr = nfs4_proc_setattr,
David Howells2b3de442006-08-22 20:06:09 -04003732 .lookupfh = nfs4_proc_lookupfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 .lookup = nfs4_proc_lookup,
3734 .access = nfs4_proc_access,
3735 .readlink = nfs4_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 .create = nfs4_proc_create,
3737 .remove = nfs4_proc_remove,
3738 .unlink_setup = nfs4_proc_unlink_setup,
3739 .unlink_done = nfs4_proc_unlink_done,
3740 .rename = nfs4_proc_rename,
3741 .link = nfs4_proc_link,
3742 .symlink = nfs4_proc_symlink,
3743 .mkdir = nfs4_proc_mkdir,
3744 .rmdir = nfs4_proc_remove,
3745 .readdir = nfs4_proc_readdir,
3746 .mknod = nfs4_proc_mknod,
3747 .statfs = nfs4_proc_statfs,
3748 .fsinfo = nfs4_proc_fsinfo,
3749 .pathconf = nfs4_proc_pathconf,
David Howellse9326dc2006-08-22 20:06:10 -04003750 .set_capabilities = nfs4_server_capabilities,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 .decode_dirent = nfs4_decode_dirent,
3752 .read_setup = nfs4_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -05003753 .read_done = nfs4_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 .write_setup = nfs4_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003755 .write_done = nfs4_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 .commit_setup = nfs4_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -05003757 .commit_done = nfs4_commit_done,
Trond Myklebust02a913a2005-10-18 14:20:17 -07003758 .file_open = nfs_open,
3759 .file_release = nfs_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 .lock = nfs4_proc_lock,
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00003761 .clear_acl_cache = nfs4_zap_acl_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762};
3763
3764/*
3765 * Local variables:
3766 * c-basic-offset: 8
3767 * End:
3768 */