gro: Allow tunnel stacking in the case of FOU/GUE
[linux/fpc-iii.git] / fs / nfs / nfs4proc.c
blob319ba6814899f3b0d8323602c001009e5546eeae
1 /*
2 * fs/nfs/nfs4proc.c
4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
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.
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.
38 #include <linux/mm.h>
39 #include <linux/delay.h>
40 #include <linux/errno.h>
41 #include <linux/file.h>
42 #include <linux/string.h>
43 #include <linux/ratelimit.h>
44 #include <linux/printk.h>
45 #include <linux/slab.h>
46 #include <linux/sunrpc/clnt.h>
47 #include <linux/nfs.h>
48 #include <linux/nfs4.h>
49 #include <linux/nfs_fs.h>
50 #include <linux/nfs_page.h>
51 #include <linux/nfs_mount.h>
52 #include <linux/namei.h>
53 #include <linux/mount.h>
54 #include <linux/module.h>
55 #include <linux/xattr.h>
56 #include <linux/utsname.h>
57 #include <linux/freezer.h>
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"
70 #include "nfs4trace.h"
72 #define NFSDBG_FACILITY NFSDBG_PROC
74 #define NFS4_POLL_RETRY_MIN (HZ/10)
75 #define NFS4_POLL_RETRY_MAX (15*HZ)
77 struct nfs4_opendata;
78 static int _nfs4_proc_open(struct nfs4_opendata *data);
79 static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
80 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
81 static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *, struct nfs4_state *, long *);
82 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
83 static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label);
84 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label);
85 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
86 struct nfs_fattr *fattr, struct iattr *sattr,
87 struct nfs4_state *state, struct nfs4_label *ilabel,
88 struct nfs4_label *olabel);
89 #ifdef CONFIG_NFS_V4_1
90 static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
91 struct rpc_cred *);
92 static int nfs41_free_stateid(struct nfs_server *, nfs4_stateid *,
93 struct rpc_cred *);
94 #endif
96 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
97 static inline struct nfs4_label *
98 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
99 struct iattr *sattr, struct nfs4_label *label)
101 int err;
103 if (label == NULL)
104 return NULL;
106 if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
107 return NULL;
109 err = security_dentry_init_security(dentry, sattr->ia_mode,
110 &dentry->d_name, (void **)&label->label, &label->len);
111 if (err == 0)
112 return label;
114 return NULL;
116 static inline void
117 nfs4_label_release_security(struct nfs4_label *label)
119 if (label)
120 security_release_secctx(label->label, label->len);
122 static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
124 if (label)
125 return server->attr_bitmask;
127 return server->attr_bitmask_nl;
129 #else
130 static inline struct nfs4_label *
131 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
132 struct iattr *sattr, struct nfs4_label *l)
133 { return NULL; }
134 static inline void
135 nfs4_label_release_security(struct nfs4_label *label)
136 { return; }
137 static inline u32 *
138 nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
139 { return server->attr_bitmask; }
140 #endif
142 /* Prevent leaks of NFSv4 errors into userland */
143 static int nfs4_map_errors(int err)
145 if (err >= -1000)
146 return err;
147 switch (err) {
148 case -NFS4ERR_RESOURCE:
149 case -NFS4ERR_LAYOUTTRYLATER:
150 case -NFS4ERR_RECALLCONFLICT:
151 return -EREMOTEIO;
152 case -NFS4ERR_WRONGSEC:
153 case -NFS4ERR_WRONG_CRED:
154 return -EPERM;
155 case -NFS4ERR_BADOWNER:
156 case -NFS4ERR_BADNAME:
157 return -EINVAL;
158 case -NFS4ERR_SHARE_DENIED:
159 return -EACCES;
160 case -NFS4ERR_MINOR_VERS_MISMATCH:
161 return -EPROTONOSUPPORT;
162 case -NFS4ERR_FILE_OPEN:
163 return -EBUSY;
164 default:
165 dprintk("%s could not handle NFSv4 error %d\n",
166 __func__, -err);
167 break;
169 return -EIO;
173 * This is our standard bitmap for GETATTR requests.
175 const u32 nfs4_fattr_bitmap[3] = {
176 FATTR4_WORD0_TYPE
177 | FATTR4_WORD0_CHANGE
178 | FATTR4_WORD0_SIZE
179 | FATTR4_WORD0_FSID
180 | FATTR4_WORD0_FILEID,
181 FATTR4_WORD1_MODE
182 | FATTR4_WORD1_NUMLINKS
183 | FATTR4_WORD1_OWNER
184 | FATTR4_WORD1_OWNER_GROUP
185 | FATTR4_WORD1_RAWDEV
186 | FATTR4_WORD1_SPACE_USED
187 | FATTR4_WORD1_TIME_ACCESS
188 | FATTR4_WORD1_TIME_METADATA
189 | FATTR4_WORD1_TIME_MODIFY
190 | FATTR4_WORD1_MOUNTED_ON_FILEID,
191 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
192 FATTR4_WORD2_SECURITY_LABEL
193 #endif
196 static const u32 nfs4_pnfs_open_bitmap[3] = {
197 FATTR4_WORD0_TYPE
198 | FATTR4_WORD0_CHANGE
199 | FATTR4_WORD0_SIZE
200 | FATTR4_WORD0_FSID
201 | FATTR4_WORD0_FILEID,
202 FATTR4_WORD1_MODE
203 | FATTR4_WORD1_NUMLINKS
204 | FATTR4_WORD1_OWNER
205 | FATTR4_WORD1_OWNER_GROUP
206 | FATTR4_WORD1_RAWDEV
207 | FATTR4_WORD1_SPACE_USED
208 | FATTR4_WORD1_TIME_ACCESS
209 | FATTR4_WORD1_TIME_METADATA
210 | FATTR4_WORD1_TIME_MODIFY,
211 FATTR4_WORD2_MDSTHRESHOLD
214 static const u32 nfs4_open_noattr_bitmap[3] = {
215 FATTR4_WORD0_TYPE
216 | FATTR4_WORD0_CHANGE
217 | FATTR4_WORD0_FILEID,
220 const u32 nfs4_statfs_bitmap[3] = {
221 FATTR4_WORD0_FILES_AVAIL
222 | FATTR4_WORD0_FILES_FREE
223 | FATTR4_WORD0_FILES_TOTAL,
224 FATTR4_WORD1_SPACE_AVAIL
225 | FATTR4_WORD1_SPACE_FREE
226 | FATTR4_WORD1_SPACE_TOTAL
229 const u32 nfs4_pathconf_bitmap[3] = {
230 FATTR4_WORD0_MAXLINK
231 | FATTR4_WORD0_MAXNAME,
235 const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
236 | FATTR4_WORD0_MAXREAD
237 | FATTR4_WORD0_MAXWRITE
238 | FATTR4_WORD0_LEASE_TIME,
239 FATTR4_WORD1_TIME_DELTA
240 | FATTR4_WORD1_FS_LAYOUT_TYPES,
241 FATTR4_WORD2_LAYOUT_BLKSIZE
244 const u32 nfs4_fs_locations_bitmap[3] = {
245 FATTR4_WORD0_TYPE
246 | FATTR4_WORD0_CHANGE
247 | FATTR4_WORD0_SIZE
248 | FATTR4_WORD0_FSID
249 | FATTR4_WORD0_FILEID
250 | FATTR4_WORD0_FS_LOCATIONS,
251 FATTR4_WORD1_MODE
252 | FATTR4_WORD1_NUMLINKS
253 | FATTR4_WORD1_OWNER
254 | FATTR4_WORD1_OWNER_GROUP
255 | FATTR4_WORD1_RAWDEV
256 | FATTR4_WORD1_SPACE_USED
257 | FATTR4_WORD1_TIME_ACCESS
258 | FATTR4_WORD1_TIME_METADATA
259 | FATTR4_WORD1_TIME_MODIFY
260 | FATTR4_WORD1_MOUNTED_ON_FILEID,
263 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
264 struct nfs4_readdir_arg *readdir)
266 __be32 *start, *p;
268 if (cookie > 2) {
269 readdir->cookie = cookie;
270 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
271 return;
274 readdir->cookie = 0;
275 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
276 if (cookie == 2)
277 return;
280 * NFSv4 servers do not return entries for '.' and '..'
281 * Therefore, we fake these entries here. We let '.'
282 * have cookie 0 and '..' have cookie 1. Note that
283 * when talking to the server, we always send cookie 0
284 * instead of 1 or 2.
286 start = p = kmap_atomic(*readdir->pages);
288 if (cookie == 0) {
289 *p++ = xdr_one; /* next */
290 *p++ = xdr_zero; /* cookie, first word */
291 *p++ = xdr_one; /* cookie, second word */
292 *p++ = xdr_one; /* entry len */
293 memcpy(p, ".\0\0\0", 4); /* entry */
294 p++;
295 *p++ = xdr_one; /* bitmap length */
296 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
297 *p++ = htonl(8); /* attribute buffer length */
298 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
301 *p++ = xdr_one; /* next */
302 *p++ = xdr_zero; /* cookie, first word */
303 *p++ = xdr_two; /* cookie, second word */
304 *p++ = xdr_two; /* entry len */
305 memcpy(p, "..\0\0", 4); /* entry */
306 p++;
307 *p++ = xdr_one; /* bitmap length */
308 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
309 *p++ = htonl(8); /* attribute buffer length */
310 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
312 readdir->pgbase = (char *)p - (char *)start;
313 readdir->count -= readdir->pgbase;
314 kunmap_atomic(start);
317 static long nfs4_update_delay(long *timeout)
319 long ret;
320 if (!timeout)
321 return NFS4_POLL_RETRY_MAX;
322 if (*timeout <= 0)
323 *timeout = NFS4_POLL_RETRY_MIN;
324 if (*timeout > NFS4_POLL_RETRY_MAX)
325 *timeout = NFS4_POLL_RETRY_MAX;
326 ret = *timeout;
327 *timeout <<= 1;
328 return ret;
331 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
333 int res = 0;
335 might_sleep();
337 freezable_schedule_timeout_killable_unsafe(
338 nfs4_update_delay(timeout));
339 if (fatal_signal_pending(current))
340 res = -ERESTARTSYS;
341 return res;
344 /* This is the error handling routine for processes that are allowed
345 * to sleep.
347 int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
349 struct nfs_client *clp = server->nfs_client;
350 struct nfs4_state *state = exception->state;
351 struct inode *inode = exception->inode;
352 int ret = errorcode;
354 exception->retry = 0;
355 switch(errorcode) {
356 case 0:
357 return 0;
358 case -NFS4ERR_OPENMODE:
359 if (inode && nfs4_have_delegation(inode, FMODE_READ)) {
360 nfs4_inode_return_delegation(inode);
361 exception->retry = 1;
362 return 0;
364 if (state == NULL)
365 break;
366 ret = nfs4_schedule_stateid_recovery(server, state);
367 if (ret < 0)
368 break;
369 goto wait_on_recovery;
370 case -NFS4ERR_DELEG_REVOKED:
371 case -NFS4ERR_ADMIN_REVOKED:
372 case -NFS4ERR_BAD_STATEID:
373 if (state == NULL)
374 break;
375 ret = nfs4_schedule_stateid_recovery(server, state);
376 if (ret < 0)
377 break;
378 goto wait_on_recovery;
379 case -NFS4ERR_EXPIRED:
380 if (state != NULL) {
381 ret = nfs4_schedule_stateid_recovery(server, state);
382 if (ret < 0)
383 break;
385 case -NFS4ERR_STALE_STATEID:
386 case -NFS4ERR_STALE_CLIENTID:
387 nfs4_schedule_lease_recovery(clp);
388 goto wait_on_recovery;
389 case -NFS4ERR_MOVED:
390 ret = nfs4_schedule_migration_recovery(server);
391 if (ret < 0)
392 break;
393 goto wait_on_recovery;
394 case -NFS4ERR_LEASE_MOVED:
395 nfs4_schedule_lease_moved_recovery(clp);
396 goto wait_on_recovery;
397 #if defined(CONFIG_NFS_V4_1)
398 case -NFS4ERR_BADSESSION:
399 case -NFS4ERR_BADSLOT:
400 case -NFS4ERR_BAD_HIGH_SLOT:
401 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
402 case -NFS4ERR_DEADSESSION:
403 case -NFS4ERR_SEQ_FALSE_RETRY:
404 case -NFS4ERR_SEQ_MISORDERED:
405 dprintk("%s ERROR: %d Reset session\n", __func__,
406 errorcode);
407 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
408 goto wait_on_recovery;
409 #endif /* defined(CONFIG_NFS_V4_1) */
410 case -NFS4ERR_FILE_OPEN:
411 if (exception->timeout > HZ) {
412 /* We have retried a decent amount, time to
413 * fail
415 ret = -EBUSY;
416 break;
418 case -NFS4ERR_GRACE:
419 case -NFS4ERR_DELAY:
420 ret = nfs4_delay(server->client, &exception->timeout);
421 if (ret != 0)
422 break;
423 case -NFS4ERR_RETRY_UNCACHED_REP:
424 case -NFS4ERR_OLD_STATEID:
425 exception->retry = 1;
426 break;
427 case -NFS4ERR_BADOWNER:
428 /* The following works around a Linux server bug! */
429 case -NFS4ERR_BADNAME:
430 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
431 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
432 exception->retry = 1;
433 printk(KERN_WARNING "NFS: v4 server %s "
434 "does not accept raw "
435 "uid/gids. "
436 "Reenabling the idmapper.\n",
437 server->nfs_client->cl_hostname);
440 /* We failed to handle the error */
441 return nfs4_map_errors(ret);
442 wait_on_recovery:
443 ret = nfs4_wait_clnt_recover(clp);
444 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
445 return -EIO;
446 if (ret == 0)
447 exception->retry = 1;
448 return ret;
452 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
453 * or 'false' otherwise.
455 static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
457 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
459 if (flavor == RPC_AUTH_GSS_KRB5I ||
460 flavor == RPC_AUTH_GSS_KRB5P)
461 return true;
463 return false;
466 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
468 spin_lock(&clp->cl_lock);
469 if (time_before(clp->cl_last_renewal,timestamp))
470 clp->cl_last_renewal = timestamp;
471 spin_unlock(&clp->cl_lock);
474 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
476 do_renew_lease(server->nfs_client, timestamp);
479 struct nfs4_call_sync_data {
480 const struct nfs_server *seq_server;
481 struct nfs4_sequence_args *seq_args;
482 struct nfs4_sequence_res *seq_res;
485 static void nfs4_init_sequence(struct nfs4_sequence_args *args,
486 struct nfs4_sequence_res *res, int cache_reply)
488 args->sa_slot = NULL;
489 args->sa_cache_this = cache_reply;
490 args->sa_privileged = 0;
492 res->sr_slot = NULL;
495 static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args)
497 args->sa_privileged = 1;
500 int nfs40_setup_sequence(struct nfs4_slot_table *tbl,
501 struct nfs4_sequence_args *args,
502 struct nfs4_sequence_res *res,
503 struct rpc_task *task)
505 struct nfs4_slot *slot;
507 /* slot already allocated? */
508 if (res->sr_slot != NULL)
509 goto out_start;
511 spin_lock(&tbl->slot_tbl_lock);
512 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
513 goto out_sleep;
515 slot = nfs4_alloc_slot(tbl);
516 if (IS_ERR(slot)) {
517 if (slot == ERR_PTR(-ENOMEM))
518 task->tk_timeout = HZ >> 2;
519 goto out_sleep;
521 spin_unlock(&tbl->slot_tbl_lock);
523 args->sa_slot = slot;
524 res->sr_slot = slot;
526 out_start:
527 rpc_call_start(task);
528 return 0;
530 out_sleep:
531 if (args->sa_privileged)
532 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
533 NULL, RPC_PRIORITY_PRIVILEGED);
534 else
535 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
536 spin_unlock(&tbl->slot_tbl_lock);
537 return -EAGAIN;
539 EXPORT_SYMBOL_GPL(nfs40_setup_sequence);
541 static int nfs40_sequence_done(struct rpc_task *task,
542 struct nfs4_sequence_res *res)
544 struct nfs4_slot *slot = res->sr_slot;
545 struct nfs4_slot_table *tbl;
547 if (slot == NULL)
548 goto out;
550 tbl = slot->table;
551 spin_lock(&tbl->slot_tbl_lock);
552 if (!nfs41_wake_and_assign_slot(tbl, slot))
553 nfs4_free_slot(tbl, slot);
554 spin_unlock(&tbl->slot_tbl_lock);
556 res->sr_slot = NULL;
557 out:
558 return 1;
561 #if defined(CONFIG_NFS_V4_1)
563 static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
565 struct nfs4_session *session;
566 struct nfs4_slot_table *tbl;
567 struct nfs4_slot *slot = res->sr_slot;
568 bool send_new_highest_used_slotid = false;
570 tbl = slot->table;
571 session = tbl->session;
573 spin_lock(&tbl->slot_tbl_lock);
574 /* Be nice to the server: try to ensure that the last transmitted
575 * value for highest_user_slotid <= target_highest_slotid
577 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
578 send_new_highest_used_slotid = true;
580 if (nfs41_wake_and_assign_slot(tbl, slot)) {
581 send_new_highest_used_slotid = false;
582 goto out_unlock;
584 nfs4_free_slot(tbl, slot);
586 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
587 send_new_highest_used_slotid = false;
588 out_unlock:
589 spin_unlock(&tbl->slot_tbl_lock);
590 res->sr_slot = NULL;
591 if (send_new_highest_used_slotid)
592 nfs41_server_notify_highest_slotid_update(session->clp);
595 int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
597 struct nfs4_session *session;
598 struct nfs4_slot *slot = res->sr_slot;
599 struct nfs_client *clp;
600 bool interrupted = false;
601 int ret = 1;
603 if (slot == NULL)
604 goto out_noaction;
605 /* don't increment the sequence number if the task wasn't sent */
606 if (!RPC_WAS_SENT(task))
607 goto out;
609 session = slot->table->session;
611 if (slot->interrupted) {
612 slot->interrupted = 0;
613 interrupted = true;
616 trace_nfs4_sequence_done(session, res);
617 /* Check the SEQUENCE operation status */
618 switch (res->sr_status) {
619 case 0:
620 /* Update the slot's sequence and clientid lease timer */
621 ++slot->seq_nr;
622 clp = session->clp;
623 do_renew_lease(clp, res->sr_timestamp);
624 /* Check sequence flags */
625 if (res->sr_status_flags != 0)
626 nfs4_schedule_lease_recovery(clp);
627 nfs41_update_target_slotid(slot->table, slot, res);
628 break;
629 case 1:
631 * sr_status remains 1 if an RPC level error occurred.
632 * The server may or may not have processed the sequence
633 * operation..
634 * Mark the slot as having hosted an interrupted RPC call.
636 slot->interrupted = 1;
637 goto out;
638 case -NFS4ERR_DELAY:
639 /* The server detected a resend of the RPC call and
640 * returned NFS4ERR_DELAY as per Section 2.10.6.2
641 * of RFC5661.
643 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
644 __func__,
645 slot->slot_nr,
646 slot->seq_nr);
647 goto out_retry;
648 case -NFS4ERR_BADSLOT:
650 * The slot id we used was probably retired. Try again
651 * using a different slot id.
653 goto retry_nowait;
654 case -NFS4ERR_SEQ_MISORDERED:
656 * Was the last operation on this sequence interrupted?
657 * If so, retry after bumping the sequence number.
659 if (interrupted) {
660 ++slot->seq_nr;
661 goto retry_nowait;
664 * Could this slot have been previously retired?
665 * If so, then the server may be expecting seq_nr = 1!
667 if (slot->seq_nr != 1) {
668 slot->seq_nr = 1;
669 goto retry_nowait;
671 break;
672 case -NFS4ERR_SEQ_FALSE_RETRY:
673 ++slot->seq_nr;
674 goto retry_nowait;
675 default:
676 /* Just update the slot sequence no. */
677 ++slot->seq_nr;
679 out:
680 /* The session may be reset by one of the error handlers. */
681 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
682 nfs41_sequence_free_slot(res);
683 out_noaction:
684 return ret;
685 retry_nowait:
686 if (rpc_restart_call_prepare(task)) {
687 task->tk_status = 0;
688 ret = 0;
690 goto out;
691 out_retry:
692 if (!rpc_restart_call(task))
693 goto out;
694 rpc_delay(task, NFS4_POLL_RETRY_MAX);
695 return 0;
697 EXPORT_SYMBOL_GPL(nfs41_sequence_done);
699 int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
701 if (res->sr_slot == NULL)
702 return 1;
703 if (!res->sr_slot->table->session)
704 return nfs40_sequence_done(task, res);
705 return nfs41_sequence_done(task, res);
707 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
709 int nfs41_setup_sequence(struct nfs4_session *session,
710 struct nfs4_sequence_args *args,
711 struct nfs4_sequence_res *res,
712 struct rpc_task *task)
714 struct nfs4_slot *slot;
715 struct nfs4_slot_table *tbl;
717 dprintk("--> %s\n", __func__);
718 /* slot already allocated? */
719 if (res->sr_slot != NULL)
720 goto out_success;
722 tbl = &session->fc_slot_table;
724 task->tk_timeout = 0;
726 spin_lock(&tbl->slot_tbl_lock);
727 if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state) &&
728 !args->sa_privileged) {
729 /* The state manager will wait until the slot table is empty */
730 dprintk("%s session is draining\n", __func__);
731 goto out_sleep;
734 slot = nfs4_alloc_slot(tbl);
735 if (IS_ERR(slot)) {
736 /* If out of memory, try again in 1/4 second */
737 if (slot == ERR_PTR(-ENOMEM))
738 task->tk_timeout = HZ >> 2;
739 dprintk("<-- %s: no free slots\n", __func__);
740 goto out_sleep;
742 spin_unlock(&tbl->slot_tbl_lock);
744 args->sa_slot = slot;
746 dprintk("<-- %s slotid=%u seqid=%u\n", __func__,
747 slot->slot_nr, slot->seq_nr);
749 res->sr_slot = slot;
750 res->sr_timestamp = jiffies;
751 res->sr_status_flags = 0;
753 * sr_status is only set in decode_sequence, and so will remain
754 * set to 1 if an rpc level failure occurs.
756 res->sr_status = 1;
757 trace_nfs4_setup_sequence(session, args);
758 out_success:
759 rpc_call_start(task);
760 return 0;
761 out_sleep:
762 /* Privileged tasks are queued with top priority */
763 if (args->sa_privileged)
764 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
765 NULL, RPC_PRIORITY_PRIVILEGED);
766 else
767 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
768 spin_unlock(&tbl->slot_tbl_lock);
769 return -EAGAIN;
771 EXPORT_SYMBOL_GPL(nfs41_setup_sequence);
773 static int nfs4_setup_sequence(const struct nfs_server *server,
774 struct nfs4_sequence_args *args,
775 struct nfs4_sequence_res *res,
776 struct rpc_task *task)
778 struct nfs4_session *session = nfs4_get_session(server);
779 int ret = 0;
781 if (!session)
782 return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
783 args, res, task);
785 dprintk("--> %s clp %p session %p sr_slot %u\n",
786 __func__, session->clp, session, res->sr_slot ?
787 res->sr_slot->slot_nr : NFS4_NO_SLOT);
789 ret = nfs41_setup_sequence(session, args, res, task);
791 dprintk("<-- %s status=%d\n", __func__, ret);
792 return ret;
795 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
797 struct nfs4_call_sync_data *data = calldata;
798 struct nfs4_session *session = nfs4_get_session(data->seq_server);
800 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
802 nfs41_setup_sequence(session, data->seq_args, data->seq_res, task);
805 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
807 struct nfs4_call_sync_data *data = calldata;
809 nfs41_sequence_done(task, data->seq_res);
812 static const struct rpc_call_ops nfs41_call_sync_ops = {
813 .rpc_call_prepare = nfs41_call_sync_prepare,
814 .rpc_call_done = nfs41_call_sync_done,
817 #else /* !CONFIG_NFS_V4_1 */
819 static int nfs4_setup_sequence(const struct nfs_server *server,
820 struct nfs4_sequence_args *args,
821 struct nfs4_sequence_res *res,
822 struct rpc_task *task)
824 return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
825 args, res, task);
828 int nfs4_sequence_done(struct rpc_task *task,
829 struct nfs4_sequence_res *res)
831 return nfs40_sequence_done(task, res);
833 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
835 #endif /* !CONFIG_NFS_V4_1 */
837 static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
839 struct nfs4_call_sync_data *data = calldata;
840 nfs4_setup_sequence(data->seq_server,
841 data->seq_args, data->seq_res, task);
844 static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
846 struct nfs4_call_sync_data *data = calldata;
847 nfs4_sequence_done(task, data->seq_res);
850 static const struct rpc_call_ops nfs40_call_sync_ops = {
851 .rpc_call_prepare = nfs40_call_sync_prepare,
852 .rpc_call_done = nfs40_call_sync_done,
855 static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
856 struct nfs_server *server,
857 struct rpc_message *msg,
858 struct nfs4_sequence_args *args,
859 struct nfs4_sequence_res *res)
861 int ret;
862 struct rpc_task *task;
863 struct nfs_client *clp = server->nfs_client;
864 struct nfs4_call_sync_data data = {
865 .seq_server = server,
866 .seq_args = args,
867 .seq_res = res,
869 struct rpc_task_setup task_setup = {
870 .rpc_client = clnt,
871 .rpc_message = msg,
872 .callback_ops = clp->cl_mvops->call_sync_ops,
873 .callback_data = &data
876 task = rpc_run_task(&task_setup);
877 if (IS_ERR(task))
878 ret = PTR_ERR(task);
879 else {
880 ret = task->tk_status;
881 rpc_put_task(task);
883 return ret;
886 int nfs4_call_sync(struct rpc_clnt *clnt,
887 struct nfs_server *server,
888 struct rpc_message *msg,
889 struct nfs4_sequence_args *args,
890 struct nfs4_sequence_res *res,
891 int cache_reply)
893 nfs4_init_sequence(args, res, cache_reply);
894 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
897 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo)
899 struct nfs_inode *nfsi = NFS_I(dir);
901 spin_lock(&dir->i_lock);
902 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
903 if (!cinfo->atomic || cinfo->before != dir->i_version)
904 nfs_force_lookup_revalidate(dir);
905 dir->i_version = cinfo->after;
906 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
907 nfs_fscache_invalidate(dir);
908 spin_unlock(&dir->i_lock);
911 struct nfs4_opendata {
912 struct kref kref;
913 struct nfs_openargs o_arg;
914 struct nfs_openres o_res;
915 struct nfs_open_confirmargs c_arg;
916 struct nfs_open_confirmres c_res;
917 struct nfs4_string owner_name;
918 struct nfs4_string group_name;
919 struct nfs_fattr f_attr;
920 struct nfs4_label *f_label;
921 struct dentry *dir;
922 struct dentry *dentry;
923 struct nfs4_state_owner *owner;
924 struct nfs4_state *state;
925 struct iattr attrs;
926 unsigned long timestamp;
927 unsigned int rpc_done : 1;
928 unsigned int file_created : 1;
929 unsigned int is_recover : 1;
930 int rpc_status;
931 int cancelled;
934 static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
935 int err, struct nfs4_exception *exception)
937 if (err != -EINVAL)
938 return false;
939 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
940 return false;
941 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
942 exception->retry = 1;
943 return true;
946 static u32
947 nfs4_map_atomic_open_share(struct nfs_server *server,
948 fmode_t fmode, int openflags)
950 u32 res = 0;
952 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
953 case FMODE_READ:
954 res = NFS4_SHARE_ACCESS_READ;
955 break;
956 case FMODE_WRITE:
957 res = NFS4_SHARE_ACCESS_WRITE;
958 break;
959 case FMODE_READ|FMODE_WRITE:
960 res = NFS4_SHARE_ACCESS_BOTH;
962 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
963 goto out;
964 /* Want no delegation if we're using O_DIRECT */
965 if (openflags & O_DIRECT)
966 res |= NFS4_SHARE_WANT_NO_DELEG;
967 out:
968 return res;
971 static enum open_claim_type4
972 nfs4_map_atomic_open_claim(struct nfs_server *server,
973 enum open_claim_type4 claim)
975 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
976 return claim;
977 switch (claim) {
978 default:
979 return claim;
980 case NFS4_OPEN_CLAIM_FH:
981 return NFS4_OPEN_CLAIM_NULL;
982 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
983 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
984 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
985 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
989 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
991 p->o_res.f_attr = &p->f_attr;
992 p->o_res.f_label = p->f_label;
993 p->o_res.seqid = p->o_arg.seqid;
994 p->c_res.seqid = p->c_arg.seqid;
995 p->o_res.server = p->o_arg.server;
996 p->o_res.access_request = p->o_arg.access;
997 nfs_fattr_init(&p->f_attr);
998 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
1001 static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
1002 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
1003 const struct iattr *attrs,
1004 struct nfs4_label *label,
1005 enum open_claim_type4 claim,
1006 gfp_t gfp_mask)
1008 struct dentry *parent = dget_parent(dentry);
1009 struct inode *dir = d_inode(parent);
1010 struct nfs_server *server = NFS_SERVER(dir);
1011 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
1012 struct nfs4_opendata *p;
1014 p = kzalloc(sizeof(*p), gfp_mask);
1015 if (p == NULL)
1016 goto err;
1018 p->f_label = nfs4_label_alloc(server, gfp_mask);
1019 if (IS_ERR(p->f_label))
1020 goto err_free_p;
1022 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1023 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
1024 if (IS_ERR(p->o_arg.seqid))
1025 goto err_free_label;
1026 nfs_sb_active(dentry->d_sb);
1027 p->dentry = dget(dentry);
1028 p->dir = parent;
1029 p->owner = sp;
1030 atomic_inc(&sp->so_count);
1031 p->o_arg.open_flags = flags;
1032 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
1033 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1034 fmode, flags);
1035 /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1036 * will return permission denied for all bits until close */
1037 if (!(flags & O_EXCL)) {
1038 /* ask server to check for all possible rights as results
1039 * are cached */
1040 p->o_arg.access = NFS4_ACCESS_READ | NFS4_ACCESS_MODIFY |
1041 NFS4_ACCESS_EXTEND | NFS4_ACCESS_EXECUTE;
1043 p->o_arg.clientid = server->nfs_client->cl_clientid;
1044 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1045 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
1046 p->o_arg.name = &dentry->d_name;
1047 p->o_arg.server = server;
1048 p->o_arg.bitmask = nfs4_bitmask(server, label);
1049 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
1050 p->o_arg.label = label;
1051 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
1052 switch (p->o_arg.claim) {
1053 case NFS4_OPEN_CLAIM_NULL:
1054 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1055 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1056 p->o_arg.fh = NFS_FH(dir);
1057 break;
1058 case NFS4_OPEN_CLAIM_PREVIOUS:
1059 case NFS4_OPEN_CLAIM_FH:
1060 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1061 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1062 p->o_arg.fh = NFS_FH(d_inode(dentry));
1064 if (attrs != NULL && attrs->ia_valid != 0) {
1065 __u32 verf[2];
1067 p->o_arg.u.attrs = &p->attrs;
1068 memcpy(&p->attrs, attrs, sizeof(p->attrs));
1070 verf[0] = jiffies;
1071 verf[1] = current->pid;
1072 memcpy(p->o_arg.u.verifier.data, verf,
1073 sizeof(p->o_arg.u.verifier.data));
1075 p->c_arg.fh = &p->o_res.fh;
1076 p->c_arg.stateid = &p->o_res.stateid;
1077 p->c_arg.seqid = p->o_arg.seqid;
1078 nfs4_init_opendata_res(p);
1079 kref_init(&p->kref);
1080 return p;
1082 err_free_label:
1083 nfs4_label_free(p->f_label);
1084 err_free_p:
1085 kfree(p);
1086 err:
1087 dput(parent);
1088 return NULL;
1091 static void nfs4_opendata_free(struct kref *kref)
1093 struct nfs4_opendata *p = container_of(kref,
1094 struct nfs4_opendata, kref);
1095 struct super_block *sb = p->dentry->d_sb;
1097 nfs_free_seqid(p->o_arg.seqid);
1098 if (p->state != NULL)
1099 nfs4_put_open_state(p->state);
1100 nfs4_put_state_owner(p->owner);
1102 nfs4_label_free(p->f_label);
1104 dput(p->dir);
1105 dput(p->dentry);
1106 nfs_sb_deactive(sb);
1107 nfs_fattr_free_names(&p->f_attr);
1108 kfree(p->f_attr.mdsthreshold);
1109 kfree(p);
1112 static void nfs4_opendata_put(struct nfs4_opendata *p)
1114 if (p != NULL)
1115 kref_put(&p->kref, nfs4_opendata_free);
1118 static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task)
1120 int ret;
1122 ret = rpc_wait_for_completion_task(task);
1123 return ret;
1126 static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
1128 int ret = 0;
1130 if (open_mode & (O_EXCL|O_TRUNC))
1131 goto out;
1132 switch (mode & (FMODE_READ|FMODE_WRITE)) {
1133 case FMODE_READ:
1134 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1135 && state->n_rdonly != 0;
1136 break;
1137 case FMODE_WRITE:
1138 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1139 && state->n_wronly != 0;
1140 break;
1141 case FMODE_READ|FMODE_WRITE:
1142 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1143 && state->n_rdwr != 0;
1145 out:
1146 return ret;
1149 static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode)
1151 if (delegation == NULL)
1152 return 0;
1153 if ((delegation->type & fmode) != fmode)
1154 return 0;
1155 if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1156 return 0;
1157 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
1158 return 0;
1159 nfs_mark_delegation_referenced(delegation);
1160 return 1;
1163 static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
1165 switch (fmode) {
1166 case FMODE_WRITE:
1167 state->n_wronly++;
1168 break;
1169 case FMODE_READ:
1170 state->n_rdonly++;
1171 break;
1172 case FMODE_READ|FMODE_WRITE:
1173 state->n_rdwr++;
1175 nfs4_state_set_mode_locked(state, state->state | fmode);
1178 static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
1180 struct nfs_client *clp = state->owner->so_server->nfs_client;
1181 bool need_recover = false;
1183 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1184 need_recover = true;
1185 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1186 need_recover = true;
1187 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1188 need_recover = true;
1189 if (need_recover)
1190 nfs4_state_mark_reclaim_nograce(clp, state);
1193 static bool nfs_need_update_open_stateid(struct nfs4_state *state,
1194 nfs4_stateid *stateid)
1196 if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0)
1197 return true;
1198 if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1199 nfs_test_and_clear_all_open_stateid(state);
1200 return true;
1202 if (nfs4_stateid_is_newer(stateid, &state->open_stateid))
1203 return true;
1204 return false;
1207 static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1209 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1210 return;
1211 if (state->n_wronly)
1212 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1213 if (state->n_rdonly)
1214 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1215 if (state->n_rdwr)
1216 set_bit(NFS_O_RDWR_STATE, &state->flags);
1217 set_bit(NFS_OPEN_STATE, &state->flags);
1220 static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1221 nfs4_stateid *arg_stateid,
1222 nfs4_stateid *stateid, fmode_t fmode)
1224 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1225 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1226 case FMODE_WRITE:
1227 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1228 break;
1229 case FMODE_READ:
1230 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1231 break;
1232 case 0:
1233 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1234 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1235 clear_bit(NFS_OPEN_STATE, &state->flags);
1237 if (stateid == NULL)
1238 return;
1239 /* Handle races with OPEN */
1240 if (!nfs4_stateid_match_other(arg_stateid, &state->open_stateid) ||
1241 (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1242 !nfs4_stateid_is_newer(stateid, &state->open_stateid))) {
1243 nfs_resync_open_stateid_locked(state);
1244 return;
1246 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1247 nfs4_stateid_copy(&state->stateid, stateid);
1248 nfs4_stateid_copy(&state->open_stateid, stateid);
1251 static void nfs_clear_open_stateid(struct nfs4_state *state,
1252 nfs4_stateid *arg_stateid,
1253 nfs4_stateid *stateid, fmode_t fmode)
1255 write_seqlock(&state->seqlock);
1256 nfs_clear_open_stateid_locked(state, arg_stateid, stateid, fmode);
1257 write_sequnlock(&state->seqlock);
1258 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1259 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
1262 static void nfs_set_open_stateid_locked(struct nfs4_state *state, nfs4_stateid *stateid, fmode_t fmode)
1264 switch (fmode) {
1265 case FMODE_READ:
1266 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1267 break;
1268 case FMODE_WRITE:
1269 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1270 break;
1271 case FMODE_READ|FMODE_WRITE:
1272 set_bit(NFS_O_RDWR_STATE, &state->flags);
1274 if (!nfs_need_update_open_stateid(state, stateid))
1275 return;
1276 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1277 nfs4_stateid_copy(&state->stateid, stateid);
1278 nfs4_stateid_copy(&state->open_stateid, stateid);
1281 static void __update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, const nfs4_stateid *deleg_stateid, fmode_t fmode)
1284 * Protect the call to nfs4_state_set_mode_locked and
1285 * serialise the stateid update
1287 spin_lock(&state->owner->so_lock);
1288 write_seqlock(&state->seqlock);
1289 if (deleg_stateid != NULL) {
1290 nfs4_stateid_copy(&state->stateid, deleg_stateid);
1291 set_bit(NFS_DELEGATED_STATE, &state->flags);
1293 if (open_stateid != NULL)
1294 nfs_set_open_stateid_locked(state, open_stateid, fmode);
1295 write_sequnlock(&state->seqlock);
1296 update_open_stateflags(state, fmode);
1297 spin_unlock(&state->owner->so_lock);
1300 static int update_open_stateid(struct nfs4_state *state, nfs4_stateid *open_stateid, nfs4_stateid *delegation, fmode_t fmode)
1302 struct nfs_inode *nfsi = NFS_I(state->inode);
1303 struct nfs_delegation *deleg_cur;
1304 int ret = 0;
1306 fmode &= (FMODE_READ|FMODE_WRITE);
1308 rcu_read_lock();
1309 deleg_cur = rcu_dereference(nfsi->delegation);
1310 if (deleg_cur == NULL)
1311 goto no_delegation;
1313 spin_lock(&deleg_cur->lock);
1314 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
1315 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
1316 (deleg_cur->type & fmode) != fmode)
1317 goto no_delegation_unlock;
1319 if (delegation == NULL)
1320 delegation = &deleg_cur->stateid;
1321 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
1322 goto no_delegation_unlock;
1324 nfs_mark_delegation_referenced(deleg_cur);
1325 __update_open_stateid(state, open_stateid, &deleg_cur->stateid, fmode);
1326 ret = 1;
1327 no_delegation_unlock:
1328 spin_unlock(&deleg_cur->lock);
1329 no_delegation:
1330 rcu_read_unlock();
1332 if (!ret && open_stateid != NULL) {
1333 __update_open_stateid(state, open_stateid, NULL, fmode);
1334 ret = 1;
1336 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1337 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
1339 return ret;
1342 static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1343 const nfs4_stateid *stateid)
1345 struct nfs4_state *state = lsp->ls_state;
1346 bool ret = false;
1348 spin_lock(&state->state_lock);
1349 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1350 goto out_noupdate;
1351 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1352 goto out_noupdate;
1353 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1354 ret = true;
1355 out_noupdate:
1356 spin_unlock(&state->state_lock);
1357 return ret;
1360 static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
1362 struct nfs_delegation *delegation;
1364 rcu_read_lock();
1365 delegation = rcu_dereference(NFS_I(inode)->delegation);
1366 if (delegation == NULL || (delegation->type & fmode) == fmode) {
1367 rcu_read_unlock();
1368 return;
1370 rcu_read_unlock();
1371 nfs4_inode_return_delegation(inode);
1374 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
1376 struct nfs4_state *state = opendata->state;
1377 struct nfs_inode *nfsi = NFS_I(state->inode);
1378 struct nfs_delegation *delegation;
1379 int open_mode = opendata->o_arg.open_flags;
1380 fmode_t fmode = opendata->o_arg.fmode;
1381 nfs4_stateid stateid;
1382 int ret = -EAGAIN;
1384 for (;;) {
1385 spin_lock(&state->owner->so_lock);
1386 if (can_open_cached(state, fmode, open_mode)) {
1387 update_open_stateflags(state, fmode);
1388 spin_unlock(&state->owner->so_lock);
1389 goto out_return_state;
1391 spin_unlock(&state->owner->so_lock);
1392 rcu_read_lock();
1393 delegation = rcu_dereference(nfsi->delegation);
1394 if (!can_open_delegated(delegation, fmode)) {
1395 rcu_read_unlock();
1396 break;
1398 /* Save the delegation */
1399 nfs4_stateid_copy(&stateid, &delegation->stateid);
1400 rcu_read_unlock();
1401 nfs_release_seqid(opendata->o_arg.seqid);
1402 if (!opendata->is_recover) {
1403 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1404 if (ret != 0)
1405 goto out;
1407 ret = -EAGAIN;
1409 /* Try to update the stateid using the delegation */
1410 if (update_open_stateid(state, NULL, &stateid, fmode))
1411 goto out_return_state;
1413 out:
1414 return ERR_PTR(ret);
1415 out_return_state:
1416 atomic_inc(&state->count);
1417 return state;
1420 static void
1421 nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1423 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1424 struct nfs_delegation *delegation;
1425 int delegation_flags = 0;
1427 rcu_read_lock();
1428 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1429 if (delegation)
1430 delegation_flags = delegation->flags;
1431 rcu_read_unlock();
1432 if (data->o_arg.claim == NFS4_OPEN_CLAIM_DELEGATE_CUR) {
1433 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1434 "returning a delegation for "
1435 "OPEN(CLAIM_DELEGATE_CUR)\n",
1436 clp->cl_hostname);
1437 } else if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
1438 nfs_inode_set_delegation(state->inode,
1439 data->owner->so_cred,
1440 &data->o_res);
1441 else
1442 nfs_inode_reclaim_delegation(state->inode,
1443 data->owner->so_cred,
1444 &data->o_res);
1448 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1449 * and update the nfs4_state.
1451 static struct nfs4_state *
1452 _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1454 struct inode *inode = data->state->inode;
1455 struct nfs4_state *state = data->state;
1456 int ret;
1458 if (!data->rpc_done) {
1459 if (data->rpc_status) {
1460 ret = data->rpc_status;
1461 goto err;
1463 /* cached opens have already been processed */
1464 goto update;
1467 ret = nfs_refresh_inode(inode, &data->f_attr);
1468 if (ret)
1469 goto err;
1471 if (data->o_res.delegation_type != 0)
1472 nfs4_opendata_check_deleg(data, state);
1473 update:
1474 update_open_stateid(state, &data->o_res.stateid, NULL,
1475 data->o_arg.fmode);
1476 atomic_inc(&state->count);
1478 return state;
1479 err:
1480 return ERR_PTR(ret);
1484 static struct nfs4_state *
1485 _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1487 struct inode *inode;
1488 struct nfs4_state *state = NULL;
1489 int ret;
1491 if (!data->rpc_done) {
1492 state = nfs4_try_open_cached(data);
1493 goto out;
1496 ret = -EAGAIN;
1497 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
1498 goto err;
1499 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label);
1500 ret = PTR_ERR(inode);
1501 if (IS_ERR(inode))
1502 goto err;
1503 ret = -ENOMEM;
1504 state = nfs4_get_open_state(inode, data->owner);
1505 if (state == NULL)
1506 goto err_put_inode;
1507 if (data->o_res.delegation_type != 0)
1508 nfs4_opendata_check_deleg(data, state);
1509 update_open_stateid(state, &data->o_res.stateid, NULL,
1510 data->o_arg.fmode);
1511 iput(inode);
1512 out:
1513 nfs_release_seqid(data->o_arg.seqid);
1514 return state;
1515 err_put_inode:
1516 iput(inode);
1517 err:
1518 return ERR_PTR(ret);
1521 static struct nfs4_state *
1522 nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1524 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
1525 return _nfs4_opendata_reclaim_to_nfs4_state(data);
1526 return _nfs4_opendata_to_nfs4_state(data);
1529 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1531 struct nfs_inode *nfsi = NFS_I(state->inode);
1532 struct nfs_open_context *ctx;
1534 spin_lock(&state->inode->i_lock);
1535 list_for_each_entry(ctx, &nfsi->open_files, list) {
1536 if (ctx->state != state)
1537 continue;
1538 get_nfs_open_context(ctx);
1539 spin_unlock(&state->inode->i_lock);
1540 return ctx;
1542 spin_unlock(&state->inode->i_lock);
1543 return ERR_PTR(-ENOENT);
1546 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
1547 struct nfs4_state *state, enum open_claim_type4 claim)
1549 struct nfs4_opendata *opendata;
1551 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
1552 NULL, NULL, claim, GFP_NOFS);
1553 if (opendata == NULL)
1554 return ERR_PTR(-ENOMEM);
1555 opendata->state = state;
1556 atomic_inc(&state->count);
1557 return opendata;
1560 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, fmode_t fmode, struct nfs4_state **res)
1562 struct nfs4_state *newstate;
1563 int ret;
1565 opendata->o_arg.open_flags = 0;
1566 opendata->o_arg.fmode = fmode;
1567 opendata->o_arg.share_access = nfs4_map_atomic_open_share(
1568 NFS_SB(opendata->dentry->d_sb),
1569 fmode, 0);
1570 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1571 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1572 nfs4_init_opendata_res(opendata);
1573 ret = _nfs4_recover_proc_open(opendata);
1574 if (ret != 0)
1575 return ret;
1576 newstate = nfs4_opendata_to_nfs4_state(opendata);
1577 if (IS_ERR(newstate))
1578 return PTR_ERR(newstate);
1579 nfs4_close_state(newstate, fmode);
1580 *res = newstate;
1581 return 0;
1584 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1586 struct nfs4_state *newstate;
1587 int ret;
1589 /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */
1590 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1591 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1592 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1593 /* memory barrier prior to reading state->n_* */
1594 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1595 clear_bit(NFS_OPEN_STATE, &state->flags);
1596 smp_rmb();
1597 if (state->n_rdwr != 0) {
1598 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &newstate);
1599 if (ret != 0)
1600 return ret;
1601 if (newstate != state)
1602 return -ESTALE;
1604 if (state->n_wronly != 0) {
1605 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &newstate);
1606 if (ret != 0)
1607 return ret;
1608 if (newstate != state)
1609 return -ESTALE;
1611 if (state->n_rdonly != 0) {
1612 ret = nfs4_open_recover_helper(opendata, FMODE_READ, &newstate);
1613 if (ret != 0)
1614 return ret;
1615 if (newstate != state)
1616 return -ESTALE;
1619 * We may have performed cached opens for all three recoveries.
1620 * Check if we need to update the current stateid.
1622 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1623 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
1624 write_seqlock(&state->seqlock);
1625 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1626 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1627 write_sequnlock(&state->seqlock);
1629 return 0;
1633 * OPEN_RECLAIM:
1634 * reclaim state on the server after a reboot.
1636 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1638 struct nfs_delegation *delegation;
1639 struct nfs4_opendata *opendata;
1640 fmode_t delegation_type = 0;
1641 int status;
1643 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1644 NFS4_OPEN_CLAIM_PREVIOUS);
1645 if (IS_ERR(opendata))
1646 return PTR_ERR(opendata);
1647 rcu_read_lock();
1648 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1649 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
1650 delegation_type = delegation->type;
1651 rcu_read_unlock();
1652 opendata->o_arg.u.delegation_type = delegation_type;
1653 status = nfs4_open_recover(opendata, state);
1654 nfs4_opendata_put(opendata);
1655 return status;
1658 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1660 struct nfs_server *server = NFS_SERVER(state->inode);
1661 struct nfs4_exception exception = { };
1662 int err;
1663 do {
1664 err = _nfs4_do_open_reclaim(ctx, state);
1665 trace_nfs4_open_reclaim(ctx, 0, err);
1666 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
1667 continue;
1668 if (err != -NFS4ERR_DELAY)
1669 break;
1670 nfs4_handle_exception(server, err, &exception);
1671 } while (exception.retry);
1672 return err;
1675 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1677 struct nfs_open_context *ctx;
1678 int ret;
1680 ctx = nfs4_state_find_open_context(state);
1681 if (IS_ERR(ctx))
1682 return -EAGAIN;
1683 ret = nfs4_do_open_reclaim(ctx, state);
1684 put_nfs_open_context(ctx);
1685 return ret;
1688 static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, int err)
1690 switch (err) {
1691 default:
1692 printk(KERN_ERR "NFS: %s: unhandled error "
1693 "%d.\n", __func__, err);
1694 case 0:
1695 case -ENOENT:
1696 case -ESTALE:
1697 break;
1698 case -NFS4ERR_BADSESSION:
1699 case -NFS4ERR_BADSLOT:
1700 case -NFS4ERR_BAD_HIGH_SLOT:
1701 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1702 case -NFS4ERR_DEADSESSION:
1703 set_bit(NFS_DELEGATED_STATE, &state->flags);
1704 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
1705 return -EAGAIN;
1706 case -NFS4ERR_STALE_CLIENTID:
1707 case -NFS4ERR_STALE_STATEID:
1708 set_bit(NFS_DELEGATED_STATE, &state->flags);
1709 case -NFS4ERR_EXPIRED:
1710 /* Don't recall a delegation if it was lost */
1711 nfs4_schedule_lease_recovery(server->nfs_client);
1712 return -EAGAIN;
1713 case -NFS4ERR_MOVED:
1714 nfs4_schedule_migration_recovery(server);
1715 return -EAGAIN;
1716 case -NFS4ERR_LEASE_MOVED:
1717 nfs4_schedule_lease_moved_recovery(server->nfs_client);
1718 return -EAGAIN;
1719 case -NFS4ERR_DELEG_REVOKED:
1720 case -NFS4ERR_ADMIN_REVOKED:
1721 case -NFS4ERR_BAD_STATEID:
1722 case -NFS4ERR_OPENMODE:
1723 nfs_inode_find_state_and_recover(state->inode,
1724 stateid);
1725 nfs4_schedule_stateid_recovery(server, state);
1726 return -EAGAIN;
1727 case -NFS4ERR_DELAY:
1728 case -NFS4ERR_GRACE:
1729 set_bit(NFS_DELEGATED_STATE, &state->flags);
1730 ssleep(1);
1731 return -EAGAIN;
1732 case -ENOMEM:
1733 case -NFS4ERR_DENIED:
1734 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
1735 return 0;
1737 return err;
1740 int nfs4_open_delegation_recall(struct nfs_open_context *ctx, struct nfs4_state *state, const nfs4_stateid *stateid)
1742 struct nfs_server *server = NFS_SERVER(state->inode);
1743 struct nfs4_opendata *opendata;
1744 int err;
1746 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1747 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1748 if (IS_ERR(opendata))
1749 return PTR_ERR(opendata);
1750 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
1751 err = nfs4_open_recover(opendata, state);
1752 nfs4_opendata_put(opendata);
1753 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
1756 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
1758 struct nfs4_opendata *data = calldata;
1760 nfs40_setup_sequence(data->o_arg.server->nfs_client->cl_slot_tbl,
1761 &data->c_arg.seq_args, &data->c_res.seq_res, task);
1764 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1766 struct nfs4_opendata *data = calldata;
1768 nfs40_sequence_done(task, &data->c_res.seq_res);
1770 data->rpc_status = task->tk_status;
1771 if (data->rpc_status == 0) {
1772 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
1773 nfs_confirm_seqid(&data->owner->so_seqid, 0);
1774 renew_lease(data->o_res.server, data->timestamp);
1775 data->rpc_done = 1;
1779 static void nfs4_open_confirm_release(void *calldata)
1781 struct nfs4_opendata *data = calldata;
1782 struct nfs4_state *state = NULL;
1784 /* If this request hasn't been cancelled, do nothing */
1785 if (data->cancelled == 0)
1786 goto out_free;
1787 /* In case of error, no cleanup! */
1788 if (!data->rpc_done)
1789 goto out_free;
1790 state = nfs4_opendata_to_nfs4_state(data);
1791 if (!IS_ERR(state))
1792 nfs4_close_state(state, data->o_arg.fmode);
1793 out_free:
1794 nfs4_opendata_put(data);
1797 static const struct rpc_call_ops nfs4_open_confirm_ops = {
1798 .rpc_call_prepare = nfs4_open_confirm_prepare,
1799 .rpc_call_done = nfs4_open_confirm_done,
1800 .rpc_release = nfs4_open_confirm_release,
1804 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1806 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
1808 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
1809 struct rpc_task *task;
1810 struct rpc_message msg = {
1811 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
1812 .rpc_argp = &data->c_arg,
1813 .rpc_resp = &data->c_res,
1814 .rpc_cred = data->owner->so_cred,
1816 struct rpc_task_setup task_setup_data = {
1817 .rpc_client = server->client,
1818 .rpc_message = &msg,
1819 .callback_ops = &nfs4_open_confirm_ops,
1820 .callback_data = data,
1821 .workqueue = nfsiod_workqueue,
1822 .flags = RPC_TASK_ASYNC,
1824 int status;
1826 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1);
1827 kref_get(&data->kref);
1828 data->rpc_done = 0;
1829 data->rpc_status = 0;
1830 data->timestamp = jiffies;
1831 task = rpc_run_task(&task_setup_data);
1832 if (IS_ERR(task))
1833 return PTR_ERR(task);
1834 status = nfs4_wait_for_completion_rpc_task(task);
1835 if (status != 0) {
1836 data->cancelled = 1;
1837 smp_wmb();
1838 } else
1839 status = data->rpc_status;
1840 rpc_put_task(task);
1841 return status;
1844 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
1846 struct nfs4_opendata *data = calldata;
1847 struct nfs4_state_owner *sp = data->owner;
1848 struct nfs_client *clp = sp->so_server->nfs_client;
1850 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
1851 goto out_wait;
1853 * Check if we still need to send an OPEN call, or if we can use
1854 * a delegation instead.
1856 if (data->state != NULL) {
1857 struct nfs_delegation *delegation;
1859 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
1860 goto out_no_action;
1861 rcu_read_lock();
1862 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
1863 if (data->o_arg.claim != NFS4_OPEN_CLAIM_DELEGATE_CUR &&
1864 data->o_arg.claim != NFS4_OPEN_CLAIM_DELEG_CUR_FH &&
1865 can_open_delegated(delegation, data->o_arg.fmode))
1866 goto unlock_no_action;
1867 rcu_read_unlock();
1869 /* Update client id. */
1870 data->o_arg.clientid = clp->cl_clientid;
1871 switch (data->o_arg.claim) {
1872 case NFS4_OPEN_CLAIM_PREVIOUS:
1873 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1874 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1875 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
1876 case NFS4_OPEN_CLAIM_FH:
1877 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
1878 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
1880 data->timestamp = jiffies;
1881 if (nfs4_setup_sequence(data->o_arg.server,
1882 &data->o_arg.seq_args,
1883 &data->o_res.seq_res,
1884 task) != 0)
1885 nfs_release_seqid(data->o_arg.seqid);
1887 /* Set the create mode (note dependency on the session type) */
1888 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
1889 if (data->o_arg.open_flags & O_EXCL) {
1890 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
1891 if (nfs4_has_persistent_session(clp))
1892 data->o_arg.createmode = NFS4_CREATE_GUARDED;
1893 else if (clp->cl_mvops->minor_version > 0)
1894 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
1896 return;
1897 unlock_no_action:
1898 rcu_read_unlock();
1899 out_no_action:
1900 task->tk_action = NULL;
1901 out_wait:
1902 nfs4_sequence_done(task, &data->o_res.seq_res);
1905 static void nfs4_open_done(struct rpc_task *task, void *calldata)
1907 struct nfs4_opendata *data = calldata;
1909 data->rpc_status = task->tk_status;
1911 if (!nfs4_sequence_done(task, &data->o_res.seq_res))
1912 return;
1914 if (task->tk_status == 0) {
1915 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
1916 switch (data->o_res.f_attr->mode & S_IFMT) {
1917 case S_IFREG:
1918 break;
1919 case S_IFLNK:
1920 data->rpc_status = -ELOOP;
1921 break;
1922 case S_IFDIR:
1923 data->rpc_status = -EISDIR;
1924 break;
1925 default:
1926 data->rpc_status = -ENOTDIR;
1929 renew_lease(data->o_res.server, data->timestamp);
1930 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
1931 nfs_confirm_seqid(&data->owner->so_seqid, 0);
1933 data->rpc_done = 1;
1936 static void nfs4_open_release(void *calldata)
1938 struct nfs4_opendata *data = calldata;
1939 struct nfs4_state *state = NULL;
1941 /* If this request hasn't been cancelled, do nothing */
1942 if (data->cancelled == 0)
1943 goto out_free;
1944 /* In case of error, no cleanup! */
1945 if (data->rpc_status != 0 || !data->rpc_done)
1946 goto out_free;
1947 /* In case we need an open_confirm, no cleanup! */
1948 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
1949 goto out_free;
1950 state = nfs4_opendata_to_nfs4_state(data);
1951 if (!IS_ERR(state))
1952 nfs4_close_state(state, data->o_arg.fmode);
1953 out_free:
1954 nfs4_opendata_put(data);
1957 static const struct rpc_call_ops nfs4_open_ops = {
1958 .rpc_call_prepare = nfs4_open_prepare,
1959 .rpc_call_done = nfs4_open_done,
1960 .rpc_release = nfs4_open_release,
1963 static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
1965 struct inode *dir = d_inode(data->dir);
1966 struct nfs_server *server = NFS_SERVER(dir);
1967 struct nfs_openargs *o_arg = &data->o_arg;
1968 struct nfs_openres *o_res = &data->o_res;
1969 struct rpc_task *task;
1970 struct rpc_message msg = {
1971 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
1972 .rpc_argp = o_arg,
1973 .rpc_resp = o_res,
1974 .rpc_cred = data->owner->so_cred,
1976 struct rpc_task_setup task_setup_data = {
1977 .rpc_client = server->client,
1978 .rpc_message = &msg,
1979 .callback_ops = &nfs4_open_ops,
1980 .callback_data = data,
1981 .workqueue = nfsiod_workqueue,
1982 .flags = RPC_TASK_ASYNC,
1984 int status;
1986 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
1987 kref_get(&data->kref);
1988 data->rpc_done = 0;
1989 data->rpc_status = 0;
1990 data->cancelled = 0;
1991 data->is_recover = 0;
1992 if (isrecover) {
1993 nfs4_set_sequence_privileged(&o_arg->seq_args);
1994 data->is_recover = 1;
1996 task = rpc_run_task(&task_setup_data);
1997 if (IS_ERR(task))
1998 return PTR_ERR(task);
1999 status = nfs4_wait_for_completion_rpc_task(task);
2000 if (status != 0) {
2001 data->cancelled = 1;
2002 smp_wmb();
2003 } else
2004 status = data->rpc_status;
2005 rpc_put_task(task);
2007 return status;
2010 static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2012 struct inode *dir = d_inode(data->dir);
2013 struct nfs_openres *o_res = &data->o_res;
2014 int status;
2016 status = nfs4_run_open_task(data, 1);
2017 if (status != 0 || !data->rpc_done)
2018 return status;
2020 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2022 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2023 status = _nfs4_proc_open_confirm(data);
2024 if (status != 0)
2025 return status;
2028 return status;
2032 * Additional permission checks in order to distinguish between an
2033 * open for read, and an open for execute. This works around the
2034 * fact that NFSv4 OPEN treats read and execute permissions as being
2035 * the same.
2036 * Note that in the non-execute case, we want to turn off permission
2037 * checking if we just created a new file (POSIX open() semantics).
2039 static int nfs4_opendata_access(struct rpc_cred *cred,
2040 struct nfs4_opendata *opendata,
2041 struct nfs4_state *state, fmode_t fmode,
2042 int openflags)
2044 struct nfs_access_entry cache;
2045 u32 mask;
2047 /* access call failed or for some reason the server doesn't
2048 * support any access modes -- defer access call until later */
2049 if (opendata->o_res.access_supported == 0)
2050 return 0;
2052 mask = 0;
2054 * Use openflags to check for exec, because fmode won't
2055 * always have FMODE_EXEC set when file open for exec.
2057 if (openflags & __FMODE_EXEC) {
2058 /* ONLY check for exec rights */
2059 mask = MAY_EXEC;
2060 } else if ((fmode & FMODE_READ) && !opendata->file_created)
2061 mask = MAY_READ;
2063 cache.cred = cred;
2064 cache.jiffies = jiffies;
2065 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2066 nfs_access_add_cache(state->inode, &cache);
2068 if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0)
2069 return 0;
2071 /* even though OPEN succeeded, access is denied. Close the file */
2072 nfs4_close_state(state, fmode);
2073 return -EACCES;
2077 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2079 static int _nfs4_proc_open(struct nfs4_opendata *data)
2081 struct inode *dir = d_inode(data->dir);
2082 struct nfs_server *server = NFS_SERVER(dir);
2083 struct nfs_openargs *o_arg = &data->o_arg;
2084 struct nfs_openres *o_res = &data->o_res;
2085 int status;
2087 status = nfs4_run_open_task(data, 0);
2088 if (!data->rpc_done)
2089 return status;
2090 if (status != 0) {
2091 if (status == -NFS4ERR_BADNAME &&
2092 !(o_arg->open_flags & O_CREAT))
2093 return -ENOENT;
2094 return status;
2097 nfs_fattr_map_and_free_names(server, &data->f_attr);
2099 if (o_arg->open_flags & O_CREAT) {
2100 update_changeattr(dir, &o_res->cinfo);
2101 if (o_arg->open_flags & O_EXCL)
2102 data->file_created = 1;
2103 else if (o_res->cinfo.before != o_res->cinfo.after)
2104 data->file_created = 1;
2106 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2107 server->caps &= ~NFS_CAP_POSIX_LOCK;
2108 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2109 status = _nfs4_proc_open_confirm(data);
2110 if (status != 0)
2111 return status;
2113 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
2114 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
2115 return 0;
2118 static int nfs4_recover_expired_lease(struct nfs_server *server)
2120 return nfs4_client_recover_expired_lease(server->nfs_client);
2124 * OPEN_EXPIRED:
2125 * reclaim state on the server after a network partition.
2126 * Assumes caller holds the appropriate lock
2128 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2130 struct nfs4_opendata *opendata;
2131 int ret;
2133 opendata = nfs4_open_recoverdata_alloc(ctx, state,
2134 NFS4_OPEN_CLAIM_FH);
2135 if (IS_ERR(opendata))
2136 return PTR_ERR(opendata);
2137 ret = nfs4_open_recover(opendata, state);
2138 if (ret == -ESTALE)
2139 d_drop(ctx->dentry);
2140 nfs4_opendata_put(opendata);
2141 return ret;
2144 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2146 struct nfs_server *server = NFS_SERVER(state->inode);
2147 struct nfs4_exception exception = { };
2148 int err;
2150 do {
2151 err = _nfs4_open_expired(ctx, state);
2152 trace_nfs4_open_expired(ctx, 0, err);
2153 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2154 continue;
2155 switch (err) {
2156 default:
2157 goto out;
2158 case -NFS4ERR_GRACE:
2159 case -NFS4ERR_DELAY:
2160 nfs4_handle_exception(server, err, &exception);
2161 err = 0;
2163 } while (exception.retry);
2164 out:
2165 return err;
2168 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2170 struct nfs_open_context *ctx;
2171 int ret;
2173 ctx = nfs4_state_find_open_context(state);
2174 if (IS_ERR(ctx))
2175 return -EAGAIN;
2176 ret = nfs4_do_open_expired(ctx, state);
2177 put_nfs_open_context(ctx);
2178 return ret;
2181 static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state)
2183 nfs_remove_bad_delegation(state->inode);
2184 write_seqlock(&state->seqlock);
2185 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2186 write_sequnlock(&state->seqlock);
2187 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2190 static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2192 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
2193 nfs_finish_clear_delegation_stateid(state);
2196 static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2198 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2199 nfs40_clear_delegation_stateid(state);
2200 return nfs4_open_expired(sp, state);
2203 #if defined(CONFIG_NFS_V4_1)
2204 static void nfs41_check_delegation_stateid(struct nfs4_state *state)
2206 struct nfs_server *server = NFS_SERVER(state->inode);
2207 nfs4_stateid stateid;
2208 struct nfs_delegation *delegation;
2209 struct rpc_cred *cred;
2210 int status;
2212 /* Get the delegation credential for use by test/free_stateid */
2213 rcu_read_lock();
2214 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2215 if (delegation == NULL) {
2216 rcu_read_unlock();
2217 return;
2220 nfs4_stateid_copy(&stateid, &delegation->stateid);
2221 cred = get_rpccred(delegation->cred);
2222 rcu_read_unlock();
2223 status = nfs41_test_stateid(server, &stateid, cred);
2224 trace_nfs4_test_delegation_stateid(state, NULL, status);
2226 if (status != NFS_OK) {
2227 /* Free the stateid unless the server explicitly
2228 * informs us the stateid is unrecognized. */
2229 if (status != -NFS4ERR_BAD_STATEID)
2230 nfs41_free_stateid(server, &stateid, cred);
2231 nfs_finish_clear_delegation_stateid(state);
2234 put_rpccred(cred);
2238 * nfs41_check_open_stateid - possibly free an open stateid
2240 * @state: NFSv4 state for an inode
2242 * Returns NFS_OK if recovery for this stateid is now finished.
2243 * Otherwise a negative NFS4ERR value is returned.
2245 static int nfs41_check_open_stateid(struct nfs4_state *state)
2247 struct nfs_server *server = NFS_SERVER(state->inode);
2248 nfs4_stateid *stateid = &state->open_stateid;
2249 struct rpc_cred *cred = state->owner->so_cred;
2250 int status;
2252 /* If a state reset has been done, test_stateid is unneeded */
2253 if ((test_bit(NFS_O_RDONLY_STATE, &state->flags) == 0) &&
2254 (test_bit(NFS_O_WRONLY_STATE, &state->flags) == 0) &&
2255 (test_bit(NFS_O_RDWR_STATE, &state->flags) == 0))
2256 return -NFS4ERR_BAD_STATEID;
2258 status = nfs41_test_stateid(server, stateid, cred);
2259 trace_nfs4_test_open_stateid(state, NULL, status);
2260 if (status != NFS_OK) {
2261 /* Free the stateid unless the server explicitly
2262 * informs us the stateid is unrecognized. */
2263 if (status != -NFS4ERR_BAD_STATEID)
2264 nfs41_free_stateid(server, stateid, cred);
2266 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2267 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2268 clear_bit(NFS_O_RDWR_STATE, &state->flags);
2269 clear_bit(NFS_OPEN_STATE, &state->flags);
2271 return status;
2274 static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2276 int status;
2278 nfs41_check_delegation_stateid(state);
2279 status = nfs41_check_open_stateid(state);
2280 if (status != NFS_OK)
2281 status = nfs4_open_expired(sp, state);
2282 return status;
2284 #endif
2287 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2288 * fields corresponding to attributes that were used to store the verifier.
2289 * Make sure we clobber those fields in the later setattr call
2291 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, struct iattr *sattr)
2293 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
2294 !(sattr->ia_valid & ATTR_ATIME_SET))
2295 sattr->ia_valid |= ATTR_ATIME;
2297 if ((opendata->o_res.attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
2298 !(sattr->ia_valid & ATTR_MTIME_SET))
2299 sattr->ia_valid |= ATTR_MTIME;
2302 static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2303 fmode_t fmode,
2304 int flags,
2305 struct nfs_open_context *ctx)
2307 struct nfs4_state_owner *sp = opendata->owner;
2308 struct nfs_server *server = sp->so_server;
2309 struct dentry *dentry;
2310 struct nfs4_state *state;
2311 unsigned int seq;
2312 int ret;
2314 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2316 ret = _nfs4_proc_open(opendata);
2317 if (ret != 0)
2318 goto out;
2320 state = nfs4_opendata_to_nfs4_state(opendata);
2321 ret = PTR_ERR(state);
2322 if (IS_ERR(state))
2323 goto out;
2324 if (server->caps & NFS_CAP_POSIX_LOCK)
2325 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
2327 dentry = opendata->dentry;
2328 if (d_really_is_negative(dentry)) {
2329 /* FIXME: Is this d_drop() ever needed? */
2330 d_drop(dentry);
2331 dentry = d_add_unique(dentry, igrab(state->inode));
2332 if (dentry == NULL) {
2333 dentry = opendata->dentry;
2334 } else {
2335 dput(ctx->dentry);
2336 ctx->dentry = dentry;
2338 nfs_set_verifier(dentry,
2339 nfs_save_change_attribute(d_inode(opendata->dir)));
2342 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags);
2343 if (ret != 0)
2344 goto out;
2346 ctx->state = state;
2347 if (d_inode(dentry) == state->inode) {
2348 nfs_inode_attach_open_context(ctx);
2349 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
2350 nfs4_schedule_stateid_recovery(server, state);
2352 out:
2353 return ret;
2357 * Returns a referenced nfs4_state
2359 static int _nfs4_do_open(struct inode *dir,
2360 struct nfs_open_context *ctx,
2361 int flags,
2362 struct iattr *sattr,
2363 struct nfs4_label *label,
2364 int *opened)
2366 struct nfs4_state_owner *sp;
2367 struct nfs4_state *state = NULL;
2368 struct nfs_server *server = NFS_SERVER(dir);
2369 struct nfs4_opendata *opendata;
2370 struct dentry *dentry = ctx->dentry;
2371 struct rpc_cred *cred = ctx->cred;
2372 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
2373 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
2374 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
2375 struct nfs4_label *olabel = NULL;
2376 int status;
2378 /* Protect against reboot recovery conflicts */
2379 status = -ENOMEM;
2380 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
2381 if (sp == NULL) {
2382 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
2383 goto out_err;
2385 status = nfs4_recover_expired_lease(server);
2386 if (status != 0)
2387 goto err_put_state_owner;
2388 if (d_really_is_positive(dentry))
2389 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
2390 status = -ENOMEM;
2391 if (d_really_is_positive(dentry))
2392 claim = NFS4_OPEN_CLAIM_FH;
2393 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr,
2394 label, claim, GFP_KERNEL);
2395 if (opendata == NULL)
2396 goto err_put_state_owner;
2398 if (label) {
2399 olabel = nfs4_label_alloc(server, GFP_KERNEL);
2400 if (IS_ERR(olabel)) {
2401 status = PTR_ERR(olabel);
2402 goto err_opendata_put;
2406 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
2407 if (!opendata->f_attr.mdsthreshold) {
2408 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
2409 if (!opendata->f_attr.mdsthreshold)
2410 goto err_free_label;
2412 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
2414 if (d_really_is_positive(dentry))
2415 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
2417 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx);
2418 if (status != 0)
2419 goto err_free_label;
2420 state = ctx->state;
2422 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
2423 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
2424 nfs4_exclusive_attrset(opendata, sattr);
2426 nfs_fattr_init(opendata->o_res.f_attr);
2427 status = nfs4_do_setattr(state->inode, cred,
2428 opendata->o_res.f_attr, sattr,
2429 state, label, olabel);
2430 if (status == 0) {
2431 nfs_setattr_update_inode(state->inode, sattr,
2432 opendata->o_res.f_attr);
2433 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
2436 if (opendata->file_created)
2437 *opened |= FILE_CREATED;
2439 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
2440 *ctx_th = opendata->f_attr.mdsthreshold;
2441 opendata->f_attr.mdsthreshold = NULL;
2444 nfs4_label_free(olabel);
2446 nfs4_opendata_put(opendata);
2447 nfs4_put_state_owner(sp);
2448 return 0;
2449 err_free_label:
2450 nfs4_label_free(olabel);
2451 err_opendata_put:
2452 nfs4_opendata_put(opendata);
2453 err_put_state_owner:
2454 nfs4_put_state_owner(sp);
2455 out_err:
2456 return status;
2460 static struct nfs4_state *nfs4_do_open(struct inode *dir,
2461 struct nfs_open_context *ctx,
2462 int flags,
2463 struct iattr *sattr,
2464 struct nfs4_label *label,
2465 int *opened)
2467 struct nfs_server *server = NFS_SERVER(dir);
2468 struct nfs4_exception exception = { };
2469 struct nfs4_state *res;
2470 int status;
2472 do {
2473 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened);
2474 res = ctx->state;
2475 trace_nfs4_open_file(ctx, flags, status);
2476 if (status == 0)
2477 break;
2478 /* NOTE: BAD_SEQID means the server and client disagree about the
2479 * book-keeping w.r.t. state-changing operations
2480 * (OPEN/CLOSE/LOCK/LOCKU...)
2481 * It is actually a sign of a bug on the client or on the server.
2483 * If we receive a BAD_SEQID error in the particular case of
2484 * doing an OPEN, we assume that nfs_increment_open_seqid() will
2485 * have unhashed the old state_owner for us, and that we can
2486 * therefore safely retry using a new one. We should still warn
2487 * the user though...
2489 if (status == -NFS4ERR_BAD_SEQID) {
2490 pr_warn_ratelimited("NFS: v4 server %s "
2491 " returned a bad sequence-id error!\n",
2492 NFS_SERVER(dir)->nfs_client->cl_hostname);
2493 exception.retry = 1;
2494 continue;
2497 * BAD_STATEID on OPEN means that the server cancelled our
2498 * state before it received the OPEN_CONFIRM.
2499 * Recover by retrying the request as per the discussion
2500 * on Page 181 of RFC3530.
2502 if (status == -NFS4ERR_BAD_STATEID) {
2503 exception.retry = 1;
2504 continue;
2506 if (status == -EAGAIN) {
2507 /* We must have found a delegation */
2508 exception.retry = 1;
2509 continue;
2511 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
2512 continue;
2513 res = ERR_PTR(nfs4_handle_exception(server,
2514 status, &exception));
2515 } while (exception.retry);
2516 return res;
2519 static int _nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2520 struct nfs_fattr *fattr, struct iattr *sattr,
2521 struct nfs4_state *state, struct nfs4_label *ilabel,
2522 struct nfs4_label *olabel)
2524 struct nfs_server *server = NFS_SERVER(inode);
2525 struct nfs_setattrargs arg = {
2526 .fh = NFS_FH(inode),
2527 .iap = sattr,
2528 .server = server,
2529 .bitmask = server->attr_bitmask,
2530 .label = ilabel,
2532 struct nfs_setattrres res = {
2533 .fattr = fattr,
2534 .label = olabel,
2535 .server = server,
2537 struct rpc_message msg = {
2538 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2539 .rpc_argp = &arg,
2540 .rpc_resp = &res,
2541 .rpc_cred = cred,
2543 unsigned long timestamp = jiffies;
2544 fmode_t fmode;
2545 bool truncate;
2546 int status;
2548 arg.bitmask = nfs4_bitmask(server, ilabel);
2549 if (ilabel)
2550 arg.bitmask = nfs4_bitmask(server, olabel);
2552 nfs_fattr_init(fattr);
2554 /* Servers should only apply open mode checks for file size changes */
2555 truncate = (sattr->ia_valid & ATTR_SIZE) ? true : false;
2556 fmode = truncate ? FMODE_WRITE : FMODE_READ;
2558 if (nfs4_copy_delegation_stateid(&arg.stateid, inode, fmode)) {
2559 /* Use that stateid */
2560 } else if (truncate && state != NULL) {
2561 struct nfs_lockowner lockowner = {
2562 .l_owner = current->files,
2563 .l_pid = current->tgid,
2565 if (!nfs4_valid_open_stateid(state))
2566 return -EBADF;
2567 if (nfs4_select_rw_stateid(&arg.stateid, state, FMODE_WRITE,
2568 &lockowner) == -EIO)
2569 return -EBADF;
2570 } else
2571 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
2573 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
2574 if (status == 0 && state != NULL)
2575 renew_lease(server, timestamp);
2576 return status;
2579 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2580 struct nfs_fattr *fattr, struct iattr *sattr,
2581 struct nfs4_state *state, struct nfs4_label *ilabel,
2582 struct nfs4_label *olabel)
2584 struct nfs_server *server = NFS_SERVER(inode);
2585 struct nfs4_exception exception = {
2586 .state = state,
2587 .inode = inode,
2589 int err;
2590 do {
2591 err = _nfs4_do_setattr(inode, cred, fattr, sattr, state, ilabel, olabel);
2592 trace_nfs4_setattr(inode, err);
2593 switch (err) {
2594 case -NFS4ERR_OPENMODE:
2595 if (!(sattr->ia_valid & ATTR_SIZE)) {
2596 pr_warn_once("NFSv4: server %s is incorrectly "
2597 "applying open mode checks to "
2598 "a SETATTR that is not "
2599 "changing file size.\n",
2600 server->nfs_client->cl_hostname);
2602 if (state && !(state->state & FMODE_WRITE)) {
2603 err = -EBADF;
2604 if (sattr->ia_valid & ATTR_OPEN)
2605 err = -EACCES;
2606 goto out;
2609 err = nfs4_handle_exception(server, err, &exception);
2610 } while (exception.retry);
2611 out:
2612 return err;
2615 struct nfs4_closedata {
2616 struct inode *inode;
2617 struct nfs4_state *state;
2618 struct nfs_closeargs arg;
2619 struct nfs_closeres res;
2620 struct nfs_fattr fattr;
2621 unsigned long timestamp;
2622 bool roc;
2623 u32 roc_barrier;
2626 static void nfs4_free_closedata(void *data)
2628 struct nfs4_closedata *calldata = data;
2629 struct nfs4_state_owner *sp = calldata->state->owner;
2630 struct super_block *sb = calldata->state->inode->i_sb;
2632 if (calldata->roc)
2633 pnfs_roc_release(calldata->state->inode);
2634 nfs4_put_open_state(calldata->state);
2635 nfs_free_seqid(calldata->arg.seqid);
2636 nfs4_put_state_owner(sp);
2637 nfs_sb_deactive(sb);
2638 kfree(calldata);
2641 static void nfs4_close_done(struct rpc_task *task, void *data)
2643 struct nfs4_closedata *calldata = data;
2644 struct nfs4_state *state = calldata->state;
2645 struct nfs_server *server = NFS_SERVER(calldata->inode);
2646 nfs4_stateid *res_stateid = NULL;
2648 dprintk("%s: begin!\n", __func__);
2649 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
2650 return;
2651 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
2652 /* hmm. we are done with the inode, and in the process of freeing
2653 * the state_owner. we keep this around to process errors
2655 switch (task->tk_status) {
2656 case 0:
2657 res_stateid = &calldata->res.stateid;
2658 if (calldata->arg.fmode == 0 && calldata->roc)
2659 pnfs_roc_set_barrier(state->inode,
2660 calldata->roc_barrier);
2661 renew_lease(server, calldata->timestamp);
2662 break;
2663 case -NFS4ERR_ADMIN_REVOKED:
2664 case -NFS4ERR_STALE_STATEID:
2665 case -NFS4ERR_OLD_STATEID:
2666 case -NFS4ERR_BAD_STATEID:
2667 case -NFS4ERR_EXPIRED:
2668 if (!nfs4_stateid_match(&calldata->arg.stateid,
2669 &state->open_stateid)) {
2670 rpc_restart_call_prepare(task);
2671 goto out_release;
2673 if (calldata->arg.fmode == 0)
2674 break;
2675 default:
2676 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) {
2677 rpc_restart_call_prepare(task);
2678 goto out_release;
2681 nfs_clear_open_stateid(state, &calldata->arg.stateid,
2682 res_stateid, calldata->arg.fmode);
2683 out_release:
2684 nfs_release_seqid(calldata->arg.seqid);
2685 nfs_refresh_inode(calldata->inode, calldata->res.fattr);
2686 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
2689 static void nfs4_close_prepare(struct rpc_task *task, void *data)
2691 struct nfs4_closedata *calldata = data;
2692 struct nfs4_state *state = calldata->state;
2693 struct inode *inode = calldata->inode;
2694 bool is_rdonly, is_wronly, is_rdwr;
2695 int call_close = 0;
2697 dprintk("%s: begin!\n", __func__);
2698 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
2699 goto out_wait;
2701 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
2702 spin_lock(&state->owner->so_lock);
2703 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
2704 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
2705 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
2706 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid);
2707 /* Calculate the change in open mode */
2708 calldata->arg.fmode = 0;
2709 if (state->n_rdwr == 0) {
2710 if (state->n_rdonly == 0)
2711 call_close |= is_rdonly;
2712 else if (is_rdonly)
2713 calldata->arg.fmode |= FMODE_READ;
2714 if (state->n_wronly == 0)
2715 call_close |= is_wronly;
2716 else if (is_wronly)
2717 calldata->arg.fmode |= FMODE_WRITE;
2718 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
2719 call_close |= is_rdwr;
2720 } else if (is_rdwr)
2721 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
2723 if (!nfs4_valid_open_stateid(state))
2724 call_close = 0;
2725 spin_unlock(&state->owner->so_lock);
2727 if (!call_close) {
2728 /* Note: exit _without_ calling nfs4_close_done */
2729 goto out_no_action;
2732 if (calldata->arg.fmode == 0) {
2733 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
2734 if (calldata->roc &&
2735 pnfs_roc_drain(inode, &calldata->roc_barrier, task)) {
2736 nfs_release_seqid(calldata->arg.seqid);
2737 goto out_wait;
2740 calldata->arg.share_access =
2741 nfs4_map_atomic_open_share(NFS_SERVER(inode),
2742 calldata->arg.fmode, 0);
2744 nfs_fattr_init(calldata->res.fattr);
2745 calldata->timestamp = jiffies;
2746 if (nfs4_setup_sequence(NFS_SERVER(inode),
2747 &calldata->arg.seq_args,
2748 &calldata->res.seq_res,
2749 task) != 0)
2750 nfs_release_seqid(calldata->arg.seqid);
2751 dprintk("%s: done!\n", __func__);
2752 return;
2753 out_no_action:
2754 task->tk_action = NULL;
2755 out_wait:
2756 nfs4_sequence_done(task, &calldata->res.seq_res);
2759 static const struct rpc_call_ops nfs4_close_ops = {
2760 .rpc_call_prepare = nfs4_close_prepare,
2761 .rpc_call_done = nfs4_close_done,
2762 .rpc_release = nfs4_free_closedata,
2765 static bool nfs4_roc(struct inode *inode)
2767 if (!nfs_have_layout(inode))
2768 return false;
2769 return pnfs_roc(inode);
2773 * It is possible for data to be read/written from a mem-mapped file
2774 * after the sys_close call (which hits the vfs layer as a flush).
2775 * This means that we can't safely call nfsv4 close on a file until
2776 * the inode is cleared. This in turn means that we are not good
2777 * NFSv4 citizens - we do not indicate to the server to update the file's
2778 * share state even when we are done with one of the three share
2779 * stateid's in the inode.
2781 * NOTE: Caller must be holding the sp->so_owner semaphore!
2783 int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
2785 struct nfs_server *server = NFS_SERVER(state->inode);
2786 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
2787 struct nfs4_closedata *calldata;
2788 struct nfs4_state_owner *sp = state->owner;
2789 struct rpc_task *task;
2790 struct rpc_message msg = {
2791 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
2792 .rpc_cred = state->owner->so_cred,
2794 struct rpc_task_setup task_setup_data = {
2795 .rpc_client = server->client,
2796 .rpc_message = &msg,
2797 .callback_ops = &nfs4_close_ops,
2798 .workqueue = nfsiod_workqueue,
2799 .flags = RPC_TASK_ASYNC,
2801 int status = -ENOMEM;
2803 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
2804 &task_setup_data.rpc_client, &msg);
2806 calldata = kzalloc(sizeof(*calldata), gfp_mask);
2807 if (calldata == NULL)
2808 goto out;
2809 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
2810 calldata->inode = state->inode;
2811 calldata->state = state;
2812 calldata->arg.fh = NFS_FH(state->inode);
2813 /* Serialization for the sequence id */
2814 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
2815 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
2816 if (IS_ERR(calldata->arg.seqid))
2817 goto out_free_calldata;
2818 calldata->arg.fmode = 0;
2819 calldata->arg.bitmask = server->cache_consistency_bitmask;
2820 calldata->res.fattr = &calldata->fattr;
2821 calldata->res.seqid = calldata->arg.seqid;
2822 calldata->res.server = server;
2823 calldata->roc = nfs4_roc(state->inode);
2824 nfs_sb_active(calldata->inode->i_sb);
2826 msg.rpc_argp = &calldata->arg;
2827 msg.rpc_resp = &calldata->res;
2828 task_setup_data.callback_data = calldata;
2829 task = rpc_run_task(&task_setup_data);
2830 if (IS_ERR(task))
2831 return PTR_ERR(task);
2832 status = 0;
2833 if (wait)
2834 status = rpc_wait_for_completion_task(task);
2835 rpc_put_task(task);
2836 return status;
2837 out_free_calldata:
2838 kfree(calldata);
2839 out:
2840 nfs4_put_open_state(state);
2841 nfs4_put_state_owner(sp);
2842 return status;
2845 static struct inode *
2846 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
2847 int open_flags, struct iattr *attr, int *opened)
2849 struct nfs4_state *state;
2850 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
2852 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
2854 /* Protect against concurrent sillydeletes */
2855 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
2857 nfs4_label_release_security(label);
2859 if (IS_ERR(state))
2860 return ERR_CAST(state);
2861 return state->inode;
2864 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
2866 if (ctx->state == NULL)
2867 return;
2868 if (is_sync)
2869 nfs4_close_sync(ctx->state, ctx->mode);
2870 else
2871 nfs4_close_state(ctx->state, ctx->mode);
2874 #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
2875 #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
2876 #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_SECURITY_LABEL - 1UL)
2878 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2880 struct nfs4_server_caps_arg args = {
2881 .fhandle = fhandle,
2883 struct nfs4_server_caps_res res = {};
2884 struct rpc_message msg = {
2885 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
2886 .rpc_argp = &args,
2887 .rpc_resp = &res,
2889 int status;
2891 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2892 if (status == 0) {
2893 /* Sanity check the server answers */
2894 switch (server->nfs_client->cl_minorversion) {
2895 case 0:
2896 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
2897 res.attr_bitmask[2] = 0;
2898 break;
2899 case 1:
2900 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
2901 break;
2902 case 2:
2903 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
2905 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
2906 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
2907 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
2908 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
2909 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
2910 NFS_CAP_CTIME|NFS_CAP_MTIME|
2911 NFS_CAP_SECURITY_LABEL);
2912 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
2913 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
2914 server->caps |= NFS_CAP_ACLS;
2915 if (res.has_links != 0)
2916 server->caps |= NFS_CAP_HARDLINKS;
2917 if (res.has_symlinks != 0)
2918 server->caps |= NFS_CAP_SYMLINKS;
2919 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
2920 server->caps |= NFS_CAP_FILEID;
2921 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
2922 server->caps |= NFS_CAP_MODE;
2923 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
2924 server->caps |= NFS_CAP_NLINK;
2925 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
2926 server->caps |= NFS_CAP_OWNER;
2927 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
2928 server->caps |= NFS_CAP_OWNER_GROUP;
2929 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
2930 server->caps |= NFS_CAP_ATIME;
2931 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
2932 server->caps |= NFS_CAP_CTIME;
2933 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
2934 server->caps |= NFS_CAP_MTIME;
2935 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
2936 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
2937 server->caps |= NFS_CAP_SECURITY_LABEL;
2938 #endif
2939 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
2940 sizeof(server->attr_bitmask));
2941 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
2943 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
2944 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
2945 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
2946 server->cache_consistency_bitmask[2] = 0;
2947 server->acl_bitmask = res.acl_bitmask;
2948 server->fh_expire_type = res.fh_expire_type;
2951 return status;
2954 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
2956 struct nfs4_exception exception = { };
2957 int err;
2958 do {
2959 err = nfs4_handle_exception(server,
2960 _nfs4_server_capabilities(server, fhandle),
2961 &exception);
2962 } while (exception.retry);
2963 return err;
2966 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2967 struct nfs_fsinfo *info)
2969 u32 bitmask[3];
2970 struct nfs4_lookup_root_arg args = {
2971 .bitmask = bitmask,
2973 struct nfs4_lookup_res res = {
2974 .server = server,
2975 .fattr = info->fattr,
2976 .fh = fhandle,
2978 struct rpc_message msg = {
2979 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
2980 .rpc_argp = &args,
2981 .rpc_resp = &res,
2984 bitmask[0] = nfs4_fattr_bitmap[0];
2985 bitmask[1] = nfs4_fattr_bitmap[1];
2987 * Process the label in the upcoming getfattr
2989 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
2991 nfs_fattr_init(info->fattr);
2992 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
2995 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
2996 struct nfs_fsinfo *info)
2998 struct nfs4_exception exception = { };
2999 int err;
3000 do {
3001 err = _nfs4_lookup_root(server, fhandle, info);
3002 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
3003 switch (err) {
3004 case 0:
3005 case -NFS4ERR_WRONGSEC:
3006 goto out;
3007 default:
3008 err = nfs4_handle_exception(server, err, &exception);
3010 } while (exception.retry);
3011 out:
3012 return err;
3015 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3016 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3018 struct rpc_auth_create_args auth_args = {
3019 .pseudoflavor = flavor,
3021 struct rpc_auth *auth;
3022 int ret;
3024 auth = rpcauth_create(&auth_args, server->client);
3025 if (IS_ERR(auth)) {
3026 ret = -EACCES;
3027 goto out;
3029 ret = nfs4_lookup_root(server, fhandle, info);
3030 out:
3031 return ret;
3035 * Retry pseudoroot lookup with various security flavors. We do this when:
3037 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3038 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3040 * Returns zero on success, or a negative NFS4ERR value, or a
3041 * negative errno value.
3043 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3044 struct nfs_fsinfo *info)
3046 /* Per 3530bis 15.33.5 */
3047 static const rpc_authflavor_t flav_array[] = {
3048 RPC_AUTH_GSS_KRB5P,
3049 RPC_AUTH_GSS_KRB5I,
3050 RPC_AUTH_GSS_KRB5,
3051 RPC_AUTH_UNIX, /* courtesy */
3052 RPC_AUTH_NULL,
3054 int status = -EPERM;
3055 size_t i;
3057 if (server->auth_info.flavor_len > 0) {
3058 /* try each flavor specified by user */
3059 for (i = 0; i < server->auth_info.flavor_len; i++) {
3060 status = nfs4_lookup_root_sec(server, fhandle, info,
3061 server->auth_info.flavors[i]);
3062 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3063 continue;
3064 break;
3066 } else {
3067 /* no flavors specified by user, try default list */
3068 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3069 status = nfs4_lookup_root_sec(server, fhandle, info,
3070 flav_array[i]);
3071 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3072 continue;
3073 break;
3078 * -EACCESS could mean that the user doesn't have correct permissions
3079 * to access the mount. It could also mean that we tried to mount
3080 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
3081 * existing mount programs don't handle -EACCES very well so it should
3082 * be mapped to -EPERM instead.
3084 if (status == -EACCES)
3085 status = -EPERM;
3086 return status;
3089 static int nfs4_do_find_root_sec(struct nfs_server *server,
3090 struct nfs_fh *fhandle, struct nfs_fsinfo *info)
3092 int mv = server->nfs_client->cl_minorversion;
3093 return nfs_v4_minor_ops[mv]->find_root_sec(server, fhandle, info);
3097 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3098 * @server: initialized nfs_server handle
3099 * @fhandle: we fill in the pseudo-fs root file handle
3100 * @info: we fill in an FSINFO struct
3101 * @auth_probe: probe the auth flavours
3103 * Returns zero on success, or a negative errno.
3105 int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
3106 struct nfs_fsinfo *info,
3107 bool auth_probe)
3109 int status = 0;
3111 if (!auth_probe)
3112 status = nfs4_lookup_root(server, fhandle, info);
3114 if (auth_probe || status == NFS4ERR_WRONGSEC)
3115 status = nfs4_do_find_root_sec(server, fhandle, info);
3117 if (status == 0)
3118 status = nfs4_server_capabilities(server, fhandle);
3119 if (status == 0)
3120 status = nfs4_do_fsinfo(server, fhandle, info);
3122 return nfs4_map_errors(status);
3125 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3126 struct nfs_fsinfo *info)
3128 int error;
3129 struct nfs_fattr *fattr = info->fattr;
3130 struct nfs4_label *label = NULL;
3132 error = nfs4_server_capabilities(server, mntfh);
3133 if (error < 0) {
3134 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3135 return error;
3138 label = nfs4_label_alloc(server, GFP_KERNEL);
3139 if (IS_ERR(label))
3140 return PTR_ERR(label);
3142 error = nfs4_proc_getattr(server, mntfh, fattr, label);
3143 if (error < 0) {
3144 dprintk("nfs4_get_root: getattr error = %d\n", -error);
3145 goto err_free_label;
3148 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
3149 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
3150 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
3152 err_free_label:
3153 nfs4_label_free(label);
3155 return error;
3159 * Get locations and (maybe) other attributes of a referral.
3160 * Note that we'll actually follow the referral later when
3161 * we detect fsid mismatch in inode revalidation
3163 static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
3164 const struct qstr *name, struct nfs_fattr *fattr,
3165 struct nfs_fh *fhandle)
3167 int status = -ENOMEM;
3168 struct page *page = NULL;
3169 struct nfs4_fs_locations *locations = NULL;
3171 page = alloc_page(GFP_KERNEL);
3172 if (page == NULL)
3173 goto out;
3174 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
3175 if (locations == NULL)
3176 goto out;
3178 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
3179 if (status != 0)
3180 goto out;
3183 * If the fsid didn't change, this is a migration event, not a
3184 * referral. Cause us to drop into the exception handler, which
3185 * will kick off migration recovery.
3187 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
3188 dprintk("%s: server did not return a different fsid for"
3189 " a referral at %s\n", __func__, name->name);
3190 status = -NFS4ERR_MOVED;
3191 goto out;
3193 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
3194 nfs_fixup_referral_attributes(&locations->fattr);
3196 /* replace the lookup nfs_fattr with the locations nfs_fattr */
3197 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
3198 memset(fhandle, 0, sizeof(struct nfs_fh));
3199 out:
3200 if (page)
3201 __free_page(page);
3202 kfree(locations);
3203 return status;
3206 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3207 struct nfs_fattr *fattr, struct nfs4_label *label)
3209 struct nfs4_getattr_arg args = {
3210 .fh = fhandle,
3211 .bitmask = server->attr_bitmask,
3213 struct nfs4_getattr_res res = {
3214 .fattr = fattr,
3215 .label = label,
3216 .server = server,
3218 struct rpc_message msg = {
3219 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
3220 .rpc_argp = &args,
3221 .rpc_resp = &res,
3224 args.bitmask = nfs4_bitmask(server, label);
3226 nfs_fattr_init(fattr);
3227 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3230 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3231 struct nfs_fattr *fattr, struct nfs4_label *label)
3233 struct nfs4_exception exception = { };
3234 int err;
3235 do {
3236 err = _nfs4_proc_getattr(server, fhandle, fattr, label);
3237 trace_nfs4_getattr(server, fhandle, fattr, err);
3238 err = nfs4_handle_exception(server, err,
3239 &exception);
3240 } while (exception.retry);
3241 return err;
3245 * The file is not closed if it is opened due to the a request to change
3246 * the size of the file. The open call will not be needed once the
3247 * VFS layer lookup-intents are implemented.
3249 * Close is called when the inode is destroyed.
3250 * If we haven't opened the file for O_WRONLY, we
3251 * need to in the size_change case to obtain a stateid.
3253 * Got race?
3254 * Because OPEN is always done by name in nfsv4, it is
3255 * possible that we opened a different file by the same
3256 * name. We can recognize this race condition, but we
3257 * can't do anything about it besides returning an error.
3259 * This will be fixed with VFS changes (lookup-intent).
3261 static int
3262 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
3263 struct iattr *sattr)
3265 struct inode *inode = d_inode(dentry);
3266 struct rpc_cred *cred = NULL;
3267 struct nfs4_state *state = NULL;
3268 struct nfs4_label *label = NULL;
3269 int status;
3271 if (pnfs_ld_layoutret_on_setattr(inode) &&
3272 sattr->ia_valid & ATTR_SIZE &&
3273 sattr->ia_size < i_size_read(inode))
3274 pnfs_commit_and_return_layout(inode);
3276 nfs_fattr_init(fattr);
3278 /* Deal with open(O_TRUNC) */
3279 if (sattr->ia_valid & ATTR_OPEN)
3280 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
3282 /* Optimization: if the end result is no change, don't RPC */
3283 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
3284 return 0;
3286 /* Search for an existing open(O_WRITE) file */
3287 if (sattr->ia_valid & ATTR_FILE) {
3288 struct nfs_open_context *ctx;
3290 ctx = nfs_file_open_context(sattr->ia_file);
3291 if (ctx) {
3292 cred = ctx->cred;
3293 state = ctx->state;
3297 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
3298 if (IS_ERR(label))
3299 return PTR_ERR(label);
3301 status = nfs4_do_setattr(inode, cred, fattr, sattr, state, NULL, label);
3302 if (status == 0) {
3303 nfs_setattr_update_inode(inode, sattr, fattr);
3304 nfs_setsecurity(inode, fattr, label);
3306 nfs4_label_free(label);
3307 return status;
3310 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
3311 const struct qstr *name, struct nfs_fh *fhandle,
3312 struct nfs_fattr *fattr, struct nfs4_label *label)
3314 struct nfs_server *server = NFS_SERVER(dir);
3315 int status;
3316 struct nfs4_lookup_arg args = {
3317 .bitmask = server->attr_bitmask,
3318 .dir_fh = NFS_FH(dir),
3319 .name = name,
3321 struct nfs4_lookup_res res = {
3322 .server = server,
3323 .fattr = fattr,
3324 .label = label,
3325 .fh = fhandle,
3327 struct rpc_message msg = {
3328 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
3329 .rpc_argp = &args,
3330 .rpc_resp = &res,
3333 args.bitmask = nfs4_bitmask(server, label);
3335 nfs_fattr_init(fattr);
3337 dprintk("NFS call lookup %s\n", name->name);
3338 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
3339 dprintk("NFS reply lookup: %d\n", status);
3340 return status;
3343 static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
3345 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
3346 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
3347 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3348 fattr->nlink = 2;
3351 static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
3352 struct qstr *name, struct nfs_fh *fhandle,
3353 struct nfs_fattr *fattr, struct nfs4_label *label)
3355 struct nfs4_exception exception = { };
3356 struct rpc_clnt *client = *clnt;
3357 int err;
3358 do {
3359 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
3360 trace_nfs4_lookup(dir, name, err);
3361 switch (err) {
3362 case -NFS4ERR_BADNAME:
3363 err = -ENOENT;
3364 goto out;
3365 case -NFS4ERR_MOVED:
3366 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
3367 goto out;
3368 case -NFS4ERR_WRONGSEC:
3369 err = -EPERM;
3370 if (client != *clnt)
3371 goto out;
3372 client = nfs4_negotiate_security(client, dir, name);
3373 if (IS_ERR(client))
3374 return PTR_ERR(client);
3376 exception.retry = 1;
3377 break;
3378 default:
3379 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3381 } while (exception.retry);
3383 out:
3384 if (err == 0)
3385 *clnt = client;
3386 else if (client != *clnt)
3387 rpc_shutdown_client(client);
3389 return err;
3392 static int nfs4_proc_lookup(struct inode *dir, struct qstr *name,
3393 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3394 struct nfs4_label *label)
3396 int status;
3397 struct rpc_clnt *client = NFS_CLIENT(dir);
3399 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
3400 if (client != NFS_CLIENT(dir)) {
3401 rpc_shutdown_client(client);
3402 nfs_fixup_secinfo_attributes(fattr);
3404 return status;
3407 struct rpc_clnt *
3408 nfs4_proc_lookup_mountpoint(struct inode *dir, struct qstr *name,
3409 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
3411 struct rpc_clnt *client = NFS_CLIENT(dir);
3412 int status;
3414 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
3415 if (status < 0)
3416 return ERR_PTR(status);
3417 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
3420 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3422 struct nfs_server *server = NFS_SERVER(inode);
3423 struct nfs4_accessargs args = {
3424 .fh = NFS_FH(inode),
3425 .bitmask = server->cache_consistency_bitmask,
3427 struct nfs4_accessres res = {
3428 .server = server,
3430 struct rpc_message msg = {
3431 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
3432 .rpc_argp = &args,
3433 .rpc_resp = &res,
3434 .rpc_cred = entry->cred,
3436 int mode = entry->mask;
3437 int status = 0;
3440 * Determine which access bits we want to ask for...
3442 if (mode & MAY_READ)
3443 args.access |= NFS4_ACCESS_READ;
3444 if (S_ISDIR(inode->i_mode)) {
3445 if (mode & MAY_WRITE)
3446 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
3447 if (mode & MAY_EXEC)
3448 args.access |= NFS4_ACCESS_LOOKUP;
3449 } else {
3450 if (mode & MAY_WRITE)
3451 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
3452 if (mode & MAY_EXEC)
3453 args.access |= NFS4_ACCESS_EXECUTE;
3456 res.fattr = nfs_alloc_fattr();
3457 if (res.fattr == NULL)
3458 return -ENOMEM;
3460 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3461 if (!status) {
3462 nfs_access_set_mask(entry, res.access);
3463 nfs_refresh_inode(inode, res.fattr);
3465 nfs_free_fattr(res.fattr);
3466 return status;
3469 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3471 struct nfs4_exception exception = { };
3472 int err;
3473 do {
3474 err = _nfs4_proc_access(inode, entry);
3475 trace_nfs4_access(inode, err);
3476 err = nfs4_handle_exception(NFS_SERVER(inode), err,
3477 &exception);
3478 } while (exception.retry);
3479 return err;
3483 * TODO: For the time being, we don't try to get any attributes
3484 * along with any of the zero-copy operations READ, READDIR,
3485 * READLINK, WRITE.
3487 * In the case of the first three, we want to put the GETATTR
3488 * after the read-type operation -- this is because it is hard
3489 * to predict the length of a GETATTR response in v4, and thus
3490 * align the READ data correctly. This means that the GETATTR
3491 * may end up partially falling into the page cache, and we should
3492 * shift it into the 'tail' of the xdr_buf before processing.
3493 * To do this efficiently, we need to know the total length
3494 * of data received, which doesn't seem to be available outside
3495 * of the RPC layer.
3497 * In the case of WRITE, we also want to put the GETATTR after
3498 * the operation -- in this case because we want to make sure
3499 * we get the post-operation mtime and size.
3501 * Both of these changes to the XDR layer would in fact be quite
3502 * minor, but I decided to leave them for a subsequent patch.
3504 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
3505 unsigned int pgbase, unsigned int pglen)
3507 struct nfs4_readlink args = {
3508 .fh = NFS_FH(inode),
3509 .pgbase = pgbase,
3510 .pglen = pglen,
3511 .pages = &page,
3513 struct nfs4_readlink_res res;
3514 struct rpc_message msg = {
3515 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
3516 .rpc_argp = &args,
3517 .rpc_resp = &res,
3520 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
3523 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
3524 unsigned int pgbase, unsigned int pglen)
3526 struct nfs4_exception exception = { };
3527 int err;
3528 do {
3529 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
3530 trace_nfs4_readlink(inode, err);
3531 err = nfs4_handle_exception(NFS_SERVER(inode), err,
3532 &exception);
3533 } while (exception.retry);
3534 return err;
3538 * This is just for mknod. open(O_CREAT) will always do ->open_context().
3540 static int
3541 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
3542 int flags)
3544 struct nfs4_label l, *ilabel = NULL;
3545 struct nfs_open_context *ctx;
3546 struct nfs4_state *state;
3547 int opened = 0;
3548 int status = 0;
3550 ctx = alloc_nfs_open_context(dentry, FMODE_READ);
3551 if (IS_ERR(ctx))
3552 return PTR_ERR(ctx);
3554 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
3556 sattr->ia_mode &= ~current_umask();
3557 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, &opened);
3558 if (IS_ERR(state)) {
3559 status = PTR_ERR(state);
3560 goto out;
3562 out:
3563 nfs4_label_release_security(ilabel);
3564 put_nfs_open_context(ctx);
3565 return status;
3568 static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
3570 struct nfs_server *server = NFS_SERVER(dir);
3571 struct nfs_removeargs args = {
3572 .fh = NFS_FH(dir),
3573 .name = *name,
3575 struct nfs_removeres res = {
3576 .server = server,
3578 struct rpc_message msg = {
3579 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
3580 .rpc_argp = &args,
3581 .rpc_resp = &res,
3583 int status;
3585 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
3586 if (status == 0)
3587 update_changeattr(dir, &res.cinfo);
3588 return status;
3591 static int nfs4_proc_remove(struct inode *dir, struct qstr *name)
3593 struct nfs4_exception exception = { };
3594 int err;
3595 do {
3596 err = _nfs4_proc_remove(dir, name);
3597 trace_nfs4_remove(dir, name, err);
3598 err = nfs4_handle_exception(NFS_SERVER(dir), err,
3599 &exception);
3600 } while (exception.retry);
3601 return err;
3604 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
3606 struct nfs_server *server = NFS_SERVER(dir);
3607 struct nfs_removeargs *args = msg->rpc_argp;
3608 struct nfs_removeres *res = msg->rpc_resp;
3610 res->server = server;
3611 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
3612 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1);
3614 nfs_fattr_init(res->dir_attr);
3617 static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
3619 nfs4_setup_sequence(NFS_SERVER(data->dir),
3620 &data->args.seq_args,
3621 &data->res.seq_res,
3622 task);
3625 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
3627 struct nfs_unlinkdata *data = task->tk_calldata;
3628 struct nfs_removeres *res = &data->res;
3630 if (!nfs4_sequence_done(task, &res->seq_res))
3631 return 0;
3632 if (nfs4_async_handle_error(task, res->server, NULL,
3633 &data->timeout) == -EAGAIN)
3634 return 0;
3635 update_changeattr(dir, &res->cinfo);
3636 return 1;
3639 static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
3641 struct nfs_server *server = NFS_SERVER(dir);
3642 struct nfs_renameargs *arg = msg->rpc_argp;
3643 struct nfs_renameres *res = msg->rpc_resp;
3645 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
3646 res->server = server;
3647 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1);
3650 static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
3652 nfs4_setup_sequence(NFS_SERVER(data->old_dir),
3653 &data->args.seq_args,
3654 &data->res.seq_res,
3655 task);
3658 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
3659 struct inode *new_dir)
3661 struct nfs_renamedata *data = task->tk_calldata;
3662 struct nfs_renameres *res = &data->res;
3664 if (!nfs4_sequence_done(task, &res->seq_res))
3665 return 0;
3666 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
3667 return 0;
3669 update_changeattr(old_dir, &res->old_cinfo);
3670 update_changeattr(new_dir, &res->new_cinfo);
3671 return 1;
3674 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
3676 struct nfs_server *server = NFS_SERVER(inode);
3677 struct nfs4_link_arg arg = {
3678 .fh = NFS_FH(inode),
3679 .dir_fh = NFS_FH(dir),
3680 .name = name,
3681 .bitmask = server->attr_bitmask,
3683 struct nfs4_link_res res = {
3684 .server = server,
3685 .label = NULL,
3687 struct rpc_message msg = {
3688 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
3689 .rpc_argp = &arg,
3690 .rpc_resp = &res,
3692 int status = -ENOMEM;
3694 res.fattr = nfs_alloc_fattr();
3695 if (res.fattr == NULL)
3696 goto out;
3698 res.label = nfs4_label_alloc(server, GFP_KERNEL);
3699 if (IS_ERR(res.label)) {
3700 status = PTR_ERR(res.label);
3701 goto out;
3703 arg.bitmask = nfs4_bitmask(server, res.label);
3705 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
3706 if (!status) {
3707 update_changeattr(dir, &res.cinfo);
3708 status = nfs_post_op_update_inode(inode, res.fattr);
3709 if (!status)
3710 nfs_setsecurity(inode, res.fattr, res.label);
3714 nfs4_label_free(res.label);
3716 out:
3717 nfs_free_fattr(res.fattr);
3718 return status;
3721 static int nfs4_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
3723 struct nfs4_exception exception = { };
3724 int err;
3725 do {
3726 err = nfs4_handle_exception(NFS_SERVER(inode),
3727 _nfs4_proc_link(inode, dir, name),
3728 &exception);
3729 } while (exception.retry);
3730 return err;
3733 struct nfs4_createdata {
3734 struct rpc_message msg;
3735 struct nfs4_create_arg arg;
3736 struct nfs4_create_res res;
3737 struct nfs_fh fh;
3738 struct nfs_fattr fattr;
3739 struct nfs4_label *label;
3742 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
3743 struct qstr *name, struct iattr *sattr, u32 ftype)
3745 struct nfs4_createdata *data;
3747 data = kzalloc(sizeof(*data), GFP_KERNEL);
3748 if (data != NULL) {
3749 struct nfs_server *server = NFS_SERVER(dir);
3751 data->label = nfs4_label_alloc(server, GFP_KERNEL);
3752 if (IS_ERR(data->label))
3753 goto out_free;
3755 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
3756 data->msg.rpc_argp = &data->arg;
3757 data->msg.rpc_resp = &data->res;
3758 data->arg.dir_fh = NFS_FH(dir);
3759 data->arg.server = server;
3760 data->arg.name = name;
3761 data->arg.attrs = sattr;
3762 data->arg.ftype = ftype;
3763 data->arg.bitmask = nfs4_bitmask(server, data->label);
3764 data->res.server = server;
3765 data->res.fh = &data->fh;
3766 data->res.fattr = &data->fattr;
3767 data->res.label = data->label;
3768 nfs_fattr_init(data->res.fattr);
3770 return data;
3771 out_free:
3772 kfree(data);
3773 return NULL;
3776 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
3778 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
3779 &data->arg.seq_args, &data->res.seq_res, 1);
3780 if (status == 0) {
3781 update_changeattr(dir, &data->res.dir_cinfo);
3782 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
3784 return status;
3787 static void nfs4_free_createdata(struct nfs4_createdata *data)
3789 nfs4_label_free(data->label);
3790 kfree(data);
3793 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
3794 struct page *page, unsigned int len, struct iattr *sattr,
3795 struct nfs4_label *label)
3797 struct nfs4_createdata *data;
3798 int status = -ENAMETOOLONG;
3800 if (len > NFS4_MAXPATHLEN)
3801 goto out;
3803 status = -ENOMEM;
3804 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
3805 if (data == NULL)
3806 goto out;
3808 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
3809 data->arg.u.symlink.pages = &page;
3810 data->arg.u.symlink.len = len;
3811 data->arg.label = label;
3813 status = nfs4_do_create(dir, dentry, data);
3815 nfs4_free_createdata(data);
3816 out:
3817 return status;
3820 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
3821 struct page *page, unsigned int len, struct iattr *sattr)
3823 struct nfs4_exception exception = { };
3824 struct nfs4_label l, *label = NULL;
3825 int err;
3827 label = nfs4_label_init_security(dir, dentry, sattr, &l);
3829 do {
3830 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
3831 trace_nfs4_symlink(dir, &dentry->d_name, err);
3832 err = nfs4_handle_exception(NFS_SERVER(dir), err,
3833 &exception);
3834 } while (exception.retry);
3836 nfs4_label_release_security(label);
3837 return err;
3840 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
3841 struct iattr *sattr, struct nfs4_label *label)
3843 struct nfs4_createdata *data;
3844 int status = -ENOMEM;
3846 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
3847 if (data == NULL)
3848 goto out;
3850 data->arg.label = label;
3851 status = nfs4_do_create(dir, dentry, data);
3853 nfs4_free_createdata(data);
3854 out:
3855 return status;
3858 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
3859 struct iattr *sattr)
3861 struct nfs4_exception exception = { };
3862 struct nfs4_label l, *label = NULL;
3863 int err;
3865 label = nfs4_label_init_security(dir, dentry, sattr, &l);
3867 sattr->ia_mode &= ~current_umask();
3868 do {
3869 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
3870 trace_nfs4_mkdir(dir, &dentry->d_name, err);
3871 err = nfs4_handle_exception(NFS_SERVER(dir), err,
3872 &exception);
3873 } while (exception.retry);
3874 nfs4_label_release_security(label);
3876 return err;
3879 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
3880 u64 cookie, struct page **pages, unsigned int count, int plus)
3882 struct inode *dir = d_inode(dentry);
3883 struct nfs4_readdir_arg args = {
3884 .fh = NFS_FH(dir),
3885 .pages = pages,
3886 .pgbase = 0,
3887 .count = count,
3888 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
3889 .plus = plus,
3891 struct nfs4_readdir_res res;
3892 struct rpc_message msg = {
3893 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
3894 .rpc_argp = &args,
3895 .rpc_resp = &res,
3896 .rpc_cred = cred,
3898 int status;
3900 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
3901 dentry,
3902 (unsigned long long)cookie);
3903 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
3904 res.pgbase = args.pgbase;
3905 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
3906 if (status >= 0) {
3907 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
3908 status += args.pgbase;
3911 nfs_invalidate_atime(dir);
3913 dprintk("%s: returns %d\n", __func__, status);
3914 return status;
3917 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
3918 u64 cookie, struct page **pages, unsigned int count, int plus)
3920 struct nfs4_exception exception = { };
3921 int err;
3922 do {
3923 err = _nfs4_proc_readdir(dentry, cred, cookie,
3924 pages, count, plus);
3925 trace_nfs4_readdir(d_inode(dentry), err);
3926 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
3927 &exception);
3928 } while (exception.retry);
3929 return err;
3932 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3933 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
3935 struct nfs4_createdata *data;
3936 int mode = sattr->ia_mode;
3937 int status = -ENOMEM;
3939 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
3940 if (data == NULL)
3941 goto out;
3943 if (S_ISFIFO(mode))
3944 data->arg.ftype = NF4FIFO;
3945 else if (S_ISBLK(mode)) {
3946 data->arg.ftype = NF4BLK;
3947 data->arg.u.device.specdata1 = MAJOR(rdev);
3948 data->arg.u.device.specdata2 = MINOR(rdev);
3950 else if (S_ISCHR(mode)) {
3951 data->arg.ftype = NF4CHR;
3952 data->arg.u.device.specdata1 = MAJOR(rdev);
3953 data->arg.u.device.specdata2 = MINOR(rdev);
3954 } else if (!S_ISSOCK(mode)) {
3955 status = -EINVAL;
3956 goto out_free;
3959 data->arg.label = label;
3960 status = nfs4_do_create(dir, dentry, data);
3961 out_free:
3962 nfs4_free_createdata(data);
3963 out:
3964 return status;
3967 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
3968 struct iattr *sattr, dev_t rdev)
3970 struct nfs4_exception exception = { };
3971 struct nfs4_label l, *label = NULL;
3972 int err;
3974 label = nfs4_label_init_security(dir, dentry, sattr, &l);
3976 sattr->ia_mode &= ~current_umask();
3977 do {
3978 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
3979 trace_nfs4_mknod(dir, &dentry->d_name, err);
3980 err = nfs4_handle_exception(NFS_SERVER(dir), err,
3981 &exception);
3982 } while (exception.retry);
3984 nfs4_label_release_security(label);
3986 return err;
3989 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
3990 struct nfs_fsstat *fsstat)
3992 struct nfs4_statfs_arg args = {
3993 .fh = fhandle,
3994 .bitmask = server->attr_bitmask,
3996 struct nfs4_statfs_res res = {
3997 .fsstat = fsstat,
3999 struct rpc_message msg = {
4000 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4001 .rpc_argp = &args,
4002 .rpc_resp = &res,
4005 nfs_fattr_init(fsstat->fattr);
4006 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4009 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
4011 struct nfs4_exception exception = { };
4012 int err;
4013 do {
4014 err = nfs4_handle_exception(server,
4015 _nfs4_proc_statfs(server, fhandle, fsstat),
4016 &exception);
4017 } while (exception.retry);
4018 return err;
4021 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
4022 struct nfs_fsinfo *fsinfo)
4024 struct nfs4_fsinfo_arg args = {
4025 .fh = fhandle,
4026 .bitmask = server->attr_bitmask,
4028 struct nfs4_fsinfo_res res = {
4029 .fsinfo = fsinfo,
4031 struct rpc_message msg = {
4032 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
4033 .rpc_argp = &args,
4034 .rpc_resp = &res,
4037 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4040 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4042 struct nfs4_exception exception = { };
4043 unsigned long now = jiffies;
4044 int err;
4046 do {
4047 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
4048 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
4049 if (err == 0) {
4050 struct nfs_client *clp = server->nfs_client;
4052 spin_lock(&clp->cl_lock);
4053 clp->cl_lease_time = fsinfo->lease_time * HZ;
4054 clp->cl_last_renewal = now;
4055 spin_unlock(&clp->cl_lock);
4056 break;
4058 err = nfs4_handle_exception(server, err, &exception);
4059 } while (exception.retry);
4060 return err;
4063 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4065 int error;
4067 nfs_fattr_init(fsinfo->fattr);
4068 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
4069 if (error == 0) {
4070 /* block layout checks this! */
4071 server->pnfs_blksize = fsinfo->blksize;
4072 set_pnfs_layoutdriver(server, fhandle, fsinfo->layouttype);
4075 return error;
4078 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4079 struct nfs_pathconf *pathconf)
4081 struct nfs4_pathconf_arg args = {
4082 .fh = fhandle,
4083 .bitmask = server->attr_bitmask,
4085 struct nfs4_pathconf_res res = {
4086 .pathconf = pathconf,
4088 struct rpc_message msg = {
4089 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
4090 .rpc_argp = &args,
4091 .rpc_resp = &res,
4094 /* None of the pathconf attributes are mandatory to implement */
4095 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
4096 memset(pathconf, 0, sizeof(*pathconf));
4097 return 0;
4100 nfs_fattr_init(pathconf->fattr);
4101 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4104 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4105 struct nfs_pathconf *pathconf)
4107 struct nfs4_exception exception = { };
4108 int err;
4110 do {
4111 err = nfs4_handle_exception(server,
4112 _nfs4_proc_pathconf(server, fhandle, pathconf),
4113 &exception);
4114 } while (exception.retry);
4115 return err;
4118 int nfs4_set_rw_stateid(nfs4_stateid *stateid,
4119 const struct nfs_open_context *ctx,
4120 const struct nfs_lock_context *l_ctx,
4121 fmode_t fmode)
4123 const struct nfs_lockowner *lockowner = NULL;
4125 if (l_ctx != NULL)
4126 lockowner = &l_ctx->lockowner;
4127 return nfs4_select_rw_stateid(stateid, ctx->state, fmode, lockowner);
4129 EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
4131 static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
4132 const struct nfs_open_context *ctx,
4133 const struct nfs_lock_context *l_ctx,
4134 fmode_t fmode)
4136 nfs4_stateid current_stateid;
4138 /* If the current stateid represents a lost lock, then exit */
4139 if (nfs4_set_rw_stateid(&current_stateid, ctx, l_ctx, fmode) == -EIO)
4140 return true;
4141 return nfs4_stateid_match(stateid, &current_stateid);
4144 static bool nfs4_error_stateid_expired(int err)
4146 switch (err) {
4147 case -NFS4ERR_DELEG_REVOKED:
4148 case -NFS4ERR_ADMIN_REVOKED:
4149 case -NFS4ERR_BAD_STATEID:
4150 case -NFS4ERR_STALE_STATEID:
4151 case -NFS4ERR_OLD_STATEID:
4152 case -NFS4ERR_OPENMODE:
4153 case -NFS4ERR_EXPIRED:
4154 return true;
4156 return false;
4159 void __nfs4_read_done_cb(struct nfs_pgio_header *hdr)
4161 nfs_invalidate_atime(hdr->inode);
4164 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
4166 struct nfs_server *server = NFS_SERVER(hdr->inode);
4168 trace_nfs4_read(hdr, task->tk_status);
4169 if (nfs4_async_handle_error(task, server,
4170 hdr->args.context->state,
4171 NULL) == -EAGAIN) {
4172 rpc_restart_call_prepare(task);
4173 return -EAGAIN;
4176 __nfs4_read_done_cb(hdr);
4177 if (task->tk_status > 0)
4178 renew_lease(server, hdr->timestamp);
4179 return 0;
4182 static bool nfs4_read_stateid_changed(struct rpc_task *task,
4183 struct nfs_pgio_args *args)
4186 if (!nfs4_error_stateid_expired(task->tk_status) ||
4187 nfs4_stateid_is_current(&args->stateid,
4188 args->context,
4189 args->lock_context,
4190 FMODE_READ))
4191 return false;
4192 rpc_restart_call_prepare(task);
4193 return true;
4196 static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
4199 dprintk("--> %s\n", __func__);
4201 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
4202 return -EAGAIN;
4203 if (nfs4_read_stateid_changed(task, &hdr->args))
4204 return -EAGAIN;
4205 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4206 nfs4_read_done_cb(task, hdr);
4209 static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
4210 struct rpc_message *msg)
4212 hdr->timestamp = jiffies;
4213 hdr->pgio_done_cb = nfs4_read_done_cb;
4214 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
4215 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0);
4218 static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
4219 struct nfs_pgio_header *hdr)
4221 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode),
4222 &hdr->args.seq_args,
4223 &hdr->res.seq_res,
4224 task))
4225 return 0;
4226 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
4227 hdr->args.lock_context,
4228 hdr->rw_ops->rw_mode) == -EIO)
4229 return -EIO;
4230 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
4231 return -EIO;
4232 return 0;
4235 static int nfs4_write_done_cb(struct rpc_task *task,
4236 struct nfs_pgio_header *hdr)
4238 struct inode *inode = hdr->inode;
4240 trace_nfs4_write(hdr, task->tk_status);
4241 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4242 hdr->args.context->state,
4243 NULL) == -EAGAIN) {
4244 rpc_restart_call_prepare(task);
4245 return -EAGAIN;
4247 if (task->tk_status >= 0) {
4248 renew_lease(NFS_SERVER(inode), hdr->timestamp);
4249 nfs_writeback_update_inode(hdr);
4251 return 0;
4254 static bool nfs4_write_stateid_changed(struct rpc_task *task,
4255 struct nfs_pgio_args *args)
4258 if (!nfs4_error_stateid_expired(task->tk_status) ||
4259 nfs4_stateid_is_current(&args->stateid,
4260 args->context,
4261 args->lock_context,
4262 FMODE_WRITE))
4263 return false;
4264 rpc_restart_call_prepare(task);
4265 return true;
4268 static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
4270 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
4271 return -EAGAIN;
4272 if (nfs4_write_stateid_changed(task, &hdr->args))
4273 return -EAGAIN;
4274 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4275 nfs4_write_done_cb(task, hdr);
4278 static
4279 bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
4281 /* Don't request attributes for pNFS or O_DIRECT writes */
4282 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
4283 return false;
4284 /* Otherwise, request attributes if and only if we don't hold
4285 * a delegation
4287 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
4290 static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
4291 struct rpc_message *msg)
4293 struct nfs_server *server = NFS_SERVER(hdr->inode);
4295 if (!nfs4_write_need_cache_consistency_data(hdr)) {
4296 hdr->args.bitmask = NULL;
4297 hdr->res.fattr = NULL;
4298 } else
4299 hdr->args.bitmask = server->cache_consistency_bitmask;
4301 if (!hdr->pgio_done_cb)
4302 hdr->pgio_done_cb = nfs4_write_done_cb;
4303 hdr->res.server = server;
4304 hdr->timestamp = jiffies;
4306 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
4307 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1);
4310 static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
4312 nfs4_setup_sequence(NFS_SERVER(data->inode),
4313 &data->args.seq_args,
4314 &data->res.seq_res,
4315 task);
4318 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
4320 struct inode *inode = data->inode;
4322 trace_nfs4_commit(data, task->tk_status);
4323 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4324 NULL, NULL) == -EAGAIN) {
4325 rpc_restart_call_prepare(task);
4326 return -EAGAIN;
4328 return 0;
4331 static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
4333 if (!nfs4_sequence_done(task, &data->res.seq_res))
4334 return -EAGAIN;
4335 return data->commit_done_cb(task, data);
4338 static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
4340 struct nfs_server *server = NFS_SERVER(data->inode);
4342 if (data->commit_done_cb == NULL)
4343 data->commit_done_cb = nfs4_commit_done_cb;
4344 data->res.server = server;
4345 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
4346 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
4349 struct nfs4_renewdata {
4350 struct nfs_client *client;
4351 unsigned long timestamp;
4355 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
4356 * standalone procedure for queueing an asynchronous RENEW.
4358 static void nfs4_renew_release(void *calldata)
4360 struct nfs4_renewdata *data = calldata;
4361 struct nfs_client *clp = data->client;
4363 if (atomic_read(&clp->cl_count) > 1)
4364 nfs4_schedule_state_renewal(clp);
4365 nfs_put_client(clp);
4366 kfree(data);
4369 static void nfs4_renew_done(struct rpc_task *task, void *calldata)
4371 struct nfs4_renewdata *data = calldata;
4372 struct nfs_client *clp = data->client;
4373 unsigned long timestamp = data->timestamp;
4375 trace_nfs4_renew_async(clp, task->tk_status);
4376 switch (task->tk_status) {
4377 case 0:
4378 break;
4379 case -NFS4ERR_LEASE_MOVED:
4380 nfs4_schedule_lease_moved_recovery(clp);
4381 break;
4382 default:
4383 /* Unless we're shutting down, schedule state recovery! */
4384 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
4385 return;
4386 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
4387 nfs4_schedule_lease_recovery(clp);
4388 return;
4390 nfs4_schedule_path_down_recovery(clp);
4392 do_renew_lease(clp, timestamp);
4395 static const struct rpc_call_ops nfs4_renew_ops = {
4396 .rpc_call_done = nfs4_renew_done,
4397 .rpc_release = nfs4_renew_release,
4400 static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
4402 struct rpc_message msg = {
4403 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4404 .rpc_argp = clp,
4405 .rpc_cred = cred,
4407 struct nfs4_renewdata *data;
4409 if (renew_flags == 0)
4410 return 0;
4411 if (!atomic_inc_not_zero(&clp->cl_count))
4412 return -EIO;
4413 data = kmalloc(sizeof(*data), GFP_NOFS);
4414 if (data == NULL)
4415 return -ENOMEM;
4416 data->client = clp;
4417 data->timestamp = jiffies;
4418 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
4419 &nfs4_renew_ops, data);
4422 static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
4424 struct rpc_message msg = {
4425 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4426 .rpc_argp = clp,
4427 .rpc_cred = cred,
4429 unsigned long now = jiffies;
4430 int status;
4432 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
4433 if (status < 0)
4434 return status;
4435 do_renew_lease(clp, now);
4436 return 0;
4439 static inline int nfs4_server_supports_acls(struct nfs_server *server)
4441 return server->caps & NFS_CAP_ACLS;
4444 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
4445 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
4446 * the stack.
4448 #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
4450 static int buf_to_pages_noslab(const void *buf, size_t buflen,
4451 struct page **pages, unsigned int *pgbase)
4453 struct page *newpage, **spages;
4454 int rc = 0;
4455 size_t len;
4456 spages = pages;
4458 do {
4459 len = min_t(size_t, PAGE_SIZE, buflen);
4460 newpage = alloc_page(GFP_KERNEL);
4462 if (newpage == NULL)
4463 goto unwind;
4464 memcpy(page_address(newpage), buf, len);
4465 buf += len;
4466 buflen -= len;
4467 *pages++ = newpage;
4468 rc++;
4469 } while (buflen != 0);
4471 return rc;
4473 unwind:
4474 for(; rc > 0; rc--)
4475 __free_page(spages[rc-1]);
4476 return -ENOMEM;
4479 struct nfs4_cached_acl {
4480 int cached;
4481 size_t len;
4482 char data[0];
4485 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
4487 struct nfs_inode *nfsi = NFS_I(inode);
4489 spin_lock(&inode->i_lock);
4490 kfree(nfsi->nfs4_acl);
4491 nfsi->nfs4_acl = acl;
4492 spin_unlock(&inode->i_lock);
4495 static void nfs4_zap_acl_attr(struct inode *inode)
4497 nfs4_set_cached_acl(inode, NULL);
4500 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
4502 struct nfs_inode *nfsi = NFS_I(inode);
4503 struct nfs4_cached_acl *acl;
4504 int ret = -ENOENT;
4506 spin_lock(&inode->i_lock);
4507 acl = nfsi->nfs4_acl;
4508 if (acl == NULL)
4509 goto out;
4510 if (buf == NULL) /* user is just asking for length */
4511 goto out_len;
4512 if (acl->cached == 0)
4513 goto out;
4514 ret = -ERANGE; /* see getxattr(2) man page */
4515 if (acl->len > buflen)
4516 goto out;
4517 memcpy(buf, acl->data, acl->len);
4518 out_len:
4519 ret = acl->len;
4520 out:
4521 spin_unlock(&inode->i_lock);
4522 return ret;
4525 static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len)
4527 struct nfs4_cached_acl *acl;
4528 size_t buflen = sizeof(*acl) + acl_len;
4530 if (buflen <= PAGE_SIZE) {
4531 acl = kmalloc(buflen, GFP_KERNEL);
4532 if (acl == NULL)
4533 goto out;
4534 acl->cached = 1;
4535 _copy_from_pages(acl->data, pages, pgbase, acl_len);
4536 } else {
4537 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
4538 if (acl == NULL)
4539 goto out;
4540 acl->cached = 0;
4542 acl->len = acl_len;
4543 out:
4544 nfs4_set_cached_acl(inode, acl);
4548 * The getxattr API returns the required buffer length when called with a
4549 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
4550 * the required buf. On a NULL buf, we send a page of data to the server
4551 * guessing that the ACL request can be serviced by a page. If so, we cache
4552 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
4553 * the cache. If not so, we throw away the page, and cache the required
4554 * length. The next getxattr call will then produce another round trip to
4555 * the server, this time with the input buf of the required size.
4557 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
4559 struct page *pages[NFS4ACL_MAXPAGES] = {NULL, };
4560 struct nfs_getaclargs args = {
4561 .fh = NFS_FH(inode),
4562 .acl_pages = pages,
4563 .acl_len = buflen,
4565 struct nfs_getaclres res = {
4566 .acl_len = buflen,
4568 struct rpc_message msg = {
4569 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
4570 .rpc_argp = &args,
4571 .rpc_resp = &res,
4573 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
4574 int ret = -ENOMEM, i;
4576 /* As long as we're doing a round trip to the server anyway,
4577 * let's be prepared for a page of acl data. */
4578 if (npages == 0)
4579 npages = 1;
4580 if (npages > ARRAY_SIZE(pages))
4581 return -ERANGE;
4583 for (i = 0; i < npages; i++) {
4584 pages[i] = alloc_page(GFP_KERNEL);
4585 if (!pages[i])
4586 goto out_free;
4589 /* for decoding across pages */
4590 res.acl_scratch = alloc_page(GFP_KERNEL);
4591 if (!res.acl_scratch)
4592 goto out_free;
4594 args.acl_len = npages * PAGE_SIZE;
4595 args.acl_pgbase = 0;
4597 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
4598 __func__, buf, buflen, npages, args.acl_len);
4599 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
4600 &msg, &args.seq_args, &res.seq_res, 0);
4601 if (ret)
4602 goto out_free;
4604 /* Handle the case where the passed-in buffer is too short */
4605 if (res.acl_flags & NFS4_ACL_TRUNC) {
4606 /* Did the user only issue a request for the acl length? */
4607 if (buf == NULL)
4608 goto out_ok;
4609 ret = -ERANGE;
4610 goto out_free;
4612 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
4613 if (buf) {
4614 if (res.acl_len > buflen) {
4615 ret = -ERANGE;
4616 goto out_free;
4618 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
4620 out_ok:
4621 ret = res.acl_len;
4622 out_free:
4623 for (i = 0; i < npages; i++)
4624 if (pages[i])
4625 __free_page(pages[i]);
4626 if (res.acl_scratch)
4627 __free_page(res.acl_scratch);
4628 return ret;
4631 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
4633 struct nfs4_exception exception = { };
4634 ssize_t ret;
4635 do {
4636 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
4637 trace_nfs4_get_acl(inode, ret);
4638 if (ret >= 0)
4639 break;
4640 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
4641 } while (exception.retry);
4642 return ret;
4645 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
4647 struct nfs_server *server = NFS_SERVER(inode);
4648 int ret;
4650 if (!nfs4_server_supports_acls(server))
4651 return -EOPNOTSUPP;
4652 ret = nfs_revalidate_inode(server, inode);
4653 if (ret < 0)
4654 return ret;
4655 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
4656 nfs_zap_acl_cache(inode);
4657 ret = nfs4_read_cached_acl(inode, buf, buflen);
4658 if (ret != -ENOENT)
4659 /* -ENOENT is returned if there is no ACL or if there is an ACL
4660 * but no cached acl data, just the acl length */
4661 return ret;
4662 return nfs4_get_acl_uncached(inode, buf, buflen);
4665 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
4667 struct nfs_server *server = NFS_SERVER(inode);
4668 struct page *pages[NFS4ACL_MAXPAGES];
4669 struct nfs_setaclargs arg = {
4670 .fh = NFS_FH(inode),
4671 .acl_pages = pages,
4672 .acl_len = buflen,
4674 struct nfs_setaclres res;
4675 struct rpc_message msg = {
4676 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
4677 .rpc_argp = &arg,
4678 .rpc_resp = &res,
4680 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
4681 int ret, i;
4683 if (!nfs4_server_supports_acls(server))
4684 return -EOPNOTSUPP;
4685 if (npages > ARRAY_SIZE(pages))
4686 return -ERANGE;
4687 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages, &arg.acl_pgbase);
4688 if (i < 0)
4689 return i;
4690 nfs4_inode_return_delegation(inode);
4691 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
4694 * Free each page after tx, so the only ref left is
4695 * held by the network stack
4697 for (; i > 0; i--)
4698 put_page(pages[i-1]);
4701 * Acl update can result in inode attribute update.
4702 * so mark the attribute cache invalid.
4704 spin_lock(&inode->i_lock);
4705 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
4706 spin_unlock(&inode->i_lock);
4707 nfs_access_zap_cache(inode);
4708 nfs_zap_acl_cache(inode);
4709 return ret;
4712 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
4714 struct nfs4_exception exception = { };
4715 int err;
4716 do {
4717 err = __nfs4_proc_set_acl(inode, buf, buflen);
4718 trace_nfs4_set_acl(inode, err);
4719 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4720 &exception);
4721 } while (exception.retry);
4722 return err;
4725 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
4726 static int _nfs4_get_security_label(struct inode *inode, void *buf,
4727 size_t buflen)
4729 struct nfs_server *server = NFS_SERVER(inode);
4730 struct nfs_fattr fattr;
4731 struct nfs4_label label = {0, 0, buflen, buf};
4733 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
4734 struct nfs4_getattr_arg arg = {
4735 .fh = NFS_FH(inode),
4736 .bitmask = bitmask,
4738 struct nfs4_getattr_res res = {
4739 .fattr = &fattr,
4740 .label = &label,
4741 .server = server,
4743 struct rpc_message msg = {
4744 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
4745 .rpc_argp = &arg,
4746 .rpc_resp = &res,
4748 int ret;
4750 nfs_fattr_init(&fattr);
4752 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
4753 if (ret)
4754 return ret;
4755 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
4756 return -ENOENT;
4757 if (buflen < label.len)
4758 return -ERANGE;
4759 return 0;
4762 static int nfs4_get_security_label(struct inode *inode, void *buf,
4763 size_t buflen)
4765 struct nfs4_exception exception = { };
4766 int err;
4768 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
4769 return -EOPNOTSUPP;
4771 do {
4772 err = _nfs4_get_security_label(inode, buf, buflen);
4773 trace_nfs4_get_security_label(inode, err);
4774 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4775 &exception);
4776 } while (exception.retry);
4777 return err;
4780 static int _nfs4_do_set_security_label(struct inode *inode,
4781 struct nfs4_label *ilabel,
4782 struct nfs_fattr *fattr,
4783 struct nfs4_label *olabel)
4786 struct iattr sattr = {0};
4787 struct nfs_server *server = NFS_SERVER(inode);
4788 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
4789 struct nfs_setattrargs arg = {
4790 .fh = NFS_FH(inode),
4791 .iap = &sattr,
4792 .server = server,
4793 .bitmask = bitmask,
4794 .label = ilabel,
4796 struct nfs_setattrres res = {
4797 .fattr = fattr,
4798 .label = olabel,
4799 .server = server,
4801 struct rpc_message msg = {
4802 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
4803 .rpc_argp = &arg,
4804 .rpc_resp = &res,
4806 int status;
4808 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
4810 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
4811 if (status)
4812 dprintk("%s failed: %d\n", __func__, status);
4814 return status;
4817 static int nfs4_do_set_security_label(struct inode *inode,
4818 struct nfs4_label *ilabel,
4819 struct nfs_fattr *fattr,
4820 struct nfs4_label *olabel)
4822 struct nfs4_exception exception = { };
4823 int err;
4825 do {
4826 err = _nfs4_do_set_security_label(inode, ilabel,
4827 fattr, olabel);
4828 trace_nfs4_set_security_label(inode, err);
4829 err = nfs4_handle_exception(NFS_SERVER(inode), err,
4830 &exception);
4831 } while (exception.retry);
4832 return err;
4835 static int
4836 nfs4_set_security_label(struct dentry *dentry, const void *buf, size_t buflen)
4838 struct nfs4_label ilabel, *olabel = NULL;
4839 struct nfs_fattr fattr;
4840 struct rpc_cred *cred;
4841 struct inode *inode = d_inode(dentry);
4842 int status;
4844 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
4845 return -EOPNOTSUPP;
4847 nfs_fattr_init(&fattr);
4849 ilabel.pi = 0;
4850 ilabel.lfs = 0;
4851 ilabel.label = (char *)buf;
4852 ilabel.len = buflen;
4854 cred = rpc_lookup_cred();
4855 if (IS_ERR(cred))
4856 return PTR_ERR(cred);
4858 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
4859 if (IS_ERR(olabel)) {
4860 status = -PTR_ERR(olabel);
4861 goto out;
4864 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
4865 if (status == 0)
4866 nfs_setsecurity(inode, &fattr, olabel);
4868 nfs4_label_free(olabel);
4869 out:
4870 put_rpccred(cred);
4871 return status;
4873 #endif /* CONFIG_NFS_V4_SECURITY_LABEL */
4876 static int
4877 nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server,
4878 struct nfs4_state *state, long *timeout)
4880 struct nfs_client *clp = server->nfs_client;
4882 if (task->tk_status >= 0)
4883 return 0;
4884 switch(task->tk_status) {
4885 case -NFS4ERR_DELEG_REVOKED:
4886 case -NFS4ERR_ADMIN_REVOKED:
4887 case -NFS4ERR_BAD_STATEID:
4888 case -NFS4ERR_OPENMODE:
4889 if (state == NULL)
4890 break;
4891 if (nfs4_schedule_stateid_recovery(server, state) < 0)
4892 goto recovery_failed;
4893 goto wait_on_recovery;
4894 case -NFS4ERR_EXPIRED:
4895 if (state != NULL) {
4896 if (nfs4_schedule_stateid_recovery(server, state) < 0)
4897 goto recovery_failed;
4899 case -NFS4ERR_STALE_STATEID:
4900 case -NFS4ERR_STALE_CLIENTID:
4901 nfs4_schedule_lease_recovery(clp);
4902 goto wait_on_recovery;
4903 case -NFS4ERR_MOVED:
4904 if (nfs4_schedule_migration_recovery(server) < 0)
4905 goto recovery_failed;
4906 goto wait_on_recovery;
4907 case -NFS4ERR_LEASE_MOVED:
4908 nfs4_schedule_lease_moved_recovery(clp);
4909 goto wait_on_recovery;
4910 #if defined(CONFIG_NFS_V4_1)
4911 case -NFS4ERR_BADSESSION:
4912 case -NFS4ERR_BADSLOT:
4913 case -NFS4ERR_BAD_HIGH_SLOT:
4914 case -NFS4ERR_DEADSESSION:
4915 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
4916 case -NFS4ERR_SEQ_FALSE_RETRY:
4917 case -NFS4ERR_SEQ_MISORDERED:
4918 dprintk("%s ERROR %d, Reset session\n", __func__,
4919 task->tk_status);
4920 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
4921 goto wait_on_recovery;
4922 #endif /* CONFIG_NFS_V4_1 */
4923 case -NFS4ERR_DELAY:
4924 nfs_inc_server_stats(server, NFSIOS_DELAY);
4925 rpc_delay(task, nfs4_update_delay(timeout));
4926 goto restart_call;
4927 case -NFS4ERR_GRACE:
4928 rpc_delay(task, NFS4_POLL_RETRY_MAX);
4929 case -NFS4ERR_RETRY_UNCACHED_REP:
4930 case -NFS4ERR_OLD_STATEID:
4931 goto restart_call;
4933 task->tk_status = nfs4_map_errors(task->tk_status);
4934 return 0;
4935 recovery_failed:
4936 task->tk_status = -EIO;
4937 return 0;
4938 wait_on_recovery:
4939 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
4940 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
4941 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
4942 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
4943 goto recovery_failed;
4944 restart_call:
4945 task->tk_status = 0;
4946 return -EAGAIN;
4949 static void nfs4_init_boot_verifier(const struct nfs_client *clp,
4950 nfs4_verifier *bootverf)
4952 __be32 verf[2];
4954 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
4955 /* An impossible timestamp guarantees this value
4956 * will never match a generated boot time. */
4957 verf[0] = 0;
4958 verf[1] = cpu_to_be32(NSEC_PER_SEC + 1);
4959 } else {
4960 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
4961 verf[0] = cpu_to_be32(nn->boot_time.tv_sec);
4962 verf[1] = cpu_to_be32(nn->boot_time.tv_nsec);
4964 memcpy(bootverf->data, verf, sizeof(bootverf->data));
4967 static unsigned int
4968 nfs4_init_nonuniform_client_string(struct nfs_client *clp,
4969 char *buf, size_t len)
4971 unsigned int result;
4973 if (clp->cl_owner_id != NULL)
4974 return strlcpy(buf, clp->cl_owner_id, len);
4976 rcu_read_lock();
4977 result = scnprintf(buf, len, "Linux NFSv4.0 %s/%s %s",
4978 clp->cl_ipaddr,
4979 rpc_peeraddr2str(clp->cl_rpcclient,
4980 RPC_DISPLAY_ADDR),
4981 rpc_peeraddr2str(clp->cl_rpcclient,
4982 RPC_DISPLAY_PROTO));
4983 rcu_read_unlock();
4984 clp->cl_owner_id = kstrdup(buf, GFP_KERNEL);
4985 return result;
4988 static unsigned int
4989 nfs4_init_uniform_client_string(struct nfs_client *clp,
4990 char *buf, size_t len)
4992 const char *nodename = clp->cl_rpcclient->cl_nodename;
4993 unsigned int result;
4995 if (clp->cl_owner_id != NULL)
4996 return strlcpy(buf, clp->cl_owner_id, len);
4998 if (nfs4_client_id_uniquifier[0] != '\0')
4999 result = scnprintf(buf, len, "Linux NFSv%u.%u %s/%s",
5000 clp->rpc_ops->version,
5001 clp->cl_minorversion,
5002 nfs4_client_id_uniquifier,
5003 nodename);
5004 else
5005 result = scnprintf(buf, len, "Linux NFSv%u.%u %s",
5006 clp->rpc_ops->version, clp->cl_minorversion,
5007 nodename);
5008 clp->cl_owner_id = kstrdup(buf, GFP_KERNEL);
5009 return result;
5013 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
5014 * services. Advertise one based on the address family of the
5015 * clientaddr.
5017 static unsigned int
5018 nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
5020 if (strchr(clp->cl_ipaddr, ':') != NULL)
5021 return scnprintf(buf, len, "tcp6");
5022 else
5023 return scnprintf(buf, len, "tcp");
5026 static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
5028 struct nfs4_setclientid *sc = calldata;
5030 if (task->tk_status == 0)
5031 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
5034 static const struct rpc_call_ops nfs4_setclientid_ops = {
5035 .rpc_call_done = nfs4_setclientid_done,
5039 * nfs4_proc_setclientid - Negotiate client ID
5040 * @clp: state data structure
5041 * @program: RPC program for NFSv4 callback service
5042 * @port: IP port number for NFS4 callback service
5043 * @cred: RPC credential to use for this call
5044 * @res: where to place the result
5046 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5048 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
5049 unsigned short port, struct rpc_cred *cred,
5050 struct nfs4_setclientid_res *res)
5052 nfs4_verifier sc_verifier;
5053 struct nfs4_setclientid setclientid = {
5054 .sc_verifier = &sc_verifier,
5055 .sc_prog = program,
5056 .sc_cb_ident = clp->cl_cb_ident,
5058 struct rpc_message msg = {
5059 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
5060 .rpc_argp = &setclientid,
5061 .rpc_resp = res,
5062 .rpc_cred = cred,
5064 struct rpc_task *task;
5065 struct rpc_task_setup task_setup_data = {
5066 .rpc_client = clp->cl_rpcclient,
5067 .rpc_message = &msg,
5068 .callback_ops = &nfs4_setclientid_ops,
5069 .callback_data = &setclientid,
5070 .flags = RPC_TASK_TIMEOUT,
5072 int status;
5074 /* nfs_client_id4 */
5075 nfs4_init_boot_verifier(clp, &sc_verifier);
5076 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
5077 setclientid.sc_name_len =
5078 nfs4_init_uniform_client_string(clp,
5079 setclientid.sc_name,
5080 sizeof(setclientid.sc_name));
5081 else
5082 setclientid.sc_name_len =
5083 nfs4_init_nonuniform_client_string(clp,
5084 setclientid.sc_name,
5085 sizeof(setclientid.sc_name));
5086 /* cb_client4 */
5087 setclientid.sc_netid_len =
5088 nfs4_init_callback_netid(clp,
5089 setclientid.sc_netid,
5090 sizeof(setclientid.sc_netid));
5091 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
5092 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
5093 clp->cl_ipaddr, port >> 8, port & 255);
5095 dprintk("NFS call setclientid auth=%s, '%.*s'\n",
5096 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5097 setclientid.sc_name_len, setclientid.sc_name);
5098 task = rpc_run_task(&task_setup_data);
5099 if (IS_ERR(task)) {
5100 status = PTR_ERR(task);
5101 goto out;
5103 status = task->tk_status;
5104 if (setclientid.sc_cred) {
5105 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
5106 put_rpccred(setclientid.sc_cred);
5108 rpc_put_task(task);
5109 out:
5110 trace_nfs4_setclientid(clp, status);
5111 dprintk("NFS reply setclientid: %d\n", status);
5112 return status;
5116 * nfs4_proc_setclientid_confirm - Confirm client ID
5117 * @clp: state data structure
5118 * @res: result of a previous SETCLIENTID
5119 * @cred: RPC credential to use for this call
5121 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5123 int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
5124 struct nfs4_setclientid_res *arg,
5125 struct rpc_cred *cred)
5127 struct rpc_message msg = {
5128 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
5129 .rpc_argp = arg,
5130 .rpc_cred = cred,
5132 int status;
5134 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
5135 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5136 clp->cl_clientid);
5137 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5138 trace_nfs4_setclientid_confirm(clp, status);
5139 dprintk("NFS reply setclientid_confirm: %d\n", status);
5140 return status;
5143 struct nfs4_delegreturndata {
5144 struct nfs4_delegreturnargs args;
5145 struct nfs4_delegreturnres res;
5146 struct nfs_fh fh;
5147 nfs4_stateid stateid;
5148 unsigned long timestamp;
5149 struct nfs_fattr fattr;
5150 int rpc_status;
5151 struct inode *inode;
5152 bool roc;
5153 u32 roc_barrier;
5156 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
5158 struct nfs4_delegreturndata *data = calldata;
5160 if (!nfs4_sequence_done(task, &data->res.seq_res))
5161 return;
5163 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
5164 switch (task->tk_status) {
5165 case 0:
5166 renew_lease(data->res.server, data->timestamp);
5167 case -NFS4ERR_ADMIN_REVOKED:
5168 case -NFS4ERR_DELEG_REVOKED:
5169 case -NFS4ERR_BAD_STATEID:
5170 case -NFS4ERR_OLD_STATEID:
5171 case -NFS4ERR_STALE_STATEID:
5172 case -NFS4ERR_EXPIRED:
5173 task->tk_status = 0;
5174 if (data->roc)
5175 pnfs_roc_set_barrier(data->inode, data->roc_barrier);
5176 break;
5177 default:
5178 if (nfs4_async_handle_error(task, data->res.server,
5179 NULL, NULL) == -EAGAIN) {
5180 rpc_restart_call_prepare(task);
5181 return;
5184 data->rpc_status = task->tk_status;
5187 static void nfs4_delegreturn_release(void *calldata)
5189 struct nfs4_delegreturndata *data = calldata;
5190 struct inode *inode = data->inode;
5192 if (inode) {
5193 if (data->roc)
5194 pnfs_roc_release(inode);
5195 nfs_iput_and_deactive(inode);
5197 kfree(calldata);
5200 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
5202 struct nfs4_delegreturndata *d_data;
5204 d_data = (struct nfs4_delegreturndata *)data;
5206 if (d_data->roc &&
5207 pnfs_roc_drain(d_data->inode, &d_data->roc_barrier, task))
5208 return;
5210 nfs4_setup_sequence(d_data->res.server,
5211 &d_data->args.seq_args,
5212 &d_data->res.seq_res,
5213 task);
5216 static const struct rpc_call_ops nfs4_delegreturn_ops = {
5217 .rpc_call_prepare = nfs4_delegreturn_prepare,
5218 .rpc_call_done = nfs4_delegreturn_done,
5219 .rpc_release = nfs4_delegreturn_release,
5222 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
5224 struct nfs4_delegreturndata *data;
5225 struct nfs_server *server = NFS_SERVER(inode);
5226 struct rpc_task *task;
5227 struct rpc_message msg = {
5228 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
5229 .rpc_cred = cred,
5231 struct rpc_task_setup task_setup_data = {
5232 .rpc_client = server->client,
5233 .rpc_message = &msg,
5234 .callback_ops = &nfs4_delegreturn_ops,
5235 .flags = RPC_TASK_ASYNC,
5237 int status = 0;
5239 data = kzalloc(sizeof(*data), GFP_NOFS);
5240 if (data == NULL)
5241 return -ENOMEM;
5242 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
5243 data->args.fhandle = &data->fh;
5244 data->args.stateid = &data->stateid;
5245 data->args.bitmask = server->cache_consistency_bitmask;
5246 nfs_copy_fh(&data->fh, NFS_FH(inode));
5247 nfs4_stateid_copy(&data->stateid, stateid);
5248 data->res.fattr = &data->fattr;
5249 data->res.server = server;
5250 nfs_fattr_init(data->res.fattr);
5251 data->timestamp = jiffies;
5252 data->rpc_status = 0;
5253 data->inode = nfs_igrab_and_active(inode);
5254 if (data->inode)
5255 data->roc = nfs4_roc(inode);
5257 task_setup_data.callback_data = data;
5258 msg.rpc_argp = &data->args;
5259 msg.rpc_resp = &data->res;
5260 task = rpc_run_task(&task_setup_data);
5261 if (IS_ERR(task))
5262 return PTR_ERR(task);
5263 if (!issync)
5264 goto out;
5265 status = nfs4_wait_for_completion_rpc_task(task);
5266 if (status != 0)
5267 goto out;
5268 status = data->rpc_status;
5269 if (status == 0)
5270 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
5271 else
5272 nfs_refresh_inode(inode, &data->fattr);
5273 out:
5274 rpc_put_task(task);
5275 return status;
5278 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
5280 struct nfs_server *server = NFS_SERVER(inode);
5281 struct nfs4_exception exception = { };
5282 int err;
5283 do {
5284 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
5285 trace_nfs4_delegreturn(inode, err);
5286 switch (err) {
5287 case -NFS4ERR_STALE_STATEID:
5288 case -NFS4ERR_EXPIRED:
5289 case 0:
5290 return 0;
5292 err = nfs4_handle_exception(server, err, &exception);
5293 } while (exception.retry);
5294 return err;
5297 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
5298 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
5301 * sleep, with exponential backoff, and retry the LOCK operation.
5303 static unsigned long
5304 nfs4_set_lock_task_retry(unsigned long timeout)
5306 freezable_schedule_timeout_killable_unsafe(timeout);
5307 timeout <<= 1;
5308 if (timeout > NFS4_LOCK_MAXTIMEOUT)
5309 return NFS4_LOCK_MAXTIMEOUT;
5310 return timeout;
5313 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5315 struct inode *inode = state->inode;
5316 struct nfs_server *server = NFS_SERVER(inode);
5317 struct nfs_client *clp = server->nfs_client;
5318 struct nfs_lockt_args arg = {
5319 .fh = NFS_FH(inode),
5320 .fl = request,
5322 struct nfs_lockt_res res = {
5323 .denied = request,
5325 struct rpc_message msg = {
5326 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
5327 .rpc_argp = &arg,
5328 .rpc_resp = &res,
5329 .rpc_cred = state->owner->so_cred,
5331 struct nfs4_lock_state *lsp;
5332 int status;
5334 arg.lock_owner.clientid = clp->cl_clientid;
5335 status = nfs4_set_lock_state(state, request);
5336 if (status != 0)
5337 goto out;
5338 lsp = request->fl_u.nfs4_fl.owner;
5339 arg.lock_owner.id = lsp->ls_seqid.owner_id;
5340 arg.lock_owner.s_dev = server->s_dev;
5341 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5342 switch (status) {
5343 case 0:
5344 request->fl_type = F_UNLCK;
5345 break;
5346 case -NFS4ERR_DENIED:
5347 status = 0;
5349 request->fl_ops->fl_release_private(request);
5350 request->fl_ops = NULL;
5351 out:
5352 return status;
5355 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5357 struct nfs4_exception exception = { };
5358 int err;
5360 do {
5361 err = _nfs4_proc_getlk(state, cmd, request);
5362 trace_nfs4_get_lock(request, state, cmd, err);
5363 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
5364 &exception);
5365 } while (exception.retry);
5366 return err;
5369 static int do_vfs_lock(struct inode *inode, struct file_lock *fl)
5371 int res = 0;
5372 switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) {
5373 case FL_POSIX:
5374 res = posix_lock_inode_wait(inode, fl);
5375 break;
5376 case FL_FLOCK:
5377 res = flock_lock_inode_wait(inode, fl);
5378 break;
5379 default:
5380 BUG();
5382 return res;
5385 struct nfs4_unlockdata {
5386 struct nfs_locku_args arg;
5387 struct nfs_locku_res res;
5388 struct nfs4_lock_state *lsp;
5389 struct nfs_open_context *ctx;
5390 struct file_lock fl;
5391 const struct nfs_server *server;
5392 unsigned long timestamp;
5395 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
5396 struct nfs_open_context *ctx,
5397 struct nfs4_lock_state *lsp,
5398 struct nfs_seqid *seqid)
5400 struct nfs4_unlockdata *p;
5401 struct inode *inode = lsp->ls_state->inode;
5403 p = kzalloc(sizeof(*p), GFP_NOFS);
5404 if (p == NULL)
5405 return NULL;
5406 p->arg.fh = NFS_FH(inode);
5407 p->arg.fl = &p->fl;
5408 p->arg.seqid = seqid;
5409 p->res.seqid = seqid;
5410 p->lsp = lsp;
5411 atomic_inc(&lsp->ls_count);
5412 /* Ensure we don't close file until we're done freeing locks! */
5413 p->ctx = get_nfs_open_context(ctx);
5414 memcpy(&p->fl, fl, sizeof(p->fl));
5415 p->server = NFS_SERVER(inode);
5416 return p;
5419 static void nfs4_locku_release_calldata(void *data)
5421 struct nfs4_unlockdata *calldata = data;
5422 nfs_free_seqid(calldata->arg.seqid);
5423 nfs4_put_lock_state(calldata->lsp);
5424 put_nfs_open_context(calldata->ctx);
5425 kfree(calldata);
5428 static void nfs4_locku_done(struct rpc_task *task, void *data)
5430 struct nfs4_unlockdata *calldata = data;
5432 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
5433 return;
5434 switch (task->tk_status) {
5435 case 0:
5436 renew_lease(calldata->server, calldata->timestamp);
5437 do_vfs_lock(calldata->lsp->ls_state->inode, &calldata->fl);
5438 if (nfs4_update_lock_stateid(calldata->lsp,
5439 &calldata->res.stateid))
5440 break;
5441 case -NFS4ERR_BAD_STATEID:
5442 case -NFS4ERR_OLD_STATEID:
5443 case -NFS4ERR_STALE_STATEID:
5444 case -NFS4ERR_EXPIRED:
5445 if (!nfs4_stateid_match(&calldata->arg.stateid,
5446 &calldata->lsp->ls_stateid))
5447 rpc_restart_call_prepare(task);
5448 break;
5449 default:
5450 if (nfs4_async_handle_error(task, calldata->server,
5451 NULL, NULL) == -EAGAIN)
5452 rpc_restart_call_prepare(task);
5454 nfs_release_seqid(calldata->arg.seqid);
5457 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
5459 struct nfs4_unlockdata *calldata = data;
5461 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
5462 goto out_wait;
5463 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid);
5464 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
5465 /* Note: exit _without_ running nfs4_locku_done */
5466 goto out_no_action;
5468 calldata->timestamp = jiffies;
5469 if (nfs4_setup_sequence(calldata->server,
5470 &calldata->arg.seq_args,
5471 &calldata->res.seq_res,
5472 task) != 0)
5473 nfs_release_seqid(calldata->arg.seqid);
5474 return;
5475 out_no_action:
5476 task->tk_action = NULL;
5477 out_wait:
5478 nfs4_sequence_done(task, &calldata->res.seq_res);
5481 static const struct rpc_call_ops nfs4_locku_ops = {
5482 .rpc_call_prepare = nfs4_locku_prepare,
5483 .rpc_call_done = nfs4_locku_done,
5484 .rpc_release = nfs4_locku_release_calldata,
5487 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
5488 struct nfs_open_context *ctx,
5489 struct nfs4_lock_state *lsp,
5490 struct nfs_seqid *seqid)
5492 struct nfs4_unlockdata *data;
5493 struct rpc_message msg = {
5494 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
5495 .rpc_cred = ctx->cred,
5497 struct rpc_task_setup task_setup_data = {
5498 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
5499 .rpc_message = &msg,
5500 .callback_ops = &nfs4_locku_ops,
5501 .workqueue = nfsiod_workqueue,
5502 .flags = RPC_TASK_ASYNC,
5505 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
5506 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
5508 /* Ensure this is an unlock - when canceling a lock, the
5509 * canceled lock is passed in, and it won't be an unlock.
5511 fl->fl_type = F_UNLCK;
5513 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
5514 if (data == NULL) {
5515 nfs_free_seqid(seqid);
5516 return ERR_PTR(-ENOMEM);
5519 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
5520 msg.rpc_argp = &data->arg;
5521 msg.rpc_resp = &data->res;
5522 task_setup_data.callback_data = data;
5523 return rpc_run_task(&task_setup_data);
5526 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
5528 struct inode *inode = state->inode;
5529 struct nfs4_state_owner *sp = state->owner;
5530 struct nfs_inode *nfsi = NFS_I(inode);
5531 struct nfs_seqid *seqid;
5532 struct nfs4_lock_state *lsp;
5533 struct rpc_task *task;
5534 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
5535 int status = 0;
5536 unsigned char fl_flags = request->fl_flags;
5538 status = nfs4_set_lock_state(state, request);
5539 /* Unlock _before_ we do the RPC call */
5540 request->fl_flags |= FL_EXISTS;
5541 /* Exclude nfs_delegation_claim_locks() */
5542 mutex_lock(&sp->so_delegreturn_mutex);
5543 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
5544 down_read(&nfsi->rwsem);
5545 if (do_vfs_lock(inode, request) == -ENOENT) {
5546 up_read(&nfsi->rwsem);
5547 mutex_unlock(&sp->so_delegreturn_mutex);
5548 goto out;
5550 up_read(&nfsi->rwsem);
5551 mutex_unlock(&sp->so_delegreturn_mutex);
5552 if (status != 0)
5553 goto out;
5554 /* Is this a delegated lock? */
5555 lsp = request->fl_u.nfs4_fl.owner;
5556 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
5557 goto out;
5558 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
5559 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
5560 status = -ENOMEM;
5561 if (IS_ERR(seqid))
5562 goto out;
5563 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
5564 status = PTR_ERR(task);
5565 if (IS_ERR(task))
5566 goto out;
5567 status = nfs4_wait_for_completion_rpc_task(task);
5568 rpc_put_task(task);
5569 out:
5570 request->fl_flags = fl_flags;
5571 trace_nfs4_unlock(request, state, F_SETLK, status);
5572 return status;
5575 struct nfs4_lockdata {
5576 struct nfs_lock_args arg;
5577 struct nfs_lock_res res;
5578 struct nfs4_lock_state *lsp;
5579 struct nfs_open_context *ctx;
5580 struct file_lock fl;
5581 unsigned long timestamp;
5582 int rpc_status;
5583 int cancelled;
5584 struct nfs_server *server;
5587 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
5588 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
5589 gfp_t gfp_mask)
5591 struct nfs4_lockdata *p;
5592 struct inode *inode = lsp->ls_state->inode;
5593 struct nfs_server *server = NFS_SERVER(inode);
5594 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
5596 p = kzalloc(sizeof(*p), gfp_mask);
5597 if (p == NULL)
5598 return NULL;
5600 p->arg.fh = NFS_FH(inode);
5601 p->arg.fl = &p->fl;
5602 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
5603 if (IS_ERR(p->arg.open_seqid))
5604 goto out_free;
5605 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
5606 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
5607 if (IS_ERR(p->arg.lock_seqid))
5608 goto out_free_seqid;
5609 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
5610 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
5611 p->arg.lock_owner.s_dev = server->s_dev;
5612 p->res.lock_seqid = p->arg.lock_seqid;
5613 p->lsp = lsp;
5614 p->server = server;
5615 atomic_inc(&lsp->ls_count);
5616 p->ctx = get_nfs_open_context(ctx);
5617 get_file(fl->fl_file);
5618 memcpy(&p->fl, fl, sizeof(p->fl));
5619 return p;
5620 out_free_seqid:
5621 nfs_free_seqid(p->arg.open_seqid);
5622 out_free:
5623 kfree(p);
5624 return NULL;
5627 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
5629 struct nfs4_lockdata *data = calldata;
5630 struct nfs4_state *state = data->lsp->ls_state;
5632 dprintk("%s: begin!\n", __func__);
5633 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
5634 goto out_wait;
5635 /* Do we need to do an open_to_lock_owner? */
5636 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
5637 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
5638 goto out_release_lock_seqid;
5640 nfs4_stateid_copy(&data->arg.open_stateid,
5641 &state->open_stateid);
5642 data->arg.new_lock_owner = 1;
5643 data->res.open_seqid = data->arg.open_seqid;
5644 } else {
5645 data->arg.new_lock_owner = 0;
5646 nfs4_stateid_copy(&data->arg.lock_stateid,
5647 &data->lsp->ls_stateid);
5649 if (!nfs4_valid_open_stateid(state)) {
5650 data->rpc_status = -EBADF;
5651 task->tk_action = NULL;
5652 goto out_release_open_seqid;
5654 data->timestamp = jiffies;
5655 if (nfs4_setup_sequence(data->server,
5656 &data->arg.seq_args,
5657 &data->res.seq_res,
5658 task) == 0)
5659 return;
5660 out_release_open_seqid:
5661 nfs_release_seqid(data->arg.open_seqid);
5662 out_release_lock_seqid:
5663 nfs_release_seqid(data->arg.lock_seqid);
5664 out_wait:
5665 nfs4_sequence_done(task, &data->res.seq_res);
5666 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
5669 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
5671 struct nfs4_lockdata *data = calldata;
5672 struct nfs4_lock_state *lsp = data->lsp;
5674 dprintk("%s: begin!\n", __func__);
5676 if (!nfs4_sequence_done(task, &data->res.seq_res))
5677 return;
5679 data->rpc_status = task->tk_status;
5680 switch (task->tk_status) {
5681 case 0:
5682 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
5683 data->timestamp);
5684 if (data->arg.new_lock) {
5685 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
5686 if (do_vfs_lock(lsp->ls_state->inode, &data->fl) < 0) {
5687 rpc_restart_call_prepare(task);
5688 break;
5691 if (data->arg.new_lock_owner != 0) {
5692 nfs_confirm_seqid(&lsp->ls_seqid, 0);
5693 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
5694 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
5695 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
5696 rpc_restart_call_prepare(task);
5697 break;
5698 case -NFS4ERR_BAD_STATEID:
5699 case -NFS4ERR_OLD_STATEID:
5700 case -NFS4ERR_STALE_STATEID:
5701 case -NFS4ERR_EXPIRED:
5702 if (data->arg.new_lock_owner != 0) {
5703 if (!nfs4_stateid_match(&data->arg.open_stateid,
5704 &lsp->ls_state->open_stateid))
5705 rpc_restart_call_prepare(task);
5706 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
5707 &lsp->ls_stateid))
5708 rpc_restart_call_prepare(task);
5710 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
5713 static void nfs4_lock_release(void *calldata)
5715 struct nfs4_lockdata *data = calldata;
5717 dprintk("%s: begin!\n", __func__);
5718 nfs_free_seqid(data->arg.open_seqid);
5719 if (data->cancelled != 0) {
5720 struct rpc_task *task;
5721 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
5722 data->arg.lock_seqid);
5723 if (!IS_ERR(task))
5724 rpc_put_task_async(task);
5725 dprintk("%s: cancelling lock!\n", __func__);
5726 } else
5727 nfs_free_seqid(data->arg.lock_seqid);
5728 nfs4_put_lock_state(data->lsp);
5729 put_nfs_open_context(data->ctx);
5730 fput(data->fl.fl_file);
5731 kfree(data);
5732 dprintk("%s: done!\n", __func__);
5735 static const struct rpc_call_ops nfs4_lock_ops = {
5736 .rpc_call_prepare = nfs4_lock_prepare,
5737 .rpc_call_done = nfs4_lock_done,
5738 .rpc_release = nfs4_lock_release,
5741 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
5743 switch (error) {
5744 case -NFS4ERR_ADMIN_REVOKED:
5745 case -NFS4ERR_BAD_STATEID:
5746 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
5747 if (new_lock_owner != 0 ||
5748 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
5749 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
5750 break;
5751 case -NFS4ERR_STALE_STATEID:
5752 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
5753 case -NFS4ERR_EXPIRED:
5754 nfs4_schedule_lease_recovery(server->nfs_client);
5758 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
5760 struct nfs4_lockdata *data;
5761 struct rpc_task *task;
5762 struct rpc_message msg = {
5763 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
5764 .rpc_cred = state->owner->so_cred,
5766 struct rpc_task_setup task_setup_data = {
5767 .rpc_client = NFS_CLIENT(state->inode),
5768 .rpc_message = &msg,
5769 .callback_ops = &nfs4_lock_ops,
5770 .workqueue = nfsiod_workqueue,
5771 .flags = RPC_TASK_ASYNC,
5773 int ret;
5775 dprintk("%s: begin!\n", __func__);
5776 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
5777 fl->fl_u.nfs4_fl.owner,
5778 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
5779 if (data == NULL)
5780 return -ENOMEM;
5781 if (IS_SETLKW(cmd))
5782 data->arg.block = 1;
5783 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
5784 msg.rpc_argp = &data->arg;
5785 msg.rpc_resp = &data->res;
5786 task_setup_data.callback_data = data;
5787 if (recovery_type > NFS_LOCK_NEW) {
5788 if (recovery_type == NFS_LOCK_RECLAIM)
5789 data->arg.reclaim = NFS_LOCK_RECLAIM;
5790 nfs4_set_sequence_privileged(&data->arg.seq_args);
5791 } else
5792 data->arg.new_lock = 1;
5793 task = rpc_run_task(&task_setup_data);
5794 if (IS_ERR(task))
5795 return PTR_ERR(task);
5796 ret = nfs4_wait_for_completion_rpc_task(task);
5797 if (ret == 0) {
5798 ret = data->rpc_status;
5799 if (ret)
5800 nfs4_handle_setlk_error(data->server, data->lsp,
5801 data->arg.new_lock_owner, ret);
5802 } else
5803 data->cancelled = 1;
5804 rpc_put_task(task);
5805 dprintk("%s: done, ret = %d!\n", __func__, ret);
5806 return ret;
5809 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
5811 struct nfs_server *server = NFS_SERVER(state->inode);
5812 struct nfs4_exception exception = {
5813 .inode = state->inode,
5815 int err;
5817 do {
5818 /* Cache the lock if possible... */
5819 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
5820 return 0;
5821 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
5822 trace_nfs4_lock_reclaim(request, state, F_SETLK, err);
5823 if (err != -NFS4ERR_DELAY)
5824 break;
5825 nfs4_handle_exception(server, err, &exception);
5826 } while (exception.retry);
5827 return err;
5830 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
5832 struct nfs_server *server = NFS_SERVER(state->inode);
5833 struct nfs4_exception exception = {
5834 .inode = state->inode,
5836 int err;
5838 err = nfs4_set_lock_state(state, request);
5839 if (err != 0)
5840 return err;
5841 if (!recover_lost_locks) {
5842 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
5843 return 0;
5845 do {
5846 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
5847 return 0;
5848 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
5849 trace_nfs4_lock_expired(request, state, F_SETLK, err);
5850 switch (err) {
5851 default:
5852 goto out;
5853 case -NFS4ERR_GRACE:
5854 case -NFS4ERR_DELAY:
5855 nfs4_handle_exception(server, err, &exception);
5856 err = 0;
5858 } while (exception.retry);
5859 out:
5860 return err;
5863 #if defined(CONFIG_NFS_V4_1)
5865 * nfs41_check_expired_locks - possibly free a lock stateid
5867 * @state: NFSv4 state for an inode
5869 * Returns NFS_OK if recovery for this stateid is now finished.
5870 * Otherwise a negative NFS4ERR value is returned.
5872 static int nfs41_check_expired_locks(struct nfs4_state *state)
5874 int status, ret = -NFS4ERR_BAD_STATEID;
5875 struct nfs4_lock_state *lsp;
5876 struct nfs_server *server = NFS_SERVER(state->inode);
5878 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
5879 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
5880 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
5882 status = nfs41_test_stateid(server,
5883 &lsp->ls_stateid,
5884 cred);
5885 trace_nfs4_test_lock_stateid(state, lsp, status);
5886 if (status != NFS_OK) {
5887 /* Free the stateid unless the server
5888 * informs us the stateid is unrecognized. */
5889 if (status != -NFS4ERR_BAD_STATEID)
5890 nfs41_free_stateid(server,
5891 &lsp->ls_stateid,
5892 cred);
5893 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
5894 ret = status;
5899 return ret;
5902 static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
5904 int status = NFS_OK;
5906 if (test_bit(LK_STATE_IN_USE, &state->flags))
5907 status = nfs41_check_expired_locks(state);
5908 if (status != NFS_OK)
5909 status = nfs4_lock_expired(state, request);
5910 return status;
5912 #endif
5914 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5916 struct nfs_inode *nfsi = NFS_I(state->inode);
5917 unsigned char fl_flags = request->fl_flags;
5918 int status = -ENOLCK;
5920 if ((fl_flags & FL_POSIX) &&
5921 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
5922 goto out;
5923 /* Is this a delegated open? */
5924 status = nfs4_set_lock_state(state, request);
5925 if (status != 0)
5926 goto out;
5927 request->fl_flags |= FL_ACCESS;
5928 status = do_vfs_lock(state->inode, request);
5929 if (status < 0)
5930 goto out;
5931 down_read(&nfsi->rwsem);
5932 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
5933 /* Yes: cache locks! */
5934 /* ...but avoid races with delegation recall... */
5935 request->fl_flags = fl_flags & ~FL_SLEEP;
5936 status = do_vfs_lock(state->inode, request);
5937 up_read(&nfsi->rwsem);
5938 goto out;
5940 up_read(&nfsi->rwsem);
5941 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
5942 out:
5943 request->fl_flags = fl_flags;
5944 return status;
5947 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5949 struct nfs4_exception exception = {
5950 .state = state,
5951 .inode = state->inode,
5953 int err;
5955 do {
5956 err = _nfs4_proc_setlk(state, cmd, request);
5957 trace_nfs4_set_lock(request, state, cmd, err);
5958 if (err == -NFS4ERR_DENIED)
5959 err = -EAGAIN;
5960 err = nfs4_handle_exception(NFS_SERVER(state->inode),
5961 err, &exception);
5962 } while (exception.retry);
5963 return err;
5966 static int
5967 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
5969 struct nfs_open_context *ctx;
5970 struct nfs4_state *state;
5971 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
5972 int status;
5974 /* verify open state */
5975 ctx = nfs_file_open_context(filp);
5976 state = ctx->state;
5978 if (request->fl_start < 0 || request->fl_end < 0)
5979 return -EINVAL;
5981 if (IS_GETLK(cmd)) {
5982 if (state != NULL)
5983 return nfs4_proc_getlk(state, F_GETLK, request);
5984 return 0;
5987 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
5988 return -EINVAL;
5990 if (request->fl_type == F_UNLCK) {
5991 if (state != NULL)
5992 return nfs4_proc_unlck(state, cmd, request);
5993 return 0;
5996 if (state == NULL)
5997 return -ENOLCK;
5999 * Don't rely on the VFS having checked the file open mode,
6000 * since it won't do this for flock() locks.
6002 switch (request->fl_type) {
6003 case F_RDLCK:
6004 if (!(filp->f_mode & FMODE_READ))
6005 return -EBADF;
6006 break;
6007 case F_WRLCK:
6008 if (!(filp->f_mode & FMODE_WRITE))
6009 return -EBADF;
6012 do {
6013 status = nfs4_proc_setlk(state, cmd, request);
6014 if ((status != -EAGAIN) || IS_SETLK(cmd))
6015 break;
6016 timeout = nfs4_set_lock_task_retry(timeout);
6017 status = -ERESTARTSYS;
6018 if (signalled())
6019 break;
6020 } while(status < 0);
6021 return status;
6024 int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
6026 struct nfs_server *server = NFS_SERVER(state->inode);
6027 int err;
6029 err = nfs4_set_lock_state(state, fl);
6030 if (err != 0)
6031 return err;
6032 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
6033 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
6036 struct nfs_release_lockowner_data {
6037 struct nfs4_lock_state *lsp;
6038 struct nfs_server *server;
6039 struct nfs_release_lockowner_args args;
6040 struct nfs_release_lockowner_res res;
6041 unsigned long timestamp;
6044 static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
6046 struct nfs_release_lockowner_data *data = calldata;
6047 struct nfs_server *server = data->server;
6048 nfs40_setup_sequence(server->nfs_client->cl_slot_tbl,
6049 &data->args.seq_args, &data->res.seq_res, task);
6050 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6051 data->timestamp = jiffies;
6054 static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
6056 struct nfs_release_lockowner_data *data = calldata;
6057 struct nfs_server *server = data->server;
6059 nfs40_sequence_done(task, &data->res.seq_res);
6061 switch (task->tk_status) {
6062 case 0:
6063 renew_lease(server, data->timestamp);
6064 break;
6065 case -NFS4ERR_STALE_CLIENTID:
6066 case -NFS4ERR_EXPIRED:
6067 nfs4_schedule_lease_recovery(server->nfs_client);
6068 break;
6069 case -NFS4ERR_LEASE_MOVED:
6070 case -NFS4ERR_DELAY:
6071 if (nfs4_async_handle_error(task, server,
6072 NULL, NULL) == -EAGAIN)
6073 rpc_restart_call_prepare(task);
6077 static void nfs4_release_lockowner_release(void *calldata)
6079 struct nfs_release_lockowner_data *data = calldata;
6080 nfs4_free_lock_state(data->server, data->lsp);
6081 kfree(calldata);
6084 static const struct rpc_call_ops nfs4_release_lockowner_ops = {
6085 .rpc_call_prepare = nfs4_release_lockowner_prepare,
6086 .rpc_call_done = nfs4_release_lockowner_done,
6087 .rpc_release = nfs4_release_lockowner_release,
6090 static void
6091 nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
6093 struct nfs_release_lockowner_data *data;
6094 struct rpc_message msg = {
6095 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
6098 if (server->nfs_client->cl_mvops->minor_version != 0)
6099 return;
6101 data = kmalloc(sizeof(*data), GFP_NOFS);
6102 if (!data)
6103 return;
6104 data->lsp = lsp;
6105 data->server = server;
6106 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6107 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
6108 data->args.lock_owner.s_dev = server->s_dev;
6110 msg.rpc_argp = &data->args;
6111 msg.rpc_resp = &data->res;
6112 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
6113 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
6116 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
6118 static int nfs4_xattr_set_nfs4_acl(struct dentry *dentry, const char *key,
6119 const void *buf, size_t buflen,
6120 int flags, int type)
6122 if (strcmp(key, "") != 0)
6123 return -EINVAL;
6125 return nfs4_proc_set_acl(d_inode(dentry), buf, buflen);
6128 static int nfs4_xattr_get_nfs4_acl(struct dentry *dentry, const char *key,
6129 void *buf, size_t buflen, int type)
6131 if (strcmp(key, "") != 0)
6132 return -EINVAL;
6134 return nfs4_proc_get_acl(d_inode(dentry), buf, buflen);
6137 static size_t nfs4_xattr_list_nfs4_acl(struct dentry *dentry, char *list,
6138 size_t list_len, const char *name,
6139 size_t name_len, int type)
6141 size_t len = sizeof(XATTR_NAME_NFSV4_ACL);
6143 if (!nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry))))
6144 return 0;
6146 if (list && len <= list_len)
6147 memcpy(list, XATTR_NAME_NFSV4_ACL, len);
6148 return len;
6151 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
6152 static inline int nfs4_server_supports_labels(struct nfs_server *server)
6154 return server->caps & NFS_CAP_SECURITY_LABEL;
6157 static int nfs4_xattr_set_nfs4_label(struct dentry *dentry, const char *key,
6158 const void *buf, size_t buflen,
6159 int flags, int type)
6161 if (security_ismaclabel(key))
6162 return nfs4_set_security_label(dentry, buf, buflen);
6164 return -EOPNOTSUPP;
6167 static int nfs4_xattr_get_nfs4_label(struct dentry *dentry, const char *key,
6168 void *buf, size_t buflen, int type)
6170 if (security_ismaclabel(key))
6171 return nfs4_get_security_label(d_inode(dentry), buf, buflen);
6172 return -EOPNOTSUPP;
6175 static size_t nfs4_xattr_list_nfs4_label(struct dentry *dentry, char *list,
6176 size_t list_len, const char *name,
6177 size_t name_len, int type)
6179 size_t len = 0;
6181 if (nfs_server_capable(d_inode(dentry), NFS_CAP_SECURITY_LABEL)) {
6182 len = security_inode_listsecurity(d_inode(dentry), NULL, 0);
6183 if (list && len <= list_len)
6184 security_inode_listsecurity(d_inode(dentry), list, len);
6186 return len;
6189 static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
6190 .prefix = XATTR_SECURITY_PREFIX,
6191 .list = nfs4_xattr_list_nfs4_label,
6192 .get = nfs4_xattr_get_nfs4_label,
6193 .set = nfs4_xattr_set_nfs4_label,
6195 #endif
6199 * nfs_fhget will use either the mounted_on_fileid or the fileid
6201 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
6203 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
6204 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
6205 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
6206 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
6207 return;
6209 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
6210 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
6211 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
6212 fattr->nlink = 2;
6215 static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6216 const struct qstr *name,
6217 struct nfs4_fs_locations *fs_locations,
6218 struct page *page)
6220 struct nfs_server *server = NFS_SERVER(dir);
6221 u32 bitmask[3] = {
6222 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6224 struct nfs4_fs_locations_arg args = {
6225 .dir_fh = NFS_FH(dir),
6226 .name = name,
6227 .page = page,
6228 .bitmask = bitmask,
6230 struct nfs4_fs_locations_res res = {
6231 .fs_locations = fs_locations,
6233 struct rpc_message msg = {
6234 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6235 .rpc_argp = &args,
6236 .rpc_resp = &res,
6238 int status;
6240 dprintk("%s: start\n", __func__);
6242 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
6243 * is not supported */
6244 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
6245 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
6246 else
6247 bitmask[0] |= FATTR4_WORD0_FILEID;
6249 nfs_fattr_init(&fs_locations->fattr);
6250 fs_locations->server = server;
6251 fs_locations->nlocations = 0;
6252 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
6253 dprintk("%s: returned status = %d\n", __func__, status);
6254 return status;
6257 int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6258 const struct qstr *name,
6259 struct nfs4_fs_locations *fs_locations,
6260 struct page *page)
6262 struct nfs4_exception exception = { };
6263 int err;
6264 do {
6265 err = _nfs4_proc_fs_locations(client, dir, name,
6266 fs_locations, page);
6267 trace_nfs4_get_fs_locations(dir, name, err);
6268 err = nfs4_handle_exception(NFS_SERVER(dir), err,
6269 &exception);
6270 } while (exception.retry);
6271 return err;
6275 * This operation also signals the server that this client is
6276 * performing migration recovery. The server can stop returning
6277 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
6278 * appended to this compound to identify the client ID which is
6279 * performing recovery.
6281 static int _nfs40_proc_get_locations(struct inode *inode,
6282 struct nfs4_fs_locations *locations,
6283 struct page *page, struct rpc_cred *cred)
6285 struct nfs_server *server = NFS_SERVER(inode);
6286 struct rpc_clnt *clnt = server->client;
6287 u32 bitmask[2] = {
6288 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6290 struct nfs4_fs_locations_arg args = {
6291 .clientid = server->nfs_client->cl_clientid,
6292 .fh = NFS_FH(inode),
6293 .page = page,
6294 .bitmask = bitmask,
6295 .migration = 1, /* skip LOOKUP */
6296 .renew = 1, /* append RENEW */
6298 struct nfs4_fs_locations_res res = {
6299 .fs_locations = locations,
6300 .migration = 1,
6301 .renew = 1,
6303 struct rpc_message msg = {
6304 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6305 .rpc_argp = &args,
6306 .rpc_resp = &res,
6307 .rpc_cred = cred,
6309 unsigned long now = jiffies;
6310 int status;
6312 nfs_fattr_init(&locations->fattr);
6313 locations->server = server;
6314 locations->nlocations = 0;
6316 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6317 nfs4_set_sequence_privileged(&args.seq_args);
6318 status = nfs4_call_sync_sequence(clnt, server, &msg,
6319 &args.seq_args, &res.seq_res);
6320 if (status)
6321 return status;
6323 renew_lease(server, now);
6324 return 0;
6327 #ifdef CONFIG_NFS_V4_1
6330 * This operation also signals the server that this client is
6331 * performing migration recovery. The server can stop asserting
6332 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
6333 * performing this operation is identified in the SEQUENCE
6334 * operation in this compound.
6336 * When the client supports GETATTR(fs_locations_info), it can
6337 * be plumbed in here.
6339 static int _nfs41_proc_get_locations(struct inode *inode,
6340 struct nfs4_fs_locations *locations,
6341 struct page *page, struct rpc_cred *cred)
6343 struct nfs_server *server = NFS_SERVER(inode);
6344 struct rpc_clnt *clnt = server->client;
6345 u32 bitmask[2] = {
6346 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6348 struct nfs4_fs_locations_arg args = {
6349 .fh = NFS_FH(inode),
6350 .page = page,
6351 .bitmask = bitmask,
6352 .migration = 1, /* skip LOOKUP */
6354 struct nfs4_fs_locations_res res = {
6355 .fs_locations = locations,
6356 .migration = 1,
6358 struct rpc_message msg = {
6359 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6360 .rpc_argp = &args,
6361 .rpc_resp = &res,
6362 .rpc_cred = cred,
6364 int status;
6366 nfs_fattr_init(&locations->fattr);
6367 locations->server = server;
6368 locations->nlocations = 0;
6370 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6371 nfs4_set_sequence_privileged(&args.seq_args);
6372 status = nfs4_call_sync_sequence(clnt, server, &msg,
6373 &args.seq_args, &res.seq_res);
6374 if (status == NFS4_OK &&
6375 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6376 status = -NFS4ERR_LEASE_MOVED;
6377 return status;
6380 #endif /* CONFIG_NFS_V4_1 */
6383 * nfs4_proc_get_locations - discover locations for a migrated FSID
6384 * @inode: inode on FSID that is migrating
6385 * @locations: result of query
6386 * @page: buffer
6387 * @cred: credential to use for this operation
6389 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
6390 * operation failed, or a negative errno if a local error occurred.
6392 * On success, "locations" is filled in, but if the server has
6393 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
6394 * asserted.
6396 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
6397 * from this client that require migration recovery.
6399 int nfs4_proc_get_locations(struct inode *inode,
6400 struct nfs4_fs_locations *locations,
6401 struct page *page, struct rpc_cred *cred)
6403 struct nfs_server *server = NFS_SERVER(inode);
6404 struct nfs_client *clp = server->nfs_client;
6405 const struct nfs4_mig_recovery_ops *ops =
6406 clp->cl_mvops->mig_recovery_ops;
6407 struct nfs4_exception exception = { };
6408 int status;
6410 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6411 (unsigned long long)server->fsid.major,
6412 (unsigned long long)server->fsid.minor,
6413 clp->cl_hostname);
6414 nfs_display_fhandle(NFS_FH(inode), __func__);
6416 do {
6417 status = ops->get_locations(inode, locations, page, cred);
6418 if (status != -NFS4ERR_DELAY)
6419 break;
6420 nfs4_handle_exception(server, status, &exception);
6421 } while (exception.retry);
6422 return status;
6426 * This operation also signals the server that this client is
6427 * performing "lease moved" recovery. The server can stop
6428 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
6429 * is appended to this compound to identify the client ID which is
6430 * performing recovery.
6432 static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6434 struct nfs_server *server = NFS_SERVER(inode);
6435 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
6436 struct rpc_clnt *clnt = server->client;
6437 struct nfs4_fsid_present_arg args = {
6438 .fh = NFS_FH(inode),
6439 .clientid = clp->cl_clientid,
6440 .renew = 1, /* append RENEW */
6442 struct nfs4_fsid_present_res res = {
6443 .renew = 1,
6445 struct rpc_message msg = {
6446 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6447 .rpc_argp = &args,
6448 .rpc_resp = &res,
6449 .rpc_cred = cred,
6451 unsigned long now = jiffies;
6452 int status;
6454 res.fh = nfs_alloc_fhandle();
6455 if (res.fh == NULL)
6456 return -ENOMEM;
6458 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6459 nfs4_set_sequence_privileged(&args.seq_args);
6460 status = nfs4_call_sync_sequence(clnt, server, &msg,
6461 &args.seq_args, &res.seq_res);
6462 nfs_free_fhandle(res.fh);
6463 if (status)
6464 return status;
6466 do_renew_lease(clp, now);
6467 return 0;
6470 #ifdef CONFIG_NFS_V4_1
6473 * This operation also signals the server that this client is
6474 * performing "lease moved" recovery. The server can stop asserting
6475 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
6476 * this operation is identified in the SEQUENCE operation in this
6477 * compound.
6479 static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6481 struct nfs_server *server = NFS_SERVER(inode);
6482 struct rpc_clnt *clnt = server->client;
6483 struct nfs4_fsid_present_arg args = {
6484 .fh = NFS_FH(inode),
6486 struct nfs4_fsid_present_res res = {
6488 struct rpc_message msg = {
6489 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6490 .rpc_argp = &args,
6491 .rpc_resp = &res,
6492 .rpc_cred = cred,
6494 int status;
6496 res.fh = nfs_alloc_fhandle();
6497 if (res.fh == NULL)
6498 return -ENOMEM;
6500 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6501 nfs4_set_sequence_privileged(&args.seq_args);
6502 status = nfs4_call_sync_sequence(clnt, server, &msg,
6503 &args.seq_args, &res.seq_res);
6504 nfs_free_fhandle(res.fh);
6505 if (status == NFS4_OK &&
6506 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6507 status = -NFS4ERR_LEASE_MOVED;
6508 return status;
6511 #endif /* CONFIG_NFS_V4_1 */
6514 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
6515 * @inode: inode on FSID to check
6516 * @cred: credential to use for this operation
6518 * Server indicates whether the FSID is present, moved, or not
6519 * recognized. This operation is necessary to clear a LEASE_MOVED
6520 * condition for this client ID.
6522 * Returns NFS4_OK if the FSID is present on this server,
6523 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
6524 * NFS4ERR code if some error occurred on the server, or a
6525 * negative errno if a local failure occurred.
6527 int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6529 struct nfs_server *server = NFS_SERVER(inode);
6530 struct nfs_client *clp = server->nfs_client;
6531 const struct nfs4_mig_recovery_ops *ops =
6532 clp->cl_mvops->mig_recovery_ops;
6533 struct nfs4_exception exception = { };
6534 int status;
6536 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6537 (unsigned long long)server->fsid.major,
6538 (unsigned long long)server->fsid.minor,
6539 clp->cl_hostname);
6540 nfs_display_fhandle(NFS_FH(inode), __func__);
6542 do {
6543 status = ops->fsid_present(inode, cred);
6544 if (status != -NFS4ERR_DELAY)
6545 break;
6546 nfs4_handle_exception(server, status, &exception);
6547 } while (exception.retry);
6548 return status;
6552 * If 'use_integrity' is true and the state managment nfs_client
6553 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
6554 * and the machine credential as per RFC3530bis and RFC5661 Security
6555 * Considerations sections. Otherwise, just use the user cred with the
6556 * filesystem's rpc_client.
6558 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity)
6560 int status;
6561 struct nfs4_secinfo_arg args = {
6562 .dir_fh = NFS_FH(dir),
6563 .name = name,
6565 struct nfs4_secinfo_res res = {
6566 .flavors = flavors,
6568 struct rpc_message msg = {
6569 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
6570 .rpc_argp = &args,
6571 .rpc_resp = &res,
6573 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
6574 struct rpc_cred *cred = NULL;
6576 if (use_integrity) {
6577 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient;
6578 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client);
6579 msg.rpc_cred = cred;
6582 dprintk("NFS call secinfo %s\n", name->name);
6584 nfs4_state_protect(NFS_SERVER(dir)->nfs_client,
6585 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
6587 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args,
6588 &res.seq_res, 0);
6589 dprintk("NFS reply secinfo: %d\n", status);
6591 if (cred)
6592 put_rpccred(cred);
6594 return status;
6597 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
6598 struct nfs4_secinfo_flavors *flavors)
6600 struct nfs4_exception exception = { };
6601 int err;
6602 do {
6603 err = -NFS4ERR_WRONGSEC;
6605 /* try to use integrity protection with machine cred */
6606 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
6607 err = _nfs4_proc_secinfo(dir, name, flavors, true);
6610 * if unable to use integrity protection, or SECINFO with
6611 * integrity protection returns NFS4ERR_WRONGSEC (which is
6612 * disallowed by spec, but exists in deployed servers) use
6613 * the current filesystem's rpc_client and the user cred.
6615 if (err == -NFS4ERR_WRONGSEC)
6616 err = _nfs4_proc_secinfo(dir, name, flavors, false);
6618 trace_nfs4_secinfo(dir, name, err);
6619 err = nfs4_handle_exception(NFS_SERVER(dir), err,
6620 &exception);
6621 } while (exception.retry);
6622 return err;
6625 #ifdef CONFIG_NFS_V4_1
6627 * Check the exchange flags returned by the server for invalid flags, having
6628 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
6629 * DS flags set.
6631 static int nfs4_check_cl_exchange_flags(u32 flags)
6633 if (flags & ~EXCHGID4_FLAG_MASK_R)
6634 goto out_inval;
6635 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
6636 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
6637 goto out_inval;
6638 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
6639 goto out_inval;
6640 return NFS_OK;
6641 out_inval:
6642 return -NFS4ERR_INVAL;
6645 static bool
6646 nfs41_same_server_scope(struct nfs41_server_scope *a,
6647 struct nfs41_server_scope *b)
6649 if (a->server_scope_sz == b->server_scope_sz &&
6650 memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0)
6651 return true;
6653 return false;
6657 * nfs4_proc_bind_conn_to_session()
6659 * The 4.1 client currently uses the same TCP connection for the
6660 * fore and backchannel.
6662 int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
6664 int status;
6665 struct nfs41_bind_conn_to_session_args args = {
6666 .client = clp,
6667 .dir = NFS4_CDFC4_FORE_OR_BOTH,
6669 struct nfs41_bind_conn_to_session_res res;
6670 struct rpc_message msg = {
6671 .rpc_proc =
6672 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
6673 .rpc_argp = &args,
6674 .rpc_resp = &res,
6675 .rpc_cred = cred,
6678 dprintk("--> %s\n", __func__);
6680 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
6681 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
6682 args.dir = NFS4_CDFC4_FORE;
6684 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
6685 trace_nfs4_bind_conn_to_session(clp, status);
6686 if (status == 0) {
6687 if (memcmp(res.sessionid.data,
6688 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
6689 dprintk("NFS: %s: Session ID mismatch\n", __func__);
6690 status = -EIO;
6691 goto out;
6693 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
6694 dprintk("NFS: %s: Unexpected direction from server\n",
6695 __func__);
6696 status = -EIO;
6697 goto out;
6699 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
6700 dprintk("NFS: %s: Server returned RDMA mode = true\n",
6701 __func__);
6702 status = -EIO;
6703 goto out;
6706 out:
6707 dprintk("<-- %s status= %d\n", __func__, status);
6708 return status;
6712 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
6713 * and operations we'd like to see to enable certain features in the allow map
6715 static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
6716 .how = SP4_MACH_CRED,
6717 .enforce.u.words = {
6718 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
6719 1 << (OP_EXCHANGE_ID - 32) |
6720 1 << (OP_CREATE_SESSION - 32) |
6721 1 << (OP_DESTROY_SESSION - 32) |
6722 1 << (OP_DESTROY_CLIENTID - 32)
6724 .allow.u.words = {
6725 [0] = 1 << (OP_CLOSE) |
6726 1 << (OP_LOCKU) |
6727 1 << (OP_COMMIT),
6728 [1] = 1 << (OP_SECINFO - 32) |
6729 1 << (OP_SECINFO_NO_NAME - 32) |
6730 1 << (OP_TEST_STATEID - 32) |
6731 1 << (OP_FREE_STATEID - 32) |
6732 1 << (OP_WRITE - 32)
6737 * Select the state protection mode for client `clp' given the server results
6738 * from exchange_id in `sp'.
6740 * Returns 0 on success, negative errno otherwise.
6742 static int nfs4_sp4_select_mode(struct nfs_client *clp,
6743 struct nfs41_state_protection *sp)
6745 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
6746 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
6747 1 << (OP_EXCHANGE_ID - 32) |
6748 1 << (OP_CREATE_SESSION - 32) |
6749 1 << (OP_DESTROY_SESSION - 32) |
6750 1 << (OP_DESTROY_CLIENTID - 32)
6752 unsigned int i;
6754 if (sp->how == SP4_MACH_CRED) {
6755 /* Print state protect result */
6756 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
6757 for (i = 0; i <= LAST_NFS4_OP; i++) {
6758 if (test_bit(i, sp->enforce.u.longs))
6759 dfprintk(MOUNT, " enforce op %d\n", i);
6760 if (test_bit(i, sp->allow.u.longs))
6761 dfprintk(MOUNT, " allow op %d\n", i);
6764 /* make sure nothing is on enforce list that isn't supported */
6765 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
6766 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
6767 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
6768 return -EINVAL;
6773 * Minimal mode - state operations are allowed to use machine
6774 * credential. Note this already happens by default, so the
6775 * client doesn't have to do anything more than the negotiation.
6777 * NOTE: we don't care if EXCHANGE_ID is in the list -
6778 * we're already using the machine cred for exchange_id
6779 * and will never use a different cred.
6781 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
6782 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
6783 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
6784 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
6785 dfprintk(MOUNT, "sp4_mach_cred:\n");
6786 dfprintk(MOUNT, " minimal mode enabled\n");
6787 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags);
6788 } else {
6789 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
6790 return -EINVAL;
6793 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
6794 test_bit(OP_LOCKU, sp->allow.u.longs)) {
6795 dfprintk(MOUNT, " cleanup mode enabled\n");
6796 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags);
6799 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
6800 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
6801 dfprintk(MOUNT, " secinfo mode enabled\n");
6802 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
6805 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
6806 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
6807 dfprintk(MOUNT, " stateid mode enabled\n");
6808 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
6811 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
6812 dfprintk(MOUNT, " write mode enabled\n");
6813 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags);
6816 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
6817 dfprintk(MOUNT, " commit mode enabled\n");
6818 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags);
6822 return 0;
6826 * _nfs4_proc_exchange_id()
6828 * Wrapper for EXCHANGE_ID operation.
6830 static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred,
6831 u32 sp4_how)
6833 nfs4_verifier verifier;
6834 struct nfs41_exchange_id_args args = {
6835 .verifier = &verifier,
6836 .client = clp,
6837 #ifdef CONFIG_NFS_V4_1_MIGRATION
6838 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
6839 EXCHGID4_FLAG_BIND_PRINC_STATEID |
6840 EXCHGID4_FLAG_SUPP_MOVED_MIGR,
6841 #else
6842 .flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
6843 EXCHGID4_FLAG_BIND_PRINC_STATEID,
6844 #endif
6846 struct nfs41_exchange_id_res res = {
6849 int status;
6850 struct rpc_message msg = {
6851 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
6852 .rpc_argp = &args,
6853 .rpc_resp = &res,
6854 .rpc_cred = cred,
6857 nfs4_init_boot_verifier(clp, &verifier);
6858 args.id_len = nfs4_init_uniform_client_string(clp, args.id,
6859 sizeof(args.id));
6860 dprintk("NFS call exchange_id auth=%s, '%.*s'\n",
6861 clp->cl_rpcclient->cl_auth->au_ops->au_name,
6862 args.id_len, args.id);
6864 res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
6865 GFP_NOFS);
6866 if (unlikely(res.server_owner == NULL)) {
6867 status = -ENOMEM;
6868 goto out;
6871 res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
6872 GFP_NOFS);
6873 if (unlikely(res.server_scope == NULL)) {
6874 status = -ENOMEM;
6875 goto out_server_owner;
6878 res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
6879 if (unlikely(res.impl_id == NULL)) {
6880 status = -ENOMEM;
6881 goto out_server_scope;
6884 switch (sp4_how) {
6885 case SP4_NONE:
6886 args.state_protect.how = SP4_NONE;
6887 break;
6889 case SP4_MACH_CRED:
6890 args.state_protect = nfs4_sp4_mach_cred_request;
6891 break;
6893 default:
6894 /* unsupported! */
6895 WARN_ON_ONCE(1);
6896 status = -EINVAL;
6897 goto out_server_scope;
6900 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
6901 trace_nfs4_exchange_id(clp, status);
6902 if (status == 0)
6903 status = nfs4_check_cl_exchange_flags(res.flags);
6905 if (status == 0)
6906 status = nfs4_sp4_select_mode(clp, &res.state_protect);
6908 if (status == 0) {
6909 clp->cl_clientid = res.clientid;
6910 clp->cl_exchange_flags = res.flags;
6911 /* Client ID is not confirmed */
6912 if (!(res.flags & EXCHGID4_FLAG_CONFIRMED_R)) {
6913 clear_bit(NFS4_SESSION_ESTABLISHED,
6914 &clp->cl_session->session_state);
6915 clp->cl_seqid = res.seqid;
6918 kfree(clp->cl_serverowner);
6919 clp->cl_serverowner = res.server_owner;
6920 res.server_owner = NULL;
6922 /* use the most recent implementation id */
6923 kfree(clp->cl_implid);
6924 clp->cl_implid = res.impl_id;
6926 if (clp->cl_serverscope != NULL &&
6927 !nfs41_same_server_scope(clp->cl_serverscope,
6928 res.server_scope)) {
6929 dprintk("%s: server_scope mismatch detected\n",
6930 __func__);
6931 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
6932 kfree(clp->cl_serverscope);
6933 clp->cl_serverscope = NULL;
6936 if (clp->cl_serverscope == NULL) {
6937 clp->cl_serverscope = res.server_scope;
6938 goto out;
6940 } else
6941 kfree(res.impl_id);
6943 out_server_owner:
6944 kfree(res.server_owner);
6945 out_server_scope:
6946 kfree(res.server_scope);
6947 out:
6948 if (clp->cl_implid != NULL)
6949 dprintk("NFS reply exchange_id: Server Implementation ID: "
6950 "domain: %s, name: %s, date: %llu,%u\n",
6951 clp->cl_implid->domain, clp->cl_implid->name,
6952 clp->cl_implid->date.seconds,
6953 clp->cl_implid->date.nseconds);
6954 dprintk("NFS reply exchange_id: %d\n", status);
6955 return status;
6959 * nfs4_proc_exchange_id()
6961 * Returns zero, a negative errno, or a negative NFS4ERR status code.
6963 * Since the clientid has expired, all compounds using sessions
6964 * associated with the stale clientid will be returning
6965 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
6966 * be in some phase of session reset.
6968 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
6970 int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
6972 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
6973 int status;
6975 /* try SP4_MACH_CRED if krb5i/p */
6976 if (authflavor == RPC_AUTH_GSS_KRB5I ||
6977 authflavor == RPC_AUTH_GSS_KRB5P) {
6978 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED);
6979 if (!status)
6980 return 0;
6983 /* try SP4_NONE */
6984 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE);
6987 static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
6988 struct rpc_cred *cred)
6990 struct rpc_message msg = {
6991 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
6992 .rpc_argp = clp,
6993 .rpc_cred = cred,
6995 int status;
6997 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
6998 trace_nfs4_destroy_clientid(clp, status);
6999 if (status)
7000 dprintk("NFS: Got error %d from the server %s on "
7001 "DESTROY_CLIENTID.", status, clp->cl_hostname);
7002 return status;
7005 static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
7006 struct rpc_cred *cred)
7008 unsigned int loop;
7009 int ret;
7011 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
7012 ret = _nfs4_proc_destroy_clientid(clp, cred);
7013 switch (ret) {
7014 case -NFS4ERR_DELAY:
7015 case -NFS4ERR_CLIENTID_BUSY:
7016 ssleep(1);
7017 break;
7018 default:
7019 return ret;
7022 return 0;
7025 int nfs4_destroy_clientid(struct nfs_client *clp)
7027 struct rpc_cred *cred;
7028 int ret = 0;
7030 if (clp->cl_mvops->minor_version < 1)
7031 goto out;
7032 if (clp->cl_exchange_flags == 0)
7033 goto out;
7034 if (clp->cl_preserve_clid)
7035 goto out;
7036 cred = nfs4_get_clid_cred(clp);
7037 ret = nfs4_proc_destroy_clientid(clp, cred);
7038 if (cred)
7039 put_rpccred(cred);
7040 switch (ret) {
7041 case 0:
7042 case -NFS4ERR_STALE_CLIENTID:
7043 clp->cl_exchange_flags = 0;
7045 out:
7046 return ret;
7049 struct nfs4_get_lease_time_data {
7050 struct nfs4_get_lease_time_args *args;
7051 struct nfs4_get_lease_time_res *res;
7052 struct nfs_client *clp;
7055 static void nfs4_get_lease_time_prepare(struct rpc_task *task,
7056 void *calldata)
7058 struct nfs4_get_lease_time_data *data =
7059 (struct nfs4_get_lease_time_data *)calldata;
7061 dprintk("--> %s\n", __func__);
7062 /* just setup sequence, do not trigger session recovery
7063 since we're invoked within one */
7064 nfs41_setup_sequence(data->clp->cl_session,
7065 &data->args->la_seq_args,
7066 &data->res->lr_seq_res,
7067 task);
7068 dprintk("<-- %s\n", __func__);
7072 * Called from nfs4_state_manager thread for session setup, so don't recover
7073 * from sequence operation or clientid errors.
7075 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
7077 struct nfs4_get_lease_time_data *data =
7078 (struct nfs4_get_lease_time_data *)calldata;
7080 dprintk("--> %s\n", __func__);
7081 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
7082 return;
7083 switch (task->tk_status) {
7084 case -NFS4ERR_DELAY:
7085 case -NFS4ERR_GRACE:
7086 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
7087 rpc_delay(task, NFS4_POLL_RETRY_MIN);
7088 task->tk_status = 0;
7089 /* fall through */
7090 case -NFS4ERR_RETRY_UNCACHED_REP:
7091 rpc_restart_call_prepare(task);
7092 return;
7094 dprintk("<-- %s\n", __func__);
7097 static const struct rpc_call_ops nfs4_get_lease_time_ops = {
7098 .rpc_call_prepare = nfs4_get_lease_time_prepare,
7099 .rpc_call_done = nfs4_get_lease_time_done,
7102 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
7104 struct rpc_task *task;
7105 struct nfs4_get_lease_time_args args;
7106 struct nfs4_get_lease_time_res res = {
7107 .lr_fsinfo = fsinfo,
7109 struct nfs4_get_lease_time_data data = {
7110 .args = &args,
7111 .res = &res,
7112 .clp = clp,
7114 struct rpc_message msg = {
7115 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
7116 .rpc_argp = &args,
7117 .rpc_resp = &res,
7119 struct rpc_task_setup task_setup = {
7120 .rpc_client = clp->cl_rpcclient,
7121 .rpc_message = &msg,
7122 .callback_ops = &nfs4_get_lease_time_ops,
7123 .callback_data = &data,
7124 .flags = RPC_TASK_TIMEOUT,
7126 int status;
7128 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
7129 nfs4_set_sequence_privileged(&args.la_seq_args);
7130 dprintk("--> %s\n", __func__);
7131 task = rpc_run_task(&task_setup);
7133 if (IS_ERR(task))
7134 status = PTR_ERR(task);
7135 else {
7136 status = task->tk_status;
7137 rpc_put_task(task);
7139 dprintk("<-- %s return %d\n", __func__, status);
7141 return status;
7145 * Initialize the values to be used by the client in CREATE_SESSION
7146 * If nfs4_init_session set the fore channel request and response sizes,
7147 * use them.
7149 * Set the back channel max_resp_sz_cached to zero to force the client to
7150 * always set csa_cachethis to FALSE because the current implementation
7151 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
7153 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args)
7155 unsigned int max_rqst_sz, max_resp_sz;
7157 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
7158 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
7160 /* Fore channel attributes */
7161 args->fc_attrs.max_rqst_sz = max_rqst_sz;
7162 args->fc_attrs.max_resp_sz = max_resp_sz;
7163 args->fc_attrs.max_ops = NFS4_MAX_OPS;
7164 args->fc_attrs.max_reqs = max_session_slots;
7166 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
7167 "max_ops=%u max_reqs=%u\n",
7168 __func__,
7169 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
7170 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
7172 /* Back channel attributes */
7173 args->bc_attrs.max_rqst_sz = PAGE_SIZE;
7174 args->bc_attrs.max_resp_sz = PAGE_SIZE;
7175 args->bc_attrs.max_resp_sz_cached = 0;
7176 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
7177 args->bc_attrs.max_reqs = 1;
7179 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
7180 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
7181 __func__,
7182 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
7183 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
7184 args->bc_attrs.max_reqs);
7187 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
7188 struct nfs41_create_session_res *res)
7190 struct nfs4_channel_attrs *sent = &args->fc_attrs;
7191 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
7193 if (rcvd->max_resp_sz > sent->max_resp_sz)
7194 return -EINVAL;
7196 * Our requested max_ops is the minimum we need; we're not
7197 * prepared to break up compounds into smaller pieces than that.
7198 * So, no point even trying to continue if the server won't
7199 * cooperate:
7201 if (rcvd->max_ops < sent->max_ops)
7202 return -EINVAL;
7203 if (rcvd->max_reqs == 0)
7204 return -EINVAL;
7205 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
7206 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
7207 return 0;
7210 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
7211 struct nfs41_create_session_res *res)
7213 struct nfs4_channel_attrs *sent = &args->bc_attrs;
7214 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
7216 if (!(res->flags & SESSION4_BACK_CHAN))
7217 goto out;
7218 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
7219 return -EINVAL;
7220 if (rcvd->max_resp_sz < sent->max_resp_sz)
7221 return -EINVAL;
7222 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
7223 return -EINVAL;
7224 /* These would render the backchannel useless: */
7225 if (rcvd->max_ops != sent->max_ops)
7226 return -EINVAL;
7227 if (rcvd->max_reqs != sent->max_reqs)
7228 return -EINVAL;
7229 out:
7230 return 0;
7233 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
7234 struct nfs41_create_session_res *res)
7236 int ret;
7238 ret = nfs4_verify_fore_channel_attrs(args, res);
7239 if (ret)
7240 return ret;
7241 return nfs4_verify_back_channel_attrs(args, res);
7244 static void nfs4_update_session(struct nfs4_session *session,
7245 struct nfs41_create_session_res *res)
7247 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
7248 /* Mark client id and session as being confirmed */
7249 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
7250 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
7251 session->flags = res->flags;
7252 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
7253 if (res->flags & SESSION4_BACK_CHAN)
7254 memcpy(&session->bc_attrs, &res->bc_attrs,
7255 sizeof(session->bc_attrs));
7258 static int _nfs4_proc_create_session(struct nfs_client *clp,
7259 struct rpc_cred *cred)
7261 struct nfs4_session *session = clp->cl_session;
7262 struct nfs41_create_session_args args = {
7263 .client = clp,
7264 .clientid = clp->cl_clientid,
7265 .seqid = clp->cl_seqid,
7266 .cb_program = NFS4_CALLBACK,
7268 struct nfs41_create_session_res res;
7270 struct rpc_message msg = {
7271 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
7272 .rpc_argp = &args,
7273 .rpc_resp = &res,
7274 .rpc_cred = cred,
7276 int status;
7278 nfs4_init_channel_attrs(&args);
7279 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
7281 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
7282 trace_nfs4_create_session(clp, status);
7284 switch (status) {
7285 case -NFS4ERR_STALE_CLIENTID:
7286 case -NFS4ERR_DELAY:
7287 case -ETIMEDOUT:
7288 case -EACCES:
7289 case -EAGAIN:
7290 goto out;
7293 clp->cl_seqid++;
7294 if (!status) {
7295 /* Verify the session's negotiated channel_attrs values */
7296 status = nfs4_verify_channel_attrs(&args, &res);
7297 /* Increment the clientid slot sequence id */
7298 if (status)
7299 goto out;
7300 nfs4_update_session(session, &res);
7302 out:
7303 return status;
7307 * Issues a CREATE_SESSION operation to the server.
7308 * It is the responsibility of the caller to verify the session is
7309 * expired before calling this routine.
7311 int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
7313 int status;
7314 unsigned *ptr;
7315 struct nfs4_session *session = clp->cl_session;
7317 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
7319 status = _nfs4_proc_create_session(clp, cred);
7320 if (status)
7321 goto out;
7323 /* Init or reset the session slot tables */
7324 status = nfs4_setup_session_slot_tables(session);
7325 dprintk("slot table setup returned %d\n", status);
7326 if (status)
7327 goto out;
7329 ptr = (unsigned *)&session->sess_id.data[0];
7330 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
7331 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
7332 out:
7333 dprintk("<-- %s\n", __func__);
7334 return status;
7338 * Issue the over-the-wire RPC DESTROY_SESSION.
7339 * The caller must serialize access to this routine.
7341 int nfs4_proc_destroy_session(struct nfs4_session *session,
7342 struct rpc_cred *cred)
7344 struct rpc_message msg = {
7345 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
7346 .rpc_argp = session,
7347 .rpc_cred = cred,
7349 int status = 0;
7351 dprintk("--> nfs4_proc_destroy_session\n");
7353 /* session is still being setup */
7354 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
7355 return 0;
7357 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
7358 trace_nfs4_destroy_session(session->clp, status);
7360 if (status)
7361 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
7362 "Session has been destroyed regardless...\n", status);
7364 dprintk("<-- nfs4_proc_destroy_session\n");
7365 return status;
7369 * Renew the cl_session lease.
7371 struct nfs4_sequence_data {
7372 struct nfs_client *clp;
7373 struct nfs4_sequence_args args;
7374 struct nfs4_sequence_res res;
7377 static void nfs41_sequence_release(void *data)
7379 struct nfs4_sequence_data *calldata = data;
7380 struct nfs_client *clp = calldata->clp;
7382 if (atomic_read(&clp->cl_count) > 1)
7383 nfs4_schedule_state_renewal(clp);
7384 nfs_put_client(clp);
7385 kfree(calldata);
7388 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
7390 switch(task->tk_status) {
7391 case -NFS4ERR_DELAY:
7392 rpc_delay(task, NFS4_POLL_RETRY_MAX);
7393 return -EAGAIN;
7394 default:
7395 nfs4_schedule_lease_recovery(clp);
7397 return 0;
7400 static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
7402 struct nfs4_sequence_data *calldata = data;
7403 struct nfs_client *clp = calldata->clp;
7405 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
7406 return;
7408 trace_nfs4_sequence(clp, task->tk_status);
7409 if (task->tk_status < 0) {
7410 dprintk("%s ERROR %d\n", __func__, task->tk_status);
7411 if (atomic_read(&clp->cl_count) == 1)
7412 goto out;
7414 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
7415 rpc_restart_call_prepare(task);
7416 return;
7419 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
7420 out:
7421 dprintk("<-- %s\n", __func__);
7424 static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
7426 struct nfs4_sequence_data *calldata = data;
7427 struct nfs_client *clp = calldata->clp;
7428 struct nfs4_sequence_args *args;
7429 struct nfs4_sequence_res *res;
7431 args = task->tk_msg.rpc_argp;
7432 res = task->tk_msg.rpc_resp;
7434 nfs41_setup_sequence(clp->cl_session, args, res, task);
7437 static const struct rpc_call_ops nfs41_sequence_ops = {
7438 .rpc_call_done = nfs41_sequence_call_done,
7439 .rpc_call_prepare = nfs41_sequence_prepare,
7440 .rpc_release = nfs41_sequence_release,
7443 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
7444 struct rpc_cred *cred,
7445 bool is_privileged)
7447 struct nfs4_sequence_data *calldata;
7448 struct rpc_message msg = {
7449 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
7450 .rpc_cred = cred,
7452 struct rpc_task_setup task_setup_data = {
7453 .rpc_client = clp->cl_rpcclient,
7454 .rpc_message = &msg,
7455 .callback_ops = &nfs41_sequence_ops,
7456 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
7459 if (!atomic_inc_not_zero(&clp->cl_count))
7460 return ERR_PTR(-EIO);
7461 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
7462 if (calldata == NULL) {
7463 nfs_put_client(clp);
7464 return ERR_PTR(-ENOMEM);
7466 nfs4_init_sequence(&calldata->args, &calldata->res, 0);
7467 if (is_privileged)
7468 nfs4_set_sequence_privileged(&calldata->args);
7469 msg.rpc_argp = &calldata->args;
7470 msg.rpc_resp = &calldata->res;
7471 calldata->clp = clp;
7472 task_setup_data.callback_data = calldata;
7474 return rpc_run_task(&task_setup_data);
7477 static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
7479 struct rpc_task *task;
7480 int ret = 0;
7482 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
7483 return -EAGAIN;
7484 task = _nfs41_proc_sequence(clp, cred, false);
7485 if (IS_ERR(task))
7486 ret = PTR_ERR(task);
7487 else
7488 rpc_put_task_async(task);
7489 dprintk("<-- %s status=%d\n", __func__, ret);
7490 return ret;
7493 static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
7495 struct rpc_task *task;
7496 int ret;
7498 task = _nfs41_proc_sequence(clp, cred, true);
7499 if (IS_ERR(task)) {
7500 ret = PTR_ERR(task);
7501 goto out;
7503 ret = rpc_wait_for_completion_task(task);
7504 if (!ret) {
7505 struct nfs4_sequence_res *res = task->tk_msg.rpc_resp;
7507 if (task->tk_status == 0)
7508 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags);
7509 ret = task->tk_status;
7511 rpc_put_task(task);
7512 out:
7513 dprintk("<-- %s status=%d\n", __func__, ret);
7514 return ret;
7517 struct nfs4_reclaim_complete_data {
7518 struct nfs_client *clp;
7519 struct nfs41_reclaim_complete_args arg;
7520 struct nfs41_reclaim_complete_res res;
7523 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
7525 struct nfs4_reclaim_complete_data *calldata = data;
7527 nfs41_setup_sequence(calldata->clp->cl_session,
7528 &calldata->arg.seq_args,
7529 &calldata->res.seq_res,
7530 task);
7533 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
7535 switch(task->tk_status) {
7536 case 0:
7537 case -NFS4ERR_COMPLETE_ALREADY:
7538 case -NFS4ERR_WRONG_CRED: /* What to do here? */
7539 break;
7540 case -NFS4ERR_DELAY:
7541 rpc_delay(task, NFS4_POLL_RETRY_MAX);
7542 /* fall through */
7543 case -NFS4ERR_RETRY_UNCACHED_REP:
7544 return -EAGAIN;
7545 default:
7546 nfs4_schedule_lease_recovery(clp);
7548 return 0;
7551 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
7553 struct nfs4_reclaim_complete_data *calldata = data;
7554 struct nfs_client *clp = calldata->clp;
7555 struct nfs4_sequence_res *res = &calldata->res.seq_res;
7557 dprintk("--> %s\n", __func__);
7558 if (!nfs41_sequence_done(task, res))
7559 return;
7561 trace_nfs4_reclaim_complete(clp, task->tk_status);
7562 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
7563 rpc_restart_call_prepare(task);
7564 return;
7566 dprintk("<-- %s\n", __func__);
7569 static void nfs4_free_reclaim_complete_data(void *data)
7571 struct nfs4_reclaim_complete_data *calldata = data;
7573 kfree(calldata);
7576 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
7577 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
7578 .rpc_call_done = nfs4_reclaim_complete_done,
7579 .rpc_release = nfs4_free_reclaim_complete_data,
7583 * Issue a global reclaim complete.
7585 static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
7586 struct rpc_cred *cred)
7588 struct nfs4_reclaim_complete_data *calldata;
7589 struct rpc_task *task;
7590 struct rpc_message msg = {
7591 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
7592 .rpc_cred = cred,
7594 struct rpc_task_setup task_setup_data = {
7595 .rpc_client = clp->cl_rpcclient,
7596 .rpc_message = &msg,
7597 .callback_ops = &nfs4_reclaim_complete_call_ops,
7598 .flags = RPC_TASK_ASYNC,
7600 int status = -ENOMEM;
7602 dprintk("--> %s\n", __func__);
7603 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
7604 if (calldata == NULL)
7605 goto out;
7606 calldata->clp = clp;
7607 calldata->arg.one_fs = 0;
7609 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
7610 nfs4_set_sequence_privileged(&calldata->arg.seq_args);
7611 msg.rpc_argp = &calldata->arg;
7612 msg.rpc_resp = &calldata->res;
7613 task_setup_data.callback_data = calldata;
7614 task = rpc_run_task(&task_setup_data);
7615 if (IS_ERR(task)) {
7616 status = PTR_ERR(task);
7617 goto out;
7619 status = nfs4_wait_for_completion_rpc_task(task);
7620 if (status == 0)
7621 status = task->tk_status;
7622 rpc_put_task(task);
7623 return 0;
7624 out:
7625 dprintk("<-- %s status=%d\n", __func__, status);
7626 return status;
7629 static void
7630 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
7632 struct nfs4_layoutget *lgp = calldata;
7633 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
7634 struct nfs4_session *session = nfs4_get_session(server);
7636 dprintk("--> %s\n", __func__);
7637 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
7638 * right now covering the LAYOUTGET we are about to send.
7639 * However, that is not so catastrophic, and there seems
7640 * to be no way to prevent it completely.
7642 if (nfs41_setup_sequence(session, &lgp->args.seq_args,
7643 &lgp->res.seq_res, task))
7644 return;
7645 if (pnfs_choose_layoutget_stateid(&lgp->args.stateid,
7646 NFS_I(lgp->args.inode)->layout,
7647 &lgp->args.range,
7648 lgp->args.ctx->state)) {
7649 rpc_exit(task, NFS4_OK);
7653 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
7655 struct nfs4_layoutget *lgp = calldata;
7656 struct inode *inode = lgp->args.inode;
7657 struct nfs_server *server = NFS_SERVER(inode);
7658 struct pnfs_layout_hdr *lo;
7659 struct nfs4_state *state = NULL;
7660 unsigned long timeo, now, giveup;
7662 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
7664 if (!nfs41_sequence_done(task, &lgp->res.seq_res))
7665 goto out;
7667 switch (task->tk_status) {
7668 case 0:
7669 goto out;
7671 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
7672 * (or clients) writing to the same RAID stripe
7674 case -NFS4ERR_LAYOUTTRYLATER:
7676 * NFS4ERR_RECALLCONFLICT is when conflict with self (must recall
7677 * existing layout before getting a new one).
7679 case -NFS4ERR_RECALLCONFLICT:
7680 timeo = rpc_get_timeout(task->tk_client);
7681 giveup = lgp->args.timestamp + timeo;
7682 now = jiffies;
7683 if (time_after(giveup, now)) {
7684 unsigned long delay;
7686 /* Delay for:
7687 * - Not less then NFS4_POLL_RETRY_MIN.
7688 * - One last time a jiffie before we give up
7689 * - exponential backoff (time_now minus start_attempt)
7691 delay = max_t(unsigned long, NFS4_POLL_RETRY_MIN,
7692 min((giveup - now - 1),
7693 now - lgp->args.timestamp));
7695 dprintk("%s: NFS4ERR_RECALLCONFLICT waiting %lu\n",
7696 __func__, delay);
7697 rpc_delay(task, delay);
7698 task->tk_status = 0;
7699 rpc_restart_call_prepare(task);
7700 goto out; /* Do not call nfs4_async_handle_error() */
7702 break;
7703 case -NFS4ERR_EXPIRED:
7704 case -NFS4ERR_BAD_STATEID:
7705 spin_lock(&inode->i_lock);
7706 lo = NFS_I(inode)->layout;
7707 if (!lo || list_empty(&lo->plh_segs)) {
7708 spin_unlock(&inode->i_lock);
7709 /* If the open stateid was bad, then recover it. */
7710 state = lgp->args.ctx->state;
7711 } else {
7712 LIST_HEAD(head);
7715 * Mark the bad layout state as invalid, then retry
7716 * with the current stateid.
7718 pnfs_mark_matching_lsegs_invalid(lo, &head, NULL);
7719 spin_unlock(&inode->i_lock);
7720 pnfs_free_lseg_list(&head);
7722 task->tk_status = 0;
7723 rpc_restart_call_prepare(task);
7726 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN)
7727 rpc_restart_call_prepare(task);
7728 out:
7729 dprintk("<-- %s\n", __func__);
7732 static size_t max_response_pages(struct nfs_server *server)
7734 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
7735 return nfs_page_array_len(0, max_resp_sz);
7738 static void nfs4_free_pages(struct page **pages, size_t size)
7740 int i;
7742 if (!pages)
7743 return;
7745 for (i = 0; i < size; i++) {
7746 if (!pages[i])
7747 break;
7748 __free_page(pages[i]);
7750 kfree(pages);
7753 static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags)
7755 struct page **pages;
7756 int i;
7758 pages = kcalloc(size, sizeof(struct page *), gfp_flags);
7759 if (!pages) {
7760 dprintk("%s: can't alloc array of %zu pages\n", __func__, size);
7761 return NULL;
7764 for (i = 0; i < size; i++) {
7765 pages[i] = alloc_page(gfp_flags);
7766 if (!pages[i]) {
7767 dprintk("%s: failed to allocate page\n", __func__);
7768 nfs4_free_pages(pages, size);
7769 return NULL;
7773 return pages;
7776 static void nfs4_layoutget_release(void *calldata)
7778 struct nfs4_layoutget *lgp = calldata;
7779 struct inode *inode = lgp->args.inode;
7780 struct nfs_server *server = NFS_SERVER(inode);
7781 size_t max_pages = max_response_pages(server);
7783 dprintk("--> %s\n", __func__);
7784 nfs4_free_pages(lgp->args.layout.pages, max_pages);
7785 pnfs_put_layout_hdr(NFS_I(inode)->layout);
7786 put_nfs_open_context(lgp->args.ctx);
7787 kfree(calldata);
7788 dprintk("<-- %s\n", __func__);
7791 static const struct rpc_call_ops nfs4_layoutget_call_ops = {
7792 .rpc_call_prepare = nfs4_layoutget_prepare,
7793 .rpc_call_done = nfs4_layoutget_done,
7794 .rpc_release = nfs4_layoutget_release,
7797 struct pnfs_layout_segment *
7798 nfs4_proc_layoutget(struct nfs4_layoutget *lgp, gfp_t gfp_flags)
7800 struct inode *inode = lgp->args.inode;
7801 struct nfs_server *server = NFS_SERVER(inode);
7802 size_t max_pages = max_response_pages(server);
7803 struct rpc_task *task;
7804 struct rpc_message msg = {
7805 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
7806 .rpc_argp = &lgp->args,
7807 .rpc_resp = &lgp->res,
7808 .rpc_cred = lgp->cred,
7810 struct rpc_task_setup task_setup_data = {
7811 .rpc_client = server->client,
7812 .rpc_message = &msg,
7813 .callback_ops = &nfs4_layoutget_call_ops,
7814 .callback_data = lgp,
7815 .flags = RPC_TASK_ASYNC,
7817 struct pnfs_layout_segment *lseg = NULL;
7818 int status = 0;
7820 dprintk("--> %s\n", __func__);
7822 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
7823 pnfs_get_layout_hdr(NFS_I(inode)->layout);
7825 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags);
7826 if (!lgp->args.layout.pages) {
7827 nfs4_layoutget_release(lgp);
7828 return ERR_PTR(-ENOMEM);
7830 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
7831 lgp->args.timestamp = jiffies;
7833 lgp->res.layoutp = &lgp->args.layout;
7834 lgp->res.seq_res.sr_slot = NULL;
7835 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
7837 task = rpc_run_task(&task_setup_data);
7838 if (IS_ERR(task))
7839 return ERR_CAST(task);
7840 status = nfs4_wait_for_completion_rpc_task(task);
7841 if (status == 0)
7842 status = task->tk_status;
7843 trace_nfs4_layoutget(lgp->args.ctx,
7844 &lgp->args.range,
7845 &lgp->res.range,
7846 status);
7847 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */
7848 if (status == 0 && lgp->res.layoutp->len)
7849 lseg = pnfs_layout_process(lgp);
7850 rpc_put_task(task);
7851 dprintk("<-- %s status=%d\n", __func__, status);
7852 if (status)
7853 return ERR_PTR(status);
7854 return lseg;
7857 static void
7858 nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
7860 struct nfs4_layoutreturn *lrp = calldata;
7862 dprintk("--> %s\n", __func__);
7863 nfs41_setup_sequence(lrp->clp->cl_session,
7864 &lrp->args.seq_args,
7865 &lrp->res.seq_res,
7866 task);
7869 static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
7871 struct nfs4_layoutreturn *lrp = calldata;
7872 struct nfs_server *server;
7874 dprintk("--> %s\n", __func__);
7876 if (!nfs41_sequence_done(task, &lrp->res.seq_res))
7877 return;
7879 server = NFS_SERVER(lrp->args.inode);
7880 switch (task->tk_status) {
7881 default:
7882 task->tk_status = 0;
7883 case 0:
7884 break;
7885 case -NFS4ERR_DELAY:
7886 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
7887 break;
7888 rpc_restart_call_prepare(task);
7889 return;
7891 dprintk("<-- %s\n", __func__);
7894 static void nfs4_layoutreturn_release(void *calldata)
7896 struct nfs4_layoutreturn *lrp = calldata;
7897 struct pnfs_layout_hdr *lo = lrp->args.layout;
7899 dprintk("--> %s\n", __func__);
7900 spin_lock(&lo->plh_inode->i_lock);
7901 if (lrp->res.lrs_present)
7902 pnfs_set_layout_stateid(lo, &lrp->res.stateid, true);
7903 pnfs_clear_layoutreturn_waitbit(lo);
7904 clear_bit(NFS_LAYOUT_RETURN_BEFORE_CLOSE, &lo->plh_flags);
7905 rpc_wake_up(&NFS_SERVER(lo->plh_inode)->roc_rpcwaitq);
7906 lo->plh_block_lgets--;
7907 spin_unlock(&lo->plh_inode->i_lock);
7908 pnfs_put_layout_hdr(lrp->args.layout);
7909 nfs_iput_and_deactive(lrp->inode);
7910 kfree(calldata);
7911 dprintk("<-- %s\n", __func__);
7914 static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
7915 .rpc_call_prepare = nfs4_layoutreturn_prepare,
7916 .rpc_call_done = nfs4_layoutreturn_done,
7917 .rpc_release = nfs4_layoutreturn_release,
7920 int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
7922 struct rpc_task *task;
7923 struct rpc_message msg = {
7924 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
7925 .rpc_argp = &lrp->args,
7926 .rpc_resp = &lrp->res,
7927 .rpc_cred = lrp->cred,
7929 struct rpc_task_setup task_setup_data = {
7930 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
7931 .rpc_message = &msg,
7932 .callback_ops = &nfs4_layoutreturn_call_ops,
7933 .callback_data = lrp,
7935 int status = 0;
7937 dprintk("--> %s\n", __func__);
7938 if (!sync) {
7939 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
7940 if (!lrp->inode) {
7941 nfs4_layoutreturn_release(lrp);
7942 return -EAGAIN;
7944 task_setup_data.flags |= RPC_TASK_ASYNC;
7946 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
7947 task = rpc_run_task(&task_setup_data);
7948 if (IS_ERR(task))
7949 return PTR_ERR(task);
7950 if (sync)
7951 status = task->tk_status;
7952 trace_nfs4_layoutreturn(lrp->args.inode, status);
7953 dprintk("<-- %s status=%d\n", __func__, status);
7954 rpc_put_task(task);
7955 return status;
7958 static int
7959 _nfs4_proc_getdeviceinfo(struct nfs_server *server,
7960 struct pnfs_device *pdev,
7961 struct rpc_cred *cred)
7963 struct nfs4_getdeviceinfo_args args = {
7964 .pdev = pdev,
7965 .notify_types = NOTIFY_DEVICEID4_CHANGE |
7966 NOTIFY_DEVICEID4_DELETE,
7968 struct nfs4_getdeviceinfo_res res = {
7969 .pdev = pdev,
7971 struct rpc_message msg = {
7972 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
7973 .rpc_argp = &args,
7974 .rpc_resp = &res,
7975 .rpc_cred = cred,
7977 int status;
7979 dprintk("--> %s\n", __func__);
7980 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
7981 if (res.notification & ~args.notify_types)
7982 dprintk("%s: unsupported notification\n", __func__);
7983 if (res.notification != args.notify_types)
7984 pdev->nocache = 1;
7986 dprintk("<-- %s status=%d\n", __func__, status);
7988 return status;
7991 int nfs4_proc_getdeviceinfo(struct nfs_server *server,
7992 struct pnfs_device *pdev,
7993 struct rpc_cred *cred)
7995 struct nfs4_exception exception = { };
7996 int err;
7998 do {
7999 err = nfs4_handle_exception(server,
8000 _nfs4_proc_getdeviceinfo(server, pdev, cred),
8001 &exception);
8002 } while (exception.retry);
8003 return err;
8005 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
8007 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
8009 struct nfs4_layoutcommit_data *data = calldata;
8010 struct nfs_server *server = NFS_SERVER(data->args.inode);
8011 struct nfs4_session *session = nfs4_get_session(server);
8013 nfs41_setup_sequence(session,
8014 &data->args.seq_args,
8015 &data->res.seq_res,
8016 task);
8019 static void
8020 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
8022 struct nfs4_layoutcommit_data *data = calldata;
8023 struct nfs_server *server = NFS_SERVER(data->args.inode);
8025 if (!nfs41_sequence_done(task, &data->res.seq_res))
8026 return;
8028 switch (task->tk_status) { /* Just ignore these failures */
8029 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
8030 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
8031 case -NFS4ERR_BADLAYOUT: /* no layout */
8032 case -NFS4ERR_GRACE: /* loca_recalim always false */
8033 task->tk_status = 0;
8034 case 0:
8035 break;
8036 default:
8037 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
8038 rpc_restart_call_prepare(task);
8039 return;
8044 static void nfs4_layoutcommit_release(void *calldata)
8046 struct nfs4_layoutcommit_data *data = calldata;
8048 pnfs_cleanup_layoutcommit(data);
8049 nfs_post_op_update_inode_force_wcc(data->args.inode,
8050 data->res.fattr);
8051 put_rpccred(data->cred);
8052 nfs_iput_and_deactive(data->inode);
8053 kfree(data);
8056 static const struct rpc_call_ops nfs4_layoutcommit_ops = {
8057 .rpc_call_prepare = nfs4_layoutcommit_prepare,
8058 .rpc_call_done = nfs4_layoutcommit_done,
8059 .rpc_release = nfs4_layoutcommit_release,
8063 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
8065 struct rpc_message msg = {
8066 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
8067 .rpc_argp = &data->args,
8068 .rpc_resp = &data->res,
8069 .rpc_cred = data->cred,
8071 struct rpc_task_setup task_setup_data = {
8072 .task = &data->task,
8073 .rpc_client = NFS_CLIENT(data->args.inode),
8074 .rpc_message = &msg,
8075 .callback_ops = &nfs4_layoutcommit_ops,
8076 .callback_data = data,
8078 struct rpc_task *task;
8079 int status = 0;
8081 dprintk("NFS: %4d initiating layoutcommit call. sync %d "
8082 "lbw: %llu inode %lu\n",
8083 data->task.tk_pid, sync,
8084 data->args.lastbytewritten,
8085 data->args.inode->i_ino);
8087 if (!sync) {
8088 data->inode = nfs_igrab_and_active(data->args.inode);
8089 if (data->inode == NULL) {
8090 nfs4_layoutcommit_release(data);
8091 return -EAGAIN;
8093 task_setup_data.flags = RPC_TASK_ASYNC;
8095 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
8096 task = rpc_run_task(&task_setup_data);
8097 if (IS_ERR(task))
8098 return PTR_ERR(task);
8099 if (sync)
8100 status = task->tk_status;
8101 trace_nfs4_layoutcommit(data->args.inode, status);
8102 dprintk("%s: status %d\n", __func__, status);
8103 rpc_put_task(task);
8104 return status;
8108 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
8109 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
8111 static int
8112 _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8113 struct nfs_fsinfo *info,
8114 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
8116 struct nfs41_secinfo_no_name_args args = {
8117 .style = SECINFO_STYLE_CURRENT_FH,
8119 struct nfs4_secinfo_res res = {
8120 .flavors = flavors,
8122 struct rpc_message msg = {
8123 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
8124 .rpc_argp = &args,
8125 .rpc_resp = &res,
8127 struct rpc_clnt *clnt = server->client;
8128 struct rpc_cred *cred = NULL;
8129 int status;
8131 if (use_integrity) {
8132 clnt = server->nfs_client->cl_rpcclient;
8133 cred = nfs4_get_clid_cred(server->nfs_client);
8134 msg.rpc_cred = cred;
8137 dprintk("--> %s\n", __func__);
8138 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
8139 &res.seq_res, 0);
8140 dprintk("<-- %s status=%d\n", __func__, status);
8142 if (cred)
8143 put_rpccred(cred);
8145 return status;
8148 static int
8149 nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8150 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
8152 struct nfs4_exception exception = { };
8153 int err;
8154 do {
8155 /* first try using integrity protection */
8156 err = -NFS4ERR_WRONGSEC;
8158 /* try to use integrity protection with machine cred */
8159 if (_nfs4_is_integrity_protected(server->nfs_client))
8160 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8161 flavors, true);
8164 * if unable to use integrity protection, or SECINFO with
8165 * integrity protection returns NFS4ERR_WRONGSEC (which is
8166 * disallowed by spec, but exists in deployed servers) use
8167 * the current filesystem's rpc_client and the user cred.
8169 if (err == -NFS4ERR_WRONGSEC)
8170 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8171 flavors, false);
8173 switch (err) {
8174 case 0:
8175 case -NFS4ERR_WRONGSEC:
8176 case -ENOTSUPP:
8177 goto out;
8178 default:
8179 err = nfs4_handle_exception(server, err, &exception);
8181 } while (exception.retry);
8182 out:
8183 return err;
8186 static int
8187 nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
8188 struct nfs_fsinfo *info)
8190 int err;
8191 struct page *page;
8192 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
8193 struct nfs4_secinfo_flavors *flavors;
8194 struct nfs4_secinfo4 *secinfo;
8195 int i;
8197 page = alloc_page(GFP_KERNEL);
8198 if (!page) {
8199 err = -ENOMEM;
8200 goto out;
8203 flavors = page_address(page);
8204 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
8207 * Fall back on "guess and check" method if
8208 * the server doesn't support SECINFO_NO_NAME
8210 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
8211 err = nfs4_find_root_sec(server, fhandle, info);
8212 goto out_freepage;
8214 if (err)
8215 goto out_freepage;
8217 for (i = 0; i < flavors->num_flavors; i++) {
8218 secinfo = &flavors->flavors[i];
8220 switch (secinfo->flavor) {
8221 case RPC_AUTH_NULL:
8222 case RPC_AUTH_UNIX:
8223 case RPC_AUTH_GSS:
8224 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
8225 &secinfo->flavor_info);
8226 break;
8227 default:
8228 flavor = RPC_AUTH_MAXFLAVOR;
8229 break;
8232 if (!nfs_auth_info_match(&server->auth_info, flavor))
8233 flavor = RPC_AUTH_MAXFLAVOR;
8235 if (flavor != RPC_AUTH_MAXFLAVOR) {
8236 err = nfs4_lookup_root_sec(server, fhandle,
8237 info, flavor);
8238 if (!err)
8239 break;
8243 if (flavor == RPC_AUTH_MAXFLAVOR)
8244 err = -EPERM;
8246 out_freepage:
8247 put_page(page);
8248 if (err == -EACCES)
8249 return -EPERM;
8250 out:
8251 return err;
8254 static int _nfs41_test_stateid(struct nfs_server *server,
8255 nfs4_stateid *stateid,
8256 struct rpc_cred *cred)
8258 int status;
8259 struct nfs41_test_stateid_args args = {
8260 .stateid = stateid,
8262 struct nfs41_test_stateid_res res;
8263 struct rpc_message msg = {
8264 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
8265 .rpc_argp = &args,
8266 .rpc_resp = &res,
8267 .rpc_cred = cred,
8269 struct rpc_clnt *rpc_client = server->client;
8271 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8272 &rpc_client, &msg);
8274 dprintk("NFS call test_stateid %p\n", stateid);
8275 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
8276 nfs4_set_sequence_privileged(&args.seq_args);
8277 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
8278 &args.seq_args, &res.seq_res);
8279 if (status != NFS_OK) {
8280 dprintk("NFS reply test_stateid: failed, %d\n", status);
8281 return status;
8283 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
8284 return -res.status;
8288 * nfs41_test_stateid - perform a TEST_STATEID operation
8290 * @server: server / transport on which to perform the operation
8291 * @stateid: state ID to test
8292 * @cred: credential
8294 * Returns NFS_OK if the server recognizes that "stateid" is valid.
8295 * Otherwise a negative NFS4ERR value is returned if the operation
8296 * failed or the state ID is not currently valid.
8298 static int nfs41_test_stateid(struct nfs_server *server,
8299 nfs4_stateid *stateid,
8300 struct rpc_cred *cred)
8302 struct nfs4_exception exception = { };
8303 int err;
8304 do {
8305 err = _nfs41_test_stateid(server, stateid, cred);
8306 if (err != -NFS4ERR_DELAY)
8307 break;
8308 nfs4_handle_exception(server, err, &exception);
8309 } while (exception.retry);
8310 return err;
8313 struct nfs_free_stateid_data {
8314 struct nfs_server *server;
8315 struct nfs41_free_stateid_args args;
8316 struct nfs41_free_stateid_res res;
8319 static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
8321 struct nfs_free_stateid_data *data = calldata;
8322 nfs41_setup_sequence(nfs4_get_session(data->server),
8323 &data->args.seq_args,
8324 &data->res.seq_res,
8325 task);
8328 static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
8330 struct nfs_free_stateid_data *data = calldata;
8332 nfs41_sequence_done(task, &data->res.seq_res);
8334 switch (task->tk_status) {
8335 case -NFS4ERR_DELAY:
8336 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
8337 rpc_restart_call_prepare(task);
8341 static void nfs41_free_stateid_release(void *calldata)
8343 kfree(calldata);
8346 static const struct rpc_call_ops nfs41_free_stateid_ops = {
8347 .rpc_call_prepare = nfs41_free_stateid_prepare,
8348 .rpc_call_done = nfs41_free_stateid_done,
8349 .rpc_release = nfs41_free_stateid_release,
8352 static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
8353 nfs4_stateid *stateid,
8354 struct rpc_cred *cred,
8355 bool privileged)
8357 struct rpc_message msg = {
8358 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
8359 .rpc_cred = cred,
8361 struct rpc_task_setup task_setup = {
8362 .rpc_client = server->client,
8363 .rpc_message = &msg,
8364 .callback_ops = &nfs41_free_stateid_ops,
8365 .flags = RPC_TASK_ASYNC,
8367 struct nfs_free_stateid_data *data;
8369 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8370 &task_setup.rpc_client, &msg);
8372 dprintk("NFS call free_stateid %p\n", stateid);
8373 data = kmalloc(sizeof(*data), GFP_NOFS);
8374 if (!data)
8375 return ERR_PTR(-ENOMEM);
8376 data->server = server;
8377 nfs4_stateid_copy(&data->args.stateid, stateid);
8379 task_setup.callback_data = data;
8381 msg.rpc_argp = &data->args;
8382 msg.rpc_resp = &data->res;
8383 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
8384 if (privileged)
8385 nfs4_set_sequence_privileged(&data->args.seq_args);
8387 return rpc_run_task(&task_setup);
8391 * nfs41_free_stateid - perform a FREE_STATEID operation
8393 * @server: server / transport on which to perform the operation
8394 * @stateid: state ID to release
8395 * @cred: credential
8397 * Returns NFS_OK if the server freed "stateid". Otherwise a
8398 * negative NFS4ERR value is returned.
8400 static int nfs41_free_stateid(struct nfs_server *server,
8401 nfs4_stateid *stateid,
8402 struct rpc_cred *cred)
8404 struct rpc_task *task;
8405 int ret;
8407 task = _nfs41_free_stateid(server, stateid, cred, true);
8408 if (IS_ERR(task))
8409 return PTR_ERR(task);
8410 ret = rpc_wait_for_completion_task(task);
8411 if (!ret)
8412 ret = task->tk_status;
8413 rpc_put_task(task);
8414 return ret;
8417 static void
8418 nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
8420 struct rpc_task *task;
8421 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
8423 task = _nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
8424 nfs4_free_lock_state(server, lsp);
8425 if (IS_ERR(task))
8426 return;
8427 rpc_put_task(task);
8430 static bool nfs41_match_stateid(const nfs4_stateid *s1,
8431 const nfs4_stateid *s2)
8433 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
8434 return false;
8436 if (s1->seqid == s2->seqid)
8437 return true;
8438 if (s1->seqid == 0 || s2->seqid == 0)
8439 return true;
8441 return false;
8444 #endif /* CONFIG_NFS_V4_1 */
8446 static bool nfs4_match_stateid(const nfs4_stateid *s1,
8447 const nfs4_stateid *s2)
8449 return nfs4_stateid_match(s1, s2);
8453 static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
8454 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
8455 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
8456 .recover_open = nfs4_open_reclaim,
8457 .recover_lock = nfs4_lock_reclaim,
8458 .establish_clid = nfs4_init_clientid,
8459 .detect_trunking = nfs40_discover_server_trunking,
8462 #if defined(CONFIG_NFS_V4_1)
8463 static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
8464 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
8465 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
8466 .recover_open = nfs4_open_reclaim,
8467 .recover_lock = nfs4_lock_reclaim,
8468 .establish_clid = nfs41_init_clientid,
8469 .reclaim_complete = nfs41_proc_reclaim_complete,
8470 .detect_trunking = nfs41_discover_server_trunking,
8472 #endif /* CONFIG_NFS_V4_1 */
8474 static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
8475 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
8476 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
8477 .recover_open = nfs40_open_expired,
8478 .recover_lock = nfs4_lock_expired,
8479 .establish_clid = nfs4_init_clientid,
8482 #if defined(CONFIG_NFS_V4_1)
8483 static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
8484 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
8485 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
8486 .recover_open = nfs41_open_expired,
8487 .recover_lock = nfs41_lock_expired,
8488 .establish_clid = nfs41_init_clientid,
8490 #endif /* CONFIG_NFS_V4_1 */
8492 static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
8493 .sched_state_renewal = nfs4_proc_async_renew,
8494 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
8495 .renew_lease = nfs4_proc_renew,
8498 #if defined(CONFIG_NFS_V4_1)
8499 static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
8500 .sched_state_renewal = nfs41_proc_async_sequence,
8501 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
8502 .renew_lease = nfs4_proc_sequence,
8504 #endif
8506 static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
8507 .get_locations = _nfs40_proc_get_locations,
8508 .fsid_present = _nfs40_proc_fsid_present,
8511 #if defined(CONFIG_NFS_V4_1)
8512 static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
8513 .get_locations = _nfs41_proc_get_locations,
8514 .fsid_present = _nfs41_proc_fsid_present,
8516 #endif /* CONFIG_NFS_V4_1 */
8518 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
8519 .minor_version = 0,
8520 .init_caps = NFS_CAP_READDIRPLUS
8521 | NFS_CAP_ATOMIC_OPEN
8522 | NFS_CAP_POSIX_LOCK,
8523 .init_client = nfs40_init_client,
8524 .shutdown_client = nfs40_shutdown_client,
8525 .match_stateid = nfs4_match_stateid,
8526 .find_root_sec = nfs4_find_root_sec,
8527 .free_lock_state = nfs4_release_lockowner,
8528 .alloc_seqid = nfs_alloc_seqid,
8529 .call_sync_ops = &nfs40_call_sync_ops,
8530 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
8531 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
8532 .state_renewal_ops = &nfs40_state_renewal_ops,
8533 .mig_recovery_ops = &nfs40_mig_recovery_ops,
8536 #if defined(CONFIG_NFS_V4_1)
8537 static struct nfs_seqid *
8538 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
8540 return NULL;
8543 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
8544 .minor_version = 1,
8545 .init_caps = NFS_CAP_READDIRPLUS
8546 | NFS_CAP_ATOMIC_OPEN
8547 | NFS_CAP_POSIX_LOCK
8548 | NFS_CAP_STATEID_NFSV41
8549 | NFS_CAP_ATOMIC_OPEN_V1,
8550 .init_client = nfs41_init_client,
8551 .shutdown_client = nfs41_shutdown_client,
8552 .match_stateid = nfs41_match_stateid,
8553 .find_root_sec = nfs41_find_root_sec,
8554 .free_lock_state = nfs41_free_lock_state,
8555 .alloc_seqid = nfs_alloc_no_seqid,
8556 .call_sync_ops = &nfs41_call_sync_ops,
8557 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
8558 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
8559 .state_renewal_ops = &nfs41_state_renewal_ops,
8560 .mig_recovery_ops = &nfs41_mig_recovery_ops,
8562 #endif
8564 #if defined(CONFIG_NFS_V4_2)
8565 static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
8566 .minor_version = 2,
8567 .init_caps = NFS_CAP_READDIRPLUS
8568 | NFS_CAP_ATOMIC_OPEN
8569 | NFS_CAP_POSIX_LOCK
8570 | NFS_CAP_STATEID_NFSV41
8571 | NFS_CAP_ATOMIC_OPEN_V1
8572 | NFS_CAP_ALLOCATE
8573 | NFS_CAP_DEALLOCATE
8574 | NFS_CAP_SEEK,
8575 .init_client = nfs41_init_client,
8576 .shutdown_client = nfs41_shutdown_client,
8577 .match_stateid = nfs41_match_stateid,
8578 .find_root_sec = nfs41_find_root_sec,
8579 .free_lock_state = nfs41_free_lock_state,
8580 .call_sync_ops = &nfs41_call_sync_ops,
8581 .alloc_seqid = nfs_alloc_no_seqid,
8582 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
8583 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
8584 .state_renewal_ops = &nfs41_state_renewal_ops,
8585 .mig_recovery_ops = &nfs41_mig_recovery_ops,
8587 #endif
8589 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
8590 [0] = &nfs_v4_0_minor_ops,
8591 #if defined(CONFIG_NFS_V4_1)
8592 [1] = &nfs_v4_1_minor_ops,
8593 #endif
8594 #if defined(CONFIG_NFS_V4_2)
8595 [2] = &nfs_v4_2_minor_ops,
8596 #endif
8599 static const struct inode_operations nfs4_dir_inode_operations = {
8600 .create = nfs_create,
8601 .lookup = nfs_lookup,
8602 .atomic_open = nfs_atomic_open,
8603 .link = nfs_link,
8604 .unlink = nfs_unlink,
8605 .symlink = nfs_symlink,
8606 .mkdir = nfs_mkdir,
8607 .rmdir = nfs_rmdir,
8608 .mknod = nfs_mknod,
8609 .rename = nfs_rename,
8610 .permission = nfs_permission,
8611 .getattr = nfs_getattr,
8612 .setattr = nfs_setattr,
8613 .getxattr = generic_getxattr,
8614 .setxattr = generic_setxattr,
8615 .listxattr = generic_listxattr,
8616 .removexattr = generic_removexattr,
8619 static const struct inode_operations nfs4_file_inode_operations = {
8620 .permission = nfs_permission,
8621 .getattr = nfs_getattr,
8622 .setattr = nfs_setattr,
8623 .getxattr = generic_getxattr,
8624 .setxattr = generic_setxattr,
8625 .listxattr = generic_listxattr,
8626 .removexattr = generic_removexattr,
8629 const struct nfs_rpc_ops nfs_v4_clientops = {
8630 .version = 4, /* protocol version */
8631 .dentry_ops = &nfs4_dentry_operations,
8632 .dir_inode_ops = &nfs4_dir_inode_operations,
8633 .file_inode_ops = &nfs4_file_inode_operations,
8634 .file_ops = &nfs4_file_operations,
8635 .getroot = nfs4_proc_get_root,
8636 .submount = nfs4_submount,
8637 .try_mount = nfs4_try_mount,
8638 .getattr = nfs4_proc_getattr,
8639 .setattr = nfs4_proc_setattr,
8640 .lookup = nfs4_proc_lookup,
8641 .access = nfs4_proc_access,
8642 .readlink = nfs4_proc_readlink,
8643 .create = nfs4_proc_create,
8644 .remove = nfs4_proc_remove,
8645 .unlink_setup = nfs4_proc_unlink_setup,
8646 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
8647 .unlink_done = nfs4_proc_unlink_done,
8648 .rename_setup = nfs4_proc_rename_setup,
8649 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
8650 .rename_done = nfs4_proc_rename_done,
8651 .link = nfs4_proc_link,
8652 .symlink = nfs4_proc_symlink,
8653 .mkdir = nfs4_proc_mkdir,
8654 .rmdir = nfs4_proc_remove,
8655 .readdir = nfs4_proc_readdir,
8656 .mknod = nfs4_proc_mknod,
8657 .statfs = nfs4_proc_statfs,
8658 .fsinfo = nfs4_proc_fsinfo,
8659 .pathconf = nfs4_proc_pathconf,
8660 .set_capabilities = nfs4_server_capabilities,
8661 .decode_dirent = nfs4_decode_dirent,
8662 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
8663 .read_setup = nfs4_proc_read_setup,
8664 .read_done = nfs4_read_done,
8665 .write_setup = nfs4_proc_write_setup,
8666 .write_done = nfs4_write_done,
8667 .commit_setup = nfs4_proc_commit_setup,
8668 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
8669 .commit_done = nfs4_commit_done,
8670 .lock = nfs4_proc_lock,
8671 .clear_acl_cache = nfs4_zap_acl_attr,
8672 .close_context = nfs4_close_context,
8673 .open_context = nfs4_atomic_open,
8674 .have_delegation = nfs4_have_delegation,
8675 .return_delegation = nfs4_inode_return_delegation,
8676 .alloc_client = nfs4_alloc_client,
8677 .init_client = nfs4_init_client,
8678 .free_client = nfs4_free_client,
8679 .create_server = nfs4_create_server,
8680 .clone_server = nfs_clone_server,
8683 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
8684 .prefix = XATTR_NAME_NFSV4_ACL,
8685 .list = nfs4_xattr_list_nfs4_acl,
8686 .get = nfs4_xattr_get_nfs4_acl,
8687 .set = nfs4_xattr_set_nfs4_acl,
8690 const struct xattr_handler *nfs4_xattr_handlers[] = {
8691 &nfs4_xattr_nfs4_acl_handler,
8692 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
8693 &nfs4_xattr_nfs4_label_handler,
8694 #endif
8695 NULL
8699 * Local variables:
8700 * c-basic-offset: 8
8701 * End: