]> asedeno.scripts.mit.edu Git - linux.git/blob - fs/nfs/nfs4proc.c
NFSv4 fix acl retrieval over krb5i/krb5p mounts
[linux.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/delay.h>
40 #include <linux/errno.h>
41 #include <linux/string.h>
42 #include <linux/ratelimit.h>
43 #include <linux/printk.h>
44 #include <linux/slab.h>
45 #include <linux/sunrpc/clnt.h>
46 #include <linux/nfs.h>
47 #include <linux/nfs4.h>
48 #include <linux/nfs_fs.h>
49 #include <linux/nfs_page.h>
50 #include <linux/nfs_mount.h>
51 #include <linux/namei.h>
52 #include <linux/mount.h>
53 #include <linux/module.h>
54 #include <linux/xattr.h>
55 #include <linux/utsname.h>
56 #include <linux/freezer.h>
57 #include <linux/iversion.h>
58
59 #include "nfs4_fs.h"
60 #include "delegation.h"
61 #include "internal.h"
62 #include "iostat.h"
63 #include "callback.h"
64 #include "pnfs.h"
65 #include "netns.h"
66 #include "nfs4idmap.h"
67 #include "nfs4session.h"
68 #include "fscache.h"
69
70 #include "nfs4trace.h"
71
72 #define NFSDBG_FACILITY         NFSDBG_PROC
73
74 #define NFS4_BITMASK_SZ         3
75
76 #define NFS4_POLL_RETRY_MIN     (HZ/10)
77 #define NFS4_POLL_RETRY_MAX     (15*HZ)
78
79 /* file attributes which can be mapped to nfs attributes */
80 #define NFS4_VALID_ATTRS (ATTR_MODE \
81         | ATTR_UID \
82         | ATTR_GID \
83         | ATTR_SIZE \
84         | ATTR_ATIME \
85         | ATTR_MTIME \
86         | ATTR_CTIME \
87         | ATTR_ATIME_SET \
88         | ATTR_MTIME_SET)
89
90 struct nfs4_opendata;
91 static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
92 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
93 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
94 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label, struct inode *inode);
95 static int nfs4_do_setattr(struct inode *inode, const struct cred *cred,
96                             struct nfs_fattr *fattr, struct iattr *sattr,
97                             struct nfs_open_context *ctx, struct nfs4_label *ilabel,
98                             struct nfs4_label *olabel);
99 #ifdef CONFIG_NFS_V4_1
100 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
101                 const struct cred *cred,
102                 struct nfs4_slot *slot,
103                 bool is_privileged);
104 static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
105                 const struct cred *);
106 static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *,
107                 const struct cred *, bool);
108 #endif
109
110 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
111 static inline struct nfs4_label *
112 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
113         struct iattr *sattr, struct nfs4_label *label)
114 {
115         int err;
116
117         if (label == NULL)
118                 return NULL;
119
120         if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
121                 return NULL;
122
123         err = security_dentry_init_security(dentry, sattr->ia_mode,
124                                 &dentry->d_name, (void **)&label->label, &label->len);
125         if (err == 0)
126                 return label;
127
128         return NULL;
129 }
130 static inline void
131 nfs4_label_release_security(struct nfs4_label *label)
132 {
133         if (label)
134                 security_release_secctx(label->label, label->len);
135 }
136 static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
137 {
138         if (label)
139                 return server->attr_bitmask;
140
141         return server->attr_bitmask_nl;
142 }
143 #else
144 static inline struct nfs4_label *
145 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
146         struct iattr *sattr, struct nfs4_label *l)
147 { return NULL; }
148 static inline void
149 nfs4_label_release_security(struct nfs4_label *label)
150 { return; }
151 static inline u32 *
152 nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
153 { return server->attr_bitmask; }
154 #endif
155
156 /* Prevent leaks of NFSv4 errors into userland */
157 static int nfs4_map_errors(int err)
158 {
159         if (err >= -1000)
160                 return err;
161         switch (err) {
162         case -NFS4ERR_RESOURCE:
163         case -NFS4ERR_LAYOUTTRYLATER:
164         case -NFS4ERR_RECALLCONFLICT:
165                 return -EREMOTEIO;
166         case -NFS4ERR_WRONGSEC:
167         case -NFS4ERR_WRONG_CRED:
168                 return -EPERM;
169         case -NFS4ERR_BADOWNER:
170         case -NFS4ERR_BADNAME:
171                 return -EINVAL;
172         case -NFS4ERR_SHARE_DENIED:
173                 return -EACCES;
174         case -NFS4ERR_MINOR_VERS_MISMATCH:
175                 return -EPROTONOSUPPORT;
176         case -NFS4ERR_FILE_OPEN:
177                 return -EBUSY;
178         default:
179                 dprintk("%s could not handle NFSv4 error %d\n",
180                                 __func__, -err);
181                 break;
182         }
183         return -EIO;
184 }
185
186 /*
187  * This is our standard bitmap for GETATTR requests.
188  */
189 const u32 nfs4_fattr_bitmap[3] = {
190         FATTR4_WORD0_TYPE
191         | FATTR4_WORD0_CHANGE
192         | FATTR4_WORD0_SIZE
193         | FATTR4_WORD0_FSID
194         | FATTR4_WORD0_FILEID,
195         FATTR4_WORD1_MODE
196         | FATTR4_WORD1_NUMLINKS
197         | FATTR4_WORD1_OWNER
198         | FATTR4_WORD1_OWNER_GROUP
199         | FATTR4_WORD1_RAWDEV
200         | FATTR4_WORD1_SPACE_USED
201         | FATTR4_WORD1_TIME_ACCESS
202         | FATTR4_WORD1_TIME_METADATA
203         | FATTR4_WORD1_TIME_MODIFY
204         | FATTR4_WORD1_MOUNTED_ON_FILEID,
205 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
206         FATTR4_WORD2_SECURITY_LABEL
207 #endif
208 };
209
210 static const u32 nfs4_pnfs_open_bitmap[3] = {
211         FATTR4_WORD0_TYPE
212         | FATTR4_WORD0_CHANGE
213         | FATTR4_WORD0_SIZE
214         | FATTR4_WORD0_FSID
215         | FATTR4_WORD0_FILEID,
216         FATTR4_WORD1_MODE
217         | FATTR4_WORD1_NUMLINKS
218         | FATTR4_WORD1_OWNER
219         | FATTR4_WORD1_OWNER_GROUP
220         | FATTR4_WORD1_RAWDEV
221         | FATTR4_WORD1_SPACE_USED
222         | FATTR4_WORD1_TIME_ACCESS
223         | FATTR4_WORD1_TIME_METADATA
224         | FATTR4_WORD1_TIME_MODIFY,
225         FATTR4_WORD2_MDSTHRESHOLD
226 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
227         | FATTR4_WORD2_SECURITY_LABEL
228 #endif
229 };
230
231 static const u32 nfs4_open_noattr_bitmap[3] = {
232         FATTR4_WORD0_TYPE
233         | FATTR4_WORD0_FILEID,
234 };
235
236 const u32 nfs4_statfs_bitmap[3] = {
237         FATTR4_WORD0_FILES_AVAIL
238         | FATTR4_WORD0_FILES_FREE
239         | FATTR4_WORD0_FILES_TOTAL,
240         FATTR4_WORD1_SPACE_AVAIL
241         | FATTR4_WORD1_SPACE_FREE
242         | FATTR4_WORD1_SPACE_TOTAL
243 };
244
245 const u32 nfs4_pathconf_bitmap[3] = {
246         FATTR4_WORD0_MAXLINK
247         | FATTR4_WORD0_MAXNAME,
248         0
249 };
250
251 const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
252                         | FATTR4_WORD0_MAXREAD
253                         | FATTR4_WORD0_MAXWRITE
254                         | FATTR4_WORD0_LEASE_TIME,
255                         FATTR4_WORD1_TIME_DELTA
256                         | FATTR4_WORD1_FS_LAYOUT_TYPES,
257                         FATTR4_WORD2_LAYOUT_BLKSIZE
258                         | FATTR4_WORD2_CLONE_BLKSIZE
259 };
260
261 const u32 nfs4_fs_locations_bitmap[3] = {
262         FATTR4_WORD0_CHANGE
263         | FATTR4_WORD0_SIZE
264         | FATTR4_WORD0_FSID
265         | FATTR4_WORD0_FILEID
266         | FATTR4_WORD0_FS_LOCATIONS,
267         FATTR4_WORD1_OWNER
268         | FATTR4_WORD1_OWNER_GROUP
269         | FATTR4_WORD1_RAWDEV
270         | FATTR4_WORD1_SPACE_USED
271         | FATTR4_WORD1_TIME_ACCESS
272         | FATTR4_WORD1_TIME_METADATA
273         | FATTR4_WORD1_TIME_MODIFY
274         | FATTR4_WORD1_MOUNTED_ON_FILEID,
275 };
276
277 static void nfs4_bitmap_copy_adjust(__u32 *dst, const __u32 *src,
278                 struct inode *inode)
279 {
280         unsigned long cache_validity;
281
282         memcpy(dst, src, NFS4_BITMASK_SZ*sizeof(*dst));
283         if (!inode || !nfs4_have_delegation(inode, FMODE_READ))
284                 return;
285
286         cache_validity = READ_ONCE(NFS_I(inode)->cache_validity);
287         if (!(cache_validity & NFS_INO_REVAL_FORCED))
288                 cache_validity &= ~(NFS_INO_INVALID_CHANGE
289                                 | NFS_INO_INVALID_SIZE);
290
291         if (!(cache_validity & NFS_INO_INVALID_SIZE))
292                 dst[0] &= ~FATTR4_WORD0_SIZE;
293
294         if (!(cache_validity & NFS_INO_INVALID_CHANGE))
295                 dst[0] &= ~FATTR4_WORD0_CHANGE;
296 }
297
298 static void nfs4_bitmap_copy_adjust_setattr(__u32 *dst,
299                 const __u32 *src, struct inode *inode)
300 {
301         nfs4_bitmap_copy_adjust(dst, src, inode);
302 }
303
304 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
305                 struct nfs4_readdir_arg *readdir)
306 {
307         unsigned int attrs = FATTR4_WORD0_FILEID | FATTR4_WORD0_TYPE;
308         __be32 *start, *p;
309
310         if (cookie > 2) {
311                 readdir->cookie = cookie;
312                 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
313                 return;
314         }
315
316         readdir->cookie = 0;
317         memset(&readdir->verifier, 0, sizeof(readdir->verifier));
318         if (cookie == 2)
319                 return;
320         
321         /*
322          * NFSv4 servers do not return entries for '.' and '..'
323          * Therefore, we fake these entries here.  We let '.'
324          * have cookie 0 and '..' have cookie 1.  Note that
325          * when talking to the server, we always send cookie 0
326          * instead of 1 or 2.
327          */
328         start = p = kmap_atomic(*readdir->pages);
329         
330         if (cookie == 0) {
331                 *p++ = xdr_one;                                  /* next */
332                 *p++ = xdr_zero;                   /* cookie, first word */
333                 *p++ = xdr_one;                   /* cookie, second word */
334                 *p++ = xdr_one;                             /* entry len */
335                 memcpy(p, ".\0\0\0", 4);                        /* entry */
336                 p++;
337                 *p++ = xdr_one;                         /* bitmap length */
338                 *p++ = htonl(attrs);                           /* bitmap */
339                 *p++ = htonl(12);             /* attribute buffer length */
340                 *p++ = htonl(NF4DIR);
341                 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
342         }
343         
344         *p++ = xdr_one;                                  /* next */
345         *p++ = xdr_zero;                   /* cookie, first word */
346         *p++ = xdr_two;                   /* cookie, second word */
347         *p++ = xdr_two;                             /* entry len */
348         memcpy(p, "..\0\0", 4);                         /* entry */
349         p++;
350         *p++ = xdr_one;                         /* bitmap length */
351         *p++ = htonl(attrs);                           /* bitmap */
352         *p++ = htonl(12);             /* attribute buffer length */
353         *p++ = htonl(NF4DIR);
354         p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
355
356         readdir->pgbase = (char *)p - (char *)start;
357         readdir->count -= readdir->pgbase;
358         kunmap_atomic(start);
359 }
360
361 static void nfs4_test_and_free_stateid(struct nfs_server *server,
362                 nfs4_stateid *stateid,
363                 const struct cred *cred)
364 {
365         const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
366
367         ops->test_and_free_expired(server, stateid, cred);
368 }
369
370 static void __nfs4_free_revoked_stateid(struct nfs_server *server,
371                 nfs4_stateid *stateid,
372                 const struct cred *cred)
373 {
374         stateid->type = NFS4_REVOKED_STATEID_TYPE;
375         nfs4_test_and_free_stateid(server, stateid, cred);
376 }
377
378 static void nfs4_free_revoked_stateid(struct nfs_server *server,
379                 const nfs4_stateid *stateid,
380                 const struct cred *cred)
381 {
382         nfs4_stateid tmp;
383
384         nfs4_stateid_copy(&tmp, stateid);
385         __nfs4_free_revoked_stateid(server, &tmp, cred);
386 }
387
388 static long nfs4_update_delay(long *timeout)
389 {
390         long ret;
391         if (!timeout)
392                 return NFS4_POLL_RETRY_MAX;
393         if (*timeout <= 0)
394                 *timeout = NFS4_POLL_RETRY_MIN;
395         if (*timeout > NFS4_POLL_RETRY_MAX)
396                 *timeout = NFS4_POLL_RETRY_MAX;
397         ret = *timeout;
398         *timeout <<= 1;
399         return ret;
400 }
401
402 static int nfs4_delay_killable(long *timeout)
403 {
404         might_sleep();
405
406         freezable_schedule_timeout_killable_unsafe(
407                 nfs4_update_delay(timeout));
408         if (!__fatal_signal_pending(current))
409                 return 0;
410         return -EINTR;
411 }
412
413 static int nfs4_delay_interruptible(long *timeout)
414 {
415         might_sleep();
416
417         freezable_schedule_timeout_interruptible(nfs4_update_delay(timeout));
418         if (!signal_pending(current))
419                 return 0;
420         return __fatal_signal_pending(current) ? -EINTR :-ERESTARTSYS;
421 }
422
423 static int nfs4_delay(long *timeout, bool interruptible)
424 {
425         if (interruptible)
426                 return nfs4_delay_interruptible(timeout);
427         return nfs4_delay_killable(timeout);
428 }
429
430 static const nfs4_stateid *
431 nfs4_recoverable_stateid(const nfs4_stateid *stateid)
432 {
433         if (!stateid)
434                 return NULL;
435         switch (stateid->type) {
436         case NFS4_OPEN_STATEID_TYPE:
437         case NFS4_LOCK_STATEID_TYPE:
438         case NFS4_DELEGATION_STATEID_TYPE:
439                 return stateid;
440         default:
441                 break;
442         }
443         return NULL;
444 }
445
446 /* This is the error handling routine for processes that are allowed
447  * to sleep.
448  */
449 static int nfs4_do_handle_exception(struct nfs_server *server,
450                 int errorcode, struct nfs4_exception *exception)
451 {
452         struct nfs_client *clp = server->nfs_client;
453         struct nfs4_state *state = exception->state;
454         const nfs4_stateid *stateid;
455         struct inode *inode = exception->inode;
456         int ret = errorcode;
457
458         exception->delay = 0;
459         exception->recovering = 0;
460         exception->retry = 0;
461
462         stateid = nfs4_recoverable_stateid(exception->stateid);
463         if (stateid == NULL && state != NULL)
464                 stateid = nfs4_recoverable_stateid(&state->stateid);
465
466         switch(errorcode) {
467                 case 0:
468                         return 0;
469                 case -NFS4ERR_BADHANDLE:
470                 case -ESTALE:
471                         if (inode != NULL && S_ISREG(inode->i_mode))
472                                 pnfs_destroy_layout(NFS_I(inode));
473                         break;
474                 case -NFS4ERR_DELEG_REVOKED:
475                 case -NFS4ERR_ADMIN_REVOKED:
476                 case -NFS4ERR_EXPIRED:
477                 case -NFS4ERR_BAD_STATEID:
478                 case -NFS4ERR_PARTNER_NO_AUTH:
479                         if (inode != NULL && stateid != NULL) {
480                                 nfs_inode_find_state_and_recover(inode,
481                                                 stateid);
482                                 goto wait_on_recovery;
483                         }
484                         /* Fall through */
485                 case -NFS4ERR_OPENMODE:
486                         if (inode) {
487                                 int err;
488
489                                 err = nfs_async_inode_return_delegation(inode,
490                                                 stateid);
491                                 if (err == 0)
492                                         goto wait_on_recovery;
493                                 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
494                                         exception->retry = 1;
495                                         break;
496                                 }
497                         }
498                         if (state == NULL)
499                                 break;
500                         ret = nfs4_schedule_stateid_recovery(server, state);
501                         if (ret < 0)
502                                 break;
503                         goto wait_on_recovery;
504                 case -NFS4ERR_STALE_STATEID:
505                 case -NFS4ERR_STALE_CLIENTID:
506                         nfs4_schedule_lease_recovery(clp);
507                         goto wait_on_recovery;
508                 case -NFS4ERR_MOVED:
509                         ret = nfs4_schedule_migration_recovery(server);
510                         if (ret < 0)
511                                 break;
512                         goto wait_on_recovery;
513                 case -NFS4ERR_LEASE_MOVED:
514                         nfs4_schedule_lease_moved_recovery(clp);
515                         goto wait_on_recovery;
516 #if defined(CONFIG_NFS_V4_1)
517                 case -NFS4ERR_BADSESSION:
518                 case -NFS4ERR_BADSLOT:
519                 case -NFS4ERR_BAD_HIGH_SLOT:
520                 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
521                 case -NFS4ERR_DEADSESSION:
522                 case -NFS4ERR_SEQ_FALSE_RETRY:
523                 case -NFS4ERR_SEQ_MISORDERED:
524                         /* Handled in nfs41_sequence_process() */
525                         goto wait_on_recovery;
526 #endif /* defined(CONFIG_NFS_V4_1) */
527                 case -NFS4ERR_FILE_OPEN:
528                         if (exception->timeout > HZ) {
529                                 /* We have retried a decent amount, time to
530                                  * fail
531                                  */
532                                 ret = -EBUSY;
533                                 break;
534                         }
535                         /* Fall through */
536                 case -NFS4ERR_DELAY:
537                         nfs_inc_server_stats(server, NFSIOS_DELAY);
538                         /* Fall through */
539                 case -NFS4ERR_GRACE:
540                 case -NFS4ERR_LAYOUTTRYLATER:
541                 case -NFS4ERR_RECALLCONFLICT:
542                         exception->delay = 1;
543                         return 0;
544
545                 case -NFS4ERR_RETRY_UNCACHED_REP:
546                 case -NFS4ERR_OLD_STATEID:
547                         exception->retry = 1;
548                         break;
549                 case -NFS4ERR_BADOWNER:
550                         /* The following works around a Linux server bug! */
551                 case -NFS4ERR_BADNAME:
552                         if (server->caps & NFS_CAP_UIDGID_NOMAP) {
553                                 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
554                                 exception->retry = 1;
555                                 printk(KERN_WARNING "NFS: v4 server %s "
556                                                 "does not accept raw "
557                                                 "uid/gids. "
558                                                 "Reenabling the idmapper.\n",
559                                                 server->nfs_client->cl_hostname);
560                         }
561         }
562         /* We failed to handle the error */
563         return nfs4_map_errors(ret);
564 wait_on_recovery:
565         exception->recovering = 1;
566         return 0;
567 }
568
569 /* This is the error handling routine for processes that are allowed
570  * to sleep.
571  */
572 int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
573 {
574         struct nfs_client *clp = server->nfs_client;
575         int ret;
576
577         ret = nfs4_do_handle_exception(server, errorcode, exception);
578         if (exception->delay) {
579                 ret = nfs4_delay(&exception->timeout,
580                                 exception->interruptible);
581                 goto out_retry;
582         }
583         if (exception->recovering) {
584                 ret = nfs4_wait_clnt_recover(clp);
585                 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
586                         return -EIO;
587                 goto out_retry;
588         }
589         return ret;
590 out_retry:
591         if (ret == 0)
592                 exception->retry = 1;
593         return ret;
594 }
595
596 static int
597 nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
598                 int errorcode, struct nfs4_exception *exception)
599 {
600         struct nfs_client *clp = server->nfs_client;
601         int ret;
602
603         ret = nfs4_do_handle_exception(server, errorcode, exception);
604         if (exception->delay) {
605                 rpc_delay(task, nfs4_update_delay(&exception->timeout));
606                 goto out_retry;
607         }
608         if (exception->recovering) {
609                 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
610                 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
611                         rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
612                 goto out_retry;
613         }
614         if (test_bit(NFS_MIG_FAILED, &server->mig_status))
615                 ret = -EIO;
616         return ret;
617 out_retry:
618         if (ret == 0) {
619                 exception->retry = 1;
620                 /*
621                  * For NFS4ERR_MOVED, the client transport will need to
622                  * be recomputed after migration recovery has completed.
623                  */
624                 if (errorcode == -NFS4ERR_MOVED)
625                         rpc_task_release_transport(task);
626         }
627         return ret;
628 }
629
630 int
631 nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
632                         struct nfs4_state *state, long *timeout)
633 {
634         struct nfs4_exception exception = {
635                 .state = state,
636         };
637
638         if (task->tk_status >= 0)
639                 return 0;
640         if (timeout)
641                 exception.timeout = *timeout;
642         task->tk_status = nfs4_async_handle_exception(task, server,
643                         task->tk_status,
644                         &exception);
645         if (exception.delay && timeout)
646                 *timeout = exception.timeout;
647         if (exception.retry)
648                 return -EAGAIN;
649         return 0;
650 }
651
652 /*
653  * Return 'true' if 'clp' is using an rpc_client that is integrity protected
654  * or 'false' otherwise.
655  */
656 static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
657 {
658         rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
659         return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P);
660 }
661
662 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
663 {
664         spin_lock(&clp->cl_lock);
665         if (time_before(clp->cl_last_renewal,timestamp))
666                 clp->cl_last_renewal = timestamp;
667         spin_unlock(&clp->cl_lock);
668 }
669
670 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
671 {
672         struct nfs_client *clp = server->nfs_client;
673
674         if (!nfs4_has_session(clp))
675                 do_renew_lease(clp, timestamp);
676 }
677
678 struct nfs4_call_sync_data {
679         const struct nfs_server *seq_server;
680         struct nfs4_sequence_args *seq_args;
681         struct nfs4_sequence_res *seq_res;
682 };
683
684 void nfs4_init_sequence(struct nfs4_sequence_args *args,
685                         struct nfs4_sequence_res *res, int cache_reply,
686                         int privileged)
687 {
688         args->sa_slot = NULL;
689         args->sa_cache_this = cache_reply;
690         args->sa_privileged = privileged;
691
692         res->sr_slot = NULL;
693 }
694
695 static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
696 {
697         struct nfs4_slot *slot = res->sr_slot;
698         struct nfs4_slot_table *tbl;
699
700         tbl = slot->table;
701         spin_lock(&tbl->slot_tbl_lock);
702         if (!nfs41_wake_and_assign_slot(tbl, slot))
703                 nfs4_free_slot(tbl, slot);
704         spin_unlock(&tbl->slot_tbl_lock);
705
706         res->sr_slot = NULL;
707 }
708
709 static int nfs40_sequence_done(struct rpc_task *task,
710                                struct nfs4_sequence_res *res)
711 {
712         if (res->sr_slot != NULL)
713                 nfs40_sequence_free_slot(res);
714         return 1;
715 }
716
717 #if defined(CONFIG_NFS_V4_1)
718
719 static void nfs41_release_slot(struct nfs4_slot *slot)
720 {
721         struct nfs4_session *session;
722         struct nfs4_slot_table *tbl;
723         bool send_new_highest_used_slotid = false;
724
725         if (!slot)
726                 return;
727         tbl = slot->table;
728         session = tbl->session;
729
730         /* Bump the slot sequence number */
731         if (slot->seq_done)
732                 slot->seq_nr++;
733         slot->seq_done = 0;
734
735         spin_lock(&tbl->slot_tbl_lock);
736         /* Be nice to the server: try to ensure that the last transmitted
737          * value for highest_user_slotid <= target_highest_slotid
738          */
739         if (tbl->highest_used_slotid > tbl->target_highest_slotid)
740                 send_new_highest_used_slotid = true;
741
742         if (nfs41_wake_and_assign_slot(tbl, slot)) {
743                 send_new_highest_used_slotid = false;
744                 goto out_unlock;
745         }
746         nfs4_free_slot(tbl, slot);
747
748         if (tbl->highest_used_slotid != NFS4_NO_SLOT)
749                 send_new_highest_used_slotid = false;
750 out_unlock:
751         spin_unlock(&tbl->slot_tbl_lock);
752         if (send_new_highest_used_slotid)
753                 nfs41_notify_server(session->clp);
754         if (waitqueue_active(&tbl->slot_waitq))
755                 wake_up_all(&tbl->slot_waitq);
756 }
757
758 static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
759 {
760         nfs41_release_slot(res->sr_slot);
761         res->sr_slot = NULL;
762 }
763
764 static void nfs4_slot_sequence_record_sent(struct nfs4_slot *slot,
765                 u32 seqnr)
766 {
767         if ((s32)(seqnr - slot->seq_nr_highest_sent) > 0)
768                 slot->seq_nr_highest_sent = seqnr;
769 }
770 static void nfs4_slot_sequence_acked(struct nfs4_slot *slot,
771                 u32 seqnr)
772 {
773         slot->seq_nr_highest_sent = seqnr;
774         slot->seq_nr_last_acked = seqnr;
775 }
776
777 static int nfs41_sequence_process(struct rpc_task *task,
778                 struct nfs4_sequence_res *res)
779 {
780         struct nfs4_session *session;
781         struct nfs4_slot *slot = res->sr_slot;
782         struct nfs_client *clp;
783         int status;
784         int ret = 1;
785
786         if (slot == NULL)
787                 goto out_noaction;
788         /* don't increment the sequence number if the task wasn't sent */
789         if (!RPC_WAS_SENT(task) || slot->seq_done)
790                 goto out;
791
792         session = slot->table->session;
793
794         trace_nfs4_sequence_done(session, res);
795
796         status = res->sr_status;
797         if (task->tk_status == -NFS4ERR_DEADSESSION)
798                 status = -NFS4ERR_DEADSESSION;
799
800         /* Check the SEQUENCE operation status */
801         switch (status) {
802         case 0:
803                 /* Mark this sequence number as having been acked */
804                 nfs4_slot_sequence_acked(slot, slot->seq_nr);
805                 /* Update the slot's sequence and clientid lease timer */
806                 slot->seq_done = 1;
807                 clp = session->clp;
808                 do_renew_lease(clp, res->sr_timestamp);
809                 /* Check sequence flags */
810                 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
811                                 !!slot->privileged);
812                 nfs41_update_target_slotid(slot->table, slot, res);
813                 break;
814         case 1:
815                 /*
816                  * sr_status remains 1 if an RPC level error occurred.
817                  * The server may or may not have processed the sequence
818                  * operation..
819                  */
820                 nfs4_slot_sequence_record_sent(slot, slot->seq_nr);
821                 slot->seq_done = 1;
822                 goto out;
823         case -NFS4ERR_DELAY:
824                 /* The server detected a resend of the RPC call and
825                  * returned NFS4ERR_DELAY as per Section 2.10.6.2
826                  * of RFC5661.
827                  */
828                 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
829                         __func__,
830                         slot->slot_nr,
831                         slot->seq_nr);
832                 nfs4_slot_sequence_acked(slot, slot->seq_nr);
833                 goto out_retry;
834         case -NFS4ERR_RETRY_UNCACHED_REP:
835         case -NFS4ERR_SEQ_FALSE_RETRY:
836                 /*
837                  * The server thinks we tried to replay a request.
838                  * Retry the call after bumping the sequence ID.
839                  */
840                 nfs4_slot_sequence_acked(slot, slot->seq_nr);
841                 goto retry_new_seq;
842         case -NFS4ERR_BADSLOT:
843                 /*
844                  * The slot id we used was probably retired. Try again
845                  * using a different slot id.
846                  */
847                 if (slot->slot_nr < slot->table->target_highest_slotid)
848                         goto session_recover;
849                 goto retry_nowait;
850         case -NFS4ERR_SEQ_MISORDERED:
851                 nfs4_slot_sequence_record_sent(slot, slot->seq_nr);
852                 /*
853                  * Were one or more calls using this slot interrupted?
854                  * If the server never received the request, then our
855                  * transmitted slot sequence number may be too high.
856                  */
857                 if ((s32)(slot->seq_nr - slot->seq_nr_last_acked) > 1) {
858                         slot->seq_nr--;
859                         goto retry_nowait;
860                 }
861                 /*
862                  * RFC5661:
863                  * A retry might be sent while the original request is
864                  * still in progress on the replier. The replier SHOULD
865                  * deal with the issue by returning NFS4ERR_DELAY as the
866                  * reply to SEQUENCE or CB_SEQUENCE operation, but
867                  * implementations MAY return NFS4ERR_SEQ_MISORDERED.
868                  *
869                  * Restart the search after a delay.
870                  */
871                 slot->seq_nr = slot->seq_nr_highest_sent;
872                 goto out_retry;
873         case -NFS4ERR_BADSESSION:
874         case -NFS4ERR_DEADSESSION:
875         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
876                 goto session_recover;
877         default:
878                 /* Just update the slot sequence no. */
879                 slot->seq_done = 1;
880         }
881 out:
882         /* The session may be reset by one of the error handlers. */
883         dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
884 out_noaction:
885         return ret;
886 session_recover:
887         nfs4_schedule_session_recovery(session, status);
888         dprintk("%s ERROR: %d Reset session\n", __func__, status);
889         nfs41_sequence_free_slot(res);
890         goto out;
891 retry_new_seq:
892         ++slot->seq_nr;
893 retry_nowait:
894         if (rpc_restart_call_prepare(task)) {
895                 nfs41_sequence_free_slot(res);
896                 task->tk_status = 0;
897                 ret = 0;
898         }
899         goto out;
900 out_retry:
901         if (!rpc_restart_call(task))
902                 goto out;
903         rpc_delay(task, NFS4_POLL_RETRY_MAX);
904         return 0;
905 }
906
907 int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
908 {
909         if (!nfs41_sequence_process(task, res))
910                 return 0;
911         if (res->sr_slot != NULL)
912                 nfs41_sequence_free_slot(res);
913         return 1;
914
915 }
916 EXPORT_SYMBOL_GPL(nfs41_sequence_done);
917
918 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
919 {
920         if (res->sr_slot == NULL)
921                 return 1;
922         if (res->sr_slot->table->session != NULL)
923                 return nfs41_sequence_process(task, res);
924         return nfs40_sequence_done(task, res);
925 }
926
927 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
928 {
929         if (res->sr_slot != NULL) {
930                 if (res->sr_slot->table->session != NULL)
931                         nfs41_sequence_free_slot(res);
932                 else
933                         nfs40_sequence_free_slot(res);
934         }
935 }
936
937 int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
938 {
939         if (res->sr_slot == NULL)
940                 return 1;
941         if (!res->sr_slot->table->session)
942                 return nfs40_sequence_done(task, res);
943         return nfs41_sequence_done(task, res);
944 }
945 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
946
947 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
948 {
949         struct nfs4_call_sync_data *data = calldata;
950
951         dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
952
953         nfs4_setup_sequence(data->seq_server->nfs_client,
954                             data->seq_args, data->seq_res, task);
955 }
956
957 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
958 {
959         struct nfs4_call_sync_data *data = calldata;
960
961         nfs41_sequence_done(task, data->seq_res);
962 }
963
964 static const struct rpc_call_ops nfs41_call_sync_ops = {
965         .rpc_call_prepare = nfs41_call_sync_prepare,
966         .rpc_call_done = nfs41_call_sync_done,
967 };
968
969 #else   /* !CONFIG_NFS_V4_1 */
970
971 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
972 {
973         return nfs40_sequence_done(task, res);
974 }
975
976 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
977 {
978         if (res->sr_slot != NULL)
979                 nfs40_sequence_free_slot(res);
980 }
981
982 int nfs4_sequence_done(struct rpc_task *task,
983                        struct nfs4_sequence_res *res)
984 {
985         return nfs40_sequence_done(task, res);
986 }
987 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
988
989 #endif  /* !CONFIG_NFS_V4_1 */
990
991 static void nfs41_sequence_res_init(struct nfs4_sequence_res *res)
992 {
993         res->sr_timestamp = jiffies;
994         res->sr_status_flags = 0;
995         res->sr_status = 1;
996 }
997
998 static
999 void nfs4_sequence_attach_slot(struct nfs4_sequence_args *args,
1000                 struct nfs4_sequence_res *res,
1001                 struct nfs4_slot *slot)
1002 {
1003         if (!slot)
1004                 return;
1005         slot->privileged = args->sa_privileged ? 1 : 0;
1006         args->sa_slot = slot;
1007
1008         res->sr_slot = slot;
1009 }
1010
1011 int nfs4_setup_sequence(struct nfs_client *client,
1012                         struct nfs4_sequence_args *args,
1013                         struct nfs4_sequence_res *res,
1014                         struct rpc_task *task)
1015 {
1016         struct nfs4_session *session = nfs4_get_session(client);
1017         struct nfs4_slot_table *tbl  = client->cl_slot_tbl;
1018         struct nfs4_slot *slot;
1019
1020         /* slot already allocated? */
1021         if (res->sr_slot != NULL)
1022                 goto out_start;
1023
1024         if (session)
1025                 tbl = &session->fc_slot_table;
1026
1027         spin_lock(&tbl->slot_tbl_lock);
1028         /* The state manager will wait until the slot table is empty */
1029         if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
1030                 goto out_sleep;
1031
1032         slot = nfs4_alloc_slot(tbl);
1033         if (IS_ERR(slot)) {
1034                 if (slot == ERR_PTR(-ENOMEM))
1035                         goto out_sleep_timeout;
1036                 goto out_sleep;
1037         }
1038         spin_unlock(&tbl->slot_tbl_lock);
1039
1040         nfs4_sequence_attach_slot(args, res, slot);
1041
1042         trace_nfs4_setup_sequence(session, args);
1043 out_start:
1044         nfs41_sequence_res_init(res);
1045         rpc_call_start(task);
1046         return 0;
1047 out_sleep_timeout:
1048         /* Try again in 1/4 second */
1049         if (args->sa_privileged)
1050                 rpc_sleep_on_priority_timeout(&tbl->slot_tbl_waitq, task,
1051                                 jiffies + (HZ >> 2), RPC_PRIORITY_PRIVILEGED);
1052         else
1053                 rpc_sleep_on_timeout(&tbl->slot_tbl_waitq, task,
1054                                 NULL, jiffies + (HZ >> 2));
1055         spin_unlock(&tbl->slot_tbl_lock);
1056         return -EAGAIN;
1057 out_sleep:
1058         if (args->sa_privileged)
1059                 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
1060                                 RPC_PRIORITY_PRIVILEGED);
1061         else
1062                 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
1063         spin_unlock(&tbl->slot_tbl_lock);
1064         return -EAGAIN;
1065 }
1066 EXPORT_SYMBOL_GPL(nfs4_setup_sequence);
1067
1068 static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
1069 {
1070         struct nfs4_call_sync_data *data = calldata;
1071         nfs4_setup_sequence(data->seq_server->nfs_client,
1072                                 data->seq_args, data->seq_res, task);
1073 }
1074
1075 static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
1076 {
1077         struct nfs4_call_sync_data *data = calldata;
1078         nfs4_sequence_done(task, data->seq_res);
1079 }
1080
1081 static const struct rpc_call_ops nfs40_call_sync_ops = {
1082         .rpc_call_prepare = nfs40_call_sync_prepare,
1083         .rpc_call_done = nfs40_call_sync_done,
1084 };
1085
1086 static int nfs4_call_sync_custom(struct rpc_task_setup *task_setup)
1087 {
1088         int ret;
1089         struct rpc_task *task;
1090
1091         task = rpc_run_task(task_setup);
1092         if (IS_ERR(task))
1093                 return PTR_ERR(task);
1094
1095         ret = task->tk_status;
1096         rpc_put_task(task);
1097         return ret;
1098 }
1099
1100 static int nfs4_do_call_sync(struct rpc_clnt *clnt,
1101                              struct nfs_server *server,
1102                              struct rpc_message *msg,
1103                              struct nfs4_sequence_args *args,
1104                              struct nfs4_sequence_res *res,
1105                              unsigned short task_flags)
1106 {
1107         struct nfs_client *clp = server->nfs_client;
1108         struct nfs4_call_sync_data data = {
1109                 .seq_server = server,
1110                 .seq_args = args,
1111                 .seq_res = res,
1112         };
1113         struct rpc_task_setup task_setup = {
1114                 .rpc_client = clnt,
1115                 .rpc_message = msg,
1116                 .callback_ops = clp->cl_mvops->call_sync_ops,
1117                 .callback_data = &data,
1118                 .flags = task_flags,
1119         };
1120
1121         return nfs4_call_sync_custom(&task_setup);
1122 }
1123
1124 static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
1125                                    struct nfs_server *server,
1126                                    struct rpc_message *msg,
1127                                    struct nfs4_sequence_args *args,
1128                                    struct nfs4_sequence_res *res)
1129 {
1130         return nfs4_do_call_sync(clnt, server, msg, args, res, 0);
1131 }
1132
1133
1134 int nfs4_call_sync(struct rpc_clnt *clnt,
1135                    struct nfs_server *server,
1136                    struct rpc_message *msg,
1137                    struct nfs4_sequence_args *args,
1138                    struct nfs4_sequence_res *res,
1139                    int cache_reply)
1140 {
1141         nfs4_init_sequence(args, res, cache_reply, 0);
1142         return nfs4_call_sync_sequence(clnt, server, msg, args, res);
1143 }
1144
1145 static void
1146 nfs4_inc_nlink_locked(struct inode *inode)
1147 {
1148         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_OTHER;
1149         inc_nlink(inode);
1150 }
1151
1152 static void
1153 nfs4_dec_nlink_locked(struct inode *inode)
1154 {
1155         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_OTHER;
1156         drop_nlink(inode);
1157 }
1158
1159 static void
1160 update_changeattr_locked(struct inode *dir, struct nfs4_change_info *cinfo,
1161                 unsigned long timestamp, unsigned long cache_validity)
1162 {
1163         struct nfs_inode *nfsi = NFS_I(dir);
1164
1165         nfsi->cache_validity |= NFS_INO_INVALID_CTIME
1166                 | NFS_INO_INVALID_MTIME
1167                 | NFS_INO_INVALID_DATA
1168                 | cache_validity;
1169         if (cinfo->atomic && cinfo->before == inode_peek_iversion_raw(dir)) {
1170                 nfsi->cache_validity &= ~NFS_INO_REVAL_PAGECACHE;
1171                 nfsi->attrtimeo_timestamp = jiffies;
1172         } else {
1173                 nfs_force_lookup_revalidate(dir);
1174                 if (cinfo->before != inode_peek_iversion_raw(dir))
1175                         nfsi->cache_validity |= NFS_INO_INVALID_ACCESS |
1176                                 NFS_INO_INVALID_ACL;
1177         }
1178         inode_set_iversion_raw(dir, cinfo->after);
1179         nfsi->read_cache_jiffies = timestamp;
1180         nfsi->attr_gencount = nfs_inc_attr_generation_counter();
1181         nfsi->cache_validity &= ~NFS_INO_INVALID_CHANGE;
1182         nfs_fscache_invalidate(dir);
1183 }
1184
1185 static void
1186 update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo,
1187                 unsigned long timestamp, unsigned long cache_validity)
1188 {
1189         spin_lock(&dir->i_lock);
1190         update_changeattr_locked(dir, cinfo, timestamp, cache_validity);
1191         spin_unlock(&dir->i_lock);
1192 }
1193
1194 struct nfs4_open_createattrs {
1195         struct nfs4_label *label;
1196         struct iattr *sattr;
1197         const __u32 verf[2];
1198 };
1199
1200 static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1201                 int err, struct nfs4_exception *exception)
1202 {
1203         if (err != -EINVAL)
1204                 return false;
1205         if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1206                 return false;
1207         server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1208         exception->retry = 1;
1209         return true;
1210 }
1211
1212 static fmode_t _nfs4_ctx_to_accessmode(const struct nfs_open_context *ctx)
1213 {
1214          return ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
1215 }
1216
1217 static fmode_t _nfs4_ctx_to_openmode(const struct nfs_open_context *ctx)
1218 {
1219         fmode_t ret = ctx->mode & (FMODE_READ|FMODE_WRITE);
1220
1221         return (ctx->mode & FMODE_EXEC) ? FMODE_READ | ret : ret;
1222 }
1223
1224 static u32
1225 nfs4_map_atomic_open_share(struct nfs_server *server,
1226                 fmode_t fmode, int openflags)
1227 {
1228         u32 res = 0;
1229
1230         switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1231         case FMODE_READ:
1232                 res = NFS4_SHARE_ACCESS_READ;
1233                 break;
1234         case FMODE_WRITE:
1235                 res = NFS4_SHARE_ACCESS_WRITE;
1236                 break;
1237         case FMODE_READ|FMODE_WRITE:
1238                 res = NFS4_SHARE_ACCESS_BOTH;
1239         }
1240         if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1241                 goto out;
1242         /* Want no delegation if we're using O_DIRECT */
1243         if (openflags & O_DIRECT)
1244                 res |= NFS4_SHARE_WANT_NO_DELEG;
1245 out:
1246         return res;
1247 }
1248
1249 static enum open_claim_type4
1250 nfs4_map_atomic_open_claim(struct nfs_server *server,
1251                 enum open_claim_type4 claim)
1252 {
1253         if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1254                 return claim;
1255         switch (claim) {
1256         default:
1257                 return claim;
1258         case NFS4_OPEN_CLAIM_FH:
1259                 return NFS4_OPEN_CLAIM_NULL;
1260         case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1261                 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1262         case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1263                 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1264         }
1265 }
1266
1267 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
1268 {
1269         p->o_res.f_attr = &p->f_attr;
1270         p->o_res.f_label = p->f_label;
1271         p->o_res.seqid = p->o_arg.seqid;
1272         p->c_res.seqid = p->c_arg.seqid;
1273         p->o_res.server = p->o_arg.server;
1274         p->o_res.access_request = p->o_arg.access;
1275         nfs_fattr_init(&p->f_attr);
1276         nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
1277 }
1278
1279 static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
1280                 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
1281                 const struct nfs4_open_createattrs *c,
1282                 enum open_claim_type4 claim,
1283                 gfp_t gfp_mask)
1284 {
1285         struct dentry *parent = dget_parent(dentry);
1286         struct inode *dir = d_inode(parent);
1287         struct nfs_server *server = NFS_SERVER(dir);
1288         struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
1289         struct nfs4_label *label = (c != NULL) ? c->label : NULL;
1290         struct nfs4_opendata *p;
1291
1292         p = kzalloc(sizeof(*p), gfp_mask);
1293         if (p == NULL)
1294                 goto err;
1295
1296         p->f_label = nfs4_label_alloc(server, gfp_mask);
1297         if (IS_ERR(p->f_label))
1298                 goto err_free_p;
1299
1300         p->a_label = nfs4_label_alloc(server, gfp_mask);
1301         if (IS_ERR(p->a_label))
1302                 goto err_free_f;
1303
1304         alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1305         p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
1306         if (IS_ERR(p->o_arg.seqid))
1307                 goto err_free_label;
1308         nfs_sb_active(dentry->d_sb);
1309         p->dentry = dget(dentry);
1310         p->dir = parent;
1311         p->owner = sp;
1312         atomic_inc(&sp->so_count);
1313         p->o_arg.open_flags = flags;
1314         p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
1315         p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
1316         p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1317                         fmode, flags);
1318         if (flags & O_CREAT) {
1319                 p->o_arg.umask = current_umask();
1320                 p->o_arg.label = nfs4_label_copy(p->a_label, label);
1321                 if (c->sattr != NULL && c->sattr->ia_valid != 0) {
1322                         p->o_arg.u.attrs = &p->attrs;
1323                         memcpy(&p->attrs, c->sattr, sizeof(p->attrs));
1324
1325                         memcpy(p->o_arg.u.verifier.data, c->verf,
1326                                         sizeof(p->o_arg.u.verifier.data));
1327                 }
1328         }
1329         /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1330          * will return permission denied for all bits until close */
1331         if (!(flags & O_EXCL)) {
1332                 /* ask server to check for all possible rights as results
1333                  * are cached */
1334                 switch (p->o_arg.claim) {
1335                 default:
1336                         break;
1337                 case NFS4_OPEN_CLAIM_NULL:
1338                 case NFS4_OPEN_CLAIM_FH:
1339                         p->o_arg.access = NFS4_ACCESS_READ |
1340                                 NFS4_ACCESS_MODIFY |
1341                                 NFS4_ACCESS_EXTEND |
1342                                 NFS4_ACCESS_EXECUTE;
1343                 }
1344         }
1345         p->o_arg.clientid = server->nfs_client->cl_clientid;
1346         p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1347         p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
1348         p->o_arg.name = &dentry->d_name;
1349         p->o_arg.server = server;
1350         p->o_arg.bitmask = nfs4_bitmask(server, label);
1351         p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
1352         switch (p->o_arg.claim) {
1353         case NFS4_OPEN_CLAIM_NULL:
1354         case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1355         case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1356                 p->o_arg.fh = NFS_FH(dir);
1357                 break;
1358         case NFS4_OPEN_CLAIM_PREVIOUS:
1359         case NFS4_OPEN_CLAIM_FH:
1360         case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1361         case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1362                 p->o_arg.fh = NFS_FH(d_inode(dentry));
1363         }
1364         p->c_arg.fh = &p->o_res.fh;
1365         p->c_arg.stateid = &p->o_res.stateid;
1366         p->c_arg.seqid = p->o_arg.seqid;
1367         nfs4_init_opendata_res(p);
1368         kref_init(&p->kref);
1369         return p;
1370
1371 err_free_label:
1372         nfs4_label_free(p->a_label);
1373 err_free_f:
1374         nfs4_label_free(p->f_label);
1375 err_free_p:
1376         kfree(p);
1377 err:
1378         dput(parent);
1379         return NULL;
1380 }
1381
1382 static void nfs4_opendata_free(struct kref *kref)
1383 {
1384         struct nfs4_opendata *p = container_of(kref,
1385                         struct nfs4_opendata, kref);
1386         struct super_block *sb = p->dentry->d_sb;
1387
1388         nfs4_lgopen_release(p->lgp);
1389         nfs_free_seqid(p->o_arg.seqid);
1390         nfs4_sequence_free_slot(&p->o_res.seq_res);
1391         if (p->state != NULL)
1392                 nfs4_put_open_state(p->state);
1393         nfs4_put_state_owner(p->owner);
1394
1395         nfs4_label_free(p->a_label);
1396         nfs4_label_free(p->f_label);
1397
1398         dput(p->dir);
1399         dput(p->dentry);
1400         nfs_sb_deactive(sb);
1401         nfs_fattr_free_names(&p->f_attr);
1402         kfree(p->f_attr.mdsthreshold);
1403         kfree(p);
1404 }
1405
1406 static void nfs4_opendata_put(struct nfs4_opendata *p)
1407 {
1408         if (p != NULL)
1409                 kref_put(&p->kref, nfs4_opendata_free);
1410 }
1411
1412 static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1413                 fmode_t fmode)
1414 {
1415         switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1416         case FMODE_READ|FMODE_WRITE:
1417                 return state->n_rdwr != 0;
1418         case FMODE_WRITE:
1419                 return state->n_wronly != 0;
1420         case FMODE_READ:
1421                 return state->n_rdonly != 0;
1422         }
1423         WARN_ON_ONCE(1);
1424         return false;
1425 }
1426
1427 static int can_open_cached(struct nfs4_state *state, fmode_t mode,
1428                 int open_mode, enum open_claim_type4 claim)
1429 {
1430         int ret = 0;
1431
1432         if (open_mode & (O_EXCL|O_TRUNC))
1433                 goto out;
1434         switch (claim) {
1435         case NFS4_OPEN_CLAIM_NULL:
1436         case NFS4_OPEN_CLAIM_FH:
1437                 goto out;
1438         default:
1439                 break;
1440         }
1441         switch (mode & (FMODE_READ|FMODE_WRITE)) {
1442                 case FMODE_READ:
1443                         ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1444                                 && state->n_rdonly != 0;
1445                         break;
1446                 case FMODE_WRITE:
1447                         ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1448                                 && state->n_wronly != 0;
1449                         break;
1450                 case FMODE_READ|FMODE_WRITE:
1451                         ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1452                                 && state->n_rdwr != 0;
1453         }
1454 out:
1455         return ret;
1456 }
1457
1458 static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1459                 enum open_claim_type4 claim)
1460 {
1461         if (delegation == NULL)
1462                 return 0;
1463         if ((delegation->type & fmode) != fmode)
1464                 return 0;
1465         switch (claim) {
1466         case NFS4_OPEN_CLAIM_NULL:
1467         case NFS4_OPEN_CLAIM_FH:
1468                 break;
1469         case NFS4_OPEN_CLAIM_PREVIOUS:
1470                 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1471                         break;
1472                 /* Fall through */
1473         default:
1474                 return 0;
1475         }
1476         nfs_mark_delegation_referenced(delegation);
1477         return 1;
1478 }
1479
1480 static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
1481 {
1482         switch (fmode) {
1483                 case FMODE_WRITE:
1484                         state->n_wronly++;
1485                         break;
1486                 case FMODE_READ:
1487                         state->n_rdonly++;
1488                         break;
1489                 case FMODE_READ|FMODE_WRITE:
1490                         state->n_rdwr++;
1491         }
1492         nfs4_state_set_mode_locked(state, state->state | fmode);
1493 }
1494
1495 #ifdef CONFIG_NFS_V4_1
1496 static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1497 {
1498         if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1499                 return true;
1500         if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1501                 return true;
1502         if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1503                 return true;
1504         return false;
1505 }
1506 #endif /* CONFIG_NFS_V4_1 */
1507
1508 static void nfs_state_log_update_open_stateid(struct nfs4_state *state)
1509 {
1510         if (test_and_clear_bit(NFS_STATE_CHANGE_WAIT, &state->flags))
1511                 wake_up_all(&state->waitq);
1512 }
1513
1514 static void nfs_state_log_out_of_order_open_stateid(struct nfs4_state *state,
1515                 const nfs4_stateid *stateid)
1516 {
1517         u32 state_seqid = be32_to_cpu(state->open_stateid.seqid);
1518         u32 stateid_seqid = be32_to_cpu(stateid->seqid);
1519
1520         if (stateid_seqid == state_seqid + 1U ||
1521             (stateid_seqid == 1U && state_seqid == 0xffffffffU))
1522                 nfs_state_log_update_open_stateid(state);
1523         else
1524                 set_bit(NFS_STATE_CHANGE_WAIT, &state->flags);
1525 }
1526
1527 static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
1528 {
1529         struct nfs_client *clp = state->owner->so_server->nfs_client;
1530         bool need_recover = false;
1531
1532         if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1533                 need_recover = true;
1534         if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1535                 need_recover = true;
1536         if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1537                 need_recover = true;
1538         if (need_recover)
1539                 nfs4_state_mark_reclaim_nograce(clp, state);
1540 }
1541
1542 /*
1543  * Check for whether or not the caller may update the open stateid
1544  * to the value passed in by stateid.
1545  *
1546  * Note: This function relies heavily on the server implementing
1547  * RFC7530 Section 9.1.4.2, and RFC5661 Section 8.2.2
1548  * correctly.
1549  * i.e. The stateid seqids have to be initialised to 1, and
1550  * are then incremented on every state transition.
1551  */
1552 static bool nfs_need_update_open_stateid(struct nfs4_state *state,
1553                 const nfs4_stateid *stateid)
1554 {
1555         if (test_bit(NFS_OPEN_STATE, &state->flags) == 0 ||
1556             !nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1557                 if (stateid->seqid == cpu_to_be32(1))
1558                         nfs_state_log_update_open_stateid(state);
1559                 else
1560                         set_bit(NFS_STATE_CHANGE_WAIT, &state->flags);
1561                 return true;
1562         }
1563
1564         if (nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
1565                 nfs_state_log_out_of_order_open_stateid(state, stateid);
1566                 return true;
1567         }
1568         return false;
1569 }
1570
1571 static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1572 {
1573         if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1574                 return;
1575         if (state->n_wronly)
1576                 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1577         if (state->n_rdonly)
1578                 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1579         if (state->n_rdwr)
1580                 set_bit(NFS_O_RDWR_STATE, &state->flags);
1581         set_bit(NFS_OPEN_STATE, &state->flags);
1582 }
1583
1584 static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1585                 nfs4_stateid *stateid, fmode_t fmode)
1586 {
1587         clear_bit(NFS_O_RDWR_STATE, &state->flags);
1588         switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1589         case FMODE_WRITE:
1590                 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1591                 break;
1592         case FMODE_READ:
1593                 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1594                 break;
1595         case 0:
1596                 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1597                 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1598                 clear_bit(NFS_OPEN_STATE, &state->flags);
1599         }
1600         if (stateid == NULL)
1601                 return;
1602         /* Handle OPEN+OPEN_DOWNGRADE races */
1603         if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1604             !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
1605                 nfs_resync_open_stateid_locked(state);
1606                 goto out;
1607         }
1608         if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1609                 nfs4_stateid_copy(&state->stateid, stateid);
1610         nfs4_stateid_copy(&state->open_stateid, stateid);
1611         trace_nfs4_open_stateid_update(state->inode, stateid, 0);
1612 out:
1613         nfs_state_log_update_open_stateid(state);
1614 }
1615
1616 static void nfs_clear_open_stateid(struct nfs4_state *state,
1617         nfs4_stateid *arg_stateid,
1618         nfs4_stateid *stateid, fmode_t fmode)
1619 {
1620         write_seqlock(&state->seqlock);
1621         /* Ignore, if the CLOSE argment doesn't match the current stateid */
1622         if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1623                 nfs_clear_open_stateid_locked(state, stateid, fmode);
1624         write_sequnlock(&state->seqlock);
1625         if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1626                 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
1627 }
1628
1629 static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1630                 const nfs4_stateid *stateid, nfs4_stateid *freeme)
1631         __must_hold(&state->owner->so_lock)
1632         __must_hold(&state->seqlock)
1633         __must_hold(RCU)
1634
1635 {
1636         DEFINE_WAIT(wait);
1637         int status = 0;
1638         for (;;) {
1639
1640                 if (!nfs_need_update_open_stateid(state, stateid))
1641                         return;
1642                 if (!test_bit(NFS_STATE_CHANGE_WAIT, &state->flags))
1643                         break;
1644                 if (status)
1645                         break;
1646                 /* Rely on seqids for serialisation with NFSv4.0 */
1647                 if (!nfs4_has_session(NFS_SERVER(state->inode)->nfs_client))
1648                         break;
1649
1650                 prepare_to_wait(&state->waitq, &wait, TASK_KILLABLE);
1651                 /*
1652                  * Ensure we process the state changes in the same order
1653                  * in which the server processed them by delaying the
1654                  * update of the stateid until we are in sequence.
1655                  */
1656                 write_sequnlock(&state->seqlock);
1657                 spin_unlock(&state->owner->so_lock);
1658                 rcu_read_unlock();
1659                 trace_nfs4_open_stateid_update_wait(state->inode, stateid, 0);
1660                 if (!signal_pending(current)) {
1661                         if (schedule_timeout(5*HZ) == 0)
1662                                 status = -EAGAIN;
1663                         else
1664                                 status = 0;
1665                 } else
1666                         status = -EINTR;
1667                 finish_wait(&state->waitq, &wait);
1668                 rcu_read_lock();
1669                 spin_lock(&state->owner->so_lock);
1670                 write_seqlock(&state->seqlock);
1671         }
1672
1673         if (test_bit(NFS_OPEN_STATE, &state->flags) &&
1674             !nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1675                 nfs4_stateid_copy(freeme, &state->open_stateid);
1676                 nfs_test_and_clear_all_open_stateid(state);
1677         }
1678
1679         if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1680                 nfs4_stateid_copy(&state->stateid, stateid);
1681         nfs4_stateid_copy(&state->open_stateid, stateid);
1682         trace_nfs4_open_stateid_update(state->inode, stateid, status);
1683         nfs_state_log_update_open_stateid(state);
1684 }
1685
1686 static void nfs_state_set_open_stateid(struct nfs4_state *state,
1687                 const nfs4_stateid *open_stateid,
1688                 fmode_t fmode,
1689                 nfs4_stateid *freeme)
1690 {
1691         /*
1692          * Protect the call to nfs4_state_set_mode_locked and
1693          * serialise the stateid update
1694          */
1695         write_seqlock(&state->seqlock);
1696         nfs_set_open_stateid_locked(state, open_stateid, freeme);
1697         switch (fmode) {
1698         case FMODE_READ:
1699                 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1700                 break;
1701         case FMODE_WRITE:
1702                 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1703                 break;
1704         case FMODE_READ|FMODE_WRITE:
1705                 set_bit(NFS_O_RDWR_STATE, &state->flags);
1706         }
1707         set_bit(NFS_OPEN_STATE, &state->flags);
1708         write_sequnlock(&state->seqlock);
1709 }
1710
1711 static void nfs_state_clear_open_state_flags(struct nfs4_state *state)
1712 {
1713         clear_bit(NFS_O_RDWR_STATE, &state->flags);
1714         clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1715         clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1716         clear_bit(NFS_OPEN_STATE, &state->flags);
1717 }
1718
1719 static void nfs_state_set_delegation(struct nfs4_state *state,
1720                 const nfs4_stateid *deleg_stateid,
1721                 fmode_t fmode)
1722 {
1723         /*
1724          * Protect the call to nfs4_state_set_mode_locked and
1725          * serialise the stateid update
1726          */
1727         write_seqlock(&state->seqlock);
1728         nfs4_stateid_copy(&state->stateid, deleg_stateid);
1729         set_bit(NFS_DELEGATED_STATE, &state->flags);
1730         write_sequnlock(&state->seqlock);
1731 }
1732
1733 static void nfs_state_clear_delegation(struct nfs4_state *state)
1734 {
1735         write_seqlock(&state->seqlock);
1736         nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1737         clear_bit(NFS_DELEGATED_STATE, &state->flags);
1738         write_sequnlock(&state->seqlock);
1739 }
1740
1741 int update_open_stateid(struct nfs4_state *state,
1742                 const nfs4_stateid *open_stateid,
1743                 const nfs4_stateid *delegation,
1744                 fmode_t fmode)
1745 {
1746         struct nfs_server *server = NFS_SERVER(state->inode);
1747         struct nfs_client *clp = server->nfs_client;
1748         struct nfs_inode *nfsi = NFS_I(state->inode);
1749         struct nfs_delegation *deleg_cur;
1750         nfs4_stateid freeme = { };
1751         int ret = 0;
1752
1753         fmode &= (FMODE_READ|FMODE_WRITE);
1754
1755         rcu_read_lock();
1756         spin_lock(&state->owner->so_lock);
1757         if (open_stateid != NULL) {
1758                 nfs_state_set_open_stateid(state, open_stateid, fmode, &freeme);
1759                 ret = 1;
1760         }
1761
1762         deleg_cur = nfs4_get_valid_delegation(state->inode);
1763         if (deleg_cur == NULL)
1764                 goto no_delegation;
1765
1766         spin_lock(&deleg_cur->lock);
1767         if (rcu_dereference(nfsi->delegation) != deleg_cur ||
1768            test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
1769             (deleg_cur->type & fmode) != fmode)
1770                 goto no_delegation_unlock;
1771
1772         if (delegation == NULL)
1773                 delegation = &deleg_cur->stateid;
1774         else if (!nfs4_stateid_match_other(&deleg_cur->stateid, delegation))
1775                 goto no_delegation_unlock;
1776
1777         nfs_mark_delegation_referenced(deleg_cur);
1778         nfs_state_set_delegation(state, &deleg_cur->stateid, fmode);
1779         ret = 1;
1780 no_delegation_unlock:
1781         spin_unlock(&deleg_cur->lock);
1782 no_delegation:
1783         if (ret)
1784                 update_open_stateflags(state, fmode);
1785         spin_unlock(&state->owner->so_lock);
1786         rcu_read_unlock();
1787
1788         if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1789                 nfs4_schedule_state_manager(clp);
1790         if (freeme.type != 0)
1791                 nfs4_test_and_free_stateid(server, &freeme,
1792                                 state->owner->so_cred);
1793
1794         return ret;
1795 }
1796
1797 static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1798                 const nfs4_stateid *stateid)
1799 {
1800         struct nfs4_state *state = lsp->ls_state;
1801         bool ret = false;
1802
1803         spin_lock(&state->state_lock);
1804         if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1805                 goto out_noupdate;
1806         if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1807                 goto out_noupdate;
1808         nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1809         ret = true;
1810 out_noupdate:
1811         spin_unlock(&state->state_lock);
1812         return ret;
1813 }
1814
1815 static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
1816 {
1817         struct nfs_delegation *delegation;
1818
1819         fmode &= FMODE_READ|FMODE_WRITE;
1820         rcu_read_lock();
1821         delegation = nfs4_get_valid_delegation(inode);
1822         if (delegation == NULL || (delegation->type & fmode) == fmode) {
1823                 rcu_read_unlock();
1824                 return;
1825         }
1826         rcu_read_unlock();
1827         nfs4_inode_return_delegation(inode);
1828 }
1829
1830 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
1831 {
1832         struct nfs4_state *state = opendata->state;
1833         struct nfs_delegation *delegation;
1834         int open_mode = opendata->o_arg.open_flags;
1835         fmode_t fmode = opendata->o_arg.fmode;
1836         enum open_claim_type4 claim = opendata->o_arg.claim;
1837         nfs4_stateid stateid;
1838         int ret = -EAGAIN;
1839
1840         for (;;) {
1841                 spin_lock(&state->owner->so_lock);
1842                 if (can_open_cached(state, fmode, open_mode, claim)) {
1843                         update_open_stateflags(state, fmode);
1844                         spin_unlock(&state->owner->so_lock);
1845                         goto out_return_state;
1846                 }
1847                 spin_unlock(&state->owner->so_lock);
1848                 rcu_read_lock();
1849                 delegation = nfs4_get_valid_delegation(state->inode);
1850                 if (!can_open_delegated(delegation, fmode, claim)) {
1851                         rcu_read_unlock();
1852                         break;
1853                 }
1854                 /* Save the delegation */
1855                 nfs4_stateid_copy(&stateid, &delegation->stateid);
1856                 rcu_read_unlock();
1857                 nfs_release_seqid(opendata->o_arg.seqid);
1858                 if (!opendata->is_recover) {
1859                         ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1860                         if (ret != 0)
1861                                 goto out;
1862                 }
1863                 ret = -EAGAIN;
1864
1865                 /* Try to update the stateid using the delegation */
1866                 if (update_open_stateid(state, NULL, &stateid, fmode))
1867                         goto out_return_state;
1868         }
1869 out:
1870         return ERR_PTR(ret);
1871 out_return_state:
1872         refcount_inc(&state->count);
1873         return state;
1874 }
1875
1876 static void
1877 nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1878 {
1879         struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1880         struct nfs_delegation *delegation;
1881         int delegation_flags = 0;
1882
1883         rcu_read_lock();
1884         delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1885         if (delegation)
1886                 delegation_flags = delegation->flags;
1887         rcu_read_unlock();
1888         switch (data->o_arg.claim) {
1889         default:
1890                 break;
1891         case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1892         case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1893                 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1894                                    "returning a delegation for "
1895                                    "OPEN(CLAIM_DELEGATE_CUR)\n",
1896                                    clp->cl_hostname);
1897                 return;
1898         }
1899         if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
1900                 nfs_inode_set_delegation(state->inode,
1901                                 data->owner->so_cred,
1902                                 data->o_res.delegation_type,
1903                                 &data->o_res.delegation,
1904                                 data->o_res.pagemod_limit);
1905         else
1906                 nfs_inode_reclaim_delegation(state->inode,
1907                                 data->owner->so_cred,
1908                                 data->o_res.delegation_type,
1909                                 &data->o_res.delegation,
1910                                 data->o_res.pagemod_limit);
1911
1912         if (data->o_res.do_recall)
1913                 nfs_async_inode_return_delegation(state->inode,
1914                                                   &data->o_res.delegation);
1915 }
1916
1917 /*
1918  * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1919  * and update the nfs4_state.
1920  */
1921 static struct nfs4_state *
1922 _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1923 {
1924         struct inode *inode = data->state->inode;
1925         struct nfs4_state *state = data->state;
1926         int ret;
1927
1928         if (!data->rpc_done) {
1929                 if (data->rpc_status)
1930                         return ERR_PTR(data->rpc_status);
1931                 /* cached opens have already been processed */
1932                 goto update;
1933         }
1934
1935         ret = nfs_refresh_inode(inode, &data->f_attr);
1936         if (ret)
1937                 return ERR_PTR(ret);
1938
1939         if (data->o_res.delegation_type != 0)
1940                 nfs4_opendata_check_deleg(data, state);
1941 update:
1942         if (!update_open_stateid(state, &data->o_res.stateid,
1943                                 NULL, data->o_arg.fmode))
1944                 return ERR_PTR(-EAGAIN);
1945         refcount_inc(&state->count);
1946
1947         return state;
1948 }
1949
1950 static struct inode *
1951 nfs4_opendata_get_inode(struct nfs4_opendata *data)
1952 {
1953         struct inode *inode;
1954
1955         switch (data->o_arg.claim) {
1956         case NFS4_OPEN_CLAIM_NULL:
1957         case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1958         case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1959                 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
1960                         return ERR_PTR(-EAGAIN);
1961                 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh,
1962                                 &data->f_attr, data->f_label);
1963                 break;
1964         default:
1965                 inode = d_inode(data->dentry);
1966                 ihold(inode);
1967                 nfs_refresh_inode(inode, &data->f_attr);
1968         }
1969         return inode;
1970 }
1971
1972 static struct nfs4_state *
1973 nfs4_opendata_find_nfs4_state(struct nfs4_opendata *data)
1974 {
1975         struct nfs4_state *state;
1976         struct inode *inode;
1977
1978         inode = nfs4_opendata_get_inode(data);
1979         if (IS_ERR(inode))
1980                 return ERR_CAST(inode);
1981         if (data->state != NULL && data->state->inode == inode) {
1982                 state = data->state;
1983                 refcount_inc(&state->count);
1984         } else
1985                 state = nfs4_get_open_state(inode, data->owner);
1986         iput(inode);
1987         if (state == NULL)
1988                 state = ERR_PTR(-ENOMEM);
1989         return state;
1990 }
1991
1992 static struct nfs4_state *
1993 _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1994 {
1995         struct nfs4_state *state;
1996
1997         if (!data->rpc_done) {
1998                 state = nfs4_try_open_cached(data);
1999                 trace_nfs4_cached_open(data->state);
2000                 goto out;
2001         }
2002
2003         state = nfs4_opendata_find_nfs4_state(data);
2004         if (IS_ERR(state))
2005                 goto out;
2006
2007         if (data->o_res.delegation_type != 0)
2008                 nfs4_opendata_check_deleg(data, state);
2009         if (!update_open_stateid(state, &data->o_res.stateid,
2010                                 NULL, data->o_arg.fmode)) {
2011                 nfs4_put_open_state(state);
2012                 state = ERR_PTR(-EAGAIN);
2013         }
2014 out:
2015         nfs_release_seqid(data->o_arg.seqid);
2016         return state;
2017 }
2018
2019 static struct nfs4_state *
2020 nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
2021 {
2022         struct nfs4_state *ret;
2023
2024         if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
2025                 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
2026         else
2027                 ret = _nfs4_opendata_to_nfs4_state(data);
2028         nfs4_sequence_free_slot(&data->o_res.seq_res);
2029         return ret;
2030 }
2031
2032 static struct nfs_open_context *
2033 nfs4_state_find_open_context_mode(struct nfs4_state *state, fmode_t mode)
2034 {
2035         struct nfs_inode *nfsi = NFS_I(state->inode);
2036         struct nfs_open_context *ctx;
2037
2038         rcu_read_lock();
2039         list_for_each_entry_rcu(ctx, &nfsi->open_files, list) {
2040                 if (ctx->state != state)
2041                         continue;
2042                 if ((ctx->mode & mode) != mode)
2043                         continue;
2044                 if (!get_nfs_open_context(ctx))
2045                         continue;
2046                 rcu_read_unlock();
2047                 return ctx;
2048         }
2049         rcu_read_unlock();
2050         return ERR_PTR(-ENOENT);
2051 }
2052
2053 static struct nfs_open_context *
2054 nfs4_state_find_open_context(struct nfs4_state *state)
2055 {
2056         struct nfs_open_context *ctx;
2057
2058         ctx = nfs4_state_find_open_context_mode(state, FMODE_READ|FMODE_WRITE);
2059         if (!IS_ERR(ctx))
2060                 return ctx;
2061         ctx = nfs4_state_find_open_context_mode(state, FMODE_WRITE);
2062         if (!IS_ERR(ctx))
2063                 return ctx;
2064         return nfs4_state_find_open_context_mode(state, FMODE_READ);
2065 }
2066
2067 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
2068                 struct nfs4_state *state, enum open_claim_type4 claim)
2069 {
2070         struct nfs4_opendata *opendata;
2071
2072         opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
2073                         NULL, claim, GFP_NOFS);
2074         if (opendata == NULL)
2075                 return ERR_PTR(-ENOMEM);
2076         opendata->state = state;
2077         refcount_inc(&state->count);
2078         return opendata;
2079 }
2080
2081 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
2082                 fmode_t fmode)
2083 {
2084         struct nfs4_state *newstate;
2085         int ret;
2086
2087         if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
2088                 return 0;
2089         opendata->o_arg.open_flags = 0;
2090         opendata->o_arg.fmode = fmode;
2091         opendata->o_arg.share_access = nfs4_map_atomic_open_share(
2092                         NFS_SB(opendata->dentry->d_sb),
2093                         fmode, 0);
2094         memset(&opendata->o_res, 0, sizeof(opendata->o_res));
2095         memset(&opendata->c_res, 0, sizeof(opendata->c_res));
2096         nfs4_init_opendata_res(opendata);
2097         ret = _nfs4_recover_proc_open(opendata);
2098         if (ret != 0)
2099                 return ret; 
2100         newstate = nfs4_opendata_to_nfs4_state(opendata);
2101         if (IS_ERR(newstate))
2102                 return PTR_ERR(newstate);
2103         if (newstate != opendata->state)
2104                 ret = -ESTALE;
2105         nfs4_close_state(newstate, fmode);
2106         return ret;
2107 }
2108
2109 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
2110 {
2111         int ret;
2112
2113         /* memory barrier prior to reading state->n_* */
2114         smp_rmb();
2115         ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
2116         if (ret != 0)
2117                 return ret;
2118         ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
2119         if (ret != 0)
2120                 return ret;
2121         ret = nfs4_open_recover_helper(opendata, FMODE_READ);
2122         if (ret != 0)
2123                 return ret;
2124         /*
2125          * We may have performed cached opens for all three recoveries.
2126          * Check if we need to update the current stateid.
2127          */
2128         if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
2129             !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
2130                 write_seqlock(&state->seqlock);
2131                 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
2132                         nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2133                 write_sequnlock(&state->seqlock);
2134         }
2135         return 0;
2136 }
2137
2138 /*
2139  * OPEN_RECLAIM:
2140  *      reclaim state on the server after a reboot.
2141  */
2142 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
2143 {
2144         struct nfs_delegation *delegation;
2145         struct nfs4_opendata *opendata;
2146         fmode_t delegation_type = 0;
2147         int status;
2148
2149         opendata = nfs4_open_recoverdata_alloc(ctx, state,
2150                         NFS4_OPEN_CLAIM_PREVIOUS);
2151         if (IS_ERR(opendata))
2152                 return PTR_ERR(opendata);
2153         rcu_read_lock();
2154         delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2155         if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
2156                 delegation_type = delegation->type;
2157         rcu_read_unlock();
2158         opendata->o_arg.u.delegation_type = delegation_type;
2159         status = nfs4_open_recover(opendata, state);
2160         nfs4_opendata_put(opendata);
2161         return status;
2162 }
2163
2164 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
2165 {
2166         struct nfs_server *server = NFS_SERVER(state->inode);
2167         struct nfs4_exception exception = { };
2168         int err;
2169         do {
2170                 err = _nfs4_do_open_reclaim(ctx, state);
2171                 trace_nfs4_open_reclaim(ctx, 0, err);
2172                 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2173                         continue;
2174                 if (err != -NFS4ERR_DELAY)
2175                         break;
2176                 nfs4_handle_exception(server, err, &exception);
2177         } while (exception.retry);
2178         return err;
2179 }
2180
2181 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
2182 {
2183         struct nfs_open_context *ctx;
2184         int ret;
2185
2186         ctx = nfs4_state_find_open_context(state);
2187         if (IS_ERR(ctx))
2188                 return -EAGAIN;
2189         clear_bit(NFS_DELEGATED_STATE, &state->flags);
2190         nfs_state_clear_open_state_flags(state);
2191         ret = nfs4_do_open_reclaim(ctx, state);
2192         put_nfs_open_context(ctx);
2193         return ret;
2194 }
2195
2196 static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, struct file_lock *fl, int err)
2197 {
2198         switch (err) {
2199                 default:
2200                         printk(KERN_ERR "NFS: %s: unhandled error "
2201                                         "%d.\n", __func__, err);
2202                 case 0:
2203                 case -ENOENT:
2204                 case -EAGAIN:
2205                 case -ESTALE:
2206                 case -ETIMEDOUT:
2207                         break;
2208                 case -NFS4ERR_BADSESSION:
2209                 case -NFS4ERR_BADSLOT:
2210                 case -NFS4ERR_BAD_HIGH_SLOT:
2211                 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
2212                 case -NFS4ERR_DEADSESSION:
2213                         return -EAGAIN;
2214                 case -NFS4ERR_STALE_CLIENTID:
2215                 case -NFS4ERR_STALE_STATEID:
2216                         /* Don't recall a delegation if it was lost */
2217                         nfs4_schedule_lease_recovery(server->nfs_client);
2218                         return -EAGAIN;
2219                 case -NFS4ERR_MOVED:
2220                         nfs4_schedule_migration_recovery(server);
2221                         return -EAGAIN;
2222                 case -NFS4ERR_LEASE_MOVED:
2223                         nfs4_schedule_lease_moved_recovery(server->nfs_client);
2224                         return -EAGAIN;
2225                 case -NFS4ERR_DELEG_REVOKED:
2226                 case -NFS4ERR_ADMIN_REVOKED:
2227                 case -NFS4ERR_EXPIRED:
2228                 case -NFS4ERR_BAD_STATEID:
2229                 case -NFS4ERR_OPENMODE:
2230                         nfs_inode_find_state_and_recover(state->inode,
2231                                         stateid);
2232                         nfs4_schedule_stateid_recovery(server, state);
2233                         return -EAGAIN;
2234                 case -NFS4ERR_DELAY:
2235                 case -NFS4ERR_GRACE:
2236                         ssleep(1);
2237                         return -EAGAIN;
2238                 case -ENOMEM:
2239                 case -NFS4ERR_DENIED:
2240                         if (fl) {
2241                                 struct nfs4_lock_state *lsp = fl->fl_u.nfs4_fl.owner;
2242                                 if (lsp)
2243                                         set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2244                         }
2245                         return 0;
2246         }
2247         return err;
2248 }
2249
2250 int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
2251                 struct nfs4_state *state, const nfs4_stateid *stateid)
2252 {
2253         struct nfs_server *server = NFS_SERVER(state->inode);
2254         struct nfs4_opendata *opendata;
2255         int err = 0;
2256
2257         opendata = nfs4_open_recoverdata_alloc(ctx, state,
2258                         NFS4_OPEN_CLAIM_DELEG_CUR_FH);
2259         if (IS_ERR(opendata))
2260                 return PTR_ERR(opendata);
2261         nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
2262         if (!test_bit(NFS_O_RDWR_STATE, &state->flags)) {
2263                 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
2264                 if (err)
2265                         goto out;
2266         }
2267         if (!test_bit(NFS_O_WRONLY_STATE, &state->flags)) {
2268                 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
2269                 if (err)
2270                         goto out;
2271         }
2272         if (!test_bit(NFS_O_RDONLY_STATE, &state->flags)) {
2273                 err = nfs4_open_recover_helper(opendata, FMODE_READ);
2274                 if (err)
2275                         goto out;
2276         }
2277         nfs_state_clear_delegation(state);
2278 out:
2279         nfs4_opendata_put(opendata);
2280         return nfs4_handle_delegation_recall_error(server, state, stateid, NULL, err);
2281 }
2282
2283 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
2284 {
2285         struct nfs4_opendata *data = calldata;
2286
2287         nfs4_setup_sequence(data->o_arg.server->nfs_client,
2288                            &data->c_arg.seq_args, &data->c_res.seq_res, task);
2289 }
2290
2291 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
2292 {
2293         struct nfs4_opendata *data = calldata;
2294
2295         nfs40_sequence_done(task, &data->c_res.seq_res);
2296
2297         data->rpc_status = task->tk_status;
2298         if (data->rpc_status == 0) {
2299                 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
2300                 nfs_confirm_seqid(&data->owner->so_seqid, 0);
2301                 renew_lease(data->o_res.server, data->timestamp);
2302                 data->rpc_done = true;
2303         }
2304 }
2305
2306 static void nfs4_open_confirm_release(void *calldata)
2307 {
2308         struct nfs4_opendata *data = calldata;
2309         struct nfs4_state *state = NULL;
2310
2311         /* If this request hasn't been cancelled, do nothing */
2312         if (!data->cancelled)
2313                 goto out_free;
2314         /* In case of error, no cleanup! */
2315         if (!data->rpc_done)
2316                 goto out_free;
2317         state = nfs4_opendata_to_nfs4_state(data);
2318         if (!IS_ERR(state))
2319                 nfs4_close_state(state, data->o_arg.fmode);
2320 out_free:
2321         nfs4_opendata_put(data);
2322 }
2323
2324 static const struct rpc_call_ops nfs4_open_confirm_ops = {
2325         .rpc_call_prepare = nfs4_open_confirm_prepare,
2326         .rpc_call_done = nfs4_open_confirm_done,
2327         .rpc_release = nfs4_open_confirm_release,
2328 };
2329
2330 /*
2331  * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
2332  */
2333 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
2334 {
2335         struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
2336         struct rpc_task *task;
2337         struct  rpc_message msg = {
2338                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2339                 .rpc_argp = &data->c_arg,
2340                 .rpc_resp = &data->c_res,
2341                 .rpc_cred = data->owner->so_cred,
2342         };
2343         struct rpc_task_setup task_setup_data = {
2344                 .rpc_client = server->client,
2345                 .rpc_message = &msg,
2346                 .callback_ops = &nfs4_open_confirm_ops,
2347                 .callback_data = data,
2348                 .workqueue = nfsiod_workqueue,
2349                 .flags = RPC_TASK_ASYNC,
2350         };
2351         int status;
2352
2353         nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1,
2354                                 data->is_recover);
2355         kref_get(&data->kref);
2356         data->rpc_done = false;
2357         data->rpc_status = 0;
2358         data->timestamp = jiffies;
2359         task = rpc_run_task(&task_setup_data);
2360         if (IS_ERR(task))
2361                 return PTR_ERR(task);
2362         status = rpc_wait_for_completion_task(task);
2363         if (status != 0) {
2364                 data->cancelled = true;
2365                 smp_wmb();
2366         } else
2367                 status = data->rpc_status;
2368         rpc_put_task(task);
2369         return status;
2370 }
2371
2372 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
2373 {
2374         struct nfs4_opendata *data = calldata;
2375         struct nfs4_state_owner *sp = data->owner;
2376         struct nfs_client *clp = sp->so_server->nfs_client;
2377         enum open_claim_type4 claim = data->o_arg.claim;
2378
2379         if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
2380                 goto out_wait;
2381         /*
2382          * Check if we still need to send an OPEN call, or if we can use
2383          * a delegation instead.
2384          */
2385         if (data->state != NULL) {
2386                 struct nfs_delegation *delegation;
2387
2388                 if (can_open_cached(data->state, data->o_arg.fmode,
2389                                         data->o_arg.open_flags, claim))
2390                         goto out_no_action;
2391                 rcu_read_lock();
2392                 delegation = nfs4_get_valid_delegation(data->state->inode);
2393                 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
2394                         goto unlock_no_action;
2395                 rcu_read_unlock();
2396         }
2397         /* Update client id. */
2398         data->o_arg.clientid = clp->cl_clientid;
2399         switch (claim) {
2400         default:
2401                 break;
2402         case NFS4_OPEN_CLAIM_PREVIOUS:
2403         case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2404         case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
2405                 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
2406                 /* Fall through */
2407         case NFS4_OPEN_CLAIM_FH:
2408                 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
2409         }
2410         data->timestamp = jiffies;
2411         if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
2412                                 &data->o_arg.seq_args,
2413                                 &data->o_res.seq_res,
2414                                 task) != 0)
2415                 nfs_release_seqid(data->o_arg.seqid);
2416
2417         /* Set the create mode (note dependency on the session type) */
2418         data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2419         if (data->o_arg.open_flags & O_EXCL) {
2420                 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2421                 if (nfs4_has_persistent_session(clp))
2422                         data->o_arg.createmode = NFS4_CREATE_GUARDED;
2423                 else if (clp->cl_mvops->minor_version > 0)
2424                         data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2425         }
2426         return;
2427 unlock_no_action:
2428         trace_nfs4_cached_open(data->state);
2429         rcu_read_unlock();
2430 out_no_action:
2431         task->tk_action = NULL;
2432 out_wait:
2433         nfs4_sequence_done(task, &data->o_res.seq_res);
2434 }
2435
2436 static void nfs4_open_done(struct rpc_task *task, void *calldata)
2437 {
2438         struct nfs4_opendata *data = calldata;
2439
2440         data->rpc_status = task->tk_status;
2441
2442         if (!nfs4_sequence_process(task, &data->o_res.seq_res))
2443                 return;
2444
2445         if (task->tk_status == 0) {
2446                 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2447                         switch (data->o_res.f_attr->mode & S_IFMT) {
2448                         case S_IFREG:
2449                                 break;
2450                         case S_IFLNK:
2451                                 data->rpc_status = -ELOOP;
2452                                 break;
2453                         case S_IFDIR:
2454                                 data->rpc_status = -EISDIR;
2455                                 break;
2456                         default:
2457                                 data->rpc_status = -ENOTDIR;
2458                         }
2459                 }
2460                 renew_lease(data->o_res.server, data->timestamp);
2461                 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2462                         nfs_confirm_seqid(&data->owner->so_seqid, 0);
2463         }
2464         data->rpc_done = true;
2465 }
2466
2467 static void nfs4_open_release(void *calldata)
2468 {
2469         struct nfs4_opendata *data = calldata;
2470         struct nfs4_state *state = NULL;
2471
2472         /* If this request hasn't been cancelled, do nothing */
2473         if (!data->cancelled)
2474                 goto out_free;
2475         /* In case of error, no cleanup! */
2476         if (data->rpc_status != 0 || !data->rpc_done)
2477                 goto out_free;
2478         /* In case we need an open_confirm, no cleanup! */
2479         if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2480                 goto out_free;
2481         state = nfs4_opendata_to_nfs4_state(data);
2482         if (!IS_ERR(state))
2483                 nfs4_close_state(state, data->o_arg.fmode);
2484 out_free:
2485         nfs4_opendata_put(data);
2486 }
2487
2488 static const struct rpc_call_ops nfs4_open_ops = {
2489         .rpc_call_prepare = nfs4_open_prepare,
2490         .rpc_call_done = nfs4_open_done,
2491         .rpc_release = nfs4_open_release,
2492 };
2493
2494 static int nfs4_run_open_task(struct nfs4_opendata *data,
2495                               struct nfs_open_context *ctx)
2496 {
2497         struct inode *dir = d_inode(data->dir);
2498         struct nfs_server *server = NFS_SERVER(dir);
2499         struct nfs_openargs *o_arg = &data->o_arg;
2500         struct nfs_openres *o_res = &data->o_res;
2501         struct rpc_task *task;
2502         struct rpc_message msg = {
2503                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2504                 .rpc_argp = o_arg,
2505                 .rpc_resp = o_res,
2506                 .rpc_cred = data->owner->so_cred,
2507         };
2508         struct rpc_task_setup task_setup_data = {
2509                 .rpc_client = server->client,
2510                 .rpc_message = &msg,
2511                 .callback_ops = &nfs4_open_ops,
2512                 .callback_data = data,
2513                 .workqueue = nfsiod_workqueue,
2514                 .flags = RPC_TASK_ASYNC,
2515         };
2516         int status;
2517
2518         kref_get(&data->kref);
2519         data->rpc_done = false;
2520         data->rpc_status = 0;
2521         data->cancelled = false;
2522         data->is_recover = false;
2523         if (!ctx) {
2524                 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1, 1);
2525                 data->is_recover = true;
2526                 task_setup_data.flags |= RPC_TASK_TIMEOUT;
2527         } else {
2528                 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1, 0);
2529                 pnfs_lgopen_prepare(data, ctx);
2530         }
2531         task = rpc_run_task(&task_setup_data);
2532         if (IS_ERR(task))
2533                 return PTR_ERR(task);
2534         status = rpc_wait_for_completion_task(task);
2535         if (status != 0) {
2536                 data->cancelled = true;
2537                 smp_wmb();
2538         } else
2539                 status = data->rpc_status;
2540         rpc_put_task(task);
2541
2542         return status;
2543 }
2544
2545 static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2546 {
2547         struct inode *dir = d_inode(data->dir);
2548         struct nfs_openres *o_res = &data->o_res;
2549         int status;
2550
2551         status = nfs4_run_open_task(data, NULL);
2552         if (status != 0 || !data->rpc_done)
2553                 return status;
2554
2555         nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2556
2557         if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM)
2558                 status = _nfs4_proc_open_confirm(data);
2559
2560         return status;
2561 }
2562
2563 /*
2564  * Additional permission checks in order to distinguish between an
2565  * open for read, and an open for execute. This works around the
2566  * fact that NFSv4 OPEN treats read and execute permissions as being
2567  * the same.
2568  * Note that in the non-execute case, we want to turn off permission
2569  * checking if we just created a new file (POSIX open() semantics).
2570  */
2571 static int nfs4_opendata_access(const struct cred *cred,
2572                                 struct nfs4_opendata *opendata,
2573                                 struct nfs4_state *state, fmode_t fmode,
2574                                 int openflags)
2575 {
2576         struct nfs_access_entry cache;
2577         u32 mask, flags;
2578
2579         /* access call failed or for some reason the server doesn't
2580          * support any access modes -- defer access call until later */
2581         if (opendata->o_res.access_supported == 0)
2582                 return 0;
2583
2584         mask = 0;
2585         /*
2586          * Use openflags to check for exec, because fmode won't
2587          * always have FMODE_EXEC set when file open for exec.
2588          */
2589         if (openflags & __FMODE_EXEC) {
2590                 /* ONLY check for exec rights */
2591                 if (S_ISDIR(state->inode->i_mode))
2592                         mask = NFS4_ACCESS_LOOKUP;
2593                 else
2594                         mask = NFS4_ACCESS_EXECUTE;
2595         } else if ((fmode & FMODE_READ) && !opendata->file_created)
2596                 mask = NFS4_ACCESS_READ;
2597
2598         cache.cred = cred;
2599         nfs_access_set_mask(&cache, opendata->o_res.access_result);
2600         nfs_access_add_cache(state->inode, &cache);
2601
2602         flags = NFS4_ACCESS_READ | NFS4_ACCESS_EXECUTE | NFS4_ACCESS_LOOKUP;
2603         if ((mask & ~cache.mask & flags) == 0)
2604                 return 0;
2605
2606         return -EACCES;
2607 }
2608
2609 /*
2610  * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2611  */
2612 static int _nfs4_proc_open(struct nfs4_opendata *data,
2613                            struct nfs_open_context *ctx)
2614 {
2615         struct inode *dir = d_inode(data->dir);
2616         struct nfs_server *server = NFS_SERVER(dir);
2617         struct nfs_openargs *o_arg = &data->o_arg;
2618         struct nfs_openres *o_res = &data->o_res;
2619         int status;
2620
2621         status = nfs4_run_open_task(data, ctx);
2622         if (!data->rpc_done)
2623                 return status;
2624         if (status != 0) {
2625                 if (status == -NFS4ERR_BADNAME &&
2626                                 !(o_arg->open_flags & O_CREAT))
2627                         return -ENOENT;
2628                 return status;
2629         }
2630
2631         nfs_fattr_map_and_free_names(server, &data->f_attr);
2632
2633         if (o_arg->open_flags & O_CREAT) {
2634                 if (o_arg->open_flags & O_EXCL)
2635                         data->file_created = true;
2636                 else if (o_res->cinfo.before != o_res->cinfo.after)
2637                         data->file_created = true;
2638                 if (data->file_created ||
2639                     inode_peek_iversion_raw(dir) != o_res->cinfo.after)
2640                         update_changeattr(dir, &o_res->cinfo,
2641                                         o_res->f_attr->time_start, 0);
2642         }
2643         if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2644                 server->caps &= ~NFS_CAP_POSIX_LOCK;
2645         if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2646                 status = _nfs4_proc_open_confirm(data);
2647                 if (status != 0)
2648                         return status;
2649         }
2650         if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2651                 nfs4_sequence_free_slot(&o_res->seq_res);
2652                 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr,
2653                                 o_res->f_label, NULL);
2654         }
2655         return 0;
2656 }
2657
2658 /*
2659  * OPEN_EXPIRED:
2660  *      reclaim state on the server after a network partition.
2661  *      Assumes caller holds the appropriate lock
2662  */
2663 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2664 {
2665         struct nfs4_opendata *opendata;
2666         int ret;
2667
2668         opendata = nfs4_open_recoverdata_alloc(ctx, state,
2669                         NFS4_OPEN_CLAIM_FH);
2670         if (IS_ERR(opendata))
2671                 return PTR_ERR(opendata);
2672         ret = nfs4_open_recover(opendata, state);
2673         if (ret == -ESTALE)
2674                 d_drop(ctx->dentry);
2675         nfs4_opendata_put(opendata);
2676         return ret;
2677 }
2678
2679 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2680 {
2681         struct nfs_server *server = NFS_SERVER(state->inode);
2682         struct nfs4_exception exception = { };
2683         int err;
2684
2685         do {
2686                 err = _nfs4_open_expired(ctx, state);
2687                 trace_nfs4_open_expired(ctx, 0, err);
2688                 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2689                         continue;
2690                 switch (err) {
2691                 default:
2692                         goto out;
2693                 case -NFS4ERR_GRACE:
2694                 case -NFS4ERR_DELAY:
2695                         nfs4_handle_exception(server, err, &exception);
2696                         err = 0;
2697                 }
2698         } while (exception.retry);
2699 out:
2700         return err;
2701 }
2702
2703 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2704 {
2705         struct nfs_open_context *ctx;
2706         int ret;
2707
2708         ctx = nfs4_state_find_open_context(state);
2709         if (IS_ERR(ctx))
2710                 return -EAGAIN;
2711         ret = nfs4_do_open_expired(ctx, state);
2712         put_nfs_open_context(ctx);
2713         return ret;
2714 }
2715
2716 static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2717                 const nfs4_stateid *stateid)
2718 {
2719         nfs_remove_bad_delegation(state->inode, stateid);
2720         nfs_state_clear_delegation(state);
2721 }
2722
2723 static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2724 {
2725         if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
2726                 nfs_finish_clear_delegation_stateid(state, NULL);
2727 }
2728
2729 static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2730 {
2731         /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2732         nfs40_clear_delegation_stateid(state);
2733         nfs_state_clear_open_state_flags(state);
2734         return nfs4_open_expired(sp, state);
2735 }
2736
2737 static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2738                 nfs4_stateid *stateid,
2739                 const struct cred *cred)
2740 {
2741         return -NFS4ERR_BAD_STATEID;
2742 }
2743
2744 #if defined(CONFIG_NFS_V4_1)
2745 static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2746                 nfs4_stateid *stateid,
2747                 const struct cred *cred)
2748 {
2749         int status;
2750
2751         switch (stateid->type) {
2752         default:
2753                 break;
2754         case NFS4_INVALID_STATEID_TYPE:
2755         case NFS4_SPECIAL_STATEID_TYPE:
2756                 return -NFS4ERR_BAD_STATEID;
2757         case NFS4_REVOKED_STATEID_TYPE:
2758                 goto out_free;
2759         }
2760
2761         status = nfs41_test_stateid(server, stateid, cred);
2762         switch (status) {
2763         case -NFS4ERR_EXPIRED:
2764         case -NFS4ERR_ADMIN_REVOKED:
2765         case -NFS4ERR_DELEG_REVOKED:
2766                 break;
2767         default:
2768                 return status;
2769         }
2770 out_free:
2771         /* Ack the revoked state to the server */
2772         nfs41_free_stateid(server, stateid, cred, true);
2773         return -NFS4ERR_EXPIRED;
2774 }
2775
2776 static int nfs41_check_delegation_stateid(struct nfs4_state *state)
2777 {
2778         struct nfs_server *server = NFS_SERVER(state->inode);
2779         nfs4_stateid stateid;
2780         struct nfs_delegation *delegation;
2781         const struct cred *cred = NULL;
2782         int status, ret = NFS_OK;
2783
2784         /* Get the delegation credential for use by test/free_stateid */
2785         rcu_read_lock();
2786         delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2787         if (delegation == NULL) {
2788                 rcu_read_unlock();
2789                 nfs_state_clear_delegation(state);
2790                 return NFS_OK;
2791         }
2792
2793         nfs4_stateid_copy(&stateid, &delegation->stateid);
2794
2795         if (!test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED,
2796                                 &delegation->flags)) {
2797                 rcu_read_unlock();
2798                 return NFS_OK;
2799         }
2800
2801         if (delegation->cred)
2802                 cred = get_cred(delegation->cred);
2803         rcu_read_unlock();
2804         status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
2805         trace_nfs4_test_delegation_stateid(state, NULL, status);
2806         if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
2807                 nfs_finish_clear_delegation_stateid(state, &stateid);
2808         else
2809                 ret = status;
2810
2811         put_cred(cred);
2812         return ret;
2813 }
2814
2815 static void nfs41_delegation_recover_stateid(struct nfs4_state *state)
2816 {
2817         nfs4_stateid tmp;
2818
2819         if (test_bit(NFS_DELEGATED_STATE, &state->flags) &&
2820             nfs4_copy_delegation_stateid(state->inode, state->state,
2821                                 &tmp, NULL) &&
2822             nfs4_stateid_match_other(&state->stateid, &tmp))
2823                 nfs_state_set_delegation(state, &tmp, state->state);
2824         else
2825                 nfs_state_clear_delegation(state);
2826 }
2827
2828 /**
2829  * nfs41_check_expired_locks - possibly free a lock stateid
2830  *
2831  * @state: NFSv4 state for an inode
2832  *
2833  * Returns NFS_OK if recovery for this stateid is now finished.
2834  * Otherwise a negative NFS4ERR value is returned.
2835  */
2836 static int nfs41_check_expired_locks(struct nfs4_state *state)
2837 {
2838         int status, ret = NFS_OK;
2839         struct nfs4_lock_state *lsp, *prev = NULL;
2840         struct nfs_server *server = NFS_SERVER(state->inode);
2841
2842         if (!test_bit(LK_STATE_IN_USE, &state->flags))
2843                 goto out;
2844
2845         spin_lock(&state->state_lock);
2846         list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2847                 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2848                         const struct cred *cred = lsp->ls_state->owner->so_cred;
2849
2850                         refcount_inc(&lsp->ls_count);
2851                         spin_unlock(&state->state_lock);
2852
2853                         nfs4_put_lock_state(prev);
2854                         prev = lsp;
2855
2856                         status = nfs41_test_and_free_expired_stateid(server,
2857                                         &lsp->ls_stateid,
2858                                         cred);
2859                         trace_nfs4_test_lock_stateid(state, lsp, status);
2860                         if (status == -NFS4ERR_EXPIRED ||
2861                             status == -NFS4ERR_BAD_STATEID) {
2862                                 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
2863                                 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
2864                                 if (!recover_lost_locks)
2865                                         set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2866                         } else if (status != NFS_OK) {
2867                                 ret = status;
2868                                 nfs4_put_lock_state(prev);
2869                                 goto out;
2870                         }
2871                         spin_lock(&state->state_lock);
2872                 }
2873         }
2874         spin_unlock(&state->state_lock);
2875         nfs4_put_lock_state(prev);
2876 out:
2877         return ret;
2878 }
2879
2880 /**
2881  * nfs41_check_open_stateid - possibly free an open stateid
2882  *
2883  * @state: NFSv4 state for an inode
2884  *
2885  * Returns NFS_OK if recovery for this stateid is now finished.
2886  * Otherwise a negative NFS4ERR value is returned.
2887  */
2888 static int nfs41_check_open_stateid(struct nfs4_state *state)
2889 {
2890         struct nfs_server *server = NFS_SERVER(state->inode);
2891         nfs4_stateid *stateid = &state->open_stateid;
2892         const struct cred *cred = state->owner->so_cred;
2893         int status;
2894
2895         if (test_bit(NFS_OPEN_STATE, &state->flags) == 0)
2896                 return -NFS4ERR_BAD_STATEID;
2897         status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
2898         trace_nfs4_test_open_stateid(state, NULL, status);
2899         if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
2900                 nfs_state_clear_open_state_flags(state);
2901                 stateid->type = NFS4_INVALID_STATEID_TYPE;
2902                 return status;
2903         }
2904         if (nfs_open_stateid_recover_openmode(state))
2905                 return -NFS4ERR_OPENMODE;
2906         return NFS_OK;
2907 }
2908
2909 static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2910 {
2911         int status;
2912
2913         status = nfs41_check_delegation_stateid(state);
2914         if (status != NFS_OK)
2915                 return status;
2916         nfs41_delegation_recover_stateid(state);
2917
2918         status = nfs41_check_expired_locks(state);
2919         if (status != NFS_OK)
2920                 return status;
2921         status = nfs41_check_open_stateid(state);
2922         if (status != NFS_OK)
2923                 status = nfs4_open_expired(sp, state);
2924         return status;
2925 }
2926 #endif
2927
2928 /*
2929  * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2930  * fields corresponding to attributes that were used to store the verifier.
2931  * Make sure we clobber those fields in the later setattr call
2932  */
2933 static unsigned nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
2934                                 struct iattr *sattr, struct nfs4_label **label)
2935 {
2936         const __u32 *bitmask = opendata->o_arg.server->exclcreat_bitmask;
2937         __u32 attrset[3];
2938         unsigned ret;
2939         unsigned i;
2940
2941         for (i = 0; i < ARRAY_SIZE(attrset); i++) {
2942                 attrset[i] = opendata->o_res.attrset[i];
2943                 if (opendata->o_arg.createmode == NFS4_CREATE_EXCLUSIVE4_1)
2944                         attrset[i] &= ~bitmask[i];
2945         }
2946
2947         ret = (opendata->o_arg.createmode == NFS4_CREATE_EXCLUSIVE) ?
2948                 sattr->ia_valid : 0;
2949
2950         if ((attrset[1] & (FATTR4_WORD1_TIME_ACCESS|FATTR4_WORD1_TIME_ACCESS_SET))) {
2951                 if (sattr->ia_valid & ATTR_ATIME_SET)
2952                         ret |= ATTR_ATIME_SET;
2953                 else
2954                         ret |= ATTR_ATIME;
2955         }
2956
2957         if ((attrset[1] & (FATTR4_WORD1_TIME_MODIFY|FATTR4_WORD1_TIME_MODIFY_SET))) {
2958                 if (sattr->ia_valid & ATTR_MTIME_SET)
2959                         ret |= ATTR_MTIME_SET;
2960                 else
2961                         ret |= ATTR_MTIME;
2962         }
2963
2964         if (!(attrset[2] & FATTR4_WORD2_SECURITY_LABEL))
2965                 *label = NULL;
2966         return ret;
2967 }
2968
2969 static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2970                 int flags, struct nfs_open_context *ctx)
2971 {
2972         struct nfs4_state_owner *sp = opendata->owner;
2973         struct nfs_server *server = sp->so_server;
2974         struct dentry *dentry;
2975         struct nfs4_state *state;
2976         fmode_t acc_mode = _nfs4_ctx_to_accessmode(ctx);
2977         unsigned int seq;
2978         int ret;
2979
2980         seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2981
2982         ret = _nfs4_proc_open(opendata, ctx);
2983         if (ret != 0)
2984                 goto out;
2985
2986         state = _nfs4_opendata_to_nfs4_state(opendata);
2987         ret = PTR_ERR(state);
2988         if (IS_ERR(state))
2989                 goto out;
2990         ctx->state = state;
2991         if (server->caps & NFS_CAP_POSIX_LOCK)
2992                 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
2993         if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
2994                 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
2995
2996         dentry = opendata->dentry;
2997         if (d_really_is_negative(dentry)) {
2998                 struct dentry *alias;
2999                 d_drop(dentry);
3000                 alias = d_exact_alias(dentry, state->inode);
3001                 if (!alias)
3002                         alias = d_splice_alias(igrab(state->inode), dentry);
3003                 /* d_splice_alias() can't fail here - it's a non-directory */
3004                 if (alias) {
3005                         dput(ctx->dentry);
3006                         ctx->dentry = dentry = alias;
3007                 }
3008                 nfs_set_verifier(dentry,
3009                                 nfs_save_change_attribute(d_inode(opendata->dir)));
3010         }
3011
3012         /* Parse layoutget results before we check for access */
3013         pnfs_parse_lgopen(state->inode, opendata->lgp, ctx);
3014
3015         ret = nfs4_opendata_access(sp->so_cred, opendata, state,
3016                         acc_mode, flags);
3017         if (ret != 0)
3018                 goto out;
3019
3020         if (d_inode(dentry) == state->inode) {
3021                 nfs_inode_attach_open_context(ctx);
3022                 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
3023                         nfs4_schedule_stateid_recovery(server, state);
3024         }
3025
3026 out:
3027         if (!opendata->cancelled)
3028                 nfs4_sequence_free_slot(&opendata->o_res.seq_res);
3029         return ret;
3030 }
3031
3032 /*
3033  * Returns a referenced nfs4_state
3034  */
3035 static int _nfs4_do_open(struct inode *dir,
3036                         struct nfs_open_context *ctx,
3037                         int flags,
3038                         const struct nfs4_open_createattrs *c,
3039                         int *opened)
3040 {
3041         struct nfs4_state_owner  *sp;
3042         struct nfs4_state     *state = NULL;
3043         struct nfs_server       *server = NFS_SERVER(dir);
3044         struct nfs4_opendata *opendata;
3045         struct dentry *dentry = ctx->dentry;
3046         const struct cred *cred = ctx->cred;
3047         struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
3048         fmode_t fmode = _nfs4_ctx_to_openmode(ctx);
3049         enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
3050         struct iattr *sattr = c->sattr;
3051         struct nfs4_label *label = c->label;
3052         struct nfs4_label *olabel = NULL;
3053         int status;
3054
3055         /* Protect against reboot recovery conflicts */
3056         status = -ENOMEM;
3057         sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
3058         if (sp == NULL) {
3059                 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
3060                 goto out_err;
3061         }
3062         status = nfs4_client_recover_expired_lease(server->nfs_client);
3063         if (status != 0)
3064                 goto err_put_state_owner;
3065         if (d_really_is_positive(dentry))
3066                 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
3067         status = -ENOMEM;
3068         if (d_really_is_positive(dentry))
3069                 claim = NFS4_OPEN_CLAIM_FH;
3070         opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags,
3071                         c, claim, GFP_KERNEL);
3072         if (opendata == NULL)
3073                 goto err_put_state_owner;
3074
3075         if (label) {
3076                 olabel = nfs4_label_alloc(server, GFP_KERNEL);
3077                 if (IS_ERR(olabel)) {
3078                         status = PTR_ERR(olabel);
3079                         goto err_opendata_put;
3080                 }
3081         }
3082
3083         if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
3084                 if (!opendata->f_attr.mdsthreshold) {
3085                         opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
3086                         if (!opendata->f_attr.mdsthreshold)
3087                                 goto err_free_label;
3088                 }
3089                 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
3090         }
3091         if (d_really_is_positive(dentry))
3092                 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
3093
3094         status = _nfs4_open_and_get_state(opendata, flags, ctx);
3095         if (status != 0)
3096                 goto err_free_label;
3097         state = ctx->state;
3098
3099         if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
3100             (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
3101                 unsigned attrs = nfs4_exclusive_attrset(opendata, sattr, &label);
3102                 /*
3103                  * send create attributes which was not set by open
3104                  * with an extra setattr.
3105                  */
3106                 if (attrs || label) {
3107                         unsigned ia_old = sattr->ia_valid;
3108
3109                         sattr->ia_valid = attrs;
3110                         nfs_fattr_init(opendata->o_res.f_attr);
3111                         status = nfs4_do_setattr(state->inode, cred,
3112                                         opendata->o_res.f_attr, sattr,
3113                                         ctx, label, olabel);
3114                         if (status == 0) {
3115                                 nfs_setattr_update_inode(state->inode, sattr,
3116                                                 opendata->o_res.f_attr);
3117                                 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
3118                         }
3119                         sattr->ia_valid = ia_old;
3120                 }
3121         }
3122         if (opened && opendata->file_created)
3123                 *opened = 1;
3124
3125         if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
3126                 *ctx_th = opendata->f_attr.mdsthreshold;
3127                 opendata->f_attr.mdsthreshold = NULL;
3128         }
3129
3130         nfs4_label_free(olabel);
3131
3132         nfs4_opendata_put(opendata);
3133         nfs4_put_state_owner(sp);
3134         return 0;
3135 err_free_label:
3136         nfs4_label_free(olabel);
3137 err_opendata_put:
3138         nfs4_opendata_put(opendata);
3139 err_put_state_owner:
3140         nfs4_put_state_owner(sp);
3141 out_err:
3142         return status;
3143 }
3144
3145
3146 static struct nfs4_state *nfs4_do_open(struct inode *dir,
3147                                         struct nfs_open_context *ctx,
3148                                         int flags,
3149                                         struct iattr *sattr,
3150                                         struct nfs4_label *label,
3151                                         int *opened)
3152 {
3153         struct nfs_server *server = NFS_SERVER(dir);
3154         struct nfs4_exception exception = {
3155                 .interruptible = true,
3156         };
3157         struct nfs4_state *res;
3158         struct nfs4_open_createattrs c = {
3159                 .label = label,
3160                 .sattr = sattr,
3161                 .verf = {
3162                         [0] = (__u32)jiffies,
3163                         [1] = (__u32)current->pid,
3164                 },
3165         };
3166         int status;
3167
3168         do {
3169                 status = _nfs4_do_open(dir, ctx, flags, &c, opened);
3170                 res = ctx->state;
3171                 trace_nfs4_open_file(ctx, flags, status);
3172                 if (status == 0)
3173                         break;
3174                 /* NOTE: BAD_SEQID means the server and client disagree about the
3175                  * book-keeping w.r.t. state-changing operations
3176                  * (OPEN/CLOSE/LOCK/LOCKU...)
3177                  * It is actually a sign of a bug on the client or on the server.
3178                  *
3179                  * If we receive a BAD_SEQID error in the particular case of
3180                  * doing an OPEN, we assume that nfs_increment_open_seqid() will
3181                  * have unhashed the old state_owner for us, and that we can
3182                  * therefore safely retry using a new one. We should still warn
3183                  * the user though...
3184                  */
3185                 if (status == -NFS4ERR_BAD_SEQID) {
3186                         pr_warn_ratelimited("NFS: v4 server %s "
3187                                         " returned a bad sequence-id error!\n",
3188                                         NFS_SERVER(dir)->nfs_client->cl_hostname);
3189                         exception.retry = 1;
3190                         continue;
3191                 }
3192                 /*
3193                  * BAD_STATEID on OPEN means that the server cancelled our
3194                  * state before it received the OPEN_CONFIRM.
3195                  * Recover by retrying the request as per the discussion
3196                  * on Page 181 of RFC3530.
3197                  */
3198                 if (status == -NFS4ERR_BAD_STATEID) {
3199                         exception.retry = 1;
3200                         continue;
3201                 }
3202                 if (status == -EAGAIN) {
3203                         /* We must have found a delegation */
3204                         exception.retry = 1;
3205                         continue;
3206                 }
3207                 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
3208                         continue;
3209                 res = ERR_PTR(nfs4_handle_exception(server,
3210                                         status, &exception));
3211         } while (exception.retry);
3212         return res;
3213 }
3214
3215 static int _nfs4_do_setattr(struct inode *inode,
3216                             struct nfs_setattrargs *arg,
3217                             struct nfs_setattrres *res,
3218                             const struct cred *cred,
3219                             struct nfs_open_context *ctx)
3220 {
3221         struct nfs_server *server = NFS_SERVER(inode);
3222         struct rpc_message msg = {
3223                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
3224                 .rpc_argp       = arg,
3225                 .rpc_resp       = res,
3226                 .rpc_cred       = cred,
3227         };
3228         const struct cred *delegation_cred = NULL;
3229         unsigned long timestamp = jiffies;
3230         bool truncate;
3231         int status;
3232
3233         nfs_fattr_init(res->fattr);
3234
3235         /* Servers should only apply open mode checks for file size changes */
3236         truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
3237         if (!truncate)
3238                 goto zero_stateid;
3239
3240         if (nfs4_copy_delegation_stateid(inode, FMODE_WRITE, &arg->stateid, &delegation_cred)) {
3241                 /* Use that stateid */
3242         } else if (ctx != NULL && ctx->state) {
3243                 struct nfs_lock_context *l_ctx;
3244                 if (!nfs4_valid_open_stateid(ctx->state))
3245                         return -EBADF;
3246                 l_ctx = nfs_get_lock_context(ctx);
3247                 if (IS_ERR(l_ctx))
3248                         return PTR_ERR(l_ctx);
3249                 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx,
3250                                                 &arg->stateid, &delegation_cred);
3251                 nfs_put_lock_context(l_ctx);
3252                 if (status == -EIO)
3253                         return -EBADF;
3254         } else {
3255 zero_stateid:
3256                 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
3257         }
3258         if (delegation_cred)
3259                 msg.rpc_cred = delegation_cred;
3260
3261         status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
3262
3263         put_cred(delegation_cred);
3264         if (status == 0 && ctx != NULL)
3265                 renew_lease(server, timestamp);
3266         trace_nfs4_setattr(inode, &arg->stateid, status);
3267         return status;
3268 }
3269
3270 static int nfs4_do_setattr(struct inode *inode, const struct cred *cred,
3271                            struct nfs_fattr *fattr, struct iattr *sattr,
3272                            struct nfs_open_context *ctx, struct nfs4_label *ilabel,
3273                            struct nfs4_label *olabel)
3274 {
3275         struct nfs_server *server = NFS_SERVER(inode);
3276         __u32 bitmask[NFS4_BITMASK_SZ];
3277         struct nfs4_state *state = ctx ? ctx->state : NULL;
3278         struct nfs_setattrargs  arg = {
3279                 .fh             = NFS_FH(inode),
3280                 .iap            = sattr,
3281                 .server         = server,
3282                 .bitmask = bitmask,
3283                 .label          = ilabel,
3284         };
3285         struct nfs_setattrres  res = {
3286                 .fattr          = fattr,
3287                 .label          = olabel,
3288                 .server         = server,
3289         };
3290         struct nfs4_exception exception = {
3291                 .state = state,
3292                 .inode = inode,
3293                 .stateid = &arg.stateid,
3294         };
3295         int err;
3296
3297         do {
3298                 nfs4_bitmap_copy_adjust_setattr(bitmask,
3299                                 nfs4_bitmask(server, olabel),
3300                                 inode);
3301
3302                 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx);
3303                 switch (err) {
3304                 case -NFS4ERR_OPENMODE:
3305                         if (!(sattr->ia_valid & ATTR_SIZE)) {
3306                                 pr_warn_once("NFSv4: server %s is incorrectly "
3307                                                 "applying open mode checks to "
3308                                                 "a SETATTR that is not "
3309                                                 "changing file size.\n",
3310                                                 server->nfs_client->cl_hostname);
3311                         }
3312                         if (state && !(state->state & FMODE_WRITE)) {
3313                                 err = -EBADF;
3314                                 if (sattr->ia_valid & ATTR_OPEN)
3315                                         err = -EACCES;
3316                                 goto out;
3317                         }
3318                 }
3319                 err = nfs4_handle_exception(server, err, &exception);
3320         } while (exception.retry);
3321 out:
3322         return err;
3323 }
3324
3325 static bool
3326 nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
3327 {
3328         if (inode == NULL || !nfs_have_layout(inode))
3329                 return false;
3330
3331         return pnfs_wait_on_layoutreturn(inode, task);
3332 }
3333
3334 /*
3335  * Update the seqid of an open stateid
3336  */
3337 static void nfs4_sync_open_stateid(nfs4_stateid *dst,
3338                 struct nfs4_state *state)
3339 {
3340         __be32 seqid_open;
3341         u32 dst_seqid;
3342         int seq;
3343
3344         for (;;) {
3345                 if (!nfs4_valid_open_stateid(state))
3346                         break;
3347                 seq = read_seqbegin(&state->seqlock);
3348                 if (!nfs4_state_match_open_stateid_other(state, dst)) {
3349                         nfs4_stateid_copy(dst, &state->open_stateid);
3350                         if (read_seqretry(&state->seqlock, seq))
3351                                 continue;
3352                         break;
3353                 }
3354                 seqid_open = state->open_stateid.seqid;
3355                 if (read_seqretry(&state->seqlock, seq))
3356                         continue;
3357
3358                 dst_seqid = be32_to_cpu(dst->seqid);
3359                 if ((s32)(dst_seqid - be32_to_cpu(seqid_open)) < 0)
3360                         dst->seqid = seqid_open;
3361                 break;
3362         }
3363 }
3364
3365 /*
3366  * Update the seqid of an open stateid after receiving
3367  * NFS4ERR_OLD_STATEID
3368  */
3369 static bool nfs4_refresh_open_old_stateid(nfs4_stateid *dst,
3370                 struct nfs4_state *state)
3371 {
3372         __be32 seqid_open;
3373         u32 dst_seqid;
3374         bool ret;
3375         int seq;
3376
3377         for (;;) {
3378                 ret = false;
3379                 if (!nfs4_valid_open_stateid(state))
3380                         break;
3381                 seq = read_seqbegin(&state->seqlock);
3382                 if (!nfs4_state_match_open_stateid_other(state, dst)) {
3383                         if (read_seqretry(&state->seqlock, seq))
3384                                 continue;
3385                         break;
3386                 }
3387                 seqid_open = state->open_stateid.seqid;
3388                 if (read_seqretry(&state->seqlock, seq))
3389                         continue;
3390
3391                 dst_seqid = be32_to_cpu(dst->seqid);
3392                 if ((s32)(dst_seqid - be32_to_cpu(seqid_open)) >= 0)
3393                         dst->seqid = cpu_to_be32(dst_seqid + 1);
3394                 else
3395                         dst->seqid = seqid_open;
3396                 ret = true;
3397                 break;
3398         }
3399
3400         return ret;
3401 }
3402
3403 struct nfs4_closedata {
3404         struct inode *inode;
3405         struct nfs4_state *state;
3406         struct nfs_closeargs arg;
3407         struct nfs_closeres res;
3408         struct {
3409                 struct nfs4_layoutreturn_args arg;
3410                 struct nfs4_layoutreturn_res res;
3411                 struct nfs4_xdr_opaque_data ld_private;
3412                 u32 roc_barrier;
3413                 bool roc;
3414         } lr;
3415         struct nfs_fattr fattr;
3416         unsigned long timestamp;
3417 };
3418
3419 static void nfs4_free_closedata(void *data)
3420 {
3421         struct nfs4_closedata *calldata = data;
3422         struct nfs4_state_owner *sp = calldata->state->owner;
3423         struct super_block *sb = calldata->state->inode->i_sb;
3424
3425         if (calldata->lr.roc)
3426                 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res,
3427                                 calldata->res.lr_ret);
3428         nfs4_put_open_state(calldata->state);
3429         nfs_free_seqid(calldata->arg.seqid);
3430         nfs4_put_state_owner(sp);
3431         nfs_sb_deactive(sb);
3432         kfree(calldata);
3433 }
3434
3435 static void nfs4_close_done(struct rpc_task *task, void *data)
3436 {
3437         struct nfs4_closedata *calldata = data;
3438         struct nfs4_state *state = calldata->state;
3439         struct nfs_server *server = NFS_SERVER(calldata->inode);
3440         nfs4_stateid *res_stateid = NULL;
3441         struct nfs4_exception exception = {
3442                 .state = state,
3443                 .inode = calldata->inode,
3444                 .stateid = &calldata->arg.stateid,
3445         };
3446
3447         dprintk("%s: begin!\n", __func__);
3448         if (!nfs4_sequence_done(task, &calldata->res.seq_res))
3449                 return;
3450         trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
3451
3452         /* Handle Layoutreturn errors */
3453         if (pnfs_roc_done(task, calldata->inode,
3454                                 &calldata->arg.lr_args,
3455                                 &calldata->res.lr_res,
3456                                 &calldata->res.lr_ret) == -EAGAIN)
3457                 goto out_restart;
3458
3459         /* hmm. we are done with the inode, and in the process of freeing
3460          * the state_owner. we keep this around to process errors
3461          */
3462         switch (task->tk_status) {
3463                 case 0:
3464                         res_stateid = &calldata->res.stateid;
3465                         renew_lease(server, calldata->timestamp);
3466                         break;
3467                 case -NFS4ERR_ACCESS:
3468                         if (calldata->arg.bitmask != NULL) {
3469                                 calldata->arg.bitmask = NULL;
3470                                 calldata->res.fattr = NULL;
3471                                 goto out_restart;
3472
3473                         }
3474                         break;
3475                 case -NFS4ERR_OLD_STATEID:
3476                         /* Did we race with OPEN? */
3477                         if (nfs4_refresh_open_old_stateid(&calldata->arg.stateid,
3478                                                 state))
3479                                 goto out_restart;
3480                         goto out_release;
3481                 case -NFS4ERR_ADMIN_REVOKED:
3482                 case -NFS4ERR_STALE_STATEID:
3483                 case -NFS4ERR_EXPIRED:
3484                         nfs4_free_revoked_stateid(server,
3485                                         &calldata->arg.stateid,
3486                                         task->tk_msg.rpc_cred);
3487                         /* Fallthrough */
3488                 case -NFS4ERR_BAD_STATEID:
3489                         if (calldata->arg.fmode == 0)
3490                                 break;
3491                         /* Fallthrough */
3492                 default:
3493                         task->tk_status = nfs4_async_handle_exception(task,
3494                                         server, task->tk_status, &exception);
3495                         if (exception.retry)
3496                                 goto out_restart;
3497         }
3498         nfs_clear_open_stateid(state, &calldata->arg.stateid,
3499                         res_stateid, calldata->arg.fmode);
3500 out_release:
3501         task->tk_status = 0;
3502         nfs_release_seqid(calldata->arg.seqid);
3503         nfs_refresh_inode(calldata->inode, &calldata->fattr);
3504         dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
3505         return;
3506 out_restart:
3507         task->tk_status = 0;
3508         rpc_restart_call_prepare(task);
3509         goto out_release;
3510 }
3511
3512 static void nfs4_close_prepare(struct rpc_task *task, void *data)
3513 {
3514         struct nfs4_closedata *calldata = data;
3515         struct nfs4_state *state = calldata->state;
3516         struct inode *inode = calldata->inode;
3517         struct pnfs_layout_hdr *lo;
3518         bool is_rdonly, is_wronly, is_rdwr;
3519         int call_close = 0;
3520
3521         dprintk("%s: begin!\n", __func__);
3522         if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3523                 goto out_wait;
3524
3525         task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
3526         spin_lock(&state->owner->so_lock);
3527         is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3528         is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3529         is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
3530         /* Calculate the change in open mode */
3531         calldata->arg.fmode = 0;
3532         if (state->n_rdwr == 0) {
3533                 if (state->n_rdonly == 0)
3534                         call_close |= is_rdonly;
3535                 else if (is_rdonly)
3536                         calldata->arg.fmode |= FMODE_READ;
3537                 if (state->n_wronly == 0)
3538                         call_close |= is_wronly;
3539                 else if (is_wronly)
3540                         calldata->arg.fmode |= FMODE_WRITE;
3541                 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3542                         call_close |= is_rdwr;
3543         } else if (is_rdwr)
3544                 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3545
3546         nfs4_sync_open_stateid(&calldata->arg.stateid, state);
3547         if (!nfs4_valid_open_stateid(state))
3548                 call_close = 0;
3549         spin_unlock(&state->owner->so_lock);
3550
3551         if (!call_close) {
3552                 /* Note: exit _without_ calling nfs4_close_done */
3553                 goto out_no_action;
3554         }
3555
3556         if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) {
3557                 nfs_release_seqid(calldata->arg.seqid);
3558                 goto out_wait;
3559         }
3560
3561         lo = calldata->arg.lr_args ? calldata->arg.lr_args->layout : NULL;
3562         if (lo && !pnfs_layout_is_valid(lo)) {
3563                 calldata->arg.lr_args = NULL;
3564                 calldata->res.lr_res = NULL;
3565         }
3566
3567         if (calldata->arg.fmode == 0)
3568                 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
3569
3570         if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) {
3571                 /* Close-to-open cache consistency revalidation */
3572                 if (!nfs4_have_delegation(inode, FMODE_READ))
3573                         calldata->arg.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
3574                 else
3575                         calldata->arg.bitmask = NULL;
3576         }
3577
3578         calldata->arg.share_access =
3579                 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3580                                 calldata->arg.fmode, 0);
3581
3582         if (calldata->res.fattr == NULL)
3583                 calldata->arg.bitmask = NULL;
3584         else if (calldata->arg.bitmask == NULL)
3585                 calldata->res.fattr = NULL;
3586         calldata->timestamp = jiffies;
3587         if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client,
3588                                 &calldata->arg.seq_args,
3589                                 &calldata->res.seq_res,
3590                                 task) != 0)
3591                 nfs_release_seqid(calldata->arg.seqid);
3592         dprintk("%s: done!\n", __func__);
3593         return;
3594 out_no_action:
3595         task->tk_action = NULL;
3596 out_wait:
3597         nfs4_sequence_done(task, &calldata->res.seq_res);
3598 }
3599
3600 static const struct rpc_call_ops nfs4_close_ops = {
3601         .rpc_call_prepare = nfs4_close_prepare,
3602         .rpc_call_done = nfs4_close_done,
3603         .rpc_release = nfs4_free_closedata,
3604 };
3605
3606 /* 
3607  * It is possible for data to be read/written from a mem-mapped file 
3608  * after the sys_close call (which hits the vfs layer as a flush).
3609  * This means that we can't safely call nfsv4 close on a file until 
3610  * the inode is cleared. This in turn means that we are not good
3611  * NFSv4 citizens - we do not indicate to the server to update the file's 
3612  * share state even when we are done with one of the three share 
3613  * stateid's in the inode.
3614  *
3615  * NOTE: Caller must be holding the sp->so_owner semaphore!
3616  */
3617 int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
3618 {
3619         struct nfs_server *server = NFS_SERVER(state->inode);
3620         struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
3621         struct nfs4_closedata *calldata;
3622         struct nfs4_state_owner *sp = state->owner;
3623         struct rpc_task *task;
3624         struct rpc_message msg = {
3625                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3626                 .rpc_cred = state->owner->so_cred,
3627         };
3628         struct rpc_task_setup task_setup_data = {
3629                 .rpc_client = server->client,
3630                 .rpc_message = &msg,
3631                 .callback_ops = &nfs4_close_ops,
3632                 .workqueue = nfsiod_workqueue,
3633                 .flags = RPC_TASK_ASYNC,
3634         };
3635         int status = -ENOMEM;
3636
3637         nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3638                 &task_setup_data.rpc_client, &msg);
3639
3640         calldata = kzalloc(sizeof(*calldata), gfp_mask);
3641         if (calldata == NULL)
3642                 goto out;
3643         nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1, 0);
3644         calldata->inode = state->inode;
3645         calldata->state = state;
3646         calldata->arg.fh = NFS_FH(state->inode);
3647         if (!nfs4_copy_open_stateid(&calldata->arg.stateid, state))
3648                 goto out_free_calldata;
3649         /* Serialization for the sequence id */
3650         alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3651         calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
3652         if (IS_ERR(calldata->arg.seqid))
3653                 goto out_free_calldata;
3654         nfs_fattr_init(&calldata->fattr);
3655         calldata->arg.fmode = 0;
3656         calldata->lr.arg.ld_private = &calldata->lr.ld_private;
3657         calldata->res.fattr = &calldata->fattr;
3658         calldata->res.seqid = calldata->arg.seqid;
3659         calldata->res.server = server;
3660         calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
3661         calldata->lr.roc = pnfs_roc(state->inode,
3662                         &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred);
3663         if (calldata->lr.roc) {
3664                 calldata->arg.lr_args = &calldata->lr.arg;
3665                 calldata->res.lr_res = &calldata->lr.res;
3666         }
3667         nfs_sb_active(calldata->inode->i_sb);
3668
3669         msg.rpc_argp = &calldata->arg;
3670         msg.rpc_resp = &calldata->res;
3671         task_setup_data.callback_data = calldata;
3672         task = rpc_run_task(&task_setup_data);
3673         if (IS_ERR(task))
3674                 return PTR_ERR(task);
3675         status = 0;
3676         if (wait)
3677                 status = rpc_wait_for_completion_task(task);
3678         rpc_put_task(task);
3679         return status;
3680 out_free_calldata:
3681         kfree(calldata);
3682 out:
3683         nfs4_put_open_state(state);
3684         nfs4_put_state_owner(sp);
3685         return status;
3686 }
3687
3688 static struct inode *
3689 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3690                 int open_flags, struct iattr *attr, int *opened)
3691 {
3692         struct nfs4_state *state;
3693         struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
3694
3695         label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
3696
3697         /* Protect against concurrent sillydeletes */
3698         state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
3699
3700         nfs4_label_release_security(label);
3701
3702         if (IS_ERR(state))
3703                 return ERR_CAST(state);
3704         return state->inode;
3705 }
3706
3707 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
3708 {
3709         if (ctx->state == NULL)
3710                 return;
3711         if (is_sync)
3712                 nfs4_close_sync(ctx->state, _nfs4_ctx_to_openmode(ctx));
3713         else
3714                 nfs4_close_state(ctx->state, _nfs4_ctx_to_openmode(ctx));
3715 }
3716
3717 #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3718 #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
3719 #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_MODE_UMASK - 1UL)
3720
3721 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3722 {
3723         u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
3724         struct nfs4_server_caps_arg args = {
3725                 .fhandle = fhandle,
3726                 .bitmask = bitmask,
3727         };
3728         struct nfs4_server_caps_res res = {};
3729         struct rpc_message msg = {
3730                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
3731                 .rpc_argp = &args,
3732                 .rpc_resp = &res,
3733         };
3734         int status;
3735         int i;
3736
3737         bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3738                      FATTR4_WORD0_FH_EXPIRE_TYPE |
3739                      FATTR4_WORD0_LINK_SUPPORT |
3740                      FATTR4_WORD0_SYMLINK_SUPPORT |
3741                      FATTR4_WORD0_ACLSUPPORT;
3742         if (minorversion)
3743                 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3744
3745         status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3746         if (status == 0) {
3747                 /* Sanity check the server answers */
3748                 switch (minorversion) {
3749                 case 0:
3750                         res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3751                         res.attr_bitmask[2] = 0;
3752                         break;
3753                 case 1:
3754                         res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3755                         break;
3756                 case 2:
3757                         res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3758                 }
3759                 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
3760                 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
3761                                 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
3762                                 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
3763                                 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
3764                                 NFS_CAP_CTIME|NFS_CAP_MTIME|
3765                                 NFS_CAP_SECURITY_LABEL);
3766                 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3767                                 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3768                         server->caps |= NFS_CAP_ACLS;
3769                 if (res.has_links != 0)
3770                         server->caps |= NFS_CAP_HARDLINKS;
3771                 if (res.has_symlinks != 0)
3772                         server->caps |= NFS_CAP_SYMLINKS;
3773                 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
3774                         server->caps |= NFS_CAP_FILEID;
3775                 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
3776                         server->caps |= NFS_CAP_MODE;
3777                 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
3778                         server->caps |= NFS_CAP_NLINK;
3779                 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
3780                         server->caps |= NFS_CAP_OWNER;
3781                 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
3782                         server->caps |= NFS_CAP_OWNER_GROUP;
3783                 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
3784                         server->caps |= NFS_CAP_ATIME;
3785                 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
3786                         server->caps |= NFS_CAP_CTIME;
3787                 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
3788                         server->caps |= NFS_CAP_MTIME;
3789 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
3790                 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3791                         server->caps |= NFS_CAP_SECURITY_LABEL;
3792 #endif
3793                 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3794                                 sizeof(server->attr_bitmask));
3795                 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
3796
3797                 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3798                 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3799                 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
3800                 server->cache_consistency_bitmask[2] = 0;
3801
3802                 /* Avoid a regression due to buggy server */
3803                 for (i = 0; i < ARRAY_SIZE(res.exclcreat_bitmask); i++)
3804                         res.exclcreat_bitmask[i] &= res.attr_bitmask[i];
3805                 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3806                         sizeof(server->exclcreat_bitmask));
3807
3808                 server->acl_bitmask = res.acl_bitmask;
3809                 server->fh_expire_type = res.fh_expire_type;
3810         }
3811
3812         return status;
3813 }
3814
3815 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3816 {
3817         struct nfs4_exception exception = {
3818                 .interruptible = true,
3819         };
3820         int err;
3821         do {
3822                 err = nfs4_handle_exception(server,
3823                                 _nfs4_server_capabilities(server, fhandle),
3824                                 &exception);
3825         } while (exception.retry);
3826         return err;
3827 }
3828
3829 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3830                 struct nfs_fsinfo *info)
3831 {
3832         u32 bitmask[3];
3833         struct nfs4_lookup_root_arg args = {
3834                 .bitmask = bitmask,
3835         };
3836         struct nfs4_lookup_res res = {
3837                 .server = server,
3838                 .fattr = info->fattr,
3839                 .fh = fhandle,
3840         };
3841         struct rpc_message msg = {
3842                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
3843                 .rpc_argp = &args,
3844                 .rpc_resp = &res,
3845         };
3846
3847         bitmask[0] = nfs4_fattr_bitmap[0];
3848         bitmask[1] = nfs4_fattr_bitmap[1];
3849         /*
3850          * Process the label in the upcoming getfattr
3851          */
3852         bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
3853
3854         nfs_fattr_init(info->fattr);
3855         return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3856 }
3857
3858 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3859                 struct nfs_fsinfo *info)
3860 {
3861         struct nfs4_exception exception = {
3862                 .interruptible = true,
3863         };
3864         int err;
3865         do {
3866                 err = _nfs4_lookup_root(server, fhandle, info);
3867                 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
3868                 switch (err) {
3869                 case 0:
3870                 case -NFS4ERR_WRONGSEC:
3871                         goto out;
3872                 default:
3873                         err = nfs4_handle_exception(server, err, &exception);
3874                 }
3875         } while (exception.retry);
3876 out:
3877         return err;
3878 }
3879
3880 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3881                                 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3882 {
3883         struct rpc_auth_create_args auth_args = {
3884                 .pseudoflavor = flavor,
3885         };
3886         struct rpc_auth *auth;
3887
3888         auth = rpcauth_create(&auth_args, server->client);
3889         if (IS_ERR(auth))
3890                 return -EACCES;
3891         return nfs4_lookup_root(server, fhandle, info);
3892 }
3893
3894 /*
3895  * Retry pseudoroot lookup with various security flavors.  We do this when:
3896  *
3897  *   NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3898  *   NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3899  *
3900  * Returns zero on success, or a negative NFS4ERR value, or a
3901  * negative errno value.
3902  */
3903 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3904                               struct nfs_fsinfo *info)
3905 {
3906         /* Per 3530bis 15.33.5 */
3907         static const rpc_authflavor_t flav_array[] = {
3908                 RPC_AUTH_GSS_KRB5P,
3909                 RPC_AUTH_GSS_KRB5I,
3910                 RPC_AUTH_GSS_KRB5,
3911                 RPC_AUTH_UNIX,                  /* courtesy */
3912                 RPC_AUTH_NULL,
3913         };
3914         int status = -EPERM;
3915         size_t i;
3916
3917         if (server->auth_info.flavor_len > 0) {
3918                 /* try each flavor specified by user */
3919                 for (i = 0; i < server->auth_info.flavor_len; i++) {
3920                         status = nfs4_lookup_root_sec(server, fhandle, info,
3921                                                 server->auth_info.flavors[i]);
3922                         if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3923                                 continue;
3924                         break;
3925                 }
3926         } else {
3927                 /* no flavors specified by user, try default list */
3928                 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3929                         status = nfs4_lookup_root_sec(server, fhandle, info,
3930                                                       flav_array[i]);
3931                         if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3932                                 continue;
3933                         break;
3934                 }
3935         }
3936
3937         /*
3938          * -EACCES could mean that the user doesn't have correct permissions
3939          * to access the mount.  It could also mean that we tried to mount
3940          * with a gss auth flavor, but rpc.gssd isn't running.  Either way,
3941          * existing mount programs don't handle -EACCES very well so it should
3942          * be mapped to -EPERM instead.
3943          */
3944         if (status == -EACCES)
3945                 status = -EPERM;
3946         return status;
3947 }
3948
3949 /**
3950  * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3951  * @server: initialized nfs_server handle
3952  * @fhandle: we fill in the pseudo-fs root file handle
3953  * @info: we fill in an FSINFO struct
3954  * @auth_probe: probe the auth flavours
3955  *
3956  * Returns zero on success, or a negative errno.
3957  */
3958 int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
3959                          struct nfs_fsinfo *info,
3960                          bool auth_probe)
3961 {
3962         int status = 0;
3963
3964         if (!auth_probe)
3965                 status = nfs4_lookup_root(server, fhandle, info);
3966
3967         if (auth_probe || status == NFS4ERR_WRONGSEC)
3968                 status = server->nfs_client->cl_mvops->find_root_sec(server,
3969                                 fhandle, info);
3970
3971         if (status == 0)
3972                 status = nfs4_server_capabilities(server, fhandle);
3973         if (status == 0)
3974                 status = nfs4_do_fsinfo(server, fhandle, info);
3975
3976         return nfs4_map_errors(status);
3977 }
3978
3979 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3980                               struct nfs_fsinfo *info)
3981 {
3982         int error;
3983         struct nfs_fattr *fattr = info->fattr;
3984         struct nfs4_label *label = NULL;
3985
3986         error = nfs4_server_capabilities(server, mntfh);
3987         if (error < 0) {
3988                 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3989                 return error;
3990         }
3991
3992         label = nfs4_label_alloc(server, GFP_KERNEL);
3993         if (IS_ERR(label))
3994                 return PTR_ERR(label);
3995
3996         error = nfs4_proc_getattr(server, mntfh, fattr, label, NULL);
3997         if (error < 0) {
3998                 dprintk("nfs4_get_root: getattr error = %d\n", -error);
3999                 goto err_free_label;
4000         }
4001
4002         if (fattr->valid & NFS_ATTR_FATTR_FSID &&
4003             !nfs_fsid_equal(&server->fsid, &fattr->fsid))
4004                 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
4005
4006 err_free_label:
4007         nfs4_label_free(label);
4008
4009         return error;
4010 }
4011
4012 /*
4013  * Get locations and (maybe) other attributes of a referral.
4014  * Note that we'll actually follow the referral later when
4015  * we detect fsid mismatch in inode revalidation
4016  */
4017 static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
4018                              const struct qstr *name, struct nfs_fattr *fattr,
4019                              struct nfs_fh *fhandle)
4020 {
4021         int status = -ENOMEM;
4022         struct page *page = NULL;
4023         struct nfs4_fs_locations *locations = NULL;
4024
4025         page = alloc_page(GFP_KERNEL);
4026         if (page == NULL)
4027                 goto out;
4028         locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
4029         if (locations == NULL)
4030                 goto out;
4031
4032         status = nfs4_proc_fs_locations(client, dir, name, locations, page);
4033         if (status != 0)
4034                 goto out;
4035
4036         /*
4037          * If the fsid didn't change, this is a migration event, not a
4038          * referral.  Cause us to drop into the exception handler, which
4039          * will kick off migration recovery.
4040          */
4041         if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
4042                 dprintk("%s: server did not return a different fsid for"
4043                         " a referral at %s\n", __func__, name->name);
4044                 status = -NFS4ERR_MOVED;
4045                 goto out;
4046         }
4047         /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
4048         nfs_fixup_referral_attributes(&locations->fattr);
4049
4050         /* replace the lookup nfs_fattr with the locations nfs_fattr */
4051         memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
4052         memset(fhandle, 0, sizeof(struct nfs_fh));
4053 out:
4054         if (page)
4055                 __free_page(page);
4056         kfree(locations);
4057         return status;
4058 }
4059
4060 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
4061                                 struct nfs_fattr *fattr, struct nfs4_label *label,
4062                                 struct inode *inode)
4063 {
4064         __u32 bitmask[NFS4_BITMASK_SZ];
4065         struct nfs4_getattr_arg args = {
4066                 .fh = fhandle,
4067                 .bitmask = bitmask,
4068         };
4069         struct nfs4_getattr_res res = {
4070                 .fattr = fattr,
4071                 .label = label,
4072                 .server = server,
4073         };
4074         struct rpc_message msg = {
4075                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
4076                 .rpc_argp = &args,
4077                 .rpc_resp = &res,
4078         };
4079         unsigned short task_flags = 0;
4080
4081         /* Is this is an attribute revalidation, subject to softreval? */
4082         if (inode && (server->flags & NFS_MOUNT_SOFTREVAL))
4083                 task_flags |= RPC_TASK_TIMEOUT;
4084
4085         nfs4_bitmap_copy_adjust(bitmask, nfs4_bitmask(server, label), inode);
4086
4087         nfs_fattr_init(fattr);
4088         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
4089         return nfs4_do_call_sync(server->client, server, &msg,
4090                         &args.seq_args, &res.seq_res, task_flags);
4091 }
4092
4093 int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
4094                                 struct nfs_fattr *fattr, struct nfs4_label *label,
4095                                 struct inode *inode)
4096 {
4097         struct nfs4_exception exception = {
4098                 .interruptible = true,
4099         };
4100         int err;
4101         do {
4102                 err = _nfs4_proc_getattr(server, fhandle, fattr, label, inode);
4103                 trace_nfs4_getattr(server, fhandle, fattr, err);
4104                 err = nfs4_handle_exception(server, err,
4105                                 &exception);
4106         } while (exception.retry);
4107         return err;
4108 }
4109
4110 /* 
4111  * The file is not closed if it is opened due to the a request to change
4112  * the size of the file. The open call will not be needed once the
4113  * VFS layer lookup-intents are implemented.
4114  *
4115  * Close is called when the inode is destroyed.
4116  * If we haven't opened the file for O_WRONLY, we
4117  * need to in the size_change case to obtain a stateid.
4118  *
4119  * Got race?
4120  * Because OPEN is always done by name in nfsv4, it is
4121  * possible that we opened a different file by the same
4122  * name.  We can recognize this race condition, but we
4123  * can't do anything about it besides returning an error.
4124  *
4125  * This will be fixed with VFS changes (lookup-intent).
4126  */
4127 static int
4128 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
4129                   struct iattr *sattr)
4130 {
4131         struct inode *inode = d_inode(dentry);
4132         const struct cred *cred = NULL;
4133         struct nfs_open_context *ctx = NULL;
4134         struct nfs4_label *label = NULL;
4135         int status;
4136
4137         if (pnfs_ld_layoutret_on_setattr(inode) &&
4138             sattr->ia_valid & ATTR_SIZE &&
4139             sattr->ia_size < i_size_read(inode))
4140                 pnfs_commit_and_return_layout(inode);
4141
4142         nfs_fattr_init(fattr);
4143         
4144         /* Deal with open(O_TRUNC) */
4145         if (sattr->ia_valid & ATTR_OPEN)
4146                 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
4147
4148         /* Optimization: if the end result is no change, don't RPC */
4149         if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
4150                 return 0;
4151
4152         /* Search for an existing open(O_WRITE) file */
4153         if (sattr->ia_valid & ATTR_FILE) {
4154
4155                 ctx = nfs_file_open_context(sattr->ia_file);
4156                 if (ctx)
4157                         cred = ctx->cred;
4158         }
4159
4160         label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
4161         if (IS_ERR(label))
4162                 return PTR_ERR(label);
4163
4164         /* Return any delegations if we're going to change ACLs */
4165         if ((sattr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
4166                 nfs4_inode_make_writeable(inode);
4167
4168         status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL, label);
4169         if (status == 0) {
4170                 nfs_setattr_update_inode(inode, sattr, fattr);
4171                 nfs_setsecurity(inode, fattr, label);
4172         }
4173         nfs4_label_free(label);
4174         return status;
4175 }
4176
4177 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
4178                 const struct qstr *name, struct nfs_fh *fhandle,
4179                 struct nfs_fattr *fattr, struct nfs4_label *label)
4180 {
4181         struct nfs_server *server = NFS_SERVER(dir);
4182         int                    status;
4183         struct nfs4_lookup_arg args = {
4184                 .bitmask = server->attr_bitmask,
4185                 .dir_fh = NFS_FH(dir),
4186                 .name = name,
4187         };
4188         struct nfs4_lookup_res res = {
4189                 .server = server,
4190                 .fattr = fattr,
4191                 .label = label,
4192                 .fh = fhandle,
4193         };
4194         struct rpc_message msg = {
4195                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
4196                 .rpc_argp = &args,
4197                 .rpc_resp = &res,
4198         };
4199
4200         args.bitmask = nfs4_bitmask(server, label);
4201
4202         nfs_fattr_init(fattr);
4203
4204         dprintk("NFS call  lookup %s\n", name->name);
4205         status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
4206         dprintk("NFS reply lookup: %d\n", status);
4207         return status;
4208 }
4209
4210 static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
4211 {
4212         fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
4213                 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
4214         fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
4215         fattr->nlink = 2;
4216 }
4217
4218 static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
4219                                    const struct qstr *name, struct nfs_fh *fhandle,
4220                                    struct nfs_fattr *fattr, struct nfs4_label *label)
4221 {
4222         struct nfs4_exception exception = {
4223                 .interruptible = true,
4224         };
4225         struct rpc_clnt *client = *clnt;
4226         int err;
4227         do {
4228                 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
4229                 trace_nfs4_lookup(dir, name, err);
4230                 switch (err) {
4231                 case -NFS4ERR_BADNAME:
4232                         err = -ENOENT;
4233                         goto out;
4234                 case -NFS4ERR_MOVED:
4235                         err = nfs4_get_referral(client, dir, name, fattr, fhandle);
4236                         if (err == -NFS4ERR_MOVED)
4237                                 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
4238                         goto out;
4239                 case -NFS4ERR_WRONGSEC:
4240                         err = -EPERM;
4241                         if (client != *clnt)
4242                                 goto out;
4243                         client = nfs4_negotiate_security(client, dir, name);
4244                         if (IS_ERR(client))
4245                                 return PTR_ERR(client);
4246
4247                         exception.retry = 1;
4248                         break;
4249                 default:
4250                         err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
4251                 }
4252         } while (exception.retry);
4253
4254 out:
4255         if (err == 0)
4256                 *clnt = client;
4257         else if (client != *clnt)
4258                 rpc_shutdown_client(client);
4259
4260         return err;
4261 }
4262
4263 static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
4264                             struct nfs_fh *fhandle, struct nfs_fattr *fattr,
4265                             struct nfs4_label *label)
4266 {
4267         int status;
4268         struct rpc_clnt *client = NFS_CLIENT(dir);
4269
4270         status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
4271         if (client != NFS_CLIENT(dir)) {
4272                 rpc_shutdown_client(client);
4273                 nfs_fixup_secinfo_attributes(fattr);
4274         }
4275         return status;
4276 }
4277
4278 struct rpc_clnt *
4279 nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name,
4280                             struct nfs_fh *fhandle, struct nfs_fattr *fattr)
4281 {
4282         struct rpc_clnt *client = NFS_CLIENT(dir);
4283         int status;
4284
4285         status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
4286         if (status < 0)
4287                 return ERR_PTR(status);
4288         return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
4289 }
4290
4291 static int _nfs4_proc_lookupp(struct inode *inode,
4292                 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
4293                 struct nfs4_label *label)
4294 {
4295         struct rpc_clnt *clnt = NFS_CLIENT(inode);
4296         struct nfs_server *server = NFS_SERVER(inode);
4297         int                    status;
4298         struct nfs4_lookupp_arg args = {
4299                 .bitmask = server->attr_bitmask,
4300                 .fh = NFS_FH(inode),
4301         };
4302         struct nfs4_lookupp_res res = {
4303                 .server = server,
4304                 .fattr = fattr,
4305                 .label = label,
4306                 .fh = fhandle,
4307         };
4308         struct rpc_message msg = {
4309                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUPP],
4310                 .rpc_argp = &args,
4311                 .rpc_resp = &res,
4312         };
4313
4314         args.bitmask = nfs4_bitmask(server, label);
4315
4316         nfs_fattr_init(fattr);
4317
4318         dprintk("NFS call  lookupp ino=0x%lx\n", inode->i_ino);
4319         status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
4320                                 &res.seq_res, 0);
4321         dprintk("NFS reply lookupp: %d\n", status);
4322         return status;
4323 }
4324
4325 static int nfs4_proc_lookupp(struct inode *inode, struct nfs_fh *fhandle,
4326                              struct nfs_fattr *fattr, struct nfs4_label *label)
4327 {
4328         struct nfs4_exception exception = {
4329                 .interruptible = true,
4330         };
4331         int err;
4332         do {
4333                 err = _nfs4_proc_lookupp(inode, fhandle, fattr, label);
4334                 trace_nfs4_lookupp(inode, err);
4335                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4336                                 &exception);
4337         } while (exception.retry);
4338         return err;
4339 }
4340
4341 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
4342 {
4343         struct nfs_server *server = NFS_SERVER(inode);
4344         struct nfs4_accessargs args = {
4345                 .fh = NFS_FH(inode),
4346                 .access = entry->mask,
4347         };
4348         struct nfs4_accessres res = {
4349                 .server = server,
4350         };
4351         struct rpc_message msg = {
4352                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
4353                 .rpc_argp = &args,
4354                 .rpc_resp = &res,
4355                 .rpc_cred = entry->cred,
4356         };
4357         int status = 0;
4358
4359         if (!nfs4_have_delegation(inode, FMODE_READ)) {
4360                 res.fattr = nfs_alloc_fattr();
4361                 if (res.fattr == NULL)
4362                         return -ENOMEM;
4363                 args.bitmask = server->cache_consistency_bitmask;
4364         }
4365         status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4366         if (!status) {
4367                 nfs_access_set_mask(entry, res.access);
4368                 if (res.fattr)
4369                         nfs_refresh_inode(inode, res.fattr);
4370         }
4371         nfs_free_fattr(res.fattr);
4372         return status;
4373 }
4374
4375 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
4376 {
4377         struct nfs4_exception exception = {
4378                 .interruptible = true,
4379         };
4380         int err;
4381         do {
4382                 err = _nfs4_proc_access(inode, entry);
4383                 trace_nfs4_access(inode, err);
4384                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4385                                 &exception);
4386         } while (exception.retry);
4387         return err;
4388 }
4389
4390 /*
4391  * TODO: For the time being, we don't try to get any attributes
4392  * along with any of the zero-copy operations READ, READDIR,
4393  * READLINK, WRITE.
4394  *
4395  * In the case of the first three, we want to put the GETATTR
4396  * after the read-type operation -- this is because it is hard
4397  * to predict the length of a GETATTR response in v4, and thus
4398  * align the READ data correctly.  This means that the GETATTR
4399  * may end up partially falling into the page cache, and we should
4400  * shift it into the 'tail' of the xdr_buf before processing.
4401  * To do this efficiently, we need to know the total length
4402  * of data received, which doesn't seem to be available outside
4403  * of the RPC layer.
4404  *
4405  * In the case of WRITE, we also want to put the GETATTR after
4406  * the operation -- in this case because we want to make sure
4407  * we get the post-operation mtime and size.
4408  *
4409  * Both of these changes to the XDR layer would in fact be quite
4410  * minor, but I decided to leave them for a subsequent patch.
4411  */
4412 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
4413                 unsigned int pgbase, unsigned int pglen)
4414 {
4415         struct nfs4_readlink args = {
4416                 .fh       = NFS_FH(inode),
4417                 .pgbase   = pgbase,
4418                 .pglen    = pglen,
4419                 .pages    = &page,
4420         };
4421         struct nfs4_readlink_res res;
4422         struct rpc_message msg = {
4423                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
4424                 .rpc_argp = &args,
4425                 .rpc_resp = &res,
4426         };
4427
4428         return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
4429 }
4430
4431 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
4432                 unsigned int pgbase, unsigned int pglen)
4433 {
4434         struct nfs4_exception exception = {
4435                 .interruptible = true,
4436         };
4437         int err;
4438         do {
4439                 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
4440                 trace_nfs4_readlink(inode, err);
4441                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4442                                 &exception);
4443         } while (exception.retry);
4444         return err;
4445 }
4446
4447 /*
4448  * This is just for mknod.  open(O_CREAT) will always do ->open_context().
4449  */
4450 static int
4451 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
4452                  int flags)
4453 {
4454         struct nfs_server *server = NFS_SERVER(dir);
4455         struct nfs4_label l, *ilabel = NULL;
4456         struct nfs_open_context *ctx;
4457         struct nfs4_state *state;
4458         int status = 0;
4459
4460         ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL);
4461         if (IS_ERR(ctx))
4462                 return PTR_ERR(ctx);
4463
4464         ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
4465
4466         if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4467                 sattr->ia_mode &= ~current_umask();
4468         state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
4469         if (IS_ERR(state)) {
4470                 status = PTR_ERR(state);
4471                 goto out;
4472         }
4473 out:
4474         nfs4_label_release_security(ilabel);
4475         put_nfs_open_context(ctx);
4476         return status;
4477 }
4478
4479 static int
4480 _nfs4_proc_remove(struct inode *dir, const struct qstr *name, u32 ftype)
4481 {
4482         struct nfs_server *server = NFS_SERVER(dir);
4483         struct nfs_removeargs args = {
4484                 .fh = NFS_FH(dir),
4485                 .name = *name,
4486         };
4487         struct nfs_removeres res = {
4488                 .server = server,
4489         };
4490         struct rpc_message msg = {
4491                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
4492                 .rpc_argp = &args,
4493                 .rpc_resp = &res,
4494         };
4495         unsigned long timestamp = jiffies;
4496         int status;
4497
4498         status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
4499         if (status == 0) {
4500                 spin_lock(&dir->i_lock);
4501                 update_changeattr_locked(dir, &res.cinfo, timestamp, 0);
4502                 /* Removing a directory decrements nlink in the parent */
4503                 if (ftype == NF4DIR && dir->i_nlink > 2)
4504                         nfs4_dec_nlink_locked(dir);
4505                 spin_unlock(&dir->i_lock);
4506         }
4507         return status;
4508 }
4509
4510 static int nfs4_proc_remove(struct inode *dir, struct dentry *dentry)
4511 {
4512         struct nfs4_exception exception = {
4513                 .interruptible = true,
4514         };
4515         struct inode *inode = d_inode(dentry);
4516         int err;
4517
4518         if (inode) {
4519                 if (inode->i_nlink == 1)
4520                         nfs4_inode_return_delegation(inode);
4521                 else
4522                         nfs4_inode_make_writeable(inode);
4523         }
4524         do {
4525                 err = _nfs4_proc_remove(dir, &dentry->d_name, NF4REG);
4526                 trace_nfs4_remove(dir, &dentry->d_name, err);
4527                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4528                                 &exception);
4529         } while (exception.retry);
4530         return err;
4531 }
4532
4533 static int nfs4_proc_rmdir(struct inode *dir, const struct qstr *name)
4534 {
4535         struct nfs4_exception exception = {
4536                 .interruptible = true,
4537         };
4538         int err;
4539
4540         do {
4541                 err = _nfs4_proc_remove(dir, name, NF4DIR);
4542                 trace_nfs4_remove(dir, name, err);
4543                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4544                                 &exception);
4545         } while (exception.retry);
4546         return err;
4547 }
4548
4549 static void nfs4_proc_unlink_setup(struct rpc_message *msg,
4550                 struct dentry *dentry,
4551                 struct inode *inode)
4552 {
4553         struct nfs_removeargs *args = msg->rpc_argp;
4554         struct nfs_removeres *res = msg->rpc_resp;
4555
4556         res->server = NFS_SB(dentry->d_sb);
4557         msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
4558         nfs4_init_sequence(&args->seq_args, &res->seq_res, 1, 0);
4559
4560         nfs_fattr_init(res->dir_attr);
4561
4562         if (inode)
4563                 nfs4_inode_return_delegation(inode);
4564 }
4565
4566 static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4567 {
4568         nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client,
4569                         &data->args.seq_args,
4570                         &data->res.seq_res,
4571                         task);
4572 }
4573
4574 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
4575 {
4576         struct nfs_unlinkdata *data = task->tk_calldata;
4577         struct nfs_removeres *res = &data->res;
4578
4579         if (!nfs4_sequence_done(task, &res->seq_res))
4580                 return 0;
4581         if (nfs4_async_handle_error(task, res->server, NULL,
4582                                     &data->timeout) == -EAGAIN)
4583                 return 0;
4584         if (task->tk_status == 0)
4585                 update_changeattr(dir, &res->cinfo,
4586                                 res->dir_attr->time_start, 0);
4587         return 1;
4588 }
4589
4590 static void nfs4_proc_rename_setup(struct rpc_message *msg,
4591                 struct dentry *old_dentry,
4592                 struct dentry *new_dentry)
4593 {
4594         struct nfs_renameargs *arg = msg->rpc_argp;
4595         struct nfs_renameres *res = msg->rpc_resp;
4596         struct inode *old_inode = d_inode(old_dentry);
4597         struct inode *new_inode = d_inode(new_dentry);
4598
4599         if (old_inode)
4600                 nfs4_inode_make_writeable(old_inode);
4601         if (new_inode)
4602                 nfs4_inode_return_delegation(new_inode);
4603         msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
4604         res->server = NFS_SB(old_dentry->d_sb);
4605         nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1, 0);
4606 }
4607
4608 static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4609 {
4610         nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client,
4611                         &data->args.seq_args,
4612                         &data->res.seq_res,
4613                         task);
4614 }
4615
4616 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4617                                  struct inode *new_dir)
4618 {
4619         struct nfs_renamedata *data = task->tk_calldata;
4620         struct nfs_renameres *res = &data->res;
4621
4622         if (!nfs4_sequence_done(task, &res->seq_res))
4623                 return 0;
4624         if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
4625                 return 0;
4626
4627         if (task->tk_status == 0) {
4628                 if (new_dir != old_dir) {
4629                         /* Note: If we moved a directory, nlink will change */
4630                         update_changeattr(old_dir, &res->old_cinfo,
4631                                         res->old_fattr->time_start,
4632                                         NFS_INO_INVALID_OTHER);
4633                         update_changeattr(new_dir, &res->new_cinfo,
4634                                         res->new_fattr->time_start,
4635                                         NFS_INO_INVALID_OTHER);
4636                 } else
4637                         update_changeattr(old_dir, &res->old_cinfo,
4638                                         res->old_fattr->time_start,
4639                                         0);
4640         }
4641         return 1;
4642 }
4643
4644 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4645 {
4646         struct nfs_server *server = NFS_SERVER(inode);
4647         __u32 bitmask[NFS4_BITMASK_SZ];
4648         struct nfs4_link_arg arg = {
4649                 .fh     = NFS_FH(inode),
4650                 .dir_fh = NFS_FH(dir),
4651                 .name   = name,
4652                 .bitmask = bitmask,
4653         };
4654         struct nfs4_link_res res = {
4655                 .server = server,
4656                 .label = NULL,
4657         };
4658         struct rpc_message msg = {
4659                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4660                 .rpc_argp = &arg,
4661                 .rpc_resp = &res,
4662         };
4663         int status = -ENOMEM;
4664
4665         res.fattr = nfs_alloc_fattr();
4666         if (res.fattr == NULL)
4667                 goto out;
4668
4669         res.label = nfs4_label_alloc(server, GFP_KERNEL);
4670         if (IS_ERR(res.label)) {
4671                 status = PTR_ERR(res.label);
4672                 goto out;
4673         }
4674
4675         nfs4_inode_make_writeable(inode);
4676         nfs4_bitmap_copy_adjust_setattr(bitmask, nfs4_bitmask(server, res.label), inode);
4677
4678         status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
4679         if (!status) {
4680                 update_changeattr(dir, &res.cinfo, res.fattr->time_start, 0);
4681                 status = nfs_post_op_update_inode(inode, res.fattr);
4682                 if (!status)
4683                         nfs_setsecurity(inode, res.fattr, res.label);
4684         }
4685
4686
4687         nfs4_label_free(res.label);
4688
4689 out:
4690         nfs_free_fattr(res.fattr);
4691         return status;
4692 }
4693
4694 static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4695 {
4696         struct nfs4_exception exception = {
4697                 .interruptible = true,
4698         };
4699         int err;
4700         do {
4701                 err = nfs4_handle_exception(NFS_SERVER(inode),
4702                                 _nfs4_proc_link(inode, dir, name),
4703                                 &exception);
4704         } while (exception.retry);
4705         return err;
4706 }
4707
4708 struct nfs4_createdata {
4709         struct rpc_message msg;
4710         struct nfs4_create_arg arg;
4711         struct nfs4_create_res res;
4712         struct nfs_fh fh;
4713         struct nfs_fattr fattr;
4714         struct nfs4_label *label;
4715 };
4716
4717 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
4718                 const struct qstr *name, struct iattr *sattr, u32 ftype)
4719 {
4720         struct nfs4_createdata *data;
4721
4722         data = kzalloc(sizeof(*data), GFP_KERNEL);
4723         if (data != NULL) {
4724                 struct nfs_server *server = NFS_SERVER(dir);
4725
4726                 data->label = nfs4_label_alloc(server, GFP_KERNEL);
4727                 if (IS_ERR(data->label))
4728                         goto out_free;
4729
4730                 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
4731                 data->msg.rpc_argp = &data->arg;
4732                 data->msg.rpc_resp = &data->res;
4733                 data->arg.dir_fh = NFS_FH(dir);
4734                 data->arg.server = server;
4735                 data->arg.name = name;
4736                 data->arg.attrs = sattr;
4737                 data->arg.ftype = ftype;
4738                 data->arg.bitmask = nfs4_bitmask(server, data->label);
4739                 data->arg.umask = current_umask();
4740                 data->res.server = server;
4741                 data->res.fh = &data->fh;
4742                 data->res.fattr = &data->fattr;
4743                 data->res.label = data->label;
4744                 nfs_fattr_init(data->res.fattr);
4745         }
4746         return data;
4747 out_free:
4748         kfree(data);
4749         return NULL;
4750 }
4751
4752 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
4753 {
4754         int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
4755                                     &data->arg.seq_args, &data->res.seq_res, 1);
4756         if (status == 0) {
4757                 spin_lock(&dir->i_lock);
4758                 update_changeattr_locked(dir, &data->res.dir_cinfo,
4759                                 data->res.fattr->time_start, 0);
4760                 /* Creating a directory bumps nlink in the parent */
4761                 if (data->arg.ftype == NF4DIR)
4762                         nfs4_inc_nlink_locked(dir);
4763                 spin_unlock(&dir->i_lock);
4764                 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
4765         }
4766         return status;
4767 }
4768
4769 static void nfs4_free_createdata(struct nfs4_createdata *data)
4770 {
4771         nfs4_label_free(data->label);
4772         kfree(data);
4773 }
4774
4775 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
4776                 struct page *page, unsigned int len, struct iattr *sattr,
4777                 struct nfs4_label *label)
4778 {
4779         struct nfs4_createdata *data;
4780         int status = -ENAMETOOLONG;
4781
4782         if (len > NFS4_MAXPATHLEN)
4783                 goto out;
4784
4785         status = -ENOMEM;
4786         data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
4787         if (data == NULL)
4788                 goto out;
4789
4790         data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
4791         data->arg.u.symlink.pages = &page;
4792         data->arg.u.symlink.len = len;
4793         data->arg.label = label;
4794         
4795         status = nfs4_do_create(dir, dentry, data);
4796
4797         nfs4_free_createdata(data);
4798 out:
4799         return status;
4800 }
4801
4802 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
4803                 struct page *page, unsigned int len, struct iattr *sattr)
4804 {
4805         struct nfs4_exception exception = {
4806                 .interruptible = true,
4807         };
4808         struct nfs4_label l, *label = NULL;
4809         int err;
4810
4811         label = nfs4_label_init_security(dir, dentry, sattr, &l);
4812
4813         do {
4814                 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
4815                 trace_nfs4_symlink(dir, &dentry->d_name, err);
4816                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4817                                 &exception);
4818         } while (exception.retry);
4819
4820         nfs4_label_release_security(label);
4821         return err;
4822 }
4823
4824 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4825                 struct iattr *sattr, struct nfs4_label *label)
4826 {
4827         struct nfs4_createdata *data;
4828         int status = -ENOMEM;
4829
4830         data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
4831         if (data == NULL)
4832                 goto out;
4833
4834         data->arg.label = label;
4835         status = nfs4_do_create(dir, dentry, data);
4836
4837         nfs4_free_createdata(data);
4838 out:
4839         return status;
4840 }
4841
4842 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4843                 struct iattr *sattr)
4844 {
4845         struct nfs_server *server = NFS_SERVER(dir);
4846         struct nfs4_exception exception = {
4847                 .interruptible = true,
4848         };
4849         struct nfs4_label l, *label = NULL;
4850         int err;
4851
4852         label = nfs4_label_init_security(dir, dentry, sattr, &l);
4853
4854         if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4855                 sattr->ia_mode &= ~current_umask();
4856         do {
4857                 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
4858                 trace_nfs4_mkdir(dir, &dentry->d_name, err);
4859                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4860                                 &exception);
4861         } while (exception.retry);
4862         nfs4_label_release_security(label);
4863
4864         return err;
4865 }
4866
4867 static int _nfs4_proc_readdir(struct dentry *dentry, const struct cred *cred,
4868                 u64 cookie, struct page **pages, unsigned int count, bool plus)
4869 {
4870         struct inode            *dir = d_inode(dentry);
4871         struct nfs4_readdir_arg args = {
4872                 .fh = NFS_FH(dir),
4873                 .pages = pages,
4874                 .pgbase = 0,
4875                 .count = count,
4876                 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
4877                 .plus = plus,
4878         };
4879         struct nfs4_readdir_res res;
4880         struct rpc_message msg = {
4881                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
4882                 .rpc_argp = &args,
4883                 .rpc_resp = &res,
4884                 .rpc_cred = cred,
4885         };
4886         int                     status;
4887
4888         dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
4889                         dentry,
4890                         (unsigned long long)cookie);
4891         nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
4892         res.pgbase = args.pgbase;
4893         status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
4894         if (status >= 0) {
4895                 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
4896                 status += args.pgbase;
4897         }
4898
4899         nfs_invalidate_atime(dir);
4900
4901         dprintk("%s: returns %d\n", __func__, status);
4902         return status;
4903 }
4904
4905 static int nfs4_proc_readdir(struct dentry *dentry, const struct cred *cred,
4906                 u64 cookie, struct page **pages, unsigned int count, bool plus)
4907 {
4908         struct nfs4_exception exception = {
4909                 .interruptible = true,
4910         };
4911         int err;
4912         do {
4913                 err = _nfs4_proc_readdir(dentry, cred, cookie,
4914                                 pages, count, plus);
4915                 trace_nfs4_readdir(d_inode(dentry), err);
4916                 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
4917                                 &exception);
4918         } while (exception.retry);
4919         return err;
4920 }
4921
4922 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4923                 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
4924 {
4925         struct nfs4_createdata *data;
4926         int mode = sattr->ia_mode;
4927         int status = -ENOMEM;
4928
4929         data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
4930         if (data == NULL)
4931                 goto out;
4932
4933         if (S_ISFIFO(mode))
4934                 data->arg.ftype = NF4FIFO;
4935         else if (S_ISBLK(mode)) {
4936                 data->arg.ftype = NF4BLK;
4937                 data->arg.u.device.specdata1 = MAJOR(rdev);
4938                 data->arg.u.device.specdata2 = MINOR(rdev);
4939         }
4940         else if (S_ISCHR(mode)) {
4941                 data->arg.ftype = NF4CHR;
4942                 data->arg.u.device.specdata1 = MAJOR(rdev);
4943                 data->arg.u.device.specdata2 = MINOR(rdev);
4944         } else if (!S_ISSOCK(mode)) {
4945                 status = -EINVAL;
4946                 goto out_free;
4947         }
4948
4949         data->arg.label = label;
4950         status = nfs4_do_create(dir, dentry, data);
4951 out_free:
4952         nfs4_free_createdata(data);
4953 out:
4954         return status;
4955 }
4956
4957 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4958                 struct iattr *sattr, dev_t rdev)
4959 {
4960         struct nfs_server *server = NFS_SERVER(dir);
4961         struct nfs4_exception exception = {
4962                 .interruptible = true,
4963         };
4964         struct nfs4_label l, *label = NULL;
4965         int err;
4966
4967         label = nfs4_label_init_security(dir, dentry, sattr, &l);
4968
4969         if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4970                 sattr->ia_mode &= ~current_umask();
4971         do {
4972                 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
4973                 trace_nfs4_mknod(dir, &dentry->d_name, err);
4974                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4975                                 &exception);
4976         } while (exception.retry);
4977
4978         nfs4_label_release_security(label);
4979
4980         return err;
4981 }
4982
4983 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
4984                  struct nfs_fsstat *fsstat)
4985 {
4986         struct nfs4_statfs_arg args = {
4987                 .fh = fhandle,
4988                 .bitmask = server->attr_bitmask,
4989         };
4990         struct nfs4_statfs_res res = {
4991                 .fsstat = fsstat,
4992         };
4993         struct rpc_message msg = {
4994                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4995                 .rpc_argp = &args,
4996                 .rpc_resp = &res,
4997         };
4998
4999         nfs_fattr_init(fsstat->fattr);
5000         return  nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5001 }
5002
5003 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
5004 {
5005         struct nfs4_exception exception = {
5006                 .interruptible = true,
5007         };
5008         int err;
5009         do {
5010                 err = nfs4_handle_exception(server,
5011                                 _nfs4_proc_statfs(server, fhandle, fsstat),
5012                                 &exception);
5013         } while (exception.retry);
5014         return err;
5015 }
5016
5017 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
5018                 struct nfs_fsinfo *fsinfo)
5019 {
5020         struct nfs4_fsinfo_arg args = {
5021                 .fh = fhandle,
5022                 .bitmask = server->attr_bitmask,
5023         };
5024         struct nfs4_fsinfo_res res = {
5025                 .fsinfo = fsinfo,
5026         };
5027         struct rpc_message msg = {
5028                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
5029                 .rpc_argp = &args,
5030                 .rpc_resp = &res,
5031         };
5032
5033         return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5034 }
5035
5036 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
5037 {
5038         struct nfs4_exception exception = {
5039                 .interruptible = true,
5040         };
5041         unsigned long now = jiffies;
5042         int err;
5043
5044         do {
5045                 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
5046                 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
5047                 if (err == 0) {
5048                         nfs4_set_lease_period(server->nfs_client,
5049                                         fsinfo->lease_time * HZ,
5050                                         now);
5051                         break;
5052                 }
5053                 err = nfs4_handle_exception(server, err, &exception);
5054         } while (exception.retry);
5055         return err;
5056 }
5057
5058 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
5059 {
5060         int error;
5061
5062         nfs_fattr_init(fsinfo->fattr);
5063         error = nfs4_do_fsinfo(server, fhandle, fsinfo);
5064         if (error == 0) {
5065                 /* block layout checks this! */
5066                 server->pnfs_blksize = fsinfo->blksize;
5067                 set_pnfs_layoutdriver(server, fhandle, fsinfo);
5068         }
5069
5070         return error;
5071 }
5072
5073 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
5074                 struct nfs_pathconf *pathconf)
5075 {
5076         struct nfs4_pathconf_arg args = {
5077                 .fh = fhandle,
5078                 .bitmask = server->attr_bitmask,
5079         };
5080         struct nfs4_pathconf_res res = {
5081                 .pathconf = pathconf,
5082         };
5083         struct rpc_message msg = {
5084                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
5085                 .rpc_argp = &args,
5086                 .rpc_resp = &res,
5087         };
5088
5089         /* None of the pathconf attributes are mandatory to implement */
5090         if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
5091                 memset(pathconf, 0, sizeof(*pathconf));
5092                 return 0;
5093         }
5094
5095         nfs_fattr_init(pathconf->fattr);
5096         return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
5097 }
5098
5099 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
5100                 struct nfs_pathconf *pathconf)
5101 {
5102         struct nfs4_exception exception = {
5103                 .interruptible = true,
5104         };
5105         int err;
5106
5107         do {
5108                 err = nfs4_handle_exception(server,
5109                                 _nfs4_proc_pathconf(server, fhandle, pathconf),
5110                                 &exception);
5111         } while (exception.retry);
5112         return err;
5113 }
5114
5115 int nfs4_set_rw_stateid(nfs4_stateid *stateid,
5116                 const struct nfs_open_context *ctx,
5117                 const struct nfs_lock_context *l_ctx,
5118                 fmode_t fmode)
5119 {
5120         return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL);
5121 }
5122 EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
5123
5124 static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
5125                 const struct nfs_open_context *ctx,
5126                 const struct nfs_lock_context *l_ctx,
5127                 fmode_t fmode)
5128 {
5129         nfs4_stateid _current_stateid;
5130
5131         /* If the current stateid represents a lost lock, then exit */
5132         if (nfs4_set_rw_stateid(&_current_stateid, ctx, l_ctx, fmode) == -EIO)
5133                 return true;
5134         return nfs4_stateid_match(stateid, &_current_stateid);
5135 }
5136
5137 static bool nfs4_error_stateid_expired(int err)
5138 {
5139         switch (err) {
5140         case -NFS4ERR_DELEG_REVOKED:
5141         case -NFS4ERR_ADMIN_REVOKED:
5142         case -NFS4ERR_BAD_STATEID:
5143         case -NFS4ERR_STALE_STATEID:
5144         case -NFS4ERR_OLD_STATEID:
5145         case -NFS4ERR_OPENMODE:
5146         case -NFS4ERR_EXPIRED:
5147                 return true;
5148         }
5149         return false;
5150 }
5151
5152 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
5153 {
5154         struct nfs_server *server = NFS_SERVER(hdr->inode);
5155
5156         trace_nfs4_read(hdr, task->tk_status);
5157         if (task->tk_status < 0) {
5158                 struct nfs4_exception exception = {
5159                         .inode = hdr->inode,
5160                         .state = hdr->args.context->state,
5161                         .stateid = &hdr->args.stateid,
5162                 };
5163                 task->tk_status = nfs4_async_handle_exception(task,
5164                                 server, task->tk_status, &exception);
5165                 if (exception.retry) {
5166                         rpc_restart_call_prepare(task);
5167                         return -EAGAIN;
5168                 }
5169         }
5170
5171         if (task->tk_status > 0)
5172                 renew_lease(server, hdr->timestamp);
5173         return 0;
5174 }
5175
5176 static bool nfs4_read_stateid_changed(struct rpc_task *task,
5177                 struct nfs_pgio_args *args)
5178 {
5179
5180         if (!nfs4_error_stateid_expired(task->tk_status) ||
5181                 nfs4_stateid_is_current(&args->stateid,
5182                                 args->context,
5183                                 args->lock_context,
5184                                 FMODE_READ))
5185                 return false;
5186         rpc_restart_call_prepare(task);
5187         return true;
5188 }
5189
5190 static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
5191 {
5192
5193         dprintk("--> %s\n", __func__);
5194
5195         if (!nfs4_sequence_done(task, &hdr->res.seq_res))
5196                 return -EAGAIN;
5197         if (nfs4_read_stateid_changed(task, &hdr->args))
5198                 return -EAGAIN;
5199         if (task->tk_status > 0)
5200                 nfs_invalidate_atime(hdr->inode);
5201         return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
5202                                     nfs4_read_done_cb(task, hdr);
5203 }
5204
5205 static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
5206                                  struct rpc_message *msg)
5207 {
5208         hdr->timestamp   = jiffies;
5209         if (!hdr->pgio_done_cb)
5210                 hdr->pgio_done_cb = nfs4_read_done_cb;
5211         msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
5212         nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0, 0);
5213 }
5214
5215 static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
5216                                       struct nfs_pgio_header *hdr)
5217 {
5218         if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client,
5219                         &hdr->args.seq_args,
5220                         &hdr->res.seq_res,
5221                         task))
5222                 return 0;
5223         if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
5224                                 hdr->args.lock_context,
5225                                 hdr->rw_mode) == -EIO)
5226                 return -EIO;
5227         if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
5228                 return -EIO;
5229         return 0;
5230 }
5231
5232 static int nfs4_write_done_cb(struct rpc_task *task,
5233                               struct nfs_pgio_header *hdr)
5234 {
5235         struct inode *inode = hdr->inode;
5236
5237         trace_nfs4_write(hdr, task->tk_status);
5238         if (task->tk_status < 0) {
5239                 struct nfs4_exception exception = {
5240                         .inode = hdr->inode,
5241                         .state = hdr->args.context->state,
5242                         .stateid = &hdr->args.stateid,
5243                 };
5244                 task->tk_status = nfs4_async_handle_exception(task,
5245                                 NFS_SERVER(inode), task->tk_status,
5246                                 &exception);
5247                 if (exception.retry) {
5248                         rpc_restart_call_prepare(task);
5249                         return -EAGAIN;
5250                 }
5251         }
5252         if (task->tk_status >= 0) {
5253                 renew_lease(NFS_SERVER(inode), hdr->timestamp);
5254                 nfs_writeback_update_inode(hdr);
5255         }
5256         return 0;
5257 }
5258
5259 static bool nfs4_write_stateid_changed(struct rpc_task *task,
5260                 struct nfs_pgio_args *args)
5261 {
5262
5263         if (!nfs4_error_stateid_expired(task->tk_status) ||
5264                 nfs4_stateid_is_current(&args->stateid,
5265                                 args->context,
5266                                 args->lock_context,
5267                                 FMODE_WRITE))
5268                 return false;
5269         rpc_restart_call_prepare(task);
5270         return true;
5271 }
5272
5273 static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
5274 {
5275         if (!nfs4_sequence_done(task, &hdr->res.seq_res))
5276                 return -EAGAIN;
5277         if (nfs4_write_stateid_changed(task, &hdr->args))
5278                 return -EAGAIN;
5279         return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
5280                 nfs4_write_done_cb(task, hdr);
5281 }
5282
5283 static
5284 bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
5285 {
5286         /* Don't request attributes for pNFS or O_DIRECT writes */
5287         if (hdr->ds_clp != NULL || hdr->dreq != NULL)
5288                 return false;
5289         /* Otherwise, request attributes if and only if we don't hold
5290          * a delegation
5291          */
5292         return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
5293 }
5294
5295 static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
5296                                   struct rpc_message *msg,
5297                                   struct rpc_clnt **clnt)
5298 {
5299         struct nfs_server *server = NFS_SERVER(hdr->inode);
5300
5301         if (!nfs4_write_need_cache_consistency_data(hdr)) {
5302                 hdr->args.bitmask = NULL;
5303                 hdr->res.fattr = NULL;
5304         } else
5305                 hdr->args.bitmask = server->cache_consistency_bitmask;
5306
5307         if (!hdr->pgio_done_cb)
5308                 hdr->pgio_done_cb = nfs4_write_done_cb;
5309         hdr->res.server = server;
5310         hdr->timestamp   = jiffies;
5311
5312         msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
5313         nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1, 0);
5314         nfs4_state_protect_write(server->nfs_client, clnt, msg, hdr);
5315 }
5316
5317 static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
5318 {
5319         nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client,
5320                         &data->args.seq_args,
5321                         &data->res.seq_res,
5322                         task);
5323 }
5324
5325 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
5326 {
5327         struct inode *inode = data->inode;
5328
5329         trace_nfs4_commit(data, task->tk_status);
5330         if (nfs4_async_handle_error(task, NFS_SERVER(inode),
5331                                     NULL, NULL) == -EAGAIN) {
5332                 rpc_restart_call_prepare(task);
5333                 return -EAGAIN;
5334         }
5335         return 0;
5336 }
5337
5338 static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
5339 {
5340         if (!nfs4_sequence_done(task, &data->res.seq_res))
5341                 return -EAGAIN;
5342         return data->commit_done_cb(task, data);
5343 }
5344
5345 static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg,
5346                                    struct rpc_clnt **clnt)
5347 {
5348         struct nfs_server *server = NFS_SERVER(data->inode);
5349
5350         if (data->commit_done_cb == NULL)
5351                 data->commit_done_cb = nfs4_commit_done_cb;
5352         data->res.server = server;
5353         msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
5354         nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0);
5355         nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_COMMIT, clnt, msg);
5356 }
5357
5358 static int _nfs4_proc_commit(struct file *dst, struct nfs_commitargs *args,
5359                                 struct nfs_commitres *res)
5360 {
5361         struct inode *dst_inode = file_inode(dst);
5362         struct nfs_server *server = NFS_SERVER(dst_inode);
5363         struct rpc_message msg = {
5364                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT],
5365                 .rpc_argp = args,
5366                 .rpc_resp = res,
5367         };
5368
5369         args->fh = NFS_FH(dst_inode);
5370         return nfs4_call_sync(server->client, server, &msg,
5371                         &args->seq_args, &res->seq_res, 1);
5372 }
5373
5374 int nfs4_proc_commit(struct file *dst, __u64 offset, __u32 count, struct nfs_commitres *res)
5375 {
5376         struct nfs_commitargs args = {
5377                 .offset = offset,
5378                 .count = count,
5379         };
5380         struct nfs_server *dst_server = NFS_SERVER(file_inode(dst));
5381         struct nfs4_exception exception = { };
5382         int status;
5383
5384         do {
5385                 status = _nfs4_proc_commit(dst, &args, res);
5386                 status = nfs4_handle_exception(dst_server, status, &exception);
5387         } while (exception.retry);
5388
5389         return status;
5390 }
5391
5392 struct nfs4_renewdata {
5393         struct nfs_client       *client;
5394         unsigned long           timestamp;
5395 };
5396
5397 /*
5398  * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
5399  * standalone procedure for queueing an asynchronous RENEW.
5400  */
5401 static void nfs4_renew_release(void *calldata)
5402 {
5403         struct nfs4_renewdata *data = calldata;
5404         struct nfs_client *clp = data->client;
5405
5406         if (refcount_read(&clp->cl_count) > 1)
5407                 nfs4_schedule_state_renewal(clp);
5408         nfs_put_client(clp);
5409         kfree(data);
5410 }
5411
5412 static void nfs4_renew_done(struct rpc_task *task, void *calldata)
5413 {
5414         struct nfs4_renewdata *data = calldata;
5415         struct nfs_client *clp = data->client;
5416         unsigned long timestamp = data->timestamp;
5417
5418         trace_nfs4_renew_async(clp, task->tk_status);
5419         switch (task->tk_status) {
5420         case 0:
5421                 break;
5422         case -NFS4ERR_LEASE_MOVED:
5423                 nfs4_schedule_lease_moved_recovery(clp);
5424                 break;
5425         default:
5426                 /* Unless we're shutting down, schedule state recovery! */
5427                 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
5428                         return;
5429                 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
5430                         nfs4_schedule_lease_recovery(clp);
5431                         return;
5432                 }
5433                 nfs4_schedule_path_down_recovery(clp);
5434         }
5435         do_renew_lease(clp, timestamp);
5436 }
5437
5438 static const struct rpc_call_ops nfs4_renew_ops = {
5439         .rpc_call_done = nfs4_renew_done,
5440         .rpc_release = nfs4_renew_release,
5441 };
5442
5443 static int nfs4_proc_async_renew(struct nfs_client *clp, const struct cred *cred, unsigned renew_flags)
5444 {
5445         struct rpc_message msg = {
5446                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
5447                 .rpc_argp       = clp,
5448                 .rpc_cred       = cred,
5449         };
5450         struct nfs4_renewdata *data;
5451
5452         if (renew_flags == 0)
5453                 return 0;
5454         if (!refcount_inc_not_zero(&clp->cl_count))
5455                 return -EIO;
5456         data = kmalloc(sizeof(*data), GFP_NOFS);
5457         if (data == NULL) {
5458                 nfs_put_client(clp);
5459                 return -ENOMEM;
5460         }
5461         data->client = clp;
5462         data->timestamp = jiffies;
5463         return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
5464                         &nfs4_renew_ops, data);
5465 }
5466
5467 static int nfs4_proc_renew(struct nfs_client *clp, const struct cred *cred)
5468 {
5469         struct rpc_message msg = {
5470                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
5471                 .rpc_argp       = clp,
5472                 .rpc_cred       = cred,
5473         };
5474         unsigned long now = jiffies;
5475         int status;
5476
5477         status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5478         if (status < 0)
5479                 return status;
5480         do_renew_lease(clp, now);
5481         return 0;
5482 }
5483
5484 static inline int nfs4_server_supports_acls(struct nfs_server *server)
5485 {
5486         return server->caps & NFS_CAP_ACLS;
5487 }
5488
5489 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
5490  * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
5491  * the stack.
5492  */
5493 #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
5494
5495 static int buf_to_pages_noslab(const void *buf, size_t buflen,
5496                 struct page **pages)
5497 {
5498         struct page *newpage, **spages;
5499         int rc = 0;
5500         size_t len;
5501         spages = pages;
5502
5503         do {
5504                 len = min_t(size_t, PAGE_SIZE, buflen);
5505                 newpage = alloc_page(GFP_KERNEL);
5506
5507                 if (newpage == NULL)
5508                         goto unwind;
5509                 memcpy(page_address(newpage), buf, len);
5510                 buf += len;
5511                 buflen -= len;
5512                 *pages++ = newpage;
5513                 rc++;
5514         } while (buflen != 0);
5515
5516         return rc;
5517
5518 unwind:
5519         for(; rc > 0; rc--)
5520                 __free_page(spages[rc-1]);
5521         return -ENOMEM;
5522 }
5523
5524 struct nfs4_cached_acl {
5525         int cached;
5526         size_t len;
5527         char data[0];
5528 };
5529
5530 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
5531 {
5532         struct nfs_inode *nfsi = NFS_I(inode);
5533
5534         spin_lock(&inode->i_lock);
5535         kfree(nfsi->nfs4_acl);
5536         nfsi->nfs4_acl = acl;
5537         spin_unlock(&inode->i_lock);
5538 }
5539
5540 static void nfs4_zap_acl_attr(struct inode *inode)
5541 {
5542         nfs4_set_cached_acl(inode, NULL);
5543 }
5544
5545 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
5546 {
5547         struct nfs_inode *nfsi = NFS_I(inode);
5548         struct nfs4_cached_acl *acl;
5549         int ret = -ENOENT;
5550
5551         spin_lock(&inode->i_lock);
5552         acl = nfsi->nfs4_acl;
5553         if (acl == NULL)
5554                 goto out;
5555         if (buf == NULL) /* user is just asking for length */
5556                 goto out_len;
5557         if (acl->cached == 0)
5558                 goto out;
5559         ret = -ERANGE; /* see getxattr(2) man page */
5560         if (acl->len > buflen)
5561                 goto out;
5562         memcpy(buf, acl->data, acl->len);
5563 out_len:
5564         ret = acl->len;
5565 out:
5566         spin_unlock(&inode->i_lock);
5567         return ret;
5568 }
5569
5570 static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len)
5571 {
5572         struct nfs4_cached_acl *acl;
5573         size_t buflen = sizeof(*acl) + acl_len;
5574
5575         if (buflen <= PAGE_SIZE) {
5576                 acl = kmalloc(buflen, GFP_KERNEL);
5577                 if (acl == NULL)
5578                         goto out;
5579                 acl->cached = 1;
5580                 _copy_from_pages(acl->data, pages, pgbase, acl_len);
5581         } else {
5582                 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
5583                 if (acl == NULL)
5584                         goto out;
5585                 acl->cached = 0;
5586         }
5587         acl->len = acl_len;
5588 out:
5589         nfs4_set_cached_acl(inode, acl);
5590 }
5591
5592 /*
5593  * The getxattr API returns the required buffer length when called with a
5594  * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
5595  * the required buf.  On a NULL buf, we send a page of data to the server
5596  * guessing that the ACL request can be serviced by a page. If so, we cache
5597  * up to the page of ACL data, and the 2nd call to getxattr is serviced by
5598  * the cache. If not so, we throw away the page, and cache the required
5599  * length. The next getxattr call will then produce another round trip to
5600  * the server, this time with the input buf of the required size.
5601  */
5602 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5603 {
5604         struct page **pages;
5605         struct nfs_getaclargs args = {
5606                 .fh = NFS_FH(inode),
5607                 .acl_len = buflen,
5608         };
5609         struct nfs_getaclres res = {
5610                 .acl_len = buflen,
5611         };
5612         struct rpc_message msg = {
5613                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
5614                 .rpc_argp = &args,
5615                 .rpc_resp = &res,
5616         };
5617         unsigned int npages;
5618         int ret = -ENOMEM, i;
5619         struct nfs_server *server = NFS_SERVER(inode);
5620
5621         if (buflen == 0)
5622                 buflen = server->rsize;
5623
5624         npages = DIV_ROUND_UP(buflen, PAGE_SIZE) + 1;
5625         pages = kmalloc_array(npages, sizeof(struct page *), GFP_NOFS);
5626         if (!pages)
5627                 return -ENOMEM;
5628
5629         args.acl_pages = pages;
5630
5631         for (i = 0; i < npages; i++) {
5632                 pages[i] = alloc_page(GFP_KERNEL);
5633                 if (!pages[i])
5634                         goto out_free;
5635         }
5636
5637         /* for decoding across pages */
5638         res.acl_scratch = alloc_page(GFP_KERNEL);
5639         if (!res.acl_scratch)
5640                 goto out_free;
5641
5642         args.acl_len = npages * PAGE_SIZE;
5643
5644         dprintk("%s  buf %p buflen %zu npages %d args.acl_len %zu\n",
5645                 __func__, buf, buflen, npages, args.acl_len);
5646         ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
5647                              &msg, &args.seq_args, &res.seq_res, 0);
5648         if (ret)
5649                 goto out_free;
5650
5651         /* Handle the case where the passed-in buffer is too short */
5652         if (res.acl_flags & NFS4_ACL_TRUNC) {
5653                 /* Did the user only issue a request for the acl length? */
5654                 if (buf == NULL)
5655                         goto out_ok;
5656                 ret = -ERANGE;
5657                 goto out_free;
5658         }
5659         nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
5660         if (buf) {
5661                 if (res.acl_len > buflen) {
5662                         ret = -ERANGE;
5663                         goto out_free;
5664                 }
5665                 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
5666         }
5667 out_ok:
5668         ret = res.acl_len;
5669 out_free:
5670         for (i = 0; i < npages; i++)
5671                 if (pages[i])
5672                         __free_page(pages[i]);
5673         if (res.acl_scratch)
5674                 __free_page(res.acl_scratch);
5675         kfree(pages);
5676         return ret;
5677 }
5678
5679 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5680 {
5681         struct nfs4_exception exception = {
5682                 .interruptible = true,
5683         };
5684         ssize_t ret;
5685         do {
5686                 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
5687                 trace_nfs4_get_acl(inode, ret);
5688                 if (ret >= 0)
5689                         break;
5690                 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
5691         } while (exception.retry);
5692         return ret;
5693 }
5694
5695 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
5696 {
5697         struct nfs_server *server = NFS_SERVER(inode);
5698         int ret;
5699
5700         if (!nfs4_server_supports_acls(server))
5701                 return -EOPNOTSUPP;
5702         ret = nfs_revalidate_inode(server, inode);
5703         if (ret < 0)
5704                 return ret;
5705         if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
5706                 nfs_zap_acl_cache(inode);
5707         ret = nfs4_read_cached_acl(inode, buf, buflen);
5708         if (ret != -ENOENT)
5709                 /* -ENOENT is returned if there is no ACL or if there is an ACL
5710                  * but no cached acl data, just the acl length */
5711                 return ret;
5712         return nfs4_get_acl_uncached(inode, buf, buflen);
5713 }
5714
5715 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5716 {
5717         struct nfs_server *server = NFS_SERVER(inode);
5718         struct page *pages[NFS4ACL_MAXPAGES];
5719         struct nfs_setaclargs arg = {
5720                 .fh             = NFS_FH(inode),
5721                 .acl_pages      = pages,
5722                 .acl_len        = buflen,
5723         };
5724         struct nfs_setaclres res;
5725         struct rpc_message msg = {
5726                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
5727                 .rpc_argp       = &arg,
5728                 .rpc_resp       = &res,
5729         };
5730         unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
5731         int ret, i;
5732
5733         if (!nfs4_server_supports_acls(server))
5734                 return -EOPNOTSUPP;
5735         if (npages > ARRAY_SIZE(pages))
5736                 return -ERANGE;
5737         i = buf_to_pages_noslab(buf, buflen, arg.acl_pages);
5738         if (i < 0)
5739                 return i;
5740         nfs4_inode_make_writeable(inode);
5741         ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5742
5743         /*
5744          * Free each page after tx, so the only ref left is
5745          * held by the network stack
5746          */
5747         for (; i > 0; i--)
5748                 put_page(pages[i-1]);
5749
5750         /*
5751          * Acl update can result in inode attribute update.
5752          * so mark the attribute cache invalid.
5753          */
5754         spin_lock(&inode->i_lock);
5755         NFS_I(inode)->cache_validity |= NFS_INO_INVALID_CHANGE
5756                 | NFS_INO_INVALID_CTIME
5757                 | NFS_INO_REVAL_FORCED;
5758         spin_unlock(&inode->i_lock);
5759         nfs_access_zap_cache(inode);
5760         nfs_zap_acl_cache(inode);
5761         return ret;
5762 }
5763
5764 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5765 {
5766         struct nfs4_exception exception = { };
5767         int err;
5768         do {
5769                 err = __nfs4_proc_set_acl(inode, buf, buflen);
5770                 trace_nfs4_set_acl(inode, err);
5771                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5772                                 &exception);
5773         } while (exception.retry);
5774         return err;
5775 }
5776
5777 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
5778 static int _nfs4_get_security_label(struct inode *inode, void *buf,
5779                                         size_t buflen)
5780 {
5781         struct nfs_server *server = NFS_SERVER(inode);
5782         struct nfs_fattr fattr;
5783         struct nfs4_label label = {0, 0, buflen, buf};
5784
5785         u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
5786         struct nfs4_getattr_arg arg = {
5787                 .fh             = NFS_FH(inode),
5788                 .bitmask        = bitmask,
5789         };
5790         struct nfs4_getattr_res res = {
5791                 .fattr          = &fattr,
5792                 .label          = &label,
5793                 .server         = server,
5794         };
5795         struct rpc_message msg = {
5796                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
5797                 .rpc_argp       = &arg,
5798                 .rpc_resp       = &res,
5799         };
5800         int ret;
5801
5802         nfs_fattr_init(&fattr);
5803
5804         ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
5805         if (ret)
5806                 return ret;
5807         if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
5808                 return -ENOENT;
5809         if (buflen < label.len)
5810                 return -ERANGE;
5811         return 0;
5812 }
5813
5814 static int nfs4_get_security_label(struct inode *inode, void *buf,
5815                                         size_t buflen)
5816 {
5817         struct nfs4_exception exception = {
5818                 .interruptible = true,
5819         };
5820         int err;
5821
5822         if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5823                 return -EOPNOTSUPP;
5824
5825         do {
5826                 err = _nfs4_get_security_label(inode, buf, buflen);
5827                 trace_nfs4_get_security_label(inode, err);
5828                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5829                                 &exception);
5830         } while (exception.retry);
5831         return err;
5832 }
5833
5834 static int _nfs4_do_set_security_label(struct inode *inode,
5835                 struct nfs4_label *ilabel,
5836                 struct nfs_fattr *fattr,
5837                 struct nfs4_label *olabel)
5838 {
5839
5840         struct iattr sattr = {0};
5841         struct nfs_server *server = NFS_SERVER(inode);
5842         const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
5843         struct nfs_setattrargs arg = {
5844                 .fh             = NFS_FH(inode),
5845                 .iap            = &sattr,
5846                 .server         = server,
5847                 .bitmask        = bitmask,
5848                 .label          = ilabel,
5849         };
5850         struct nfs_setattrres res = {
5851                 .fattr          = fattr,
5852                 .label          = olabel,
5853                 .server         = server,
5854         };
5855         struct rpc_message msg = {
5856                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
5857                 .rpc_argp       = &arg,
5858                 .rpc_resp       = &res,
5859         };
5860         int status;
5861
5862         nfs4_stateid_copy(&arg.stateid, &zero_stateid);
5863
5864         status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5865         if (status)
5866                 dprintk("%s failed: %d\n", __func__, status);
5867
5868         return status;
5869 }
5870
5871 static int nfs4_do_set_security_label(struct inode *inode,
5872                 struct nfs4_label *ilabel,
5873                 struct nfs_fattr *fattr,
5874                 struct nfs4_label *olabel)
5875 {
5876         struct nfs4_exception exception = { };
5877         int err;
5878
5879         do {
5880                 err = _nfs4_do_set_security_label(inode, ilabel,
5881                                 fattr, olabel);
5882                 trace_nfs4_set_security_label(inode, err);
5883                 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5884                                 &exception);
5885         } while (exception.retry);
5886         return err;
5887 }
5888
5889 static int
5890 nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
5891 {
5892         struct nfs4_label ilabel, *olabel = NULL;
5893         struct nfs_fattr fattr;
5894         int status;
5895
5896         if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5897                 return -EOPNOTSUPP;
5898
5899         nfs_fattr_init(&fattr);
5900
5901         ilabel.pi = 0;
5902         ilabel.lfs = 0;
5903         ilabel.label = (char *)buf;
5904         ilabel.len = buflen;
5905
5906         olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
5907         if (IS_ERR(olabel)) {
5908                 status = -PTR_ERR(olabel);
5909                 goto out;
5910         }
5911
5912         status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
5913         if (status == 0)
5914                 nfs_setsecurity(inode, &fattr, olabel);
5915
5916         nfs4_label_free(olabel);
5917 out:
5918         return status;
5919 }
5920 #endif  /* CONFIG_NFS_V4_SECURITY_LABEL */
5921
5922
5923 static void nfs4_init_boot_verifier(const struct nfs_client *clp,
5924                                     nfs4_verifier *bootverf)
5925 {
5926         __be32 verf[2];
5927
5928         if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
5929                 /* An impossible timestamp guarantees this value
5930                  * will never match a generated boot time. */
5931                 verf[0] = cpu_to_be32(U32_MAX);
5932                 verf[1] = cpu_to_be32(U32_MAX);
5933         } else {
5934                 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
5935                 u64 ns = ktime_to_ns(nn->boot_time);
5936
5937                 verf[0] = cpu_to_be32(ns >> 32);
5938                 verf[1] = cpu_to_be32(ns);
5939         }
5940         memcpy(bootverf->data, verf, sizeof(bootverf->data));
5941 }
5942
5943 static int
5944 nfs4_init_nonuniform_client_string(struct nfs_client *clp)
5945 {
5946         size_t len;
5947         char *str;
5948
5949         if (clp->cl_owner_id != NULL)
5950                 return 0;
5951
5952         rcu_read_lock();
5953         len = 14 +
5954                 strlen(clp->cl_rpcclient->cl_nodename) +
5955                 1 +
5956                 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
5957                 1;
5958         rcu_read_unlock();
5959         if (nfs4_client_id_uniquifier[0] != '\0')
5960                 len += strlen(nfs4_client_id_uniquifier) + 1;
5961         if (len > NFS4_OPAQUE_LIMIT + 1)
5962                 return -EINVAL;
5963
5964         /*
5965          * Since this string is allocated at mount time, and held until the
5966          * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5967          * about a memory-reclaim deadlock.
5968          */
5969         str = kmalloc(len, GFP_KERNEL);
5970         if (!str)
5971                 return -ENOMEM;
5972
5973         rcu_read_lock();
5974         if (nfs4_client_id_uniquifier[0] != '\0')
5975                 scnprintf(str, len, "Linux NFSv4.0 %s/%s/%s",
5976                           clp->cl_rpcclient->cl_nodename,
5977                           nfs4_client_id_uniquifier,
5978                           rpc_peeraddr2str(clp->cl_rpcclient,
5979                                            RPC_DISPLAY_ADDR));
5980         else
5981                 scnprintf(str, len, "Linux NFSv4.0 %s/%s",
5982                           clp->cl_rpcclient->cl_nodename,
5983                           rpc_peeraddr2str(clp->cl_rpcclient,
5984                                            RPC_DISPLAY_ADDR));
5985         rcu_read_unlock();
5986
5987         clp->cl_owner_id = str;
5988         return 0;
5989 }
5990
5991 static int
5992 nfs4_init_uniquifier_client_string(struct nfs_client *clp)
5993 {
5994         size_t len;
5995         char *str;
5996
5997         len = 10 + 10 + 1 + 10 + 1 +
5998                 strlen(nfs4_client_id_uniquifier) + 1 +
5999                 strlen(clp->cl_rpcclient->cl_nodename) + 1;
6000
6001         if (len > NFS4_OPAQUE_LIMIT + 1)
6002                 return -EINVAL;
6003
6004         /*
6005          * Since this string is allocated at mount time, and held until the
6006          * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
6007          * about a memory-reclaim deadlock.
6008          */
6009         str = kmalloc(len, GFP_KERNEL);
6010         if (!str)
6011                 return -ENOMEM;
6012
6013         scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
6014                         clp->rpc_ops->version, clp->cl_minorversion,
6015                         nfs4_client_id_uniquifier,
6016                         clp->cl_rpcclient->cl_nodename);
6017         clp->cl_owner_id = str;
6018         return 0;
6019 }
6020
6021 static int
6022 nfs4_init_uniform_client_string(struct nfs_client *clp)
6023 {
6024         size_t len;
6025         char *str;
6026
6027         if (clp->cl_owner_id != NULL)
6028                 return 0;
6029
6030         if (nfs4_client_id_uniquifier[0] != '\0')
6031                 return nfs4_init_uniquifier_client_string(clp);
6032
6033         len = 10 + 10 + 1 + 10 + 1 +
6034                 strlen(clp->cl_rpcclient->cl_nodename) + 1;
6035
6036         if (len > NFS4_OPAQUE_LIMIT + 1)
6037                 return -EINVAL;
6038
6039         /*
6040          * Since this string is allocated at mount time, and held until the
6041          * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
6042          * about a memory-reclaim deadlock.
6043          */
6044         str = kmalloc(len, GFP_KERNEL);
6045         if (!str)
6046                 return -ENOMEM;
6047
6048         scnprintf(str, len, "Linux NFSv%u.%u %s",
6049                         clp->rpc_ops->version, clp->cl_minorversion,
6050                         clp->cl_rpcclient->cl_nodename);
6051         clp->cl_owner_id = str;
6052         return 0;
6053 }
6054
6055 /*
6056  * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
6057  * services.  Advertise one based on the address family of the
6058  * clientaddr.
6059  */
6060 static unsigned int
6061 nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
6062 {
6063         if (strchr(clp->cl_ipaddr, ':') != NULL)
6064                 return scnprintf(buf, len, "tcp6");
6065         else
6066                 return scnprintf(buf, len, "tcp");
6067 }
6068
6069 static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
6070 {
6071         struct nfs4_setclientid *sc = calldata;
6072
6073         if (task->tk_status == 0)
6074                 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
6075 }
6076
6077 static const struct rpc_call_ops nfs4_setclientid_ops = {
6078         .rpc_call_done = nfs4_setclientid_done,
6079 };
6080
6081 /**
6082  * nfs4_proc_setclientid - Negotiate client ID
6083  * @clp: state data structure
6084  * @program: RPC program for NFSv4 callback service
6085  * @port: IP port number for NFS4 callback service
6086  * @cred: credential to use for this call
6087  * @res: where to place the result
6088  *
6089  * Returns zero, a negative errno, or a negative NFS4ERR status code.
6090  */
6091 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
6092                 unsigned short port, const struct cred *cred,
6093                 struct nfs4_setclientid_res *res)
6094 {
6095         nfs4_verifier sc_verifier;
6096         struct nfs4_setclientid setclientid = {
6097                 .sc_verifier = &sc_verifier,
6098                 .sc_prog = program,
6099                 .sc_clnt = clp,
6100         };
6101         struct rpc_message msg = {
6102                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
6103                 .rpc_argp = &setclientid,
6104                 .rpc_resp = res,
6105                 .rpc_cred = cred,
6106         };
6107         struct rpc_task_setup task_setup_data = {
6108                 .rpc_client = clp->cl_rpcclient,
6109                 .rpc_message = &msg,
6110                 .callback_ops = &nfs4_setclientid_ops,
6111                 .callback_data = &setclientid,
6112                 .flags = RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN,
6113         };
6114         int status;
6115
6116         /* nfs_client_id4 */
6117         nfs4_init_boot_verifier(clp, &sc_verifier);
6118
6119         if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
6120                 status = nfs4_init_uniform_client_string(clp);
6121         else
6122                 status = nfs4_init_nonuniform_client_string(clp);
6123
6124         if (status)
6125                 goto out;
6126
6127         /* cb_client4 */
6128         setclientid.sc_netid_len =
6129                                 nfs4_init_callback_netid(clp,
6130                                                 setclientid.sc_netid,
6131                                                 sizeof(setclientid.sc_netid));
6132         setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
6133                                 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
6134                                 clp->cl_ipaddr, port >> 8, port & 255);
6135
6136         dprintk("NFS call  setclientid auth=%s, '%s'\n",
6137                 clp->cl_rpcclient->cl_auth->au_ops->au_name,
6138                 clp->cl_owner_id);
6139
6140         status = nfs4_call_sync_custom(&task_setup_data);
6141         if (setclientid.sc_cred) {
6142                 kfree(clp->cl_acceptor);
6143                 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
6144                 put_rpccred(setclientid.sc_cred);
6145         }
6146 out:
6147         trace_nfs4_setclientid(clp, status);
6148         dprintk("NFS reply setclientid: %d\n", status);
6149         return status;
6150 }
6151
6152 /**
6153  * nfs4_proc_setclientid_confirm - Confirm client ID
6154  * @clp: state data structure
6155  * @arg: result of a previous SETCLIENTID
6156  * @cred: credential to use for this call
6157  *
6158  * Returns zero, a negative errno, or a negative NFS4ERR status code.
6159  */
6160 int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
6161                 struct nfs4_setclientid_res *arg,
6162                 const struct cred *cred)
6163 {
6164         struct rpc_message msg = {
6165                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
6166                 .rpc_argp = arg,
6167                 .rpc_cred = cred,
6168         };
6169         int status;
6170
6171         dprintk("NFS call  setclientid_confirm auth=%s, (client ID %llx)\n",
6172                 clp->cl_rpcclient->cl_auth->au_ops->au_name,
6173                 clp->cl_clientid);
6174         status = rpc_call_sync(clp->cl_rpcclient, &msg,
6175                                RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
6176         trace_nfs4_setclientid_confirm(clp, status);
6177         dprintk("NFS reply setclientid_confirm: %d\n", status);
6178         return status;
6179 }
6180
6181 struct nfs4_delegreturndata {
6182         struct nfs4_delegreturnargs args;
6183         struct nfs4_delegreturnres res;
6184         struct nfs_fh fh;
6185         nfs4_stateid stateid;
6186         unsigned long timestamp;
6187         struct {
6188                 struct nfs4_layoutreturn_args arg;
6189                 struct nfs4_layoutreturn_res res;
6190                 struct nfs4_xdr_opaque_data ld_private;
6191                 u32 roc_barrier;
6192                 bool roc;
6193         } lr;
6194         struct nfs_fattr fattr;
6195         int rpc_status;
6196         struct inode *inode;
6197 };
6198
6199 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
6200 {
6201         struct nfs4_delegreturndata *data = calldata;
6202         struct nfs4_exception exception = {
6203                 .inode = data->inode,
6204                 .stateid = &data->stateid,
6205         };
6206
6207         if (!nfs4_sequence_done(task, &data->res.seq_res))
6208                 return;
6209
6210         trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
6211
6212         /* Handle Layoutreturn errors */
6213         if (pnfs_roc_done(task, data->inode,
6214                                 &data->args.lr_args,
6215                                 &data->res.lr_res,
6216                                 &data->res.lr_ret) == -EAGAIN)
6217                 goto out_restart;
6218
6219         switch (task->tk_status) {
6220         case 0:
6221                 renew_lease(data->res.server, data->timestamp);
6222                 break;
6223         case -NFS4ERR_ADMIN_REVOKED:
6224         case -NFS4ERR_DELEG_REVOKED:
6225         case -NFS4ERR_EXPIRED:
6226                 nfs4_free_revoked_stateid(data->res.server,
6227                                 data->args.stateid,
6228                                 task->tk_msg.rpc_cred);
6229                 /* Fallthrough */
6230         case -NFS4ERR_BAD_STATEID:
6231         case -NFS4ERR_STALE_STATEID:
6232                 task->tk_status = 0;
6233                 break;
6234         case -NFS4ERR_OLD_STATEID:
6235                 if (!nfs4_refresh_delegation_stateid(&data->stateid, data->inode))
6236                         nfs4_stateid_seqid_inc(&data->stateid);
6237                 if (data->args.bitmask) {
6238                         data->args.bitmask = NULL;
6239                         data->res.fattr = NULL;
6240                 }
6241                 goto out_restart;
6242         case -NFS4ERR_ACCESS:
6243                 if (data->args.bitmask) {
6244                         data->args.bitmask = NULL;
6245                         data->res.fattr = NULL;
6246                         goto out_restart;
6247                 }
6248                 /* Fallthrough */
6249         default:
6250                 task->tk_status = nfs4_async_handle_exception(task,
6251                                 data->res.server, task->tk_status,
6252                                 &exception);
6253                 if (exception.retry)
6254                         goto out_restart;
6255         }
6256         nfs_delegation_mark_returned(data->inode, data->args.stateid);
6257         data->rpc_status = task->tk_status;
6258         return;
6259 out_restart:
6260         task->tk_status = 0;
6261         rpc_restart_call_prepare(task);
6262 }
6263
6264 static void nfs4_delegreturn_release(void *calldata)
6265 {
6266         struct nfs4_delegreturndata *data = calldata;
6267         struct inode *inode = data->inode;
6268
6269         if (inode) {
6270                 if (data->lr.roc)
6271                         pnfs_roc_release(&data->lr.arg, &data->lr.res,
6272                                         data->res.lr_ret);
6273                 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
6274                 nfs_iput_and_deactive(inode);
6275         }
6276         kfree(calldata);
6277 }
6278
6279 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
6280 {
6281         struct nfs4_delegreturndata *d_data;
6282         struct pnfs_layout_hdr *lo;
6283
6284         d_data = (struct nfs4_delegreturndata *)data;
6285
6286         if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task)) {
6287                 nfs4_sequence_done(task, &d_data->res.seq_res);
6288                 return;
6289         }
6290
6291         lo = d_data->args.lr_args ? d_data->args.lr_args->layout : NULL;
6292         if (lo && !pnfs_layout_is_valid(lo)) {
6293                 d_data->args.lr_args = NULL;
6294                 d_data->res.lr_res = NULL;
6295         }
6296
6297         nfs4_setup_sequence(d_data->res.server->nfs_client,
6298                         &d_data->args.seq_args,
6299                         &d_data->res.seq_res,
6300                         task);
6301 }
6302
6303 static const struct rpc_call_ops nfs4_delegreturn_ops = {
6304         .rpc_call_prepare = nfs4_delegreturn_prepare,
6305         .rpc_call_done = nfs4_delegreturn_done,
6306         .rpc_release = nfs4_delegreturn_release,
6307 };
6308
6309 static int _nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid, int issync)
6310 {
6311         struct nfs4_delegreturndata *data;
6312         struct nfs_server *server = NFS_SERVER(inode);
6313         struct rpc_task *task;
6314         struct rpc_message msg = {
6315                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
6316                 .rpc_cred = cred,
6317         };
6318         struct rpc_task_setup task_setup_data = {
6319                 .rpc_client = server->client,
6320                 .rpc_message = &msg,
6321                 .callback_ops = &nfs4_delegreturn_ops,
6322                 .flags = RPC_TASK_ASYNC,
6323         };
6324         int status = 0;
6325
6326         data = kzalloc(sizeof(*data), GFP_NOFS);
6327         if (data == NULL)
6328                 return -ENOMEM;
6329         nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0);
6330
6331         nfs4_state_protect(server->nfs_client,
6332                         NFS_SP4_MACH_CRED_CLEANUP,
6333                         &task_setup_data.rpc_client, &msg);
6334
6335         data->args.fhandle = &data->fh;
6336         data->args.stateid = &data->stateid;
6337         data->args.bitmask = server->cache_consistency_bitmask;
6338         nfs_copy_fh(&data->fh, NFS_FH(inode));
6339         nfs4_stateid_copy(&data->stateid, stateid);
6340         data->res.fattr = &data->fattr;
6341         data->res.server = server;
6342         data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
6343         data->lr.arg.ld_private = &data->lr.ld_private;
6344         nfs_fattr_init(data->res.fattr);
6345         data->timestamp = jiffies;
6346         data->rpc_status = 0;
6347         data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res, cred);
6348         data->inode = nfs_igrab_and_active(inode);
6349         if (data->inode) {
6350                 if (data->lr.roc) {
6351                         data->args.lr_args = &data->lr.arg;
6352                         data->res.lr_res = &data->lr.res;
6353                 }
6354         } else if (data->lr.roc) {
6355                 pnfs_roc_release(&data->lr.arg, &data->lr.res, 0);
6356                 data->lr.roc = false;
6357         }
6358
6359         task_setup_data.callback_data = data;
6360         msg.rpc_argp = &data->args;
6361         msg.rpc_resp = &data->res;
6362         task = rpc_run_task(&task_setup_data);
6363         if (IS_ERR(task))
6364                 return PTR_ERR(task);
6365         if (!issync)
6366                 goto out;
6367         status = rpc_wait_for_completion_task(task);
6368         if (status != 0)
6369                 goto out;
6370         status = data->rpc_status;
6371 out:
6372         rpc_put_task(task);
6373         return status;
6374 }
6375
6376 int nfs4_proc_delegreturn(struct inode *inode, const struct cred *cred, const nfs4_stateid *stateid, int issync)
6377 {
6378         struct nfs_server *server = NFS_SERVER(inode);
6379         struct nfs4_exception exception = { };
6380         int err;
6381         do {
6382                 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
6383                 trace_nfs4_delegreturn(inode, stateid, err);
6384                 switch (err) {
6385                         case -NFS4ERR_STALE_STATEID:
6386                         case -NFS4ERR_EXPIRED:
6387                         case 0:
6388                                 return 0;
6389                 }
6390                 err = nfs4_handle_exception(server, err, &exception);
6391         } while (exception.retry);
6392         return err;
6393 }
6394
6395 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6396 {
6397         struct inode *inode = state->inode;
6398         struct nfs_server *server = NFS_SERVER(inode);
6399         struct nfs_client *clp = server->nfs_client;
6400         struct nfs_lockt_args arg = {
6401                 .fh = NFS_FH(inode),
6402                 .fl = request,
6403         };
6404         struct nfs_lockt_res res = {
6405                 .denied = request,
6406         };
6407         struct rpc_message msg = {
6408                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
6409                 .rpc_argp       = &arg,
6410                 .rpc_resp       = &res,
6411                 .rpc_cred       = state->owner->so_cred,
6412         };
6413         struct nfs4_lock_state *lsp;
6414         int status;
6415
6416         arg.lock_owner.clientid = clp->cl_clientid;
6417         status = nfs4_set_lock_state(state, request);
6418         if (status != 0)
6419                 goto out;
6420         lsp = request->fl_u.nfs4_fl.owner;
6421         arg.lock_owner.id = lsp->ls_seqid.owner_id;
6422         arg.lock_owner.s_dev = server->s_dev;
6423         status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
6424         switch (status) {
6425                 case 0:
6426                         request->fl_type = F_UNLCK;
6427                         break;
6428                 case -NFS4ERR_DENIED:
6429                         status = 0;
6430         }
6431         request->fl_ops->fl_release_private(request);
6432         request->fl_ops = NULL;
6433 out:
6434         return status;
6435 }
6436
6437 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6438 {
6439         struct nfs4_exception exception = {
6440                 .interruptible = true,
6441         };
6442         int err;
6443
6444         do {
6445                 err = _nfs4_proc_getlk(state, cmd, request);
6446                 trace_nfs4_get_lock(request, state, cmd, err);
6447                 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
6448                                 &exception);
6449         } while (exception.retry);
6450         return err;
6451 }
6452
6453 /*
6454  * Update the seqid of a lock stateid after receiving
6455  * NFS4ERR_OLD_STATEID
6456  */
6457 static bool nfs4_refresh_lock_old_stateid(nfs4_stateid *dst,
6458                 struct nfs4_lock_state *lsp)
6459 {
6460         struct nfs4_state *state = lsp->ls_state;
6461         bool ret = false;
6462
6463         spin_lock(&state->state_lock);
6464         if (!nfs4_stateid_match_other(dst, &lsp->ls_stateid))
6465                 goto out;
6466         if (!nfs4_stateid_is_newer(&lsp->ls_stateid, dst))
6467                 nfs4_stateid_seqid_inc(dst);
6468         else
6469                 dst->seqid = lsp->ls_stateid.seqid;
6470         ret = true;
6471 out:
6472         spin_unlock(&state->state_lock);
6473         return ret;
6474 }
6475
6476 static bool nfs4_sync_lock_stateid(nfs4_stateid *dst,
6477                 struct nfs4_lock_state *lsp)
6478 {
6479         struct nfs4_state *state = lsp->ls_state;
6480         bool ret;
6481
6482         spin_lock(&state->state_lock);
6483         ret = !nfs4_stateid_match_other(dst, &lsp->ls_stateid);
6484         nfs4_stateid_copy(dst, &lsp->ls_stateid);
6485         spin_unlock(&state->state_lock);
6486         return ret;
6487 }
6488
6489 struct nfs4_unlockdata {
6490         struct nfs_locku_args arg;
6491         struct nfs_locku_res res;
6492         struct nfs4_lock_state *lsp;
6493         struct nfs_open_context *ctx;
6494         struct nfs_lock_context *l_ctx;
6495         struct file_lock fl;
6496         struct nfs_server *server;
6497         unsigned long timestamp;
6498 };
6499
6500 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
6501                 struct nfs_open_context *ctx,
6502                 struct nfs4_lock_state *lsp,
6503                 struct nfs_seqid *seqid)
6504 {
6505         struct nfs4_unlockdata *p;
6506         struct nfs4_state *state = lsp->ls_state;
6507         struct inode *inode = state->inode;
6508
6509         p = kzalloc(sizeof(*p), GFP_NOFS);
6510         if (p == NULL)
6511                 return NULL;
6512         p->arg.fh = NFS_FH(inode);
6513         p->arg.fl = &p->fl;
6514         p->arg.seqid = seqid;
6515         p->res.seqid = seqid;
6516         p->lsp = lsp;
6517         /* Ensure we don't close file until we're done freeing locks! */
6518         p->ctx = get_nfs_open_context(ctx);
6519         p->l_ctx = nfs_get_lock_context(ctx);
6520         locks_init_lock(&p->fl);
6521         locks_copy_lock(&p->fl, fl);
6522         p->server = NFS_SERVER(inode);
6523         spin_lock(&state->state_lock);
6524         nfs4_stateid_copy(&p->arg.stateid, &lsp->ls_stateid);
6525         spin_unlock(&state->state_lock);
6526         return p;
6527 }
6528
6529 static void nfs4_locku_release_calldata(void *data)
6530 {
6531         struct nfs4_unlockdata *calldata = data;
6532         nfs_free_seqid(calldata->arg.seqid);
6533         nfs4_put_lock_state(calldata->lsp);
6534         nfs_put_lock_context(calldata->l_ctx);
6535         put_nfs_open_context(calldata->ctx);
6536         kfree(calldata);
6537 }
6538
6539 static void nfs4_locku_done(struct rpc_task *task, void *data)
6540 {
6541         struct nfs4_unlockdata *calldata = data;
6542         struct nfs4_exception exception = {
6543                 .inode = calldata->lsp->ls_state->inode,
6544                 .stateid = &calldata->arg.stateid,
6545         };
6546
6547         if (!nfs4_sequence_done(task, &calldata->res.seq_res))
6548                 return;
6549         switch (task->tk_status) {
6550                 case 0:
6551                         renew_lease(calldata->server, calldata->timestamp);
6552                         locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
6553                         if (nfs4_update_lock_stateid(calldata->lsp,
6554                                         &calldata->res.stateid))
6555                                 break;
6556                         /* Fall through */
6557                 case -NFS4ERR_ADMIN_REVOKED:
6558                 case -NFS4ERR_EXPIRED:
6559                         nfs4_free_revoked_stateid(calldata->server,
6560                                         &calldata->arg.stateid,
6561                                         task->tk_msg.rpc_cred);
6562                         /* Fall through */
6563                 case -NFS4ERR_BAD_STATEID:
6564                 case -NFS4ERR_STALE_STATEID:
6565                         if (nfs4_sync_lock_stateid(&calldata->arg.stateid,
6566                                                 calldata->lsp))
6567                                 rpc_restart_call_prepare(task);
6568                         break;
6569                 case -NFS4ERR_OLD_STATEID:
6570                         if (nfs4_refresh_lock_old_stateid(&calldata->arg.stateid,
6571                                                 calldata->lsp))
6572                                 rpc_restart_call_prepare(task);
6573                         break;
6574                 default:
6575                         task->tk_status = nfs4_async_handle_exception(task,
6576                                         calldata->server, task->tk_status,
6577                                         &exception);
6578                         if (exception.retry)
6579                                 rpc_restart_call_prepare(task);
6580         }
6581         nfs_release_seqid(calldata->arg.seqid);
6582 }
6583
6584 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
6585 {
6586         struct nfs4_unlockdata *calldata = data;
6587
6588         if (test_bit(NFS_CONTEXT_UNLOCK, &calldata->l_ctx->open_context->flags) &&
6589                 nfs_async_iocounter_wait(task, calldata->l_ctx))
6590                 return;
6591
6592         if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
6593                 goto out_wait;
6594         if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
6595                 /* Note: exit _without_ running nfs4_locku_done */
6596                 goto out_no_action;
6597         }
6598         calldata->timestamp = jiffies;
6599         if (nfs4_setup_sequence(calldata->server->nfs_client,
6600                                 &calldata->arg.seq_args,
6601                                 &calldata->res.seq_res,
6602                                 task) != 0)
6603                 nfs_release_seqid(calldata->arg.seqid);
6604         return;
6605 out_no_action:
6606         task->tk_action = NULL;
6607 out_wait:
6608         nfs4_sequence_done(task, &calldata->res.seq_res);
6609 }
6610
6611 static const struct rpc_call_ops nfs4_locku_ops = {
6612         .rpc_call_prepare = nfs4_locku_prepare,
6613         .rpc_call_done = nfs4_locku_done,
6614         .rpc_release = nfs4_locku_release_calldata,
6615 };
6616
6617 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
6618                 struct nfs_open_context *ctx,
6619                 struct nfs4_lock_state *lsp,
6620                 struct nfs_seqid *seqid)
6621 {
6622         struct nfs4_unlockdata *data;
6623         struct rpc_message msg = {
6624                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
6625                 .rpc_cred = ctx->cred,
6626         };
6627         struct rpc_task_setup task_setup_data = {
6628                 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
6629                 .rpc_message = &msg,
6630                 .callback_ops = &nfs4_locku_ops,
6631                 .workqueue = nfsiod_workqueue,
6632                 .flags = RPC_TASK_ASYNC,
6633         };
6634
6635         nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
6636                 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
6637
6638         /* Ensure this is an unlock - when canceling a lock, the
6639          * canceled lock is passed in, and it won't be an unlock.
6640          */
6641         fl->fl_type = F_UNLCK;
6642         if (fl->fl_flags & FL_CLOSE)
6643                 set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags);
6644
6645         data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
6646         if (data == NULL) {
6647                 nfs_free_seqid(seqid);
6648                 return ERR_PTR(-ENOMEM);
6649         }
6650
6651         nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1, 0);
6652         msg.rpc_argp = &data->arg;
6653         msg.rpc_resp = &data->res;
6654         task_setup_data.callback_data = data;
6655         return rpc_run_task(&task_setup_data);
6656 }
6657
6658 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
6659 {
6660         struct inode *inode = state->inode;
6661         struct nfs4_state_owner *sp = state->owner;
6662         struct nfs_inode *nfsi = NFS_I(inode);
6663         struct nfs_seqid *seqid;
6664         struct nfs4_lock_state *lsp;
6665         struct rpc_task *task;
6666         struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
6667         int status = 0;
6668         unsigned char fl_flags = request->fl_flags;
6669
6670         status = nfs4_set_lock_state(state, request);
6671         /* Unlock _before_ we do the RPC call */
6672         request->fl_flags |= FL_EXISTS;
6673         /* Exclude nfs_delegation_claim_locks() */
6674         mutex_lock(&sp->so_delegreturn_mutex);
6675         /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
6676         down_read(&nfsi->rwsem);
6677         if (locks_lock_inode_wait(inode, request) == -ENOENT) {
6678                 up_read(&nfsi->rwsem);
6679                 mutex_unlock(&sp->so_delegreturn_mutex);
6680                 goto out;
6681         }
6682         up_read(&nfsi->rwsem);
6683         mutex_unlock(&sp->so_delegreturn_mutex);
6684         if (status != 0)
6685                 goto out;
6686         /* Is this a delegated lock? */
6687         lsp = request->fl_u.nfs4_fl.owner;
6688         if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
6689                 goto out;
6690         alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
6691         seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
6692         status = -ENOMEM;
6693         if (IS_ERR(seqid))
6694                 goto out;
6695         task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
6696         status = PTR_ERR(task);
6697         if (IS_ERR(task))
6698                 goto out;
6699         status = rpc_wait_for_completion_task(task);
6700         rpc_put_task(task);
6701 out:
6702         request->fl_flags = fl_flags;
6703         trace_nfs4_unlock(request, state, F_SETLK, status);
6704         return status;
6705 }
6706
6707 struct nfs4_lockdata {
6708         struct nfs_lock_args arg;
6709         struct nfs_lock_res res;
6710         struct nfs4_lock_state *lsp;
6711         struct nfs_open_context *ctx;
6712         struct file_lock fl;
6713         unsigned long timestamp;
6714         int rpc_status;
6715         int cancelled;
6716         struct nfs_server *server;
6717 };
6718
6719 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
6720                 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
6721                 gfp_t gfp_mask)
6722 {
6723         struct nfs4_lockdata *p;
6724         struct inode *inode = lsp->ls_state->inode;
6725         struct nfs_server *server = NFS_SERVER(inode);
6726         struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
6727
6728         p = kzalloc(sizeof(*p), gfp_mask);
6729         if (p == NULL)
6730                 return NULL;
6731
6732         p->arg.fh = NFS_FH(inode);
6733         p->arg.fl = &p->fl;
6734         p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
6735         if (IS_ERR(p->arg.open_seqid))
6736                 goto out_free;
6737         alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
6738         p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
6739         if (IS_ERR(p->arg.lock_seqid))
6740                 goto out_free_seqid;
6741         p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
6742         p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
6743         p->arg.lock_owner.s_dev = server->s_dev;
6744         p->res.lock_seqid = p->arg.lock_seqid;
6745         p->lsp = lsp;
6746         p->server = server;
6747         p->ctx = get_nfs_open_context(ctx);
6748         locks_init_lock(&p->fl);
6749         locks_copy_lock(&p->fl, fl);
6750         return p;
6751 out_free_seqid:
6752         nfs_free_seqid(p->arg.open_seqid);
6753 out_free:
6754         kfree(p);
6755         return NULL;
6756 }
6757
6758 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
6759 {
6760         struct nfs4_lockdata *data = calldata;
6761         struct nfs4_state *state = data->lsp->ls_state;
6762
6763         dprintk("%s: begin!\n", __func__);
6764         if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
6765                 goto out_wait;
6766         /* Do we need to do an open_to_lock_owner? */
6767         if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
6768                 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
6769                         goto out_release_lock_seqid;
6770                 }
6771                 nfs4_stateid_copy(&data->arg.open_stateid,
6772                                 &state->open_stateid);
6773                 data->arg.new_lock_owner = 1;
6774                 data->res.open_seqid = data->arg.open_seqid;
6775         } else {
6776                 data->arg.new_lock_owner = 0;
6777                 nfs4_stateid_copy(&data->arg.lock_stateid,
6778                                 &data->lsp->ls_stateid);
6779         }
6780         if (!nfs4_valid_open_stateid(state)) {
6781                 data->rpc_status = -EBADF;
6782                 task->tk_action = NULL;
6783                 goto out_release_open_seqid;
6784         }
6785         data->timestamp = jiffies;
6786         if (nfs4_setup_sequence(data->server->nfs_client,
6787                                 &data->arg.seq_args,
6788                                 &data->res.seq_res,
6789                                 task) == 0)
6790                 return;
6791 out_release_open_seqid:
6792         nfs_release_seqid(data->arg.open_seqid);
6793 out_release_lock_seqid:
6794         nfs_release_seqid(data->arg.lock_seqid);
6795 out_wait:
6796         nfs4_sequence_done(task, &data->res.seq_res);
6797         dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
6798 }
6799
6800 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
6801 {
6802         struct nfs4_lockdata *data = calldata;
6803         struct nfs4_lock_state *lsp = data->lsp;
6804
6805         dprintk("%s: begin!\n", __func__);
6806
6807         if (!nfs4_sequence_done(task, &data->res.seq_res))
6808                 return;
6809
6810         data->rpc_status = task->tk_status;
6811         switch (task->tk_status) {
6812         case 0:
6813                 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
6814                                 data->timestamp);
6815                 if (data->arg.new_lock && !data->cancelled) {
6816                         data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
6817                         if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0)
6818                                 goto out_restart;
6819                 }
6820                 if (data->arg.new_lock_owner != 0) {
6821                         nfs_confirm_seqid(&lsp->ls_seqid, 0);
6822                         nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
6823                         set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
6824                 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
6825                         goto out_restart;
6826                 break;
6827         case -NFS4ERR_BAD_STATEID:
6828         case -NFS4ERR_OLD_STATEID:
6829         case -NFS4ERR_STALE_STATEID:
6830         case -NFS4ERR_EXPIRED:
6831                 if (data->arg.new_lock_owner != 0) {
6832                         if (!nfs4_stateid_match(&data->arg.open_stateid,
6833                                                 &lsp->ls_state->open_stateid))
6834                                 goto out_restart;
6835                 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
6836                                                 &lsp->ls_stateid))
6837                                 goto out_restart;
6838         }
6839 out_done:
6840         dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
6841         return;
6842 out_restart:
6843         if (!data->cancelled)
6844                 rpc_restart_call_prepare(task);
6845         goto out_done;
6846 }
6847
6848 static void nfs4_lock_release(void *calldata)
6849 {
6850         struct nfs4_lockdata *data = calldata;
6851
6852         dprintk("%s: begin!\n", __func__);
6853         nfs_free_seqid(data->arg.open_seqid);
6854         if (data->cancelled && data->rpc_status == 0) {
6855                 struct rpc_task *task;
6856                 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
6857                                 data->arg.lock_seqid);
6858                 if (!IS_ERR(task))
6859                         rpc_put_task_async(task);
6860                 dprintk("%s: cancelling lock!\n", __func__);
6861         } else
6862                 nfs_free_seqid(data->arg.lock_seqid);
6863         nfs4_put_lock_state(data->lsp);
6864         put_nfs_open_context(data->ctx);
6865         kfree(data);
6866         dprintk("%s: done!\n", __func__);
6867 }
6868
6869 static const struct rpc_call_ops nfs4_lock_ops = {
6870         .rpc_call_prepare = nfs4_lock_prepare,
6871         .rpc_call_done = nfs4_lock_done,
6872         .rpc_release = nfs4_lock_release,
6873 };
6874
6875 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
6876 {
6877         switch (error) {
6878         case -NFS4ERR_ADMIN_REVOKED:
6879         case -NFS4ERR_EXPIRED:
6880         case -NFS4ERR_BAD_STATEID:
6881                 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
6882                 if (new_lock_owner != 0 ||
6883                    test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
6884                         nfs4_schedule_stateid_recovery(server, lsp->ls_state);
6885                 break;
6886         case -NFS4ERR_STALE_STATEID:
6887                 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
6888                 nfs4_schedule_lease_recovery(server->nfs_client);
6889         }
6890 }
6891
6892 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
6893 {
6894         struct nfs4_lockdata *data;
6895         struct rpc_task *task;
6896         struct rpc_message msg = {
6897                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
6898                 .rpc_cred = state->owner->so_cred,
6899         };
6900         struct rpc_task_setup task_setup_data = {
6901                 .rpc_client = NFS_CLIENT(state->inode),
6902                 .rpc_message = &msg,
6903                 .callback_ops = &nfs4_lock_ops,
6904                 .workqueue = nfsiod_workqueue,
6905                 .flags = RPC_TASK_ASYNC,
6906         };
6907         int ret;
6908
6909         dprintk("%s: begin!\n", __func__);
6910         data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
6911                         fl->fl_u.nfs4_fl.owner,
6912                         recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
6913         if (data == NULL)
6914                 return -ENOMEM;
6915         if (IS_SETLKW(cmd))
6916                 data->arg.block = 1;
6917         nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1,
6918                                 recovery_type > NFS_LOCK_NEW);
6919         msg.rpc_argp = &data->arg;
6920         msg.rpc_resp = &data->res;
6921         task_setup_data.callback_data = data;
6922         if (recovery_type > NFS_LOCK_NEW) {
6923                 if (recovery_type == NFS_LOCK_RECLAIM)
6924                         data->arg.reclaim = NFS_LOCK_RECLAIM;
6925         } else
6926                 data->arg.new_lock = 1;
6927         task = rpc_run_task(&task_setup_data);
6928         if (IS_ERR(task))
6929                 return PTR_ERR(task);
6930         ret = rpc_wait_for_completion_task(task);
6931         if (ret == 0) {
6932                 ret = data->rpc_status;
6933                 if (ret)
6934                         nfs4_handle_setlk_error(data->server, data->lsp,
6935                                         data->arg.new_lock_owner, ret);
6936         } else
6937                 data->cancelled = true;
6938         rpc_put_task(task);
6939         dprintk("%s: done, ret = %d!\n", __func__, ret);
6940         trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
6941         return ret;
6942 }
6943
6944 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
6945 {
6946         struct nfs_server *server = NFS_SERVER(state->inode);
6947         struct nfs4_exception exception = {
6948                 .inode = state->inode,
6949         };
6950         int err;
6951
6952         do {
6953                 /* Cache the lock if possible... */
6954                 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6955                         return 0;
6956                 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
6957                 if (err != -NFS4ERR_DELAY)
6958                         break;
6959                 nfs4_handle_exception(server, err, &exception);
6960         } while (exception.retry);
6961         return err;
6962 }
6963
6964 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
6965 {
6966         struct nfs_server *server = NFS_SERVER(state->inode);
6967         struct nfs4_exception exception = {
6968                 .inode = state->inode,
6969         };
6970         int err;
6971
6972         err = nfs4_set_lock_state(state, request);
6973         if (err != 0)
6974                 return err;
6975         if (!recover_lost_locks) {
6976                 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
6977                 return 0;
6978         }
6979         do {
6980                 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6981                         return 0;
6982                 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
6983                 switch (err) {
6984                 default:
6985                         goto out;
6986                 case -NFS4ERR_GRACE:
6987                 case -NFS4ERR_DELAY:
6988                         nfs4_handle_exception(server, err, &exception);
6989                         err = 0;
6990                 }
6991         } while (exception.retry);
6992 out:
6993         return err;
6994 }
6995
6996 #if defined(CONFIG_NFS_V4_1)
6997 static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
6998 {
6999         struct nfs4_lock_state *lsp;
7000         int status;
7001
7002         status = nfs4_set_lock_state(state, request);
7003         if (status != 0)
7004                 return status;
7005         lsp = request->fl_u.nfs4_fl.owner;
7006         if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
7007             test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
7008                 return 0;
7009         return nfs4_lock_expired(state, request);
7010 }
7011 #endif
7012
7013 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7014 {
7015         struct nfs_inode *nfsi = NFS_I(state->inode);
7016         struct nfs4_state_owner *sp = state->owner;
7017         unsigned char fl_flags = request->fl_flags;
7018         int status;
7019
7020         request->fl_flags |= FL_ACCESS;
7021         status = locks_lock_inode_wait(state->inode, request);
7022         if (status < 0)
7023                 goto out;
7024         mutex_lock(&sp->so_delegreturn_mutex);
7025         down_read(&nfsi->rwsem);
7026         if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
7027                 /* Yes: cache locks! */
7028                 /* ...but avoid races with delegation recall... */
7029                 request->fl_flags = fl_flags & ~FL_SLEEP;
7030                 status = locks_lock_inode_wait(state->inode, request);
7031                 up_read(&nfsi->rwsem);
7032                 mutex_unlock(&sp->so_delegreturn_mutex);
7033                 goto out;
7034         }
7035         up_read(&nfsi->rwsem);
7036         mutex_unlock(&sp->so_delegreturn_mutex);
7037         status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
7038 out:
7039         request->fl_flags = fl_flags;
7040         return status;
7041 }
7042
7043 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7044 {
7045         struct nfs4_exception exception = {
7046                 .state = state,
7047                 .inode = state->inode,
7048                 .interruptible = true,
7049         };
7050         int err;
7051
7052         do {
7053                 err = _nfs4_proc_setlk(state, cmd, request);
7054                 if (err == -NFS4ERR_DENIED)
7055                         err = -EAGAIN;
7056                 err = nfs4_handle_exception(NFS_SERVER(state->inode),
7057                                 err, &exception);
7058         } while (exception.retry);
7059         return err;
7060 }
7061
7062 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
7063 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
7064
7065 static int
7066 nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
7067                         struct file_lock *request)
7068 {
7069         int             status = -ERESTARTSYS;
7070         unsigned long   timeout = NFS4_LOCK_MINTIMEOUT;
7071
7072         while(!signalled()) {
7073                 status = nfs4_proc_setlk(state, cmd, request);
7074                 if ((status != -EAGAIN) || IS_SETLK(cmd))
7075                         break;
7076                 freezable_schedule_timeout_interruptible(timeout);
7077                 timeout *= 2;
7078                 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
7079                 status = -ERESTARTSYS;
7080         }
7081         return status;
7082 }
7083
7084 #ifdef CONFIG_NFS_V4_1
7085 struct nfs4_lock_waiter {
7086         struct task_struct      *task;
7087         struct inode            *inode;
7088         struct nfs_lowner       *owner;
7089 };
7090
7091 static int
7092 nfs4_wake_lock_waiter(wait_queue_entry_t *wait, unsigned int mode, int flags, void *key)
7093 {
7094         int ret;
7095         struct nfs4_lock_waiter *waiter = wait->private;
7096
7097         /* NULL key means to wake up everyone */
7098         if (key) {
7099                 struct cb_notify_lock_args      *cbnl = key;
7100                 struct nfs_lowner               *lowner = &cbnl->cbnl_owner,
7101                                                 *wowner = waiter->owner;
7102
7103                 /* Only wake if the callback was for the same owner. */
7104                 if (lowner->id != wowner->id || lowner->s_dev != wowner->s_dev)
7105                         return 0;
7106
7107                 /* Make sure it's for the right inode */
7108                 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
7109                         return 0;
7110         }
7111
7112         /* override "private" so we can use default_wake_function */
7113         wait->private = waiter->task;
7114         ret = woken_wake_function(wait, mode, flags, key);
7115         if (ret)
7116                 list_del_init(&wait->entry);
7117         wait->private = waiter;
7118         return ret;
7119 }
7120
7121 static int
7122 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7123 {
7124         int status = -ERESTARTSYS;
7125         struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
7126         struct nfs_server *server = NFS_SERVER(state->inode);
7127         struct nfs_client *clp = server->nfs_client;
7128         wait_queue_head_t *q = &clp->cl_lock_waitq;
7129         struct nfs_lowner owner = { .clientid = clp->cl_clientid,
7130                                     .id = lsp->ls_seqid.owner_id,
7131                                     .s_dev = server->s_dev };
7132         struct nfs4_lock_waiter waiter = { .task  = current,
7133                                            .inode = state->inode,
7134                                            .owner = &owner};
7135         wait_queue_entry_t wait;
7136
7137         /* Don't bother with waitqueue if we don't expect a callback */
7138         if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
7139                 return nfs4_retry_setlk_simple(state, cmd, request);
7140
7141         init_wait(&wait);
7142         wait.private = &waiter;
7143         wait.func = nfs4_wake_lock_waiter;
7144
7145         while(!signalled()) {
7146                 add_wait_queue(q, &wait);
7147                 status = nfs4_proc_setlk(state, cmd, request);
7148                 if ((status != -EAGAIN) || IS_SETLK(cmd)) {
7149                         finish_wait(q, &wait);
7150                         break;
7151                 }
7152
7153                 status = -ERESTARTSYS;
7154                 freezer_do_not_count();
7155                 wait_woken(&wait, TASK_INTERRUPTIBLE, NFS4_LOCK_MAXTIMEOUT);
7156                 freezer_count();
7157                 finish_wait(q, &wait);
7158         }
7159
7160         return status;
7161 }
7162 #else /* !CONFIG_NFS_V4_1 */
7163 static inline int
7164 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
7165 {
7166         return nfs4_retry_setlk_simple(state, cmd, request);
7167 }
7168 #endif
7169
7170 static int
7171 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
7172 {
7173         struct nfs_open_context *ctx;
7174         struct nfs4_state *state;
7175         int status;
7176
7177         /* verify open state */
7178         ctx = nfs_file_open_context(filp);
7179         state = ctx->state;
7180
7181         if (IS_GETLK(cmd)) {
7182                 if (state != NULL)
7183                         return nfs4_proc_getlk(state, F_GETLK, request);
7184                 return 0;
7185         }
7186
7187         if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
7188                 return -EINVAL;
7189
7190         if (request->fl_type == F_UNLCK) {
7191                 if (state != NULL)
7192                         return nfs4_proc_unlck(state, cmd, request);
7193                 return 0;
7194         }
7195
7196         if (state == NULL)
7197                 return -ENOLCK;
7198
7199         if ((request->fl_flags & FL_POSIX) &&
7200             !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
7201                 return -ENOLCK;
7202
7203         /*
7204          * Don't rely on the VFS having checked the file open mode,
7205          * since it won't do this for flock() locks.
7206          */
7207         switch (request->fl_type) {
7208         case F_RDLCK:
7209                 if (!(filp->f_mode & FMODE_READ))
7210                         return -EBADF;
7211                 break;
7212         case F_WRLCK:
7213                 if (!(filp->f_mode & FMODE_WRITE))
7214                         return -EBADF;
7215         }
7216
7217         status = nfs4_set_lock_state(state, request);
7218         if (status != 0)
7219                 return status;
7220
7221         return nfs4_retry_setlk(state, cmd, request);
7222 }
7223
7224 int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
7225 {
7226         struct nfs_server *server = NFS_SERVER(state->inode);
7227         int err;
7228
7229         err = nfs4_set_lock_state(state, fl);
7230         if (err != 0)
7231                 return err;
7232         err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
7233         return nfs4_handle_delegation_recall_error(server, state, stateid, fl, err);
7234 }
7235
7236 struct nfs_release_lockowner_data {
7237         struct nfs4_lock_state *lsp;
7238         struct nfs_server *server;
7239         struct nfs_release_lockowner_args args;
7240         struct nfs_release_lockowner_res res;
7241         unsigned long timestamp;
7242 };
7243
7244 static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
7245 {
7246         struct nfs_release_lockowner_data *data = calldata;
7247         struct nfs_server *server = data->server;
7248         nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
7249                            &data->res.seq_res, task);
7250         data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
7251         data->timestamp = jiffies;
7252 }
7253
7254 static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
7255 {
7256         struct nfs_release_lockowner_data *data = calldata;
7257         struct nfs_server *server = data->server;
7258
7259         nfs40_sequence_done(task, &data->res.seq_res);
7260
7261         switch (task->tk_status) {
7262         case 0:
7263                 renew_lease(server, data->timestamp);
7264                 break;
7265         case -NFS4ERR_STALE_CLIENTID:
7266         case -NFS4ERR_EXPIRED:
7267                 nfs4_schedule_lease_recovery(server->nfs_client);
7268                 break;
7269         case -NFS4ERR_LEASE_MOVED:
7270         case -NFS4ERR_DELAY:
7271                 if (nfs4_async_handle_error(task, server,
7272                                             NULL, NULL) == -EAGAIN)
7273                         rpc_restart_call_prepare(task);
7274         }
7275 }
7276
7277 static void nfs4_release_lockowner_release(void *calldata)
7278 {
7279         struct nfs_release_lockowner_data *data = calldata;
7280         nfs4_free_lock_state(data->server, data->lsp);
7281         kfree(calldata);
7282 }
7283
7284 static const struct rpc_call_ops nfs4_release_lockowner_ops = {
7285         .rpc_call_prepare = nfs4_release_lockowner_prepare,
7286         .rpc_call_done = nfs4_release_lockowner_done,
7287         .rpc_release = nfs4_release_lockowner_release,
7288 };
7289
7290 static void
7291 nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
7292 {
7293         struct nfs_release_lockowner_data *data;
7294         struct rpc_message msg = {
7295                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
7296         };
7297
7298         if (server->nfs_client->cl_mvops->minor_version != 0)
7299                 return;
7300
7301         data = kmalloc(sizeof(*data), GFP_NOFS);
7302         if (!data)
7303                 return;
7304         data->lsp = lsp;
7305         data->server = server;
7306         data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
7307         data->args.lock_owner.id = lsp->ls_seqid.owner_id;
7308         data->args.lock_owner.s_dev = server->s_dev;
7309
7310         msg.rpc_argp = &data->args;
7311         msg.rpc_resp = &data->res;
7312         nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0, 0);
7313         rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
7314 }
7315
7316 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
7317
7318 static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
7319                                    struct dentry *unused, struct inode *inode,
7320                                    const char *key, const void *buf,
7321                                    size_t buflen, int flags)
7322 {
7323         return nfs4_proc_set_acl(inode, buf, buflen);
7324 }
7325
7326 static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
7327                                    struct dentry *unused, struct inode *inode,
7328                                    const char *key, void *buf, size_t buflen)
7329 {
7330         return nfs4_proc_get_acl(inode, buf, buflen);
7331 }
7332
7333 static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
7334 {
7335         return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)));
7336 }
7337
7338 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
7339
7340 static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
7341                                      struct dentry *unused, struct inode *inode,
7342                                      const char *key, const void *buf,
7343                                      size_t buflen, int flags)
7344 {
7345         if (security_ismaclabel(key))
7346                 return nfs4_set_security_label(inode, buf, buflen);
7347
7348         return -EOPNOTSUPP;
7349 }
7350
7351 static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
7352                                      struct dentry *unused, struct inode *inode,
7353                                      const char *key, void *buf, size_t buflen)
7354 {
7355         if (security_ismaclabel(key))
7356                 return nfs4_get_security_label(inode, buf, buflen);
7357         return -EOPNOTSUPP;
7358 }
7359
7360 static ssize_t
7361 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
7362 {
7363         int len = 0;
7364
7365         if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
7366                 len = security_inode_listsecurity(inode, list, list_len);
7367                 if (list_len && len > list_len)
7368                         return -ERANGE;
7369         }
7370         return len;
7371 }
7372
7373 static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
7374         .prefix = XATTR_SECURITY_PREFIX,
7375         .get    = nfs4_xattr_get_nfs4_label,
7376         .set    = nfs4_xattr_set_nfs4_label,
7377 };
7378
7379 #else
7380
7381 static ssize_t
7382 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
7383 {
7384         return 0;
7385 }
7386
7387 #endif
7388
7389 /*
7390  * nfs_fhget will use either the mounted_on_fileid or the fileid
7391  */
7392 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
7393 {
7394         if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
7395                (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
7396               (fattr->valid & NFS_ATTR_FATTR_FSID) &&
7397               (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
7398                 return;
7399
7400         fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
7401                 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
7402         fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
7403         fattr->nlink = 2;
7404 }
7405
7406 static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
7407                                    const struct qstr *name,
7408                                    struct nfs4_fs_locations *fs_locations,
7409                                    struct page *page)
7410 {
7411         struct nfs_server *server = NFS_SERVER(dir);
7412         u32 bitmask[3];
7413         struct nfs4_fs_locations_arg args = {
7414                 .dir_fh = NFS_FH(dir),
7415                 .name = name,
7416                 .page = page,
7417                 .bitmask = bitmask,
7418         };
7419         struct nfs4_fs_locations_res res = {
7420                 .fs_locations = fs_locations,
7421         };
7422         struct rpc_message msg = {
7423                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
7424                 .rpc_argp = &args,
7425                 .rpc_resp = &res,
7426         };
7427         int status;
7428
7429         dprintk("%s: start\n", __func__);
7430
7431         bitmask[0] = nfs4_fattr_bitmap[0] | FATTR4_WORD0_FS_LOCATIONS;
7432         bitmask[1] = nfs4_fattr_bitmap[1];
7433
7434         /* Ask for the fileid of the absent filesystem if mounted_on_fileid
7435          * is not supported */
7436         if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
7437                 bitmask[0] &= ~FATTR4_WORD0_FILEID;
7438         else
7439                 bitmask[1] &= ~FATTR4_WORD1_MOUNTED_ON_FILEID;
7440
7441         nfs_fattr_init(&fs_locations->fattr);
7442         fs_locations->server = server;
7443         fs_locations->nlocations = 0;
7444         status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
7445         dprintk("%s: returned status = %d\n", __func__, status);
7446         return status;
7447 }
7448
7449 int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
7450                            const struct qstr *name,
7451                            struct nfs4_fs_locations *fs_locations,
7452                            struct page *page)
7453 {
7454         struct nfs4_exception exception = {
7455                 .interruptible = true,
7456         };
7457         int err;
7458         do {
7459                 err = _nfs4_proc_fs_locations(client, dir, name,
7460                                 fs_locations, page);
7461                 trace_nfs4_get_fs_locations(dir, name, err);
7462                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
7463                                 &exception);
7464         } while (exception.retry);
7465         return err;
7466 }
7467
7468 /*
7469  * This operation also signals the server that this client is
7470  * performing migration recovery.  The server can stop returning
7471  * NFS4ERR_LEASE_MOVED to this client.  A RENEW operation is
7472  * appended to this compound to identify the client ID which is
7473  * performing recovery.
7474  */
7475 static int _nfs40_proc_get_locations(struct inode *inode,
7476                                      struct nfs4_fs_locations *locations,
7477                                      struct page *page, const struct cred *cred)
7478 {
7479         struct nfs_server *server = NFS_SERVER(inode);
7480         struct rpc_clnt *clnt = server->client;
7481         u32 bitmask[2] = {
7482                 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
7483         };
7484         struct nfs4_fs_locations_arg args = {
7485                 .clientid       = server->nfs_client->cl_clientid,
7486                 .fh             = NFS_FH(inode),
7487                 .page           = page,
7488                 .bitmask        = bitmask,
7489                 .migration      = 1,            /* skip LOOKUP */
7490                 .renew          = 1,            /* append RENEW */
7491         };
7492         struct nfs4_fs_locations_res res = {
7493                 .fs_locations   = locations,
7494                 .migration      = 1,
7495                 .renew          = 1,
7496         };
7497         struct rpc_message msg = {
7498                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
7499                 .rpc_argp       = &args,
7500                 .rpc_resp       = &res,
7501                 .rpc_cred       = cred,
7502         };
7503         unsigned long now = jiffies;
7504         int status;
7505
7506         nfs_fattr_init(&locations->fattr);
7507         locations->server = server;
7508         locations->nlocations = 0;
7509
7510         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
7511         status = nfs4_call_sync_sequence(clnt, server, &msg,
7512                                         &args.seq_args, &res.seq_res);
7513         if (status)
7514                 return status;
7515
7516         renew_lease(server, now);
7517         return 0;
7518 }
7519
7520 #ifdef CONFIG_NFS_V4_1
7521
7522 /*
7523  * This operation also signals the server that this client is
7524  * performing migration recovery.  The server can stop asserting
7525  * SEQ4_STATUS_LEASE_MOVED for this client.  The client ID
7526  * performing this operation is identified in the SEQUENCE
7527  * operation in this compound.
7528  *
7529  * When the client supports GETATTR(fs_locations_info), it can
7530  * be plumbed in here.
7531  */
7532 static int _nfs41_proc_get_locations(struct inode *inode,
7533                                      struct nfs4_fs_locations *locations,
7534                                      struct page *page, const struct cred *cred)
7535 {
7536         struct nfs_server *server = NFS_SERVER(inode);
7537         struct rpc_clnt *clnt = server->client;
7538         u32 bitmask[2] = {
7539                 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
7540         };
7541         struct nfs4_fs_locations_arg args = {
7542                 .fh             = NFS_FH(inode),
7543                 .page           = page,
7544                 .bitmask        = bitmask,
7545                 .migration      = 1,            /* skip LOOKUP */
7546         };
7547         struct nfs4_fs_locations_res res = {
7548                 .fs_locations   = locations,
7549                 .migration      = 1,
7550         };
7551         struct rpc_message msg = {
7552                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
7553                 .rpc_argp       = &args,
7554                 .rpc_resp       = &res,
7555                 .rpc_cred       = cred,
7556         };
7557         int status;
7558
7559         nfs_fattr_init(&locations->fattr);
7560         locations->server = server;
7561         locations->nlocations = 0;
7562
7563         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
7564         status = nfs4_call_sync_sequence(clnt, server, &msg,
7565                                         &args.seq_args, &res.seq_res);
7566         if (status == NFS4_OK &&
7567             res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
7568                 status = -NFS4ERR_LEASE_MOVED;
7569         return status;
7570 }
7571
7572 #endif  /* CONFIG_NFS_V4_1 */
7573
7574 /**
7575  * nfs4_proc_get_locations - discover locations for a migrated FSID
7576  * @inode: inode on FSID that is migrating
7577  * @locations: result of query
7578  * @page: buffer
7579  * @cred: credential to use for this operation
7580  *
7581  * Returns NFS4_OK on success, a negative NFS4ERR status code if the
7582  * operation failed, or a negative errno if a local error occurred.
7583  *
7584  * On success, "locations" is filled in, but if the server has
7585  * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
7586  * asserted.
7587  *
7588  * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
7589  * from this client that require migration recovery.
7590  */
7591 int nfs4_proc_get_locations(struct inode *inode,
7592                             struct nfs4_fs_locations *locations,
7593                             struct page *page, const struct cred *cred)
7594 {
7595         struct nfs_server *server = NFS_SERVER(inode);
7596         struct nfs_client *clp = server->nfs_client;
7597         const struct nfs4_mig_recovery_ops *ops =
7598                                         clp->cl_mvops->mig_recovery_ops;
7599         struct nfs4_exception exception = {
7600                 .interruptible = true,
7601         };
7602         int status;
7603
7604         dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
7605                 (unsigned long long)server->fsid.major,
7606                 (unsigned long long)server->fsid.minor,
7607                 clp->cl_hostname);
7608         nfs_display_fhandle(NFS_FH(inode), __func__);
7609
7610         do {
7611                 status = ops->get_locations(inode, locations, page, cred);
7612                 if (status != -NFS4ERR_DELAY)
7613                         break;
7614                 nfs4_handle_exception(server, status, &exception);
7615         } while (exception.retry);
7616         return status;
7617 }
7618
7619 /*
7620  * This operation also signals the server that this client is
7621  * performing "lease moved" recovery.  The server can stop
7622  * returning NFS4ERR_LEASE_MOVED to this client.  A RENEW operation
7623  * is appended to this compound to identify the client ID which is
7624  * performing recovery.
7625  */
7626 static int _nfs40_proc_fsid_present(struct inode *inode, const struct cred *cred)
7627 {
7628         struct nfs_server *server = NFS_SERVER(inode);
7629         struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
7630         struct rpc_clnt *clnt = server->client;
7631         struct nfs4_fsid_present_arg args = {
7632                 .fh             = NFS_FH(inode),
7633                 .clientid       = clp->cl_clientid,
7634                 .renew          = 1,            /* append RENEW */
7635         };
7636         struct nfs4_fsid_present_res res = {
7637                 .renew          = 1,
7638         };
7639         struct rpc_message msg = {
7640                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
7641                 .rpc_argp       = &args,
7642                 .rpc_resp       = &res,
7643                 .rpc_cred       = cred,
7644         };
7645         unsigned long now = jiffies;
7646         int status;
7647
7648         res.fh = nfs_alloc_fhandle();
7649         if (res.fh == NULL)
7650                 return -ENOMEM;
7651
7652         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
7653         status = nfs4_call_sync_sequence(clnt, server, &msg,
7654                                                 &args.seq_args, &res.seq_res);
7655         nfs_free_fhandle(res.fh);
7656         if (status)
7657                 return status;
7658
7659         do_renew_lease(clp, now);
7660         return 0;
7661 }
7662
7663 #ifdef CONFIG_NFS_V4_1
7664
7665 /*
7666  * This operation also signals the server that this client is
7667  * performing "lease moved" recovery.  The server can stop asserting
7668  * SEQ4_STATUS_LEASE_MOVED for this client.  The client ID performing
7669  * this operation is identified in the SEQUENCE operation in this
7670  * compound.
7671  */
7672 static int _nfs41_proc_fsid_present(struct inode *inode, const struct cred *cred)
7673 {
7674         struct nfs_server *server = NFS_SERVER(inode);
7675         struct rpc_clnt *clnt = server->client;
7676         struct nfs4_fsid_present_arg args = {
7677                 .fh             = NFS_FH(inode),
7678         };
7679         struct nfs4_fsid_present_res res = {
7680         };
7681         struct rpc_message msg = {
7682                 .rpc_proc       = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
7683                 .rpc_argp       = &args,
7684                 .rpc_resp       = &res,
7685                 .rpc_cred       = cred,
7686         };
7687         int status;
7688
7689         res.fh = nfs_alloc_fhandle();
7690         if (res.fh == NULL)
7691                 return -ENOMEM;
7692
7693         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
7694         status = nfs4_call_sync_sequence(clnt, server, &msg,
7695                                                 &args.seq_args, &res.seq_res);
7696         nfs_free_fhandle(res.fh);
7697         if (status == NFS4_OK &&
7698             res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
7699                 status = -NFS4ERR_LEASE_MOVED;
7700         return status;
7701 }
7702
7703 #endif  /* CONFIG_NFS_V4_1 */
7704
7705 /**
7706  * nfs4_proc_fsid_present - Is this FSID present or absent on server?
7707  * @inode: inode on FSID to check
7708  * @cred: credential to use for this operation
7709  *
7710  * Server indicates whether the FSID is present, moved, or not
7711  * recognized.  This operation is necessary to clear a LEASE_MOVED
7712  * condition for this client ID.
7713  *
7714  * Returns NFS4_OK if the FSID is present on this server,
7715  * -NFS4ERR_MOVED if the FSID is no longer present, a negative
7716  *  NFS4ERR code if some error occurred on the server, or a
7717  *  negative errno if a local failure occurred.
7718  */
7719 int nfs4_proc_fsid_present(struct inode *inode, const struct cred *cred)
7720 {
7721         struct nfs_server *server = NFS_SERVER(inode);
7722         struct nfs_client *clp = server->nfs_client;
7723         const struct nfs4_mig_recovery_ops *ops =
7724                                         clp->cl_mvops->mig_recovery_ops;
7725         struct nfs4_exception exception = {
7726                 .interruptible = true,
7727         };
7728         int status;
7729
7730         dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
7731                 (unsigned long long)server->fsid.major,
7732                 (unsigned long long)server->fsid.minor,
7733                 clp->cl_hostname);
7734         nfs_display_fhandle(NFS_FH(inode), __func__);
7735
7736         do {
7737                 status = ops->fsid_present(inode, cred);
7738                 if (status != -NFS4ERR_DELAY)
7739                         break;
7740                 nfs4_handle_exception(server, status, &exception);
7741         } while (exception.retry);
7742         return status;
7743 }
7744
7745 /*
7746  * If 'use_integrity' is true and the state managment nfs_client
7747  * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
7748  * and the machine credential as per RFC3530bis and RFC5661 Security
7749  * Considerations sections. Otherwise, just use the user cred with the
7750  * filesystem's rpc_client.
7751  */
7752 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity)
7753 {
7754         int status;
7755         struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
7756         struct nfs_client *clp = NFS_SERVER(dir)->nfs_client;
7757         struct nfs4_secinfo_arg args = {
7758                 .dir_fh = NFS_FH(dir),
7759                 .name   = name,
7760         };
7761         struct nfs4_secinfo_res res = {
7762                 .flavors     = flavors,
7763         };
7764         struct rpc_message msg = {
7765                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
7766                 .rpc_argp = &args,
7767                 .rpc_resp = &res,
7768         };
7769         struct nfs4_call_sync_data data = {
7770                 .seq_server = NFS_SERVER(dir),
7771                 .seq_args = &args.seq_args,
7772                 .seq_res = &res.seq_res,
7773         };
7774         struct rpc_task_setup task_setup = {
7775                 .rpc_client = clnt,
7776                 .rpc_message = &msg,
7777                 .callback_ops = clp->cl_mvops->call_sync_ops,
7778                 .callback_data = &data,
7779                 .flags = RPC_TASK_NO_ROUND_ROBIN,
7780         };
7781         const struct cred *cred = NULL;
7782
7783         if (use_integrity) {
7784                 clnt = clp->cl_rpcclient;
7785                 task_setup.rpc_client = clnt;
7786
7787                 cred = nfs4_get_clid_cred(clp);
7788                 msg.rpc_cred = cred;
7789         }
7790
7791         dprintk("NFS call  secinfo %s\n", name->name);
7792
7793         nfs4_state_protect(clp, NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
7794         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
7795         status = nfs4_call_sync_custom(&task_setup);
7796
7797         dprintk("NFS reply  secinfo: %d\n", status);
7798
7799         put_cred(cred);
7800         return status;
7801 }
7802
7803 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
7804                       struct nfs4_secinfo_flavors *flavors)
7805 {
7806         struct nfs4_exception exception = {
7807                 .interruptible = true,
7808         };
7809         int err;
7810         do {
7811                 err = -NFS4ERR_WRONGSEC;
7812
7813                 /* try to use integrity protection with machine cred */
7814                 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
7815                         err = _nfs4_proc_secinfo(dir, name, flavors, true);
7816
7817                 /*
7818                  * if unable to use integrity protection, or SECINFO with
7819                  * integrity protection returns NFS4ERR_WRONGSEC (which is
7820                  * disallowed by spec, but exists in deployed servers) use
7821                  * the current filesystem's rpc_client and the user cred.
7822                  */
7823                 if (err == -NFS4ERR_WRONGSEC)
7824                         err = _nfs4_proc_secinfo(dir, name, flavors, false);
7825
7826                 trace_nfs4_secinfo(dir, name, err);
7827                 err = nfs4_handle_exception(NFS_SERVER(dir), err,
7828                                 &exception);
7829         } while (exception.retry);
7830         return err;
7831 }
7832
7833 #ifdef CONFIG_NFS_V4_1
7834 /*
7835  * Check the exchange flags returned by the server for invalid flags, having
7836  * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
7837  * DS flags set.
7838  */
7839 static int nfs4_check_cl_exchange_flags(u32 flags)
7840 {
7841         if (flags & ~EXCHGID4_FLAG_MASK_R)
7842                 goto out_inval;
7843         if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
7844             (flags & EXCHGID4_FLAG_USE_NON_PNFS))
7845                 goto out_inval;
7846         if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
7847                 goto out_inval;
7848         return NFS_OK;
7849 out_inval:
7850         return -NFS4ERR_INVAL;
7851 }
7852
7853 static bool
7854 nfs41_same_server_scope(struct nfs41_server_scope *a,
7855                         struct nfs41_server_scope *b)
7856 {
7857         if (a->server_scope_sz != b->server_scope_sz)
7858                 return false;
7859         return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0;
7860 }
7861
7862 static void
7863 nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
7864 {
7865         struct nfs41_bind_conn_to_session_args *args = task->tk_msg.rpc_argp;
7866         struct nfs_client *clp = args->client;
7867
7868         switch (task->tk_status) {
7869         case -NFS4ERR_BADSESSION:
7870         case -NFS4ERR_DEADSESSION:
7871                 nfs4_schedule_session_recovery(clp->cl_session,
7872                                 task->tk_status);
7873         }
7874 }
7875
7876 static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
7877         .rpc_call_done =  &nfs4_bind_one_conn_to_session_done,
7878 };
7879
7880 /*
7881  * nfs4_proc_bind_one_conn_to_session()
7882  *
7883  * The 4.1 client currently uses the same TCP connection for the
7884  * fore and backchannel.
7885  */
7886 static
7887 int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
7888                 struct rpc_xprt *xprt,
7889                 struct nfs_client *clp,
7890                 const struct cred *cred)
7891 {
7892         int status;
7893         struct nfs41_bind_conn_to_session_args args = {
7894                 .client = clp,
7895                 .dir = NFS4_CDFC4_FORE_OR_BOTH,
7896         };
7897         struct nfs41_bind_conn_to_session_res res;
7898         struct rpc_message msg = {
7899                 .rpc_proc =
7900                         &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
7901                 .rpc_argp = &args,
7902                 .rpc_resp = &res,
7903                 .rpc_cred = cred,
7904         };
7905         struct rpc_task_setup task_setup_data = {
7906                 .rpc_client = clnt,
7907                 .rpc_xprt = xprt,
7908                 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
7909                 .rpc_message = &msg,
7910                 .flags = RPC_TASK_TIMEOUT,
7911         };
7912         struct rpc_task *task;
7913
7914         nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
7915         if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
7916                 args.dir = NFS4_CDFC4_FORE;
7917
7918         /* Do not set the backchannel flag unless this is clnt->cl_xprt */
7919         if (xprt != rcu_access_pointer(clnt->cl_xprt))
7920                 args.dir = NFS4_CDFC4_FORE;
7921
7922         task = rpc_run_task(&task_setup_data);
7923         if (!IS_ERR(task)) {
7924                 status = task->tk_status;
7925                 rpc_put_task(task);
7926         } else
7927                 status = PTR_ERR(task);
7928         trace_nfs4_bind_conn_to_session(clp, status);
7929         if (status == 0) {
7930                 if (memcmp(res.sessionid.data,
7931                     clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
7932                         dprintk("NFS: %s: Session ID mismatch\n", __func__);
7933                         return -EIO;
7934                 }
7935                 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
7936                         dprintk("NFS: %s: Unexpected direction from server\n",
7937                                 __func__);
7938                         return -EIO;
7939                 }
7940                 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
7941                         dprintk("NFS: %s: Server returned RDMA mode = true\n",
7942                                 __func__);
7943                         return -EIO;
7944                 }
7945         }
7946
7947         return status;
7948 }
7949
7950 struct rpc_bind_conn_calldata {
7951         struct nfs_client *clp;
7952         const struct cred *cred;
7953 };
7954
7955 static int
7956 nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
7957                 struct rpc_xprt *xprt,
7958                 void *calldata)
7959 {
7960         struct rpc_bind_conn_calldata *p = calldata;
7961
7962         return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
7963 }
7964
7965 int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, const struct cred *cred)
7966 {
7967         struct rpc_bind_conn_calldata data = {
7968                 .clp = clp,
7969                 .cred = cred,
7970         };
7971         return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
7972                         nfs4_proc_bind_conn_to_session_callback, &data);
7973 }
7974
7975 /*
7976  * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
7977  * and operations we'd like to see to enable certain features in the allow map
7978  */
7979 static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
7980         .how = SP4_MACH_CRED,
7981         .enforce.u.words = {
7982                 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7983                       1 << (OP_EXCHANGE_ID - 32) |
7984                       1 << (OP_CREATE_SESSION - 32) |
7985                       1 << (OP_DESTROY_SESSION - 32) |
7986                       1 << (OP_DESTROY_CLIENTID - 32)
7987         },
7988         .allow.u.words = {
7989                 [0] = 1 << (OP_CLOSE) |
7990                       1 << (OP_OPEN_DOWNGRADE) |
7991                       1 << (OP_LOCKU) |
7992                       1 << (OP_DELEGRETURN) |
7993                       1 << (OP_COMMIT),
7994                 [1] = 1 << (OP_SECINFO - 32) |
7995                       1 << (OP_SECINFO_NO_NAME - 32) |
7996                       1 << (OP_LAYOUTRETURN - 32) |
7997                       1 << (OP_TEST_STATEID - 32) |
7998                       1 << (OP_FREE_STATEID - 32) |
7999                       1 << (OP_WRITE - 32)
8000         }
8001 };
8002
8003 /*
8004  * Select the state protection mode for client `clp' given the server results
8005  * from exchange_id in `sp'.
8006  *
8007  * Returns 0 on success, negative errno otherwise.
8008  */
8009 static int nfs4_sp4_select_mode(struct nfs_client *clp,
8010                                  struct nfs41_state_protection *sp)
8011 {
8012         static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
8013                 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
8014                       1 << (OP_EXCHANGE_ID - 32) |
8015                       1 << (OP_CREATE_SESSION - 32) |
8016                       1 << (OP_DESTROY_SESSION - 32) |
8017                       1 << (OP_DESTROY_CLIENTID - 32)
8018         };
8019         unsigned long flags = 0;
8020         unsigned int i;
8021         int ret = 0;
8022
8023         if (sp->how == SP4_MACH_CRED) {
8024                 /* Print state protect result */
8025                 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
8026                 for (i = 0; i <= LAST_NFS4_OP; i++) {
8027                         if (test_bit(i, sp->enforce.u.longs))
8028                                 dfprintk(MOUNT, "  enforce op %d\n", i);
8029                         if (test_bit(i, sp->allow.u.longs))
8030                                 dfprintk(MOUNT, "  allow op %d\n", i);
8031                 }
8032
8033                 /* make sure nothing is on enforce list that isn't supported */
8034                 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
8035                         if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
8036                                 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
8037                                 ret = -EINVAL;
8038                                 goto out;
8039                         }
8040                 }
8041
8042                 /*
8043                  * Minimal mode - state operations are allowed to use machine
8044                  * credential.  Note this already happens by default, so the
8045                  * client doesn't have to do anything more than the negotiation.
8046                  *
8047                  * NOTE: we don't care if EXCHANGE_ID is in the list -
8048                  *       we're already using the machine cred for exchange_id
8049                  *       and will never use a different cred.
8050                  */
8051                 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
8052                     test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
8053                     test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
8054                     test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
8055                         dfprintk(MOUNT, "sp4_mach_cred:\n");
8056                         dfprintk(MOUNT, "  minimal mode enabled\n");
8057                         __set_bit(NFS_SP4_MACH_CRED_MINIMAL, &flags);
8058                 } else {
8059                         dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
8060                         ret = -EINVAL;
8061                         goto out;
8062                 }
8063
8064                 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
8065                     test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
8066                     test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
8067                     test_bit(OP_LOCKU, sp->allow.u.longs)) {
8068                         dfprintk(MOUNT, "  cleanup mode enabled\n");
8069                         __set_bit(NFS_SP4_MACH_CRED_CLEANUP, &flags);
8070                 }
8071
8072                 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
8073                         dfprintk(MOUNT, "  pnfs cleanup mode enabled\n");
8074                         __set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP, &flags);
8075                 }
8076
8077                 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
8078                     test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
8079                         dfprintk(MOUNT, "  secinfo mode enabled\n");
8080                         __set_bit(NFS_SP4_MACH_CRED_SECINFO, &flags);
8081                 }
8082
8083                 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
8084                     test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
8085                         dfprintk(MOUNT, "  stateid mode enabled\n");
8086                         __set_bit(NFS_SP4_MACH_CRED_STATEID, &flags);
8087                 }
8088
8089                 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
8090                         dfprintk(MOUNT, "  write mode enabled\n");
8091                         __set_bit(NFS_SP4_MACH_CRED_WRITE, &flags);
8092                 }
8093
8094                 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
8095                         dfprintk(MOUNT, "  commit mode enabled\n");
8096                         __set_bit(NFS_SP4_MACH_CRED_COMMIT, &flags);
8097                 }
8098         }
8099 out:
8100         clp->cl_sp4_flags = flags;
8101         return ret;
8102 }
8103
8104 struct nfs41_exchange_id_data {
8105         struct nfs41_exchange_id_res res;
8106         struct nfs41_exchange_id_args args;
8107 };
8108
8109 static void nfs4_exchange_id_release(void *data)
8110 {
8111         struct nfs41_exchange_id_data *cdata =
8112                                         (struct nfs41_exchange_id_data *)data;
8113
8114         nfs_put_client(cdata->args.client);
8115         kfree(cdata->res.impl_id);
8116         kfree(cdata->res.server_scope);
8117         kfree(cdata->res.server_owner);
8118         kfree(cdata);
8119 }
8120
8121 static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
8122         .rpc_release = nfs4_exchange_id_release,
8123 };
8124
8125 /*
8126  * _nfs4_proc_exchange_id()
8127  *
8128  * Wrapper for EXCHANGE_ID operation.
8129  */
8130 static struct rpc_task *
8131 nfs4_run_exchange_id(struct nfs_client *clp, const struct cred *cred,
8132                         u32 sp4_how, struct rpc_xprt *xprt)
8133 {
8134         struct rpc_message msg = {
8135                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
8136                 .rpc_cred = cred,
8137         };
8138         struct rpc_task_setup task_setup_data = {
8139                 .rpc_client = clp->cl_rpcclient,
8140                 .callback_ops = &nfs4_exchange_id_call_ops,
8141                 .rpc_message = &msg,
8142                 .flags = RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN,
8143         };
8144         struct nfs41_exchange_id_data *calldata;
8145         int status;
8146
8147         if (!refcount_inc_not_zero(&clp->cl_count))
8148                 return ERR_PTR(-EIO);
8149
8150         status = -ENOMEM;
8151         calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8152         if (!calldata)
8153                 goto out;
8154
8155         nfs4_init_boot_verifier(clp, &calldata->args.verifier);
8156
8157         status = nfs4_init_uniform_client_string(clp);
8158         if (status)
8159                 goto out_calldata;
8160
8161         calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
8162                                                 GFP_NOFS);
8163         status = -ENOMEM;
8164         if (unlikely(calldata->res.server_owner == NULL))
8165                 goto out_calldata;
8166
8167         calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
8168                                         GFP_NOFS);
8169         if (unlikely(calldata->res.server_scope == NULL))
8170                 goto out_server_owner;
8171
8172         calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
8173         if (unlikely(calldata->res.impl_id == NULL))
8174                 goto out_server_scope;
8175
8176         switch (sp4_how) {
8177         case SP4_NONE:
8178                 calldata->args.state_protect.how = SP4_NONE;
8179                 break;
8180
8181         case SP4_MACH_CRED:
8182                 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
8183                 break;
8184
8185         default:
8186                 /* unsupported! */
8187                 WARN_ON_ONCE(1);
8188                 status = -EINVAL;
8189                 goto out_impl_id;
8190         }
8191         if (xprt) {
8192                 task_setup_data.rpc_xprt = xprt;
8193                 task_setup_data.flags |= RPC_TASK_SOFTCONN;
8194                 memcpy(calldata->args.verifier.data, clp->cl_confirm.data,
8195                                 sizeof(calldata->args.verifier.data));
8196         }
8197         calldata->args.client = clp;
8198         calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
8199         EXCHGID4_FLAG_BIND_PRINC_STATEID;
8200 #ifdef CONFIG_NFS_V4_1_MIGRATION
8201         calldata->args.flags |= EXCHGID4_FLAG_SUPP_MOVED_MIGR;
8202 #endif
8203         msg.rpc_argp = &calldata->args;
8204         msg.rpc_resp = &calldata->res;
8205         task_setup_data.callback_data = calldata;
8206
8207         return rpc_run_task(&task_setup_data);
8208
8209 out_impl_id:
8210         kfree(calldata->res.impl_id);
8211 out_server_scope:
8212         kfree(calldata->res.server_scope);
8213 out_server_owner:
8214         kfree(calldata->res.server_owner);
8215 out_calldata:
8216         kfree(calldata);
8217 out:
8218         nfs_put_client(clp);
8219         return ERR_PTR(status);
8220 }
8221
8222 /*
8223  * _nfs4_proc_exchange_id()
8224  *
8225  * Wrapper for EXCHANGE_ID operation.
8226  */
8227 static int _nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred,
8228                         u32 sp4_how)
8229 {
8230         struct rpc_task *task;
8231         struct nfs41_exchange_id_args *argp;
8232         struct nfs41_exchange_id_res *resp;
8233         int status;
8234
8235         task = nfs4_run_exchange_id(clp, cred, sp4_how, NULL);
8236         if (IS_ERR(task))
8237                 return PTR_ERR(task);
8238
8239         argp = task->tk_msg.rpc_argp;
8240         resp = task->tk_msg.rpc_resp;
8241         status = task->tk_status;
8242         if (status  != 0)
8243                 goto out;
8244
8245         status = nfs4_check_cl_exchange_flags(resp->flags);
8246         if (status  != 0)
8247                 goto out;
8248
8249         status = nfs4_sp4_select_mode(clp, &resp->state_protect);
8250         if (status != 0)
8251                 goto out;
8252
8253         clp->cl_clientid = resp->clientid;
8254         clp->cl_exchange_flags = resp->flags;
8255         clp->cl_seqid = resp->seqid;
8256         /* Client ID is not confirmed */
8257         if (!(resp->flags & EXCHGID4_FLAG_CONFIRMED_R))
8258                 clear_bit(NFS4_SESSION_ESTABLISHED,
8259                           &clp->cl_session->session_state);
8260
8261         if (clp->cl_serverscope != NULL &&
8262             !nfs41_same_server_scope(clp->cl_serverscope,
8263                                 resp->server_scope)) {
8264                 dprintk("%s: server_scope mismatch detected\n",
8265                         __func__);
8266                 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
8267         }
8268
8269         swap(clp->cl_serverowner, resp->server_owner);
8270         swap(clp->cl_serverscope, resp->server_scope);
8271         swap(clp->cl_implid, resp->impl_id);
8272
8273         /* Save the EXCHANGE_ID verifier session trunk tests */
8274         memcpy(clp->cl_confirm.data, argp->verifier.data,
8275                sizeof(clp->cl_confirm.data));
8276 out:
8277         trace_nfs4_exchange_id(clp, status);
8278         rpc_put_task(task);
8279         return status;
8280 }
8281
8282 /*
8283  * nfs4_proc_exchange_id()
8284  *
8285  * Returns zero, a negative errno, or a negative NFS4ERR status code.
8286  *
8287  * Since the clientid has expired, all compounds using sessions
8288  * associated with the stale clientid will be returning
8289  * NFS4ERR_BADSESSION in the sequence operation, and will therefore
8290  * be in some phase of session reset.
8291  *
8292  * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
8293  */
8294 int nfs4_proc_exchange_id(struct nfs_client *clp, const struct cred *cred)
8295 {
8296         rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
8297         int status;
8298
8299         /* try SP4_MACH_CRED if krb5i/p */
8300         if (authflavor == RPC_AUTH_GSS_KRB5I ||
8301             authflavor == RPC_AUTH_GSS_KRB5P) {
8302                 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED);
8303                 if (!status)
8304                         return 0;
8305         }
8306
8307         /* try SP4_NONE */
8308         return _nfs4_proc_exchange_id(clp, cred, SP4_NONE);
8309 }
8310
8311 /**
8312  * nfs4_test_session_trunk
8313  *
8314  * This is an add_xprt_test() test function called from
8315  * rpc_clnt_setup_test_and_add_xprt.
8316  *
8317  * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
8318  * and is dereferrenced in nfs4_exchange_id_release
8319  *
8320  * Upon success, add the new transport to the rpc_clnt
8321  *
8322  * @clnt: struct rpc_clnt to get new transport
8323  * @xprt: the rpc_xprt to test
8324  * @data: call data for _nfs4_proc_exchange_id.
8325  */
8326 void nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
8327                             void *data)
8328 {
8329         struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data;
8330         struct rpc_task *task;
8331         int status;
8332
8333         u32 sp4_how;
8334
8335         dprintk("--> %s try %s\n", __func__,
8336                 xprt->address_strings[RPC_DISPLAY_ADDR]);
8337
8338         sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
8339
8340         /* Test connection for session trunking. Async exchange_id call */
8341         task = nfs4_run_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
8342         if (IS_ERR(task))
8343                 return;
8344
8345         status = task->tk_status;
8346         if (status == 0)
8347                 status = nfs4_detect_session_trunking(adata->clp,
8348                                 task->tk_msg.rpc_resp, xprt);
8349
8350         if (status == 0)
8351                 rpc_clnt_xprt_switch_add_xprt(clnt, xprt);
8352
8353         rpc_put_task(task);
8354 }
8355 EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
8356
8357 static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
8358                 const struct cred *cred)
8359 {
8360         struct rpc_message msg = {
8361                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
8362                 .rpc_argp = clp,
8363                 .rpc_cred = cred,
8364         };
8365         int status;
8366
8367         status = rpc_call_sync(clp->cl_rpcclient, &msg,
8368                                RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
8369         trace_nfs4_destroy_clientid(clp, status);
8370         if (status)
8371                 dprintk("NFS: Got error %d from the server %s on "
8372                         "DESTROY_CLIENTID.", status, clp->cl_hostname);
8373         return status;
8374 }
8375
8376 static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
8377                 const struct cred *cred)
8378 {
8379         unsigned int loop;
8380         int ret;
8381
8382         for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
8383                 ret = _nfs4_proc_destroy_clientid(clp, cred);
8384                 switch (ret) {
8385                 case -NFS4ERR_DELAY:
8386                 case -NFS4ERR_CLIENTID_BUSY:
8387                         ssleep(1);
8388                         break;
8389                 default:
8390                         return ret;
8391                 }
8392         }
8393         return 0;
8394 }
8395
8396 int nfs4_destroy_clientid(struct nfs_client *clp)
8397 {
8398         const struct cred *cred;
8399         int ret = 0;
8400
8401         if (clp->cl_mvops->minor_version < 1)
8402                 goto out;
8403         if (clp->cl_exchange_flags == 0)
8404                 goto out;
8405         if (clp->cl_preserve_clid)
8406                 goto out;
8407         cred = nfs4_get_clid_cred(clp);
8408         ret = nfs4_proc_destroy_clientid(clp, cred);
8409         put_cred(cred);
8410         switch (ret) {
8411         case 0:
8412         case -NFS4ERR_STALE_CLIENTID:
8413                 clp->cl_exchange_flags = 0;
8414         }
8415 out:
8416         return ret;
8417 }
8418
8419 #endif /* CONFIG_NFS_V4_1 */
8420
8421 struct nfs4_get_lease_time_data {
8422         struct nfs4_get_lease_time_args *args;
8423         struct nfs4_get_lease_time_res *res;
8424         struct nfs_client *clp;
8425 };
8426
8427 static void nfs4_get_lease_time_prepare(struct rpc_task *task,
8428                                         void *calldata)
8429 {
8430         struct nfs4_get_lease_time_data *data =
8431                         (struct nfs4_get_lease_time_data *)calldata;
8432
8433         dprintk("--> %s\n", __func__);
8434         /* just setup sequence, do not trigger session recovery
8435            since we're invoked within one */
8436         nfs4_setup_sequence(data->clp,
8437                         &data->args->la_seq_args,
8438                         &data->res->lr_seq_res,
8439                         task);
8440         dprintk("<-- %s\n", __func__);
8441 }
8442
8443 /*
8444  * Called from nfs4_state_manager thread for session setup, so don't recover
8445  * from sequence operation or clientid errors.
8446  */
8447 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
8448 {
8449         struct nfs4_get_lease_time_data *data =
8450                         (struct nfs4_get_lease_time_data *)calldata;
8451
8452         dprintk("--> %s\n", __func__);
8453         if (!nfs4_sequence_done(task, &data->res->lr_seq_res))
8454                 return;
8455         switch (task->tk_status) {
8456         case -NFS4ERR_DELAY:
8457         case -NFS4ERR_GRACE:
8458                 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
8459                 rpc_delay(task, NFS4_POLL_RETRY_MIN);
8460                 task->tk_status = 0;
8461                 /* fall through */
8462         case -NFS4ERR_RETRY_UNCACHED_REP:
8463                 rpc_restart_call_prepare(task);
8464                 return;
8465         }
8466         dprintk("<-- %s\n", __func__);
8467 }
8468
8469 static const struct rpc_call_ops nfs4_get_lease_time_ops = {
8470         .rpc_call_prepare = nfs4_get_lease_time_prepare,
8471         .rpc_call_done = nfs4_get_lease_time_done,
8472 };
8473
8474 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
8475 {
8476         struct nfs4_get_lease_time_args args;
8477         struct nfs4_get_lease_time_res res = {
8478                 .lr_fsinfo = fsinfo,
8479         };
8480         struct nfs4_get_lease_time_data data = {
8481                 .args = &args,
8482                 .res = &res,
8483                 .clp = clp,
8484         };
8485         struct rpc_message msg = {
8486                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
8487                 .rpc_argp = &args,
8488                 .rpc_resp = &res,
8489         };
8490         struct rpc_task_setup task_setup = {
8491                 .rpc_client = clp->cl_rpcclient,
8492                 .rpc_message = &msg,
8493                 .callback_ops = &nfs4_get_lease_time_ops,
8494                 .callback_data = &data,
8495                 .flags = RPC_TASK_TIMEOUT,
8496         };
8497
8498         nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0, 1);
8499         return nfs4_call_sync_custom(&task_setup);
8500 }
8501
8502 #ifdef CONFIG_NFS_V4_1
8503
8504 /*
8505  * Initialize the values to be used by the client in CREATE_SESSION
8506  * If nfs4_init_session set the fore channel request and response sizes,
8507  * use them.
8508  *
8509  * Set the back channel max_resp_sz_cached to zero to force the client to
8510  * always set csa_cachethis to FALSE because the current implementation
8511  * of the back channel DRC only supports caching the CB_SEQUENCE operation.
8512  */
8513 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
8514                                     struct rpc_clnt *clnt)
8515 {
8516         unsigned int max_rqst_sz, max_resp_sz;
8517         unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
8518         unsigned int max_bc_slots = rpc_num_bc_slots(clnt);
8519
8520         max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
8521         max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
8522
8523         /* Fore channel attributes */
8524         args->fc_attrs.max_rqst_sz = max_rqst_sz;
8525         args->fc_attrs.max_resp_sz = max_resp_sz;
8526         args->fc_attrs.max_ops = NFS4_MAX_OPS;
8527         args->fc_attrs.max_reqs = max_session_slots;
8528
8529         dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
8530                 "max_ops=%u max_reqs=%u\n",
8531                 __func__,
8532                 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
8533                 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
8534
8535         /* Back channel attributes */
8536         args->bc_attrs.max_rqst_sz = max_bc_payload;
8537         args->bc_attrs.max_resp_sz = max_bc_payload;
8538         args->bc_attrs.max_resp_sz_cached = 0;
8539         args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
8540         args->bc_attrs.max_reqs = max_t(unsigned short, max_session_cb_slots, 1);
8541         if (args->bc_attrs.max_reqs > max_bc_slots)
8542                 args->bc_attrs.max_reqs = max_bc_slots;
8543
8544         dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
8545                 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
8546                 __func__,
8547                 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
8548                 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
8549                 args->bc_attrs.max_reqs);
8550 }
8551
8552 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
8553                 struct nfs41_create_session_res *res)
8554 {
8555         struct nfs4_channel_attrs *sent = &args->fc_attrs;
8556         struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
8557
8558         if (rcvd->max_resp_sz > sent->max_resp_sz)
8559                 return -EINVAL;
8560         /*
8561          * Our requested max_ops is the minimum we need; we're not
8562          * prepared to break up compounds into smaller pieces than that.
8563          * So, no point even trying to continue if the server won't
8564          * cooperate:
8565          */
8566         if (rcvd->max_ops < sent->max_ops)
8567                 return -EINVAL;
8568         if (rcvd->max_reqs == 0)
8569                 return -EINVAL;
8570         if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
8571                 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
8572         return 0;
8573 }
8574
8575 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
8576                 struct nfs41_create_session_res *res)
8577 {
8578         struct nfs4_channel_attrs *sent = &args->bc_attrs;
8579         struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
8580
8581         if (!(res->flags & SESSION4_BACK_CHAN))
8582                 goto out;
8583         if (rcvd->max_rqst_sz > sent->max_rqst_sz)
8584                 return -EINVAL;
8585         if (rcvd->max_resp_sz < sent->max_resp_sz)
8586                 return -EINVAL;
8587         if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
8588                 return -EINVAL;
8589         if (rcvd->max_ops > sent->max_ops)
8590                 return -EINVAL;
8591         if (rcvd->max_reqs > sent->max_reqs)
8592                 return -EINVAL;
8593 out:
8594         return 0;
8595 }
8596
8597 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
8598                                      struct nfs41_create_session_res *res)
8599 {
8600         int ret;
8601
8602         ret = nfs4_verify_fore_channel_attrs(args, res);
8603         if (ret)
8604                 return ret;
8605         return nfs4_verify_back_channel_attrs(args, res);
8606 }
8607
8608 static void nfs4_update_session(struct nfs4_session *session,
8609                 struct nfs41_create_session_res *res)
8610 {
8611         nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
8612         /* Mark client id and session as being confirmed */
8613         session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
8614         set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
8615         session->flags = res->flags;
8616         memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
8617         if (res->flags & SESSION4_BACK_CHAN)
8618                 memcpy(&session->bc_attrs, &res->bc_attrs,
8619                                 sizeof(session->bc_attrs));
8620 }
8621
8622 static int _nfs4_proc_create_session(struct nfs_client *clp,
8623                 const struct cred *cred)
8624 {
8625         struct nfs4_session *session = clp->cl_session;
8626         struct nfs41_create_session_args args = {
8627                 .client = clp,
8628                 .clientid = clp->cl_clientid,
8629                 .seqid = clp->cl_seqid,
8630                 .cb_program = NFS4_CALLBACK,
8631         };
8632         struct nfs41_create_session_res res;
8633
8634         struct rpc_message msg = {
8635                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
8636                 .rpc_argp = &args,
8637                 .rpc_resp = &res,
8638                 .rpc_cred = cred,
8639         };
8640         int status;
8641
8642         nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
8643         args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
8644
8645         status = rpc_call_sync(session->clp->cl_rpcclient, &msg,
8646                                RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
8647         trace_nfs4_create_session(clp, status);
8648
8649         switch (status) {
8650         case -NFS4ERR_STALE_CLIENTID:
8651         case -NFS4ERR_DELAY:
8652         case -ETIMEDOUT:
8653         case -EACCES:
8654         case -EAGAIN:
8655                 goto out;
8656         }
8657
8658         clp->cl_seqid++;
8659         if (!status) {
8660                 /* Verify the session's negotiated channel_attrs values */
8661                 status = nfs4_verify_channel_attrs(&args, &res);
8662                 /* Increment the clientid slot sequence id */
8663                 if (status)
8664                         goto out;
8665                 nfs4_update_session(session, &res);
8666         }
8667 out:
8668         return status;
8669 }
8670
8671 /*
8672  * Issues a CREATE_SESSION operation to the server.
8673  * It is the responsibility of the caller to verify the session is
8674  * expired before calling this routine.
8675  */
8676 int nfs4_proc_create_session(struct nfs_client *clp, const struct cred *cred)
8677 {
8678         int status;
8679         unsigned *ptr;
8680         struct nfs4_session *session = clp->cl_session;
8681
8682         dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
8683
8684         status = _nfs4_proc_create_session(clp, cred);
8685         if (status)
8686                 goto out;
8687
8688         /* Init or reset the session slot tables */
8689         status = nfs4_setup_session_slot_tables(session);
8690         dprintk("slot table setup returned %d\n", status);
8691         if (status)
8692                 goto out;
8693
8694         ptr = (unsigned *)&session->sess_id.data[0];
8695         dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
8696                 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
8697 out:
8698         dprintk("<-- %s\n", __func__);
8699         return status;
8700 }
8701
8702 /*
8703  * Issue the over-the-wire RPC DESTROY_SESSION.
8704  * The caller must serialize access to this routine.
8705  */
8706 int nfs4_proc_destroy_session(struct nfs4_session *session,
8707                 const struct cred *cred)
8708 {
8709         struct rpc_message msg = {
8710                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
8711                 .rpc_argp = session,
8712                 .rpc_cred = cred,
8713         };
8714         int status = 0;
8715
8716         dprintk("--> nfs4_proc_destroy_session\n");
8717
8718         /* session is still being setup */
8719         if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
8720                 return 0;
8721
8722         status = rpc_call_sync(session->clp->cl_rpcclient, &msg,
8723                                RPC_TASK_TIMEOUT | RPC_TASK_NO_ROUND_ROBIN);
8724         trace_nfs4_destroy_session(session->clp, status);
8725
8726         if (status)
8727                 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
8728                         "Session has been destroyed regardless...\n", status);
8729
8730         dprintk("<-- nfs4_proc_destroy_session\n");
8731         return status;
8732 }
8733
8734 /*
8735  * Renew the cl_session lease.
8736  */
8737 struct nfs4_sequence_data {
8738         struct nfs_client *clp;
8739         struct nfs4_sequence_args args;
8740         struct nfs4_sequence_res res;
8741 };
8742
8743 static void nfs41_sequence_release(void *data)
8744 {
8745         struct nfs4_sequence_data *calldata = data;
8746         struct nfs_client *clp = calldata->clp;
8747
8748         if (refcount_read(&clp->cl_count) > 1)
8749                 nfs4_schedule_state_renewal(clp);
8750         nfs_put_client(clp);
8751         kfree(calldata);
8752 }
8753
8754 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8755 {
8756         switch(task->tk_status) {
8757         case -NFS4ERR_DELAY:
8758                 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8759                 return -EAGAIN;
8760         default:
8761                 nfs4_schedule_lease_recovery(clp);
8762         }
8763         return 0;
8764 }
8765
8766 static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
8767 {
8768         struct nfs4_sequence_data *calldata = data;
8769         struct nfs_client *clp = calldata->clp;
8770
8771         if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
8772                 return;
8773
8774         trace_nfs4_sequence(clp, task->tk_status);
8775         if (task->tk_status < 0) {
8776                 dprintk("%s ERROR %d\n", __func__, task->tk_status);
8777                 if (refcount_read(&clp->cl_count) == 1)
8778                         goto out;
8779
8780                 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
8781                         rpc_restart_call_prepare(task);
8782                         return;
8783                 }
8784         }
8785         dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
8786 out:
8787         dprintk("<-- %s\n", __func__);
8788 }
8789
8790 static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
8791 {
8792         struct nfs4_sequence_data *calldata = data;
8793         struct nfs_client *clp = calldata->clp;
8794         struct nfs4_sequence_args *args;
8795         struct nfs4_sequence_res *res;
8796
8797         args = task->tk_msg.rpc_argp;
8798         res = task->tk_msg.rpc_resp;
8799
8800         nfs4_setup_sequence(clp, args, res, task);
8801 }
8802
8803 static const struct rpc_call_ops nfs41_sequence_ops = {
8804         .rpc_call_done = nfs41_sequence_call_done,
8805         .rpc_call_prepare = nfs41_sequence_prepare,
8806         .rpc_release = nfs41_sequence_release,
8807 };
8808
8809 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
8810                 const struct cred *cred,
8811                 struct nfs4_slot *slot,
8812                 bool is_privileged)
8813 {
8814         struct nfs4_sequence_data *calldata;
8815         struct rpc_message msg = {
8816                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
8817                 .rpc_cred = cred,
8818         };
8819         struct rpc_task_setup task_setup_data = {
8820                 .rpc_client = clp->cl_rpcclient,
8821                 .rpc_message = &msg,
8822                 .callback_ops = &nfs41_sequence_ops,
8823                 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
8824         };
8825         struct rpc_task *ret;
8826
8827         ret = ERR_PTR(-EIO);
8828         if (!refcount_inc_not_zero(&clp->cl_count))
8829                 goto out_err;
8830
8831         ret = ERR_PTR(-ENOMEM);
8832         calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8833         if (calldata == NULL)
8834                 goto out_put_clp;
8835         nfs4_init_sequence(&calldata->args, &calldata->res, 0, is_privileged);
8836         nfs4_sequence_attach_slot(&calldata->args, &calldata->res, slot);
8837         msg.rpc_argp = &calldata->args;
8838         msg.rpc_resp = &calldata->res;
8839         calldata->clp = clp;
8840         task_setup_data.callback_data = calldata;
8841
8842         ret = rpc_run_task(&task_setup_data);
8843         if (IS_ERR(ret))
8844                 goto out_err;
8845         return ret;
8846 out_put_clp:
8847         nfs_put_client(clp);
8848 out_err:
8849         nfs41_release_slot(slot);
8850         return ret;
8851 }
8852
8853 static int nfs41_proc_async_sequence(struct nfs_client *clp, const struct cred *cred, unsigned renew_flags)
8854 {
8855         struct rpc_task *task;
8856         int ret = 0;
8857
8858         if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
8859                 return -EAGAIN;
8860         task = _nfs41_proc_sequence(clp, cred, NULL, false);
8861         if (IS_ERR(task))
8862                 ret = PTR_ERR(task);
8863         else
8864                 rpc_put_task_async(task);
8865         dprintk("<-- %s status=%d\n", __func__, ret);
8866         return ret;
8867 }
8868
8869 static int nfs4_proc_sequence(struct nfs_client *clp, const struct cred *cred)
8870 {
8871         struct rpc_task *task;
8872         int ret;
8873
8874         task = _nfs41_proc_sequence(clp, cred, NULL, true);
8875         if (IS_ERR(task)) {
8876                 ret = PTR_ERR(task);
8877                 goto out;
8878         }
8879         ret = rpc_wait_for_completion_task(task);
8880         if (!ret)
8881                 ret = task->tk_status;
8882         rpc_put_task(task);
8883 out:
8884         dprintk("<-- %s status=%d\n", __func__, ret);
8885         return ret;
8886 }
8887
8888 struct nfs4_reclaim_complete_data {
8889         struct nfs_client *clp;
8890         struct nfs41_reclaim_complete_args arg;
8891         struct nfs41_reclaim_complete_res res;
8892 };
8893
8894 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
8895 {
8896         struct nfs4_reclaim_complete_data *calldata = data;
8897
8898         nfs4_setup_sequence(calldata->clp,
8899                         &calldata->arg.seq_args,
8900                         &calldata->res.seq_res,
8901                         task);
8902 }
8903
8904 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8905 {
8906         switch(task->tk_status) {
8907         case 0:
8908                 wake_up_all(&clp->cl_lock_waitq);
8909                 /* Fallthrough */
8910         case -NFS4ERR_COMPLETE_ALREADY:
8911         case -NFS4ERR_WRONG_CRED: /* What to do here? */
8912                 break;
8913         case -NFS4ERR_DELAY:
8914                 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8915                 /* fall through */
8916         case -NFS4ERR_RETRY_UNCACHED_REP:
8917                 return -EAGAIN;
8918         case -NFS4ERR_BADSESSION:
8919         case -NFS4ERR_DEADSESSION:
8920         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8921                 break;
8922         default:
8923                 nfs4_schedule_lease_recovery(clp);
8924         }
8925         return 0;
8926 }
8927
8928 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
8929 {
8930         struct nfs4_reclaim_complete_data *calldata = data;
8931         struct nfs_client *clp = calldata->clp;
8932         struct nfs4_sequence_res *res = &calldata->res.seq_res;
8933
8934         dprintk("--> %s\n", __func__);
8935         if (!nfs41_sequence_done(task, res))
8936                 return;
8937
8938         trace_nfs4_reclaim_complete(clp, task->tk_status);
8939         if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
8940                 rpc_restart_call_prepare(task);
8941                 return;
8942         }
8943         dprintk("<-- %s\n", __func__);
8944 }
8945
8946 static void nfs4_free_reclaim_complete_data(void *data)
8947 {
8948         struct nfs4_reclaim_complete_data *calldata = data;
8949
8950         kfree(calldata);
8951 }
8952
8953 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
8954         .rpc_call_prepare = nfs4_reclaim_complete_prepare,
8955         .rpc_call_done = nfs4_reclaim_complete_done,
8956         .rpc_release = nfs4_free_reclaim_complete_data,
8957 };
8958
8959 /*
8960  * Issue a global reclaim complete.
8961  */
8962 static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
8963                 const struct cred *cred)
8964 {
8965         struct nfs4_reclaim_complete_data *calldata;
8966         struct rpc_message msg = {
8967                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
8968                 .rpc_cred = cred,
8969         };
8970         struct rpc_task_setup task_setup_data = {
8971                 .rpc_client = clp->cl_rpcclient,
8972                 .rpc_message = &msg,
8973                 .callback_ops = &nfs4_reclaim_complete_call_ops,
8974                 .flags = RPC_TASK_NO_ROUND_ROBIN,
8975         };
8976         int status = -ENOMEM;
8977
8978         dprintk("--> %s\n", __func__);
8979         calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8980         if (calldata == NULL)
8981                 goto out;
8982         calldata->clp = clp;
8983         calldata->arg.one_fs = 0;
8984
8985         nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0, 1);
8986         msg.rpc_argp = &calldata->arg;
8987         msg.rpc_resp = &calldata->res;
8988         task_setup_data.callback_data = calldata;
8989         status = nfs4_call_sync_custom(&task_setup_data);
8990 out:
8991         dprintk("<-- %s status=%d\n", __func__, status);
8992         return status;
8993 }
8994
8995 static void
8996 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
8997 {
8998         struct nfs4_layoutget *lgp = calldata;
8999         struct nfs_server *server = NFS_SERVER(lgp->args.inode);
9000
9001         dprintk("--> %s\n", __func__);
9002         nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args,
9003                                 &lgp->res.seq_res, task);
9004         dprintk("<-- %s\n", __func__);
9005 }
9006
9007 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
9008 {
9009         struct nfs4_layoutget *lgp = calldata;
9010
9011         dprintk("--> %s\n", __func__);
9012         nfs41_sequence_process(task, &lgp->res.seq_res);
9013         dprintk("<-- %s\n", __func__);
9014 }
9015
9016 static int
9017 nfs4_layoutget_handle_exception(struct rpc_task *task,
9018                 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
9019 {
9020         struct inode *inode = lgp->args.inode;
9021         struct nfs_server *server = NFS_SERVER(inode);
9022         struct pnfs_layout_hdr *lo;
9023         int nfs4err = task->tk_status;
9024         int err, status = 0;
9025         LIST_HEAD(head);
9026
9027         dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
9028
9029         nfs4_sequence_free_slot(&lgp->res.seq_res);
9030
9031         switch (nfs4err) {
9032         case 0:
9033                 goto out;
9034
9035         /*
9036          * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
9037          * on the file. set tk_status to -ENODATA to tell upper layer to
9038          * retry go inband.
9039          */
9040         case -NFS4ERR_LAYOUTUNAVAILABLE:
9041                 status = -ENODATA;
9042                 goto out;
9043         /*
9044          * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
9045          * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
9046          */
9047         case -NFS4ERR_BADLAYOUT:
9048                 status = -EOVERFLOW;
9049                 goto out;
9050         /*
9051          * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
9052          * (or clients) writing to the same RAID stripe except when
9053          * the minlength argument is 0 (see RFC5661 section 18.43.3).
9054          *
9055          * Treat it like we would RECALLCONFLICT -- we retry for a little
9056          * while, and then eventually give up.
9057          */
9058         case -NFS4ERR_LAYOUTTRYLATER:
9059                 if (lgp->args.minlength == 0) {
9060                         status = -EOVERFLOW;
9061                         goto out;
9062                 }
9063                 status = -EBUSY;
9064                 break;
9065         case -NFS4ERR_RECALLCONFLICT:
9066                 status = -ERECALLCONFLICT;
9067                 break;
9068         case -NFS4ERR_DELEG_REVOKED:
9069         case -NFS4ERR_ADMIN_REVOKED:
9070         case -NFS4ERR_EXPIRED:
9071         case -NFS4ERR_BAD_STATEID:
9072                 exception->timeout = 0;
9073                 spin_lock(&inode->i_lock);
9074                 lo = NFS_I(inode)->layout;
9075                 /* If the open stateid was bad, then recover it. */
9076                 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
9077                     !nfs4_stateid_match_other(&lgp->args.stateid, &lo->plh_stateid)) {
9078                         spin_unlock(&inode->i_lock);
9079                         exception->state = lgp->args.ctx->state;
9080                         exception->stateid = &lgp->args.stateid;
9081                         break;
9082                 }
9083
9084                 /*
9085                  * Mark the bad layout state as invalid, then retry
9086                  */
9087                 pnfs_mark_layout_stateid_invalid(lo, &head);
9088                 spin_unlock(&inode->i_lock);
9089                 nfs_commit_inode(inode, 0);
9090                 pnfs_free_lseg_list(&head);
9091                 status = -EAGAIN;
9092                 goto out;
9093         }
9094
9095         err = nfs4_handle_exception(server, nfs4err, exception);
9096         if (!status) {
9097                 if (exception->retry)
9098                         status = -EAGAIN;
9099                 else
9100                         status = err;
9101         }
9102 out:
9103         dprintk("<-- %s\n", __func__);
9104         return status;
9105 }
9106
9107 size_t max_response_pages(struct nfs_server *server)
9108 {
9109         u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
9110         return nfs_page_array_len(0, max_resp_sz);
9111 }
9112
9113 static void nfs4_layoutget_release(void *calldata)
9114 {
9115         struct nfs4_layoutget *lgp = calldata;
9116
9117         dprintk("--> %s\n", __func__);
9118         nfs4_sequence_free_slot(&lgp->res.seq_res);
9119         pnfs_layoutget_free(lgp);
9120         dprintk("<-- %s\n", __func__);
9121 }
9122
9123 static const struct rpc_call_ops nfs4_layoutget_call_ops = {
9124         .rpc_call_prepare = nfs4_layoutget_prepare,
9125         .rpc_call_done = nfs4_layoutget_done,
9126         .rpc_release = nfs4_layoutget_release,
9127 };
9128
9129 struct pnfs_layout_segment *
9130 nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout)
9131 {
9132         struct inode *inode = lgp->args.inode;
9133         struct nfs_server *server = NFS_SERVER(inode);
9134         struct rpc_task *task;
9135         struct rpc_message msg = {
9136                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
9137                 .rpc_argp = &lgp->args,
9138                 .rpc_resp = &lgp->res,
9139                 .rpc_cred = lgp->cred,
9140         };
9141         struct rpc_task_setup task_setup_data = {
9142                 .rpc_client = server->client,
9143                 .rpc_message = &msg,
9144                 .callback_ops = &nfs4_layoutget_call_ops,
9145                 .callback_data = lgp,
9146                 .flags = RPC_TASK_ASYNC,
9147         };
9148         struct pnfs_layout_segment *lseg = NULL;
9149         struct nfs4_exception exception = {
9150                 .inode = inode,
9151                 .timeout = *timeout,
9152         };
9153         int status = 0;
9154
9155         dprintk("--> %s\n", __func__);
9156
9157         /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
9158         pnfs_get_layout_hdr(NFS_I(inode)->layout);
9159
9160         nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0, 0);
9161
9162         task = rpc_run_task(&task_setup_data);
9163         if (IS_ERR(task))
9164                 return ERR_CAST(task);
9165         status = rpc_wait_for_completion_task(task);
9166         if (status != 0)
9167                 goto out;
9168
9169         if (task->tk_status < 0) {
9170                 status = nfs4_layoutget_handle_exception(task, lgp, &exception);
9171                 *timeout = exception.timeout;
9172         } else if (lgp->res.layoutp->len == 0) {
9173                 status = -EAGAIN;
9174                 *timeout = nfs4_update_delay(&exception.timeout);
9175         } else
9176                 lseg = pnfs_layout_process(lgp);
9177 out:
9178         trace_nfs4_layoutget(lgp->args.ctx,
9179                         &lgp->args.range,
9180                         &lgp->res.range,
9181                         &lgp->res.stateid,
9182                         status);
9183
9184         rpc_put_task(task);
9185         dprintk("<-- %s status=%d\n", __func__, status);
9186         if (status)
9187                 return ERR_PTR(status);
9188         return lseg;
9189 }
9190
9191 static void
9192 nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
9193 {
9194         struct nfs4_layoutreturn *lrp = calldata;
9195
9196         dprintk("--> %s\n", __func__);
9197         nfs4_setup_sequence(lrp->clp,
9198                         &lrp->args.seq_args,
9199                         &lrp->res.seq_res,
9200                         task);
9201         if (!pnfs_layout_is_valid(lrp->args.layout))
9202                 rpc_exit(task, 0);
9203 }
9204
9205 static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
9206 {
9207         struct nfs4_layoutreturn *lrp = calldata;
9208         struct nfs_server *server;
9209
9210         dprintk("--> %s\n", __func__);
9211
9212         if (!nfs41_sequence_process(task, &lrp->res.seq_res))
9213                 return;
9214
9215         /*
9216          * Was there an RPC level error? Assume the call succeeded,
9217          * and that we need to release the layout
9218          */
9219         if (task->tk_rpc_status != 0 && RPC_WAS_SENT(task)) {
9220                 lrp->res.lrs_present = 0;
9221                 return;
9222         }
9223
9224         server = NFS_SERVER(lrp->args.inode);
9225         switch (task->tk_status) {
9226         case -NFS4ERR_OLD_STATEID:
9227                 if (nfs4_layout_refresh_old_stateid(&lrp->args.stateid,
9228                                         &lrp->args.range,
9229                                         lrp->args.inode))
9230                         goto out_restart;
9231                 /* Fallthrough */
9232         default:
9233                 task->tk_status = 0;
9234                 /* Fallthrough */
9235         case 0:
9236                 break;
9237         case -NFS4ERR_DELAY:
9238                 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
9239                         break;
9240                 goto out_restart;
9241         }
9242         dprintk("<-- %s\n", __func__);
9243         return;
9244 out_restart:
9245         task->tk_status = 0;
9246         nfs4_sequence_free_slot(&lrp->res.seq_res);
9247         rpc_restart_call_prepare(task);
9248 }
9249
9250 static void nfs4_layoutreturn_release(void *calldata)
9251 {
9252         struct nfs4_layoutreturn *lrp = calldata;
9253         struct pnfs_layout_hdr *lo = lrp->args.layout;
9254
9255         dprintk("--> %s\n", __func__);
9256         pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range,
9257                         lrp->res.lrs_present ? &lrp->res.stateid : NULL);
9258         nfs4_sequence_free_slot(&lrp->res.seq_res);
9259         if (lrp->ld_private.ops && lrp->ld_private.ops->free)
9260                 lrp->ld_private.ops->free(&lrp->ld_private);
9261         pnfs_put_layout_hdr(lrp->args.layout);
9262         nfs_iput_and_deactive(lrp->inode);
9263         kfree(calldata);
9264         dprintk("<-- %s\n", __func__);
9265 }
9266
9267 static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
9268         .rpc_call_prepare = nfs4_layoutreturn_prepare,
9269         .rpc_call_done = nfs4_layoutreturn_done,
9270         .rpc_release = nfs4_layoutreturn_release,
9271 };
9272
9273 int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
9274 {
9275         struct rpc_task *task;
9276         struct rpc_message msg = {
9277                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
9278                 .rpc_argp = &lrp->args,
9279                 .rpc_resp = &lrp->res,
9280                 .rpc_cred = lrp->cred,
9281         };
9282         struct rpc_task_setup task_setup_data = {
9283                 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
9284                 .rpc_message = &msg,
9285                 .callback_ops = &nfs4_layoutreturn_call_ops,
9286                 .callback_data = lrp,
9287         };
9288         int status = 0;
9289
9290         nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
9291                         NFS_SP4_MACH_CRED_PNFS_CLEANUP,
9292                         &task_setup_data.rpc_client, &msg);
9293
9294         dprintk("--> %s\n", __func__);
9295         if (!sync) {
9296                 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
9297                 if (!lrp->inode) {
9298                         nfs4_layoutreturn_release(lrp);
9299                         return -EAGAIN;
9300                 }
9301                 task_setup_data.flags |= RPC_TASK_ASYNC;
9302         }
9303         nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1, 0);
9304         task = rpc_run_task(&task_setup_data);
9305         if (IS_ERR(task))
9306                 return PTR_ERR(task);
9307         if (sync)
9308                 status = task->tk_status;
9309         trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
9310         dprintk("<-- %s status=%d\n", __func__, status);
9311         rpc_put_task(task);
9312         return status;
9313 }
9314
9315 static int
9316 _nfs4_proc_getdeviceinfo(struct nfs_server *server,
9317                 struct pnfs_device *pdev,
9318                 const struct cred *cred)
9319 {
9320         struct nfs4_getdeviceinfo_args args = {
9321                 .pdev = pdev,
9322                 .notify_types = NOTIFY_DEVICEID4_CHANGE |
9323                         NOTIFY_DEVICEID4_DELETE,
9324         };
9325         struct nfs4_getdeviceinfo_res res = {
9326                 .pdev = pdev,
9327         };
9328         struct rpc_message msg = {
9329                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
9330                 .rpc_argp = &args,
9331                 .rpc_resp = &res,
9332                 .rpc_cred = cred,
9333         };
9334         int status;
9335
9336         dprintk("--> %s\n", __func__);
9337         status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
9338         if (res.notification & ~args.notify_types)
9339                 dprintk("%s: unsupported notification\n", __func__);
9340         if (res.notification != args.notify_types)
9341                 pdev->nocache = 1;
9342
9343         dprintk("<-- %s status=%d\n", __func__, status);
9344
9345         return status;
9346 }
9347
9348 int nfs4_proc_getdeviceinfo(struct nfs_server *server,
9349                 struct pnfs_device *pdev,
9350                 const struct cred *cred)
9351 {
9352         struct nfs4_exception exception = { };
9353         int err;
9354
9355         do {
9356                 err = nfs4_handle_exception(server,
9357                                         _nfs4_proc_getdeviceinfo(server, pdev, cred),
9358                                         &exception);
9359         } while (exception.retry);
9360         return err;
9361 }
9362 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
9363
9364 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
9365 {
9366         struct nfs4_layoutcommit_data *data = calldata;
9367         struct nfs_server *server = NFS_SERVER(data->args.inode);
9368
9369         nfs4_setup_sequence(server->nfs_client,
9370                         &data->args.seq_args,
9371                         &data->res.seq_res,
9372                         task);
9373 }
9374
9375 static void
9376 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
9377 {
9378         struct nfs4_layoutcommit_data *data = calldata;
9379         struct nfs_server *server = NFS_SERVER(data->args.inode);
9380
9381         if (!nfs41_sequence_done(task, &data->res.seq_res))
9382                 return;
9383
9384         switch (task->tk_status) { /* Just ignore these failures */
9385         case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
9386         case -NFS4ERR_BADIOMODE:     /* no IOMODE_RW layout for range */
9387         case -NFS4ERR_BADLAYOUT:     /* no layout */
9388         case -NFS4ERR_GRACE:        /* loca_recalim always false */
9389                 task->tk_status = 0;
9390         case 0:
9391                 break;
9392         default:
9393                 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
9394                         rpc_restart_call_prepare(task);
9395                         return;
9396                 }
9397         }
9398 }
9399
9400 static void nfs4_layoutcommit_release(void *calldata)
9401 {
9402         struct nfs4_layoutcommit_data *data = calldata;
9403
9404         pnfs_cleanup_layoutcommit(data);
9405         nfs_post_op_update_inode_force_wcc(data->args.inode,
9406                                            data->res.fattr);
9407         put_cred(data->cred);
9408         nfs_iput_and_deactive(data->inode);
9409         kfree(data);
9410 }
9411
9412 static const struct rpc_call_ops nfs4_layoutcommit_ops = {
9413         .rpc_call_prepare = nfs4_layoutcommit_prepare,
9414         .rpc_call_done = nfs4_layoutcommit_done,
9415         .rpc_release = nfs4_layoutcommit_release,
9416 };
9417
9418 int
9419 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
9420 {
9421         struct rpc_message msg = {
9422                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
9423                 .rpc_argp = &data->args,
9424                 .rpc_resp = &data->res,
9425                 .rpc_cred = data->cred,
9426         };
9427         struct rpc_task_setup task_setup_data = {
9428                 .task = &data->task,
9429                 .rpc_client = NFS_CLIENT(data->args.inode),
9430                 .rpc_message = &msg,
9431                 .callback_ops = &nfs4_layoutcommit_ops,
9432                 .callback_data = data,
9433         };
9434         struct rpc_task *task;
9435         int status = 0;
9436
9437         dprintk("NFS: initiating layoutcommit call. sync %d "
9438                 "lbw: %llu inode %lu\n", sync,
9439                 data->args.lastbytewritten,
9440                 data->args.inode->i_ino);
9441
9442         if (!sync) {
9443                 data->inode = nfs_igrab_and_active(data->args.inode);
9444                 if (data->inode == NULL) {
9445                         nfs4_layoutcommit_release(data);
9446                         return -EAGAIN;
9447                 }
9448                 task_setup_data.flags = RPC_TASK_ASYNC;
9449         }
9450         nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0);
9451         task = rpc_run_task(&task_setup_data);
9452         if (IS_ERR(task))
9453                 return PTR_ERR(task);
9454         if (sync)
9455                 status = task->tk_status;
9456         trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
9457         dprintk("%s: status %d\n", __func__, status);
9458         rpc_put_task(task);
9459         return status;
9460 }
9461
9462 /*
9463  * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
9464  * possible) as per RFC3530bis and RFC5661 Security Considerations sections
9465  */
9466 static int
9467 _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
9468                     struct nfs_fsinfo *info,
9469                     struct nfs4_secinfo_flavors *flavors, bool use_integrity)
9470 {
9471         struct nfs41_secinfo_no_name_args args = {
9472                 .style = SECINFO_STYLE_CURRENT_FH,
9473         };
9474         struct nfs4_secinfo_res res = {
9475                 .flavors = flavors,
9476         };
9477         struct rpc_message msg = {
9478                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
9479                 .rpc_argp = &args,
9480                 .rpc_resp = &res,
9481         };
9482         struct rpc_clnt *clnt = server->client;
9483         struct nfs4_call_sync_data data = {
9484                 .seq_server = server,
9485                 .seq_args = &args.seq_args,
9486                 .seq_res = &res.seq_res,
9487         };
9488         struct rpc_task_setup task_setup = {
9489                 .rpc_client = server->client,
9490                 .rpc_message = &msg,
9491                 .callback_ops = server->nfs_client->cl_mvops->call_sync_ops,
9492                 .callback_data = &data,
9493                 .flags = RPC_TASK_NO_ROUND_ROBIN,
9494         };
9495         const struct cred *cred = NULL;
9496         int status;
9497
9498         if (use_integrity) {
9499                 clnt = server->nfs_client->cl_rpcclient;
9500                 task_setup.rpc_client = clnt;
9501
9502                 cred = nfs4_get_clid_cred(server->nfs_client);
9503                 msg.rpc_cred = cred;
9504         }
9505
9506         dprintk("--> %s\n", __func__);
9507         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 0);
9508         status = nfs4_call_sync_custom(&task_setup);
9509         dprintk("<-- %s status=%d\n", __func__, status);
9510
9511         put_cred(cred);
9512
9513         return status;
9514 }
9515
9516 static int
9517 nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
9518                            struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
9519 {
9520         struct nfs4_exception exception = {
9521                 .interruptible = true,
9522         };
9523         int err;
9524         do {
9525                 /* first try using integrity protection */
9526                 err = -NFS4ERR_WRONGSEC;
9527
9528                 /* try to use integrity protection with machine cred */
9529                 if (_nfs4_is_integrity_protected(server->nfs_client))
9530                         err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
9531                                                           flavors, true);
9532
9533                 /*
9534                  * if unable to use integrity protection, or SECINFO with
9535                  * integrity protection returns NFS4ERR_WRONGSEC (which is
9536                  * disallowed by spec, but exists in deployed servers) use
9537                  * the current filesystem's rpc_client and the user cred.
9538                  */
9539                 if (err == -NFS4ERR_WRONGSEC)
9540                         err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
9541                                                           flavors, false);
9542
9543                 switch (err) {
9544                 case 0:
9545                 case -NFS4ERR_WRONGSEC:
9546                 case -ENOTSUPP:
9547                         goto out;
9548                 default:
9549                         err = nfs4_handle_exception(server, err, &exception);
9550                 }
9551         } while (exception.retry);
9552 out:
9553         return err;
9554 }
9555
9556 static int
9557 nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
9558                     struct nfs_fsinfo *info)
9559 {
9560         int err;
9561         struct page *page;
9562         rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
9563         struct nfs4_secinfo_flavors *flavors;
9564         struct nfs4_secinfo4 *secinfo;
9565         int i;
9566
9567         page = alloc_page(GFP_KERNEL);
9568         if (!page) {
9569                 err = -ENOMEM;
9570                 goto out;
9571         }
9572
9573         flavors = page_address(page);
9574         err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
9575
9576         /*
9577          * Fall back on "guess and check" method if
9578          * the server doesn't support SECINFO_NO_NAME
9579          */
9580         if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
9581                 err = nfs4_find_root_sec(server, fhandle, info);
9582                 goto out_freepage;
9583         }
9584         if (err)
9585                 goto out_freepage;
9586
9587         for (i = 0; i < flavors->num_flavors; i++) {
9588                 secinfo = &flavors->flavors[i];
9589
9590                 switch (secinfo->flavor) {
9591                 case RPC_AUTH_NULL:
9592                 case RPC_AUTH_UNIX:
9593                 case RPC_AUTH_GSS:
9594                         flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
9595                                         &secinfo->flavor_info);
9596                         break;
9597                 default:
9598                         flavor = RPC_AUTH_MAXFLAVOR;
9599                         break;
9600                 }
9601
9602                 if (!nfs_auth_info_match(&server->auth_info, flavor))
9603                         flavor = RPC_AUTH_MAXFLAVOR;
9604
9605                 if (flavor != RPC_AUTH_MAXFLAVOR) {
9606                         err = nfs4_lookup_root_sec(server, fhandle,
9607                                                    info, flavor);
9608                         if (!err)
9609                                 break;
9610                 }
9611         }
9612
9613         if (flavor == RPC_AUTH_MAXFLAVOR)
9614                 err = -EPERM;
9615
9616 out_freepage:
9617         put_page(page);
9618         if (err == -EACCES)
9619                 return -EPERM;
9620 out:
9621         return err;
9622 }
9623
9624 static int _nfs41_test_stateid(struct nfs_server *server,
9625                 nfs4_stateid *stateid,
9626                 const struct cred *cred)
9627 {
9628         int status;
9629         struct nfs41_test_stateid_args args = {
9630                 .stateid = stateid,
9631         };
9632         struct nfs41_test_stateid_res res;
9633         struct rpc_message msg = {
9634                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
9635                 .rpc_argp = &args,
9636                 .rpc_resp = &res,
9637                 .rpc_cred = cred,
9638         };
9639         struct rpc_clnt *rpc_client = server->client;
9640
9641         nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9642                 &rpc_client, &msg);
9643
9644         dprintk("NFS call  test_stateid %p\n", stateid);
9645         nfs4_init_sequence(&args.seq_args, &res.seq_res, 0, 1);
9646         status = nfs4_call_sync_sequence(rpc_client, server, &msg,
9647                         &args.seq_args, &res.seq_res);
9648         if (status != NFS_OK) {
9649                 dprintk("NFS reply test_stateid: failed, %d\n", status);
9650                 return status;
9651         }
9652         dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
9653         return -res.status;
9654 }
9655
9656 static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
9657                 int err, struct nfs4_exception *exception)
9658 {
9659         exception->retry = 0;
9660         switch(err) {
9661         case -NFS4ERR_DELAY:
9662         case -NFS4ERR_RETRY_UNCACHED_REP:
9663                 nfs4_handle_exception(server, err, exception);
9664                 break;
9665         case -NFS4ERR_BADSESSION:
9666         case -NFS4ERR_BADSLOT:
9667         case -NFS4ERR_BAD_HIGH_SLOT:
9668         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
9669         case -NFS4ERR_DEADSESSION:
9670                 nfs4_do_handle_exception(server, err, exception);
9671         }
9672 }
9673
9674 /**
9675  * nfs41_test_stateid - perform a TEST_STATEID operation
9676  *
9677  * @server: server / transport on which to perform the operation
9678  * @stateid: state ID to test
9679  * @cred: credential
9680  *
9681  * Returns NFS_OK if the server recognizes that "stateid" is valid.
9682  * Otherwise a negative NFS4ERR value is returned if the operation
9683  * failed or the state ID is not currently valid.
9684  */
9685 static int nfs41_test_stateid(struct nfs_server *server,
9686                 nfs4_stateid *stateid,
9687                 const struct cred *cred)
9688 {
9689         struct nfs4_exception exception = {
9690                 .interruptible = true,
9691         };
9692         int err;
9693         do {
9694                 err = _nfs41_test_stateid(server, stateid, cred);
9695                 nfs4_handle_delay_or_session_error(server, err, &exception);
9696         } while (exception.retry);
9697         return err;
9698 }
9699
9700 struct nfs_free_stateid_data {
9701         struct nfs_server *server;
9702         struct nfs41_free_stateid_args args;
9703         struct nfs41_free_stateid_res res;
9704 };
9705
9706 static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
9707 {
9708         struct nfs_free_stateid_data *data = calldata;
9709         nfs4_setup_sequence(data->server->nfs_client,
9710                         &data->args.seq_args,
9711                         &data->res.seq_res,
9712                         task);
9713 }
9714
9715 static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
9716 {
9717         struct nfs_free_stateid_data *data = calldata;
9718
9719         nfs41_sequence_done(task, &data->res.seq_res);
9720
9721         switch (task->tk_status) {
9722         case -NFS4ERR_DELAY:
9723                 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
9724                         rpc_restart_call_prepare(task);
9725         }
9726 }
9727
9728 static void nfs41_free_stateid_release(void *calldata)
9729 {
9730         kfree(calldata);
9731 }
9732
9733 static const struct rpc_call_ops nfs41_free_stateid_ops = {
9734         .rpc_call_prepare = nfs41_free_stateid_prepare,
9735         .rpc_call_done = nfs41_free_stateid_done,
9736         .rpc_release = nfs41_free_stateid_release,
9737 };
9738
9739 /**
9740  * nfs41_free_stateid - perform a FREE_STATEID operation
9741  *
9742  * @server: server / transport on which to perform the operation
9743  * @stateid: state ID to release
9744  * @cred: credential
9745  * @privileged: set to true if this call needs to be privileged
9746  *
9747  * Note: this function is always asynchronous.
9748  */
9749 static int nfs41_free_stateid(struct nfs_server *server,
9750                 const nfs4_stateid *stateid,
9751                 const struct cred *cred,
9752                 bool privileged)
9753 {
9754         struct rpc_message msg = {
9755                 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
9756                 .rpc_cred = cred,
9757         };
9758         struct rpc_task_setup task_setup = {
9759                 .rpc_client = server->client,
9760                 .rpc_message = &msg,
9761                 .callback_ops = &nfs41_free_stateid_ops,
9762                 .flags = RPC_TASK_ASYNC,
9763         };
9764         struct nfs_free_stateid_data *data;
9765         struct rpc_task *task;
9766
9767         nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9768                 &task_setup.rpc_client, &msg);
9769
9770         dprintk("NFS call  free_stateid %p\n", stateid);
9771         data = kmalloc(sizeof(*data), GFP_NOFS);
9772         if (!data)
9773                 return -ENOMEM;
9774         data->server = server;
9775         nfs4_stateid_copy(&data->args.stateid, stateid);
9776
9777         task_setup.callback_data = data;
9778
9779         msg.rpc_argp = &data->args;
9780         msg.rpc_resp = &data->res;
9781         nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, privileged);
9782         task = rpc_run_task(&task_setup);
9783         if (IS_ERR(task))
9784                 return PTR_ERR(task);
9785         rpc_put_task(task);
9786         return 0;
9787 }
9788
9789 static void
9790 nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
9791 {
9792         const struct cred *cred = lsp->ls_state->owner->so_cred;
9793
9794         nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
9795         nfs4_free_lock_state(server, lsp);
9796 }
9797
9798 static bool nfs41_match_stateid(const nfs4_stateid *s1,
9799                 const nfs4_stateid *s2)
9800 {
9801         if (s1->type != s2->type)
9802                 return false;
9803
9804         if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
9805                 return false;
9806
9807         if (s1->seqid == s2->seqid)
9808                 return true;
9809
9810         return s1->seqid == 0 || s2->seqid == 0;
9811 }
9812
9813 #endif /* CONFIG_NFS_V4_1 */
9814
9815 static bool nfs4_match_stateid(const nfs4_stateid *s1,
9816                 const nfs4_stateid *s2)
9817 {
9818         return nfs4_stateid_match(s1, s2);
9819 }
9820
9821
9822 static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
9823         .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9824         .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9825         .recover_open   = nfs4_open_reclaim,
9826         .recover_lock   = nfs4_lock_reclaim,
9827         .establish_clid = nfs4_init_clientid,
9828         .detect_trunking = nfs40_discover_server_trunking,
9829 };
9830
9831 #if defined(CONFIG_NFS_V4_1)
9832 static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
9833         .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9834         .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9835         .recover_open   = nfs4_open_reclaim,
9836         .recover_lock   = nfs4_lock_reclaim,
9837         .establish_clid = nfs41_init_clientid,
9838         .reclaim_complete = nfs41_proc_reclaim_complete,
9839         .detect_trunking = nfs41_discover_server_trunking,
9840 };
9841 #endif /* CONFIG_NFS_V4_1 */
9842
9843 static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
9844         .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9845         .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
9846         .recover_open   = nfs40_open_expired,
9847         .recover_lock   = nfs4_lock_expired,
9848         .establish_clid = nfs4_init_clientid,
9849 };
9850
9851 #if defined(CONFIG_NFS_V4_1)
9852 static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
9853         .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9854         .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
9855         .recover_open   = nfs41_open_expired,
9856         .recover_lock   = nfs41_lock_expired,
9857         .establish_clid = nfs41_init_clientid,
9858 };
9859 #endif /* CONFIG_NFS_V4_1 */
9860
9861 static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
9862         .sched_state_renewal = nfs4_proc_async_renew,
9863         .get_state_renewal_cred = nfs4_get_renew_cred,
9864         .renew_lease = nfs4_proc_renew,
9865 };
9866
9867 #if defined(CONFIG_NFS_V4_1)
9868 static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
9869         .sched_state_renewal = nfs41_proc_async_sequence,
9870         .get_state_renewal_cred = nfs4_get_machine_cred,
9871         .renew_lease = nfs4_proc_sequence,
9872 };
9873 #endif
9874
9875 static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
9876         .get_locations = _nfs40_proc_get_locations,
9877         .fsid_present = _nfs40_proc_fsid_present,
9878 };
9879
9880 #if defined(CONFIG_NFS_V4_1)
9881 static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
9882         .get_locations = _nfs41_proc_get_locations,
9883         .fsid_present = _nfs41_proc_fsid_present,
9884 };
9885 #endif  /* CONFIG_NFS_V4_1 */
9886
9887 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
9888         .minor_version = 0,
9889         .init_caps = NFS_CAP_READDIRPLUS
9890                 | NFS_CAP_ATOMIC_OPEN
9891                 | NFS_CAP_POSIX_LOCK,
9892         .init_client = nfs40_init_client,
9893         .shutdown_client = nfs40_shutdown_client,
9894         .match_stateid = nfs4_match_stateid,
9895         .find_root_sec = nfs4_find_root_sec,
9896         .free_lock_state = nfs4_release_lockowner,
9897         .test_and_free_expired = nfs40_test_and_free_expired_stateid,
9898         .alloc_seqid = nfs_alloc_seqid,
9899         .call_sync_ops = &nfs40_call_sync_ops,
9900         .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
9901         .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
9902         .state_renewal_ops = &nfs40_state_renewal_ops,
9903         .mig_recovery_ops = &nfs40_mig_recovery_ops,
9904 };
9905
9906 #if defined(CONFIG_NFS_V4_1)
9907 static struct nfs_seqid *
9908 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
9909 {
9910         return NULL;
9911 }
9912
9913 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
9914         .minor_version = 1,
9915         .init_caps = NFS_CAP_READDIRPLUS
9916                 | NFS_CAP_ATOMIC_OPEN
9917                 | NFS_CAP_POSIX_LOCK
9918                 | NFS_CAP_STATEID_NFSV41
9919                 | NFS_CAP_ATOMIC_OPEN_V1
9920                 | NFS_CAP_LGOPEN,
9921         .init_client = nfs41_init_client,
9922         .shutdown_client = nfs41_shutdown_client,
9923         .match_stateid = nfs41_match_stateid,
9924         .find_root_sec = nfs41_find_root_sec,
9925         .free_lock_state = nfs41_free_lock_state,
9926         .test_and_free_expired = nfs41_test_and_free_expired_stateid,
9927         .alloc_seqid = nfs_alloc_no_seqid,
9928         .session_trunk = nfs4_test_session_trunk,
9929         .call_sync_ops = &nfs41_call_sync_ops,
9930         .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9931         .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9932         .state_renewal_ops = &nfs41_state_renewal_ops,
9933         .mig_recovery_ops = &nfs41_mig_recovery_ops,
9934 };
9935 #endif
9936
9937 #if defined(CONFIG_NFS_V4_2)
9938 static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
9939         .minor_version = 2,
9940         .init_caps = NFS_CAP_READDIRPLUS
9941                 | NFS_CAP_ATOMIC_OPEN
9942                 | NFS_CAP_POSIX_LOCK
9943                 | NFS_CAP_STATEID_NFSV41
9944                 | NFS_CAP_ATOMIC_OPEN_V1
9945                 | NFS_CAP_LGOPEN
9946                 | NFS_CAP_ALLOCATE
9947                 | NFS_CAP_COPY
9948                 | NFS_CAP_OFFLOAD_CANCEL
9949                 | NFS_CAP_COPY_NOTIFY
9950                 | NFS_CAP_DEALLOCATE
9951                 | NFS_CAP_SEEK
9952                 | NFS_CAP_LAYOUTSTATS
9953                 | NFS_CAP_CLONE
9954                 | NFS_CAP_LAYOUTERROR,
9955         .init_client = nfs41_init_client,
9956         .shutdown_client = nfs41_shutdown_client,
9957         .match_stateid = nfs41_match_stateid,
9958         .find_root_sec = nfs41_find_root_sec,
9959         .free_lock_state = nfs41_free_lock_state,
9960         .call_sync_ops = &nfs41_call_sync_ops,
9961         .test_and_free_expired = nfs41_test_and_free_expired_stateid,
9962         .alloc_seqid = nfs_alloc_no_seqid,
9963         .session_trunk = nfs4_test_session_trunk,
9964         .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9965         .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9966         .state_renewal_ops = &nfs41_state_renewal_ops,
9967         .mig_recovery_ops = &nfs41_mig_recovery_ops,
9968 };
9969 #endif
9970
9971 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
9972         [0] = &nfs_v4_0_minor_ops,
9973 #if defined(CONFIG_NFS_V4_1)
9974         [1] = &nfs_v4_1_minor_ops,
9975 #endif
9976 #if defined(CONFIG_NFS_V4_2)
9977         [2] = &nfs_v4_2_minor_ops,
9978 #endif
9979 };
9980
9981 static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
9982 {
9983         ssize_t error, error2;
9984
9985         error = generic_listxattr(dentry, list, size);
9986         if (error < 0)
9987                 return error;
9988         if (list) {
9989                 list += error;
9990                 size -= error;
9991         }
9992
9993         error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size);
9994         if (error2 < 0)
9995                 return error2;
9996         return error + error2;
9997 }
9998
9999 static const struct inode_operations nfs4_dir_inode_operations = {
10000         .create         = nfs_create,
10001         .lookup         = nfs_lookup,
10002         .atomic_open    = nfs_atomic_open,
10003         .link           = nfs_link,
10004         .unlink         = nfs_unlink,
10005         .symlink        = nfs_symlink,
10006         .mkdir          = nfs_mkdir,
10007         .rmdir          = nfs_rmdir,
10008         .mknod          = nfs_mknod,
10009         .rename         = nfs_rename,
10010         .permission     = nfs_permission,
10011         .getattr        = nfs_getattr,
10012         .setattr        = nfs_setattr,
10013         .listxattr      = nfs4_listxattr,
10014 };
10015
10016 static const struct inode_operations nfs4_file_inode_operations = {
10017         .permission     = nfs_permission,
10018         .getattr        = nfs_getattr,
10019         .setattr        = nfs_setattr,
10020         .listxattr      = nfs4_listxattr,
10021 };
10022
10023 const struct nfs_rpc_ops nfs_v4_clientops = {
10024         .version        = 4,                    /* protocol version */
10025         .dentry_ops     = &nfs4_dentry_operations,
10026         .dir_inode_ops  = &nfs4_dir_inode_operations,
10027         .file_inode_ops = &nfs4_file_inode_operations,
10028         .file_ops       = &nfs4_file_operations,
10029         .getroot        = nfs4_proc_get_root,
10030         .submount       = nfs4_submount,
10031         .try_get_tree   = nfs4_try_get_tree,
10032         .getattr        = nfs4_proc_getattr,
10033         .setattr        = nfs4_proc_setattr,
10034         .lookup         = nfs4_proc_lookup,
10035         .lookupp        = nfs4_proc_lookupp,
10036         .access         = nfs4_proc_access,
10037         .readlink       = nfs4_proc_readlink,
10038         .create         = nfs4_proc_create,
10039         .remove         = nfs4_proc_remove,
10040         .unlink_setup   = nfs4_proc_unlink_setup,
10041         .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
10042         .unlink_done    = nfs4_proc_unlink_done,
10043         .rename_setup   = nfs4_proc_rename_setup,
10044         .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
10045         .rename_done    = nfs4_proc_rename_done,
10046         .link           = nfs4_proc_link,
10047         .symlink        = nfs4_proc_symlink,
10048         .mkdir          = nfs4_proc_mkdir,
10049         .rmdir          = nfs4_proc_rmdir,
10050         .readdir        = nfs4_proc_readdir,
10051         .mknod          = nfs4_proc_mknod,
10052         .statfs         = nfs4_proc_statfs,
10053         .fsinfo         = nfs4_proc_fsinfo,
10054         .pathconf       = nfs4_proc_pathconf,
10055         .set_capabilities = nfs4_server_capabilities,
10056         .decode_dirent  = nfs4_decode_dirent,
10057         .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
10058         .read_setup     = nfs4_proc_read_setup,
10059         .read_done      = nfs4_read_done,
10060         .write_setup    = nfs4_proc_write_setup,
10061         .write_done     = nfs4_write_done,
10062         .commit_setup   = nfs4_proc_commit_setup,
10063         .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
10064         .commit_done    = nfs4_commit_done,
10065         .lock           = nfs4_proc_lock,
10066         .clear_acl_cache = nfs4_zap_acl_attr,
10067         .close_context  = nfs4_close_context,
10068         .open_context   = nfs4_atomic_open,
10069         .have_delegation = nfs4_have_delegation,
10070         .alloc_client   = nfs4_alloc_client,
10071         .init_client    = nfs4_init_client,
10072         .free_client    = nfs4_free_client,
10073         .create_server  = nfs4_create_server,
10074         .clone_server   = nfs_clone_server,
10075 };
10076
10077 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
10078         .name   = XATTR_NAME_NFSV4_ACL,
10079         .list   = nfs4_xattr_list_nfs4_acl,
10080         .get    = nfs4_xattr_get_nfs4_acl,
10081         .set    = nfs4_xattr_set_nfs4_acl,
10082 };
10083
10084 const struct xattr_handler *nfs4_xattr_handlers[] = {
10085         &nfs4_xattr_nfs4_acl_handler,
10086 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
10087         &nfs4_xattr_nfs4_label_handler,
10088 #endif
10089         NULL
10090 };
10091
10092 /*
10093  * Local variables:
10094  *  c-basic-offset: 8
10095  * End:
10096  */