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