4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
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
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.
39 #include <linux/utsname.h>
40 #include <linux/delay.h>
41 #include <linux/errno.h>
42 #include <linux/string.h>
43 #include <linux/sunrpc/clnt.h>
44 #include <linux/nfs.h>
45 #include <linux/nfs4.h>
46 #include <linux/nfs_fs.h>
47 #include <linux/nfs_page.h>
48 #include <linux/namei.h>
49 #include <linux/mount.h>
50 #include <linux/module.h>
51 #include <linux/sunrpc/bc_xprt.h>
54 #include "delegation.h"
59 #define NFSDBG_FACILITY NFSDBG_PROC
61 #define NFS4_POLL_RETRY_MIN (HZ/10)
62 #define NFS4_POLL_RETRY_MAX (15*HZ)
65 static int _nfs4_proc_open(struct nfs4_opendata
*data
);
66 static int nfs4_do_fsinfo(struct nfs_server
*, struct nfs_fh
*, struct nfs_fsinfo
*);
67 static int nfs4_async_handle_error(struct rpc_task
*, const struct nfs_server
*, struct nfs4_state
*);
68 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
69 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
71 /* Prevent leaks of NFSv4 errors into userland */
72 static int nfs4_map_errors(int err
)
77 case -NFS4ERR_RESOURCE
:
80 dprintk("%s could not handle NFSv4 error %d\n",
88 * This is our standard bitmap for GETATTR requests.
90 const u32 nfs4_fattr_bitmap
[2] = {
95 | FATTR4_WORD0_FILEID
,
97 | FATTR4_WORD1_NUMLINKS
99 | FATTR4_WORD1_OWNER_GROUP
100 | FATTR4_WORD1_RAWDEV
101 | FATTR4_WORD1_SPACE_USED
102 | FATTR4_WORD1_TIME_ACCESS
103 | FATTR4_WORD1_TIME_METADATA
104 | FATTR4_WORD1_TIME_MODIFY
107 const u32 nfs4_statfs_bitmap
[2] = {
108 FATTR4_WORD0_FILES_AVAIL
109 | FATTR4_WORD0_FILES_FREE
110 | FATTR4_WORD0_FILES_TOTAL
,
111 FATTR4_WORD1_SPACE_AVAIL
112 | FATTR4_WORD1_SPACE_FREE
113 | FATTR4_WORD1_SPACE_TOTAL
116 const u32 nfs4_pathconf_bitmap
[2] = {
118 | FATTR4_WORD0_MAXNAME
,
122 const u32 nfs4_fsinfo_bitmap
[2] = { FATTR4_WORD0_MAXFILESIZE
123 | FATTR4_WORD0_MAXREAD
124 | FATTR4_WORD0_MAXWRITE
125 | FATTR4_WORD0_LEASE_TIME
,
129 const u32 nfs4_fs_locations_bitmap
[2] = {
131 | FATTR4_WORD0_CHANGE
134 | FATTR4_WORD0_FILEID
135 | FATTR4_WORD0_FS_LOCATIONS
,
137 | FATTR4_WORD1_NUMLINKS
139 | FATTR4_WORD1_OWNER_GROUP
140 | FATTR4_WORD1_RAWDEV
141 | FATTR4_WORD1_SPACE_USED
142 | FATTR4_WORD1_TIME_ACCESS
143 | FATTR4_WORD1_TIME_METADATA
144 | FATTR4_WORD1_TIME_MODIFY
145 | FATTR4_WORD1_MOUNTED_ON_FILEID
148 static void nfs4_setup_readdir(u64 cookie
, __be32
*verifier
, struct dentry
*dentry
,
149 struct nfs4_readdir_arg
*readdir
)
153 BUG_ON(readdir
->count
< 80);
155 readdir
->cookie
= cookie
;
156 memcpy(&readdir
->verifier
, verifier
, sizeof(readdir
->verifier
));
161 memset(&readdir
->verifier
, 0, sizeof(readdir
->verifier
));
166 * NFSv4 servers do not return entries for '.' and '..'
167 * Therefore, we fake these entries here. We let '.'
168 * have cookie 0 and '..' have cookie 1. Note that
169 * when talking to the server, we always send cookie 0
172 start
= p
= kmap_atomic(*readdir
->pages
, KM_USER0
);
175 *p
++ = xdr_one
; /* next */
176 *p
++ = xdr_zero
; /* cookie, first word */
177 *p
++ = xdr_one
; /* cookie, second word */
178 *p
++ = xdr_one
; /* entry len */
179 memcpy(p
, ".\0\0\0", 4); /* entry */
181 *p
++ = xdr_one
; /* bitmap length */
182 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
183 *p
++ = htonl(8); /* attribute buffer length */
184 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_inode
));
187 *p
++ = xdr_one
; /* next */
188 *p
++ = xdr_zero
; /* cookie, first word */
189 *p
++ = xdr_two
; /* cookie, second word */
190 *p
++ = xdr_two
; /* entry len */
191 memcpy(p
, "..\0\0", 4); /* entry */
193 *p
++ = xdr_one
; /* bitmap length */
194 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
195 *p
++ = htonl(8); /* attribute buffer length */
196 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_parent
->d_inode
));
198 readdir
->pgbase
= (char *)p
- (char *)start
;
199 readdir
->count
-= readdir
->pgbase
;
200 kunmap_atomic(start
, KM_USER0
);
203 static int nfs4_wait_clnt_recover(struct nfs_client
*clp
)
209 res
= wait_on_bit(&clp
->cl_state
, NFS4CLNT_MANAGER_RUNNING
,
210 nfs_wait_bit_killable
, TASK_KILLABLE
);
214 static int nfs4_delay(struct rpc_clnt
*clnt
, long *timeout
)
221 *timeout
= NFS4_POLL_RETRY_MIN
;
222 if (*timeout
> NFS4_POLL_RETRY_MAX
)
223 *timeout
= NFS4_POLL_RETRY_MAX
;
224 schedule_timeout_killable(*timeout
);
225 if (fatal_signal_pending(current
))
231 /* This is the error handling routine for processes that are allowed
234 static int nfs4_handle_exception(const struct nfs_server
*server
, int errorcode
, struct nfs4_exception
*exception
)
236 struct nfs_client
*clp
= server
->nfs_client
;
237 struct nfs4_state
*state
= exception
->state
;
240 exception
->retry
= 0;
244 case -NFS4ERR_ADMIN_REVOKED
:
245 case -NFS4ERR_BAD_STATEID
:
246 case -NFS4ERR_OPENMODE
:
249 nfs4_state_mark_reclaim_nograce(clp
, state
);
250 case -NFS4ERR_STALE_CLIENTID
:
251 case -NFS4ERR_STALE_STATEID
:
252 case -NFS4ERR_EXPIRED
:
253 nfs4_schedule_state_recovery(clp
);
254 ret
= nfs4_wait_clnt_recover(clp
);
256 exception
->retry
= 1;
257 #if !defined(CONFIG_NFS_V4_1)
259 #else /* !defined(CONFIG_NFS_V4_1) */
260 if (!nfs4_has_session(server
->nfs_client
))
263 case -NFS4ERR_BADSESSION
:
264 case -NFS4ERR_BADSLOT
:
265 case -NFS4ERR_BAD_HIGH_SLOT
:
266 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
267 case -NFS4ERR_DEADSESSION
:
268 case -NFS4ERR_SEQ_FALSE_RETRY
:
269 case -NFS4ERR_SEQ_MISORDERED
:
270 dprintk("%s ERROR: %d Reset session\n", __func__
,
272 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
273 exception
->retry
= 1;
275 #endif /* !defined(CONFIG_NFS_V4_1) */
276 case -NFS4ERR_FILE_OPEN
:
279 ret
= nfs4_delay(server
->client
, &exception
->timeout
);
282 case -NFS4ERR_OLD_STATEID
:
283 exception
->retry
= 1;
285 /* We failed to handle the error */
286 return nfs4_map_errors(ret
);
290 static void renew_lease(const struct nfs_server
*server
, unsigned long timestamp
)
292 struct nfs_client
*clp
= server
->nfs_client
;
293 spin_lock(&clp
->cl_lock
);
294 if (time_before(clp
->cl_last_renewal
,timestamp
))
295 clp
->cl_last_renewal
= timestamp
;
296 spin_unlock(&clp
->cl_lock
);
299 #if defined(CONFIG_NFS_V4_1)
302 * nfs4_free_slot - free a slot and efficiently update slot table.
304 * freeing a slot is trivially done by clearing its respective bit
306 * If the freed slotid equals highest_used_slotid we want to update it
307 * so that the server would be able to size down the slot table if needed,
308 * otherwise we know that the highest_used_slotid is still in use.
309 * When updating highest_used_slotid there may be "holes" in the bitmap
310 * so we need to scan down from highest_used_slotid to 0 looking for the now
311 * highest slotid in use.
312 * If none found, highest_used_slotid is set to -1.
315 nfs4_free_slot(struct nfs4_slot_table
*tbl
, u8 free_slotid
)
317 int slotid
= free_slotid
;
319 spin_lock(&tbl
->slot_tbl_lock
);
320 /* clear used bit in bitmap */
321 __clear_bit(slotid
, tbl
->used_slots
);
323 /* update highest_used_slotid when it is freed */
324 if (slotid
== tbl
->highest_used_slotid
) {
325 slotid
= find_last_bit(tbl
->used_slots
, tbl
->max_slots
);
326 if (slotid
>= 0 && slotid
< tbl
->max_slots
)
327 tbl
->highest_used_slotid
= slotid
;
329 tbl
->highest_used_slotid
= -1;
331 rpc_wake_up_next(&tbl
->slot_tbl_waitq
);
332 spin_unlock(&tbl
->slot_tbl_lock
);
333 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__
,
334 free_slotid
, tbl
->highest_used_slotid
);
337 void nfs41_sequence_free_slot(const struct nfs_client
*clp
,
338 struct nfs4_sequence_res
*res
)
340 struct nfs4_slot_table
*tbl
;
342 if (!nfs4_has_session(clp
)) {
343 dprintk("%s: No session\n", __func__
);
346 tbl
= &clp
->cl_session
->fc_slot_table
;
347 if (res
->sr_slotid
== NFS4_MAX_SLOT_TABLE
) {
348 dprintk("%s: No slot\n", __func__
);
349 /* just wake up the next guy waiting since
350 * we may have not consumed a slot after all */
351 rpc_wake_up_next(&tbl
->slot_tbl_waitq
);
354 nfs4_free_slot(tbl
, res
->sr_slotid
);
355 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
358 static void nfs41_sequence_done(struct nfs_client
*clp
,
359 struct nfs4_sequence_res
*res
,
362 unsigned long timestamp
;
363 struct nfs4_slot_table
*tbl
;
364 struct nfs4_slot
*slot
;
367 * sr_status remains 1 if an RPC level error occurred. The server
368 * may or may not have processed the sequence operation..
369 * Proceed as if the server received and processed the sequence
372 if (res
->sr_status
== 1)
373 res
->sr_status
= NFS_OK
;
375 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
376 if (res
->sr_slotid
== NFS4_MAX_SLOT_TABLE
)
379 tbl
= &clp
->cl_session
->fc_slot_table
;
380 slot
= tbl
->slots
+ res
->sr_slotid
;
382 if (res
->sr_status
== 0) {
383 /* Update the slot's sequence and clientid lease timer */
385 timestamp
= res
->sr_renewal_time
;
386 spin_lock(&clp
->cl_lock
);
387 if (time_before(clp
->cl_last_renewal
, timestamp
))
388 clp
->cl_last_renewal
= timestamp
;
389 spin_unlock(&clp
->cl_lock
);
393 /* The session may be reset by one of the error handlers. */
394 dprintk("%s: Error %d free the slot \n", __func__
, res
->sr_status
);
395 nfs41_sequence_free_slot(clp
, res
);
399 * nfs4_find_slot - efficiently look for a free slot
401 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
402 * If found, we mark the slot as used, update the highest_used_slotid,
403 * and respectively set up the sequence operation args.
404 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
406 * Note: must be called with under the slot_tbl_lock.
409 nfs4_find_slot(struct nfs4_slot_table
*tbl
, struct rpc_task
*task
)
412 u8 ret_id
= NFS4_MAX_SLOT_TABLE
;
413 BUILD_BUG_ON((u8
)NFS4_MAX_SLOT_TABLE
!= (int)NFS4_MAX_SLOT_TABLE
);
415 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
416 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
,
418 slotid
= find_first_zero_bit(tbl
->used_slots
, tbl
->max_slots
);
419 if (slotid
>= tbl
->max_slots
)
421 __set_bit(slotid
, tbl
->used_slots
);
422 if (slotid
> tbl
->highest_used_slotid
)
423 tbl
->highest_used_slotid
= slotid
;
426 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
427 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
, ret_id
);
431 static int nfs4_recover_session(struct nfs4_session
*session
)
433 struct nfs_client
*clp
= session
->clp
;
437 ret
= nfs4_wait_clnt_recover(clp
);
440 if (!test_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
))
442 nfs4_schedule_state_manager(clp
);
447 static int nfs41_setup_sequence(struct nfs4_session
*session
,
448 struct nfs4_sequence_args
*args
,
449 struct nfs4_sequence_res
*res
,
451 struct rpc_task
*task
)
453 struct nfs4_slot
*slot
;
454 struct nfs4_slot_table
*tbl
;
458 dprintk("--> %s\n", __func__
);
459 /* slot already allocated? */
460 if (res
->sr_slotid
!= NFS4_MAX_SLOT_TABLE
)
463 memset(res
, 0, sizeof(*res
));
464 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
465 tbl
= &session
->fc_slot_table
;
467 spin_lock(&tbl
->slot_tbl_lock
);
468 if (test_bit(NFS4CLNT_SESSION_SETUP
, &session
->clp
->cl_state
)) {
469 if (tbl
->highest_used_slotid
!= -1) {
470 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
471 spin_unlock(&tbl
->slot_tbl_lock
);
472 dprintk("<-- %s: Session reset: draining\n", __func__
);
476 /* The slot table is empty; start the reset thread */
477 dprintk("%s Session Reset\n", __func__
);
478 spin_unlock(&tbl
->slot_tbl_lock
);
479 status
= nfs4_recover_session(session
);
482 spin_lock(&tbl
->slot_tbl_lock
);
485 slotid
= nfs4_find_slot(tbl
, task
);
486 if (slotid
== NFS4_MAX_SLOT_TABLE
) {
487 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
488 spin_unlock(&tbl
->slot_tbl_lock
);
489 dprintk("<-- %s: no free slots\n", __func__
);
492 spin_unlock(&tbl
->slot_tbl_lock
);
494 slot
= tbl
->slots
+ slotid
;
495 args
->sa_session
= session
;
496 args
->sa_slotid
= slotid
;
497 args
->sa_cache_this
= cache_reply
;
499 dprintk("<-- %s slotid=%d seqid=%d\n", __func__
, slotid
, slot
->seq_nr
);
501 res
->sr_session
= session
;
502 res
->sr_slotid
= slotid
;
503 res
->sr_renewal_time
= jiffies
;
505 * sr_status is only set in decode_sequence, and so will remain
506 * set to 1 if an rpc level failure occurs.
512 int nfs4_setup_sequence(struct nfs_client
*clp
,
513 struct nfs4_sequence_args
*args
,
514 struct nfs4_sequence_res
*res
,
516 struct rpc_task
*task
)
520 dprintk("--> %s clp %p session %p sr_slotid %d\n",
521 __func__
, clp
, clp
->cl_session
, res
->sr_slotid
);
523 if (!nfs4_has_session(clp
))
525 ret
= nfs41_setup_sequence(clp
->cl_session
, args
, res
, cache_reply
,
527 if (ret
!= -EAGAIN
) {
528 /* terminate rpc task */
529 task
->tk_status
= ret
;
530 task
->tk_action
= NULL
;
533 dprintk("<-- %s status=%d\n", __func__
, ret
);
537 struct nfs41_call_sync_data
{
538 struct nfs_client
*clp
;
539 struct nfs4_sequence_args
*seq_args
;
540 struct nfs4_sequence_res
*seq_res
;
544 static void nfs41_call_sync_prepare(struct rpc_task
*task
, void *calldata
)
546 struct nfs41_call_sync_data
*data
= calldata
;
548 dprintk("--> %s data->clp->cl_session %p\n", __func__
,
549 data
->clp
->cl_session
);
550 if (nfs4_setup_sequence(data
->clp
, data
->seq_args
,
551 data
->seq_res
, data
->cache_reply
, task
))
553 rpc_call_start(task
);
556 static void nfs41_call_sync_done(struct rpc_task
*task
, void *calldata
)
558 struct nfs41_call_sync_data
*data
= calldata
;
560 nfs41_sequence_done(data
->clp
, data
->seq_res
, task
->tk_status
);
561 nfs41_sequence_free_slot(data
->clp
, data
->seq_res
);
564 struct rpc_call_ops nfs41_call_sync_ops
= {
565 .rpc_call_prepare
= nfs41_call_sync_prepare
,
566 .rpc_call_done
= nfs41_call_sync_done
,
569 static int nfs4_call_sync_sequence(struct nfs_client
*clp
,
570 struct rpc_clnt
*clnt
,
571 struct rpc_message
*msg
,
572 struct nfs4_sequence_args
*args
,
573 struct nfs4_sequence_res
*res
,
577 struct rpc_task
*task
;
578 struct nfs41_call_sync_data data
= {
582 .cache_reply
= cache_reply
,
584 struct rpc_task_setup task_setup
= {
587 .callback_ops
= &nfs41_call_sync_ops
,
588 .callback_data
= &data
591 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
592 task
= rpc_run_task(&task_setup
);
596 ret
= task
->tk_status
;
602 int _nfs4_call_sync_session(struct nfs_server
*server
,
603 struct rpc_message
*msg
,
604 struct nfs4_sequence_args
*args
,
605 struct nfs4_sequence_res
*res
,
608 return nfs4_call_sync_sequence(server
->nfs_client
, server
->client
,
609 msg
, args
, res
, cache_reply
);
612 #endif /* CONFIG_NFS_V4_1 */
614 int _nfs4_call_sync(struct nfs_server
*server
,
615 struct rpc_message
*msg
,
616 struct nfs4_sequence_args
*args
,
617 struct nfs4_sequence_res
*res
,
620 args
->sa_session
= res
->sr_session
= NULL
;
621 return rpc_call_sync(server
->client
, msg
, 0);
624 #define nfs4_call_sync(server, msg, args, res, cache_reply) \
625 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
626 &(res)->seq_res, (cache_reply))
628 static void nfs4_sequence_done(const struct nfs_server
*server
,
629 struct nfs4_sequence_res
*res
, int rpc_status
)
631 #ifdef CONFIG_NFS_V4_1
632 if (nfs4_has_session(server
->nfs_client
))
633 nfs41_sequence_done(server
->nfs_client
, res
, rpc_status
);
634 #endif /* CONFIG_NFS_V4_1 */
637 /* no restart, therefore free slot here */
638 static void nfs4_sequence_done_free_slot(const struct nfs_server
*server
,
639 struct nfs4_sequence_res
*res
,
642 nfs4_sequence_done(server
, res
, rpc_status
);
643 nfs4_sequence_free_slot(server
->nfs_client
, res
);
646 static void update_changeattr(struct inode
*dir
, struct nfs4_change_info
*cinfo
)
648 struct nfs_inode
*nfsi
= NFS_I(dir
);
650 spin_lock(&dir
->i_lock
);
651 nfsi
->cache_validity
|= NFS_INO_INVALID_ATTR
|NFS_INO_REVAL_PAGECACHE
|NFS_INO_INVALID_DATA
;
652 if (!cinfo
->atomic
|| cinfo
->before
!= nfsi
->change_attr
)
653 nfs_force_lookup_revalidate(dir
);
654 nfsi
->change_attr
= cinfo
->after
;
655 spin_unlock(&dir
->i_lock
);
658 struct nfs4_opendata
{
660 struct nfs_openargs o_arg
;
661 struct nfs_openres o_res
;
662 struct nfs_open_confirmargs c_arg
;
663 struct nfs_open_confirmres c_res
;
664 struct nfs_fattr f_attr
;
665 struct nfs_fattr dir_attr
;
668 struct nfs4_state_owner
*owner
;
669 struct nfs4_state
*state
;
671 unsigned long timestamp
;
672 unsigned int rpc_done
: 1;
678 static void nfs4_init_opendata_res(struct nfs4_opendata
*p
)
680 p
->o_res
.f_attr
= &p
->f_attr
;
681 p
->o_res
.dir_attr
= &p
->dir_attr
;
682 p
->o_res
.seqid
= p
->o_arg
.seqid
;
683 p
->c_res
.seqid
= p
->c_arg
.seqid
;
684 p
->o_res
.server
= p
->o_arg
.server
;
685 nfs_fattr_init(&p
->f_attr
);
686 nfs_fattr_init(&p
->dir_attr
);
687 p
->o_res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
690 static struct nfs4_opendata
*nfs4_opendata_alloc(struct path
*path
,
691 struct nfs4_state_owner
*sp
, fmode_t fmode
, int flags
,
692 const struct iattr
*attrs
)
694 struct dentry
*parent
= dget_parent(path
->dentry
);
695 struct inode
*dir
= parent
->d_inode
;
696 struct nfs_server
*server
= NFS_SERVER(dir
);
697 struct nfs4_opendata
*p
;
699 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
702 p
->o_arg
.seqid
= nfs_alloc_seqid(&sp
->so_seqid
);
703 if (p
->o_arg
.seqid
== NULL
)
705 p
->path
.mnt
= mntget(path
->mnt
);
706 p
->path
.dentry
= dget(path
->dentry
);
709 atomic_inc(&sp
->so_count
);
710 p
->o_arg
.fh
= NFS_FH(dir
);
711 p
->o_arg
.open_flags
= flags
;
712 p
->o_arg
.fmode
= fmode
& (FMODE_READ
|FMODE_WRITE
);
713 p
->o_arg
.clientid
= server
->nfs_client
->cl_clientid
;
714 p
->o_arg
.id
= sp
->so_owner_id
.id
;
715 p
->o_arg
.name
= &p
->path
.dentry
->d_name
;
716 p
->o_arg
.server
= server
;
717 p
->o_arg
.bitmask
= server
->attr_bitmask
;
718 p
->o_arg
.claim
= NFS4_OPEN_CLAIM_NULL
;
719 if (flags
& O_EXCL
) {
720 u32
*s
= (u32
*) p
->o_arg
.u
.verifier
.data
;
723 } else if (flags
& O_CREAT
) {
724 p
->o_arg
.u
.attrs
= &p
->attrs
;
725 memcpy(&p
->attrs
, attrs
, sizeof(p
->attrs
));
727 p
->c_arg
.fh
= &p
->o_res
.fh
;
728 p
->c_arg
.stateid
= &p
->o_res
.stateid
;
729 p
->c_arg
.seqid
= p
->o_arg
.seqid
;
730 nfs4_init_opendata_res(p
);
740 static void nfs4_opendata_free(struct kref
*kref
)
742 struct nfs4_opendata
*p
= container_of(kref
,
743 struct nfs4_opendata
, kref
);
745 nfs_free_seqid(p
->o_arg
.seqid
);
746 if (p
->state
!= NULL
)
747 nfs4_put_open_state(p
->state
);
748 nfs4_put_state_owner(p
->owner
);
754 static void nfs4_opendata_put(struct nfs4_opendata
*p
)
757 kref_put(&p
->kref
, nfs4_opendata_free
);
760 static int nfs4_wait_for_completion_rpc_task(struct rpc_task
*task
)
764 ret
= rpc_wait_for_completion_task(task
);
768 static int can_open_cached(struct nfs4_state
*state
, fmode_t mode
, int open_mode
)
772 if (open_mode
& O_EXCL
)
774 switch (mode
& (FMODE_READ
|FMODE_WRITE
)) {
776 ret
|= test_bit(NFS_O_RDONLY_STATE
, &state
->flags
) != 0;
779 ret
|= test_bit(NFS_O_WRONLY_STATE
, &state
->flags
) != 0;
781 case FMODE_READ
|FMODE_WRITE
:
782 ret
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
) != 0;
788 static int can_open_delegated(struct nfs_delegation
*delegation
, fmode_t fmode
)
790 if ((delegation
->type
& fmode
) != fmode
)
792 if (test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
))
794 nfs_mark_delegation_referenced(delegation
);
798 static void update_open_stateflags(struct nfs4_state
*state
, fmode_t fmode
)
807 case FMODE_READ
|FMODE_WRITE
:
810 nfs4_state_set_mode_locked(state
, state
->state
| fmode
);
813 static void nfs_set_open_stateid_locked(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
815 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
816 memcpy(state
->stateid
.data
, stateid
->data
, sizeof(state
->stateid
.data
));
817 memcpy(state
->open_stateid
.data
, stateid
->data
, sizeof(state
->open_stateid
.data
));
820 set_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
823 set_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
825 case FMODE_READ
|FMODE_WRITE
:
826 set_bit(NFS_O_RDWR_STATE
, &state
->flags
);
830 static void nfs_set_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
832 write_seqlock(&state
->seqlock
);
833 nfs_set_open_stateid_locked(state
, stateid
, fmode
);
834 write_sequnlock(&state
->seqlock
);
837 static void __update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, const nfs4_stateid
*deleg_stateid
, fmode_t fmode
)
840 * Protect the call to nfs4_state_set_mode_locked and
841 * serialise the stateid update
843 write_seqlock(&state
->seqlock
);
844 if (deleg_stateid
!= NULL
) {
845 memcpy(state
->stateid
.data
, deleg_stateid
->data
, sizeof(state
->stateid
.data
));
846 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
848 if (open_stateid
!= NULL
)
849 nfs_set_open_stateid_locked(state
, open_stateid
, fmode
);
850 write_sequnlock(&state
->seqlock
);
851 spin_lock(&state
->owner
->so_lock
);
852 update_open_stateflags(state
, fmode
);
853 spin_unlock(&state
->owner
->so_lock
);
856 static int update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, nfs4_stateid
*delegation
, fmode_t fmode
)
858 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
859 struct nfs_delegation
*deleg_cur
;
862 fmode
&= (FMODE_READ
|FMODE_WRITE
);
865 deleg_cur
= rcu_dereference(nfsi
->delegation
);
866 if (deleg_cur
== NULL
)
869 spin_lock(&deleg_cur
->lock
);
870 if (nfsi
->delegation
!= deleg_cur
||
871 (deleg_cur
->type
& fmode
) != fmode
)
872 goto no_delegation_unlock
;
874 if (delegation
== NULL
)
875 delegation
= &deleg_cur
->stateid
;
876 else if (memcmp(deleg_cur
->stateid
.data
, delegation
->data
, NFS4_STATEID_SIZE
) != 0)
877 goto no_delegation_unlock
;
879 nfs_mark_delegation_referenced(deleg_cur
);
880 __update_open_stateid(state
, open_stateid
, &deleg_cur
->stateid
, fmode
);
882 no_delegation_unlock
:
883 spin_unlock(&deleg_cur
->lock
);
887 if (!ret
&& open_stateid
!= NULL
) {
888 __update_open_stateid(state
, open_stateid
, NULL
, fmode
);
896 static void nfs4_return_incompatible_delegation(struct inode
*inode
, fmode_t fmode
)
898 struct nfs_delegation
*delegation
;
901 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
902 if (delegation
== NULL
|| (delegation
->type
& fmode
) == fmode
) {
907 nfs_inode_return_delegation(inode
);
910 static struct nfs4_state
*nfs4_try_open_cached(struct nfs4_opendata
*opendata
)
912 struct nfs4_state
*state
= opendata
->state
;
913 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
914 struct nfs_delegation
*delegation
;
915 int open_mode
= opendata
->o_arg
.open_flags
& O_EXCL
;
916 fmode_t fmode
= opendata
->o_arg
.fmode
;
917 nfs4_stateid stateid
;
921 if (can_open_cached(state
, fmode
, open_mode
)) {
922 spin_lock(&state
->owner
->so_lock
);
923 if (can_open_cached(state
, fmode
, open_mode
)) {
924 update_open_stateflags(state
, fmode
);
925 spin_unlock(&state
->owner
->so_lock
);
926 goto out_return_state
;
928 spin_unlock(&state
->owner
->so_lock
);
931 delegation
= rcu_dereference(nfsi
->delegation
);
932 if (delegation
== NULL
||
933 !can_open_delegated(delegation
, fmode
)) {
937 /* Save the delegation */
938 memcpy(stateid
.data
, delegation
->stateid
.data
, sizeof(stateid
.data
));
940 ret
= nfs_may_open(state
->inode
, state
->owner
->so_cred
, open_mode
);
945 /* Try to update the stateid using the delegation */
946 if (update_open_stateid(state
, NULL
, &stateid
, fmode
))
947 goto out_return_state
;
952 atomic_inc(&state
->count
);
956 static struct nfs4_state
*nfs4_opendata_to_nfs4_state(struct nfs4_opendata
*data
)
959 struct nfs4_state
*state
= NULL
;
960 struct nfs_delegation
*delegation
;
963 if (!data
->rpc_done
) {
964 state
= nfs4_try_open_cached(data
);
969 if (!(data
->f_attr
.valid
& NFS_ATTR_FATTR
))
971 inode
= nfs_fhget(data
->dir
->d_sb
, &data
->o_res
.fh
, &data
->f_attr
);
972 ret
= PTR_ERR(inode
);
976 state
= nfs4_get_open_state(inode
, data
->owner
);
979 if (data
->o_res
.delegation_type
!= 0) {
980 int delegation_flags
= 0;
983 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
985 delegation_flags
= delegation
->flags
;
987 if ((delegation_flags
& 1UL<<NFS_DELEGATION_NEED_RECLAIM
) == 0)
988 nfs_inode_set_delegation(state
->inode
,
989 data
->owner
->so_cred
,
992 nfs_inode_reclaim_delegation(state
->inode
,
993 data
->owner
->so_cred
,
997 update_open_stateid(state
, &data
->o_res
.stateid
, NULL
,
1005 return ERR_PTR(ret
);
1008 static struct nfs_open_context
*nfs4_state_find_open_context(struct nfs4_state
*state
)
1010 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
1011 struct nfs_open_context
*ctx
;
1013 spin_lock(&state
->inode
->i_lock
);
1014 list_for_each_entry(ctx
, &nfsi
->open_files
, list
) {
1015 if (ctx
->state
!= state
)
1017 get_nfs_open_context(ctx
);
1018 spin_unlock(&state
->inode
->i_lock
);
1021 spin_unlock(&state
->inode
->i_lock
);
1022 return ERR_PTR(-ENOENT
);
1025 static struct nfs4_opendata
*nfs4_open_recoverdata_alloc(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1027 struct nfs4_opendata
*opendata
;
1029 opendata
= nfs4_opendata_alloc(&ctx
->path
, state
->owner
, 0, 0, NULL
);
1030 if (opendata
== NULL
)
1031 return ERR_PTR(-ENOMEM
);
1032 opendata
->state
= state
;
1033 atomic_inc(&state
->count
);
1037 static int nfs4_open_recover_helper(struct nfs4_opendata
*opendata
, fmode_t fmode
, struct nfs4_state
**res
)
1039 struct nfs4_state
*newstate
;
1042 opendata
->o_arg
.open_flags
= 0;
1043 opendata
->o_arg
.fmode
= fmode
;
1044 memset(&opendata
->o_res
, 0, sizeof(opendata
->o_res
));
1045 memset(&opendata
->c_res
, 0, sizeof(opendata
->c_res
));
1046 nfs4_init_opendata_res(opendata
);
1047 ret
= _nfs4_proc_open(opendata
);
1050 newstate
= nfs4_opendata_to_nfs4_state(opendata
);
1051 if (IS_ERR(newstate
))
1052 return PTR_ERR(newstate
);
1053 nfs4_close_state(&opendata
->path
, newstate
, fmode
);
1058 static int nfs4_open_recover(struct nfs4_opendata
*opendata
, struct nfs4_state
*state
)
1060 struct nfs4_state
*newstate
;
1063 /* memory barrier prior to reading state->n_* */
1064 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
1066 if (state
->n_rdwr
!= 0) {
1067 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
|FMODE_WRITE
, &newstate
);
1070 if (newstate
!= state
)
1073 if (state
->n_wronly
!= 0) {
1074 ret
= nfs4_open_recover_helper(opendata
, FMODE_WRITE
, &newstate
);
1077 if (newstate
!= state
)
1080 if (state
->n_rdonly
!= 0) {
1081 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
, &newstate
);
1084 if (newstate
!= state
)
1088 * We may have performed cached opens for all three recoveries.
1089 * Check if we need to update the current stateid.
1091 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0 &&
1092 memcmp(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
)) != 0) {
1093 write_seqlock(&state
->seqlock
);
1094 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
1095 memcpy(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
));
1096 write_sequnlock(&state
->seqlock
);
1103 * reclaim state on the server after a reboot.
1105 static int _nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1107 struct nfs_delegation
*delegation
;
1108 struct nfs4_opendata
*opendata
;
1109 fmode_t delegation_type
= 0;
1112 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1113 if (IS_ERR(opendata
))
1114 return PTR_ERR(opendata
);
1115 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_PREVIOUS
;
1116 opendata
->o_arg
.fh
= NFS_FH(state
->inode
);
1118 delegation
= rcu_dereference(NFS_I(state
->inode
)->delegation
);
1119 if (delegation
!= NULL
&& test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) != 0)
1120 delegation_type
= delegation
->type
;
1122 opendata
->o_arg
.u
.delegation_type
= delegation_type
;
1123 status
= nfs4_open_recover(opendata
, state
);
1124 nfs4_opendata_put(opendata
);
1128 static int nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1130 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1131 struct nfs4_exception exception
= { };
1134 err
= _nfs4_do_open_reclaim(ctx
, state
);
1135 if (err
!= -NFS4ERR_DELAY
)
1137 nfs4_handle_exception(server
, err
, &exception
);
1138 } while (exception
.retry
);
1142 static int nfs4_open_reclaim(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1144 struct nfs_open_context
*ctx
;
1147 ctx
= nfs4_state_find_open_context(state
);
1149 return PTR_ERR(ctx
);
1150 ret
= nfs4_do_open_reclaim(ctx
, state
);
1151 put_nfs_open_context(ctx
);
1155 static int _nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1157 struct nfs4_opendata
*opendata
;
1160 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1161 if (IS_ERR(opendata
))
1162 return PTR_ERR(opendata
);
1163 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_DELEGATE_CUR
;
1164 memcpy(opendata
->o_arg
.u
.delegation
.data
, stateid
->data
,
1165 sizeof(opendata
->o_arg
.u
.delegation
.data
));
1166 ret
= nfs4_open_recover(opendata
, state
);
1167 nfs4_opendata_put(opendata
);
1171 int nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1173 struct nfs4_exception exception
= { };
1174 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1177 err
= _nfs4_open_delegation_recall(ctx
, state
, stateid
);
1183 case -NFS4ERR_STALE_CLIENTID
:
1184 case -NFS4ERR_STALE_STATEID
:
1185 case -NFS4ERR_EXPIRED
:
1186 /* Don't recall a delegation if it was lost */
1187 nfs4_schedule_state_recovery(server
->nfs_client
);
1191 * The show must go on: exit, but mark the
1192 * stateid as needing recovery.
1194 case -NFS4ERR_ADMIN_REVOKED
:
1195 case -NFS4ERR_BAD_STATEID
:
1196 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
1201 err
= nfs4_handle_exception(server
, err
, &exception
);
1202 } while (exception
.retry
);
1207 static void nfs4_open_confirm_done(struct rpc_task
*task
, void *calldata
)
1209 struct nfs4_opendata
*data
= calldata
;
1211 data
->rpc_status
= task
->tk_status
;
1212 if (RPC_ASSASSINATED(task
))
1214 if (data
->rpc_status
== 0) {
1215 memcpy(data
->o_res
.stateid
.data
, data
->c_res
.stateid
.data
,
1216 sizeof(data
->o_res
.stateid
.data
));
1217 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1218 renew_lease(data
->o_res
.server
, data
->timestamp
);
1223 static void nfs4_open_confirm_release(void *calldata
)
1225 struct nfs4_opendata
*data
= calldata
;
1226 struct nfs4_state
*state
= NULL
;
1228 /* If this request hasn't been cancelled, do nothing */
1229 if (data
->cancelled
== 0)
1231 /* In case of error, no cleanup! */
1232 if (!data
->rpc_done
)
1234 state
= nfs4_opendata_to_nfs4_state(data
);
1236 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1238 nfs4_opendata_put(data
);
1241 static const struct rpc_call_ops nfs4_open_confirm_ops
= {
1242 .rpc_call_done
= nfs4_open_confirm_done
,
1243 .rpc_release
= nfs4_open_confirm_release
,
1247 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1249 static int _nfs4_proc_open_confirm(struct nfs4_opendata
*data
)
1251 struct nfs_server
*server
= NFS_SERVER(data
->dir
->d_inode
);
1252 struct rpc_task
*task
;
1253 struct rpc_message msg
= {
1254 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_CONFIRM
],
1255 .rpc_argp
= &data
->c_arg
,
1256 .rpc_resp
= &data
->c_res
,
1257 .rpc_cred
= data
->owner
->so_cred
,
1259 struct rpc_task_setup task_setup_data
= {
1260 .rpc_client
= server
->client
,
1261 .rpc_message
= &msg
,
1262 .callback_ops
= &nfs4_open_confirm_ops
,
1263 .callback_data
= data
,
1264 .workqueue
= nfsiod_workqueue
,
1265 .flags
= RPC_TASK_ASYNC
,
1269 kref_get(&data
->kref
);
1271 data
->rpc_status
= 0;
1272 data
->timestamp
= jiffies
;
1273 task
= rpc_run_task(&task_setup_data
);
1275 return PTR_ERR(task
);
1276 status
= nfs4_wait_for_completion_rpc_task(task
);
1278 data
->cancelled
= 1;
1281 status
= data
->rpc_status
;
1286 static void nfs4_open_prepare(struct rpc_task
*task
, void *calldata
)
1288 struct nfs4_opendata
*data
= calldata
;
1289 struct nfs4_state_owner
*sp
= data
->owner
;
1291 if (nfs_wait_on_sequence(data
->o_arg
.seqid
, task
) != 0)
1294 * Check if we still need to send an OPEN call, or if we can use
1295 * a delegation instead.
1297 if (data
->state
!= NULL
) {
1298 struct nfs_delegation
*delegation
;
1300 if (can_open_cached(data
->state
, data
->o_arg
.fmode
, data
->o_arg
.open_flags
))
1303 delegation
= rcu_dereference(NFS_I(data
->state
->inode
)->delegation
);
1304 if (delegation
!= NULL
&&
1305 test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) == 0) {
1311 /* Update sequence id. */
1312 data
->o_arg
.id
= sp
->so_owner_id
.id
;
1313 data
->o_arg
.clientid
= sp
->so_client
->cl_clientid
;
1314 if (data
->o_arg
.claim
== NFS4_OPEN_CLAIM_PREVIOUS
) {
1315 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_NOATTR
];
1316 nfs_copy_fh(&data
->o_res
.fh
, data
->o_arg
.fh
);
1318 data
->timestamp
= jiffies
;
1319 if (nfs4_setup_sequence(data
->o_arg
.server
->nfs_client
,
1320 &data
->o_arg
.seq_args
,
1321 &data
->o_res
.seq_res
, 1, task
))
1323 rpc_call_start(task
);
1326 task
->tk_action
= NULL
;
1330 static void nfs4_open_done(struct rpc_task
*task
, void *calldata
)
1332 struct nfs4_opendata
*data
= calldata
;
1334 data
->rpc_status
= task
->tk_status
;
1336 nfs4_sequence_done_free_slot(data
->o_arg
.server
, &data
->o_res
.seq_res
,
1339 if (RPC_ASSASSINATED(task
))
1341 if (task
->tk_status
== 0) {
1342 switch (data
->o_res
.f_attr
->mode
& S_IFMT
) {
1346 data
->rpc_status
= -ELOOP
;
1349 data
->rpc_status
= -EISDIR
;
1352 data
->rpc_status
= -ENOTDIR
;
1354 renew_lease(data
->o_res
.server
, data
->timestamp
);
1355 if (!(data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
))
1356 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1361 static void nfs4_open_release(void *calldata
)
1363 struct nfs4_opendata
*data
= calldata
;
1364 struct nfs4_state
*state
= NULL
;
1366 /* If this request hasn't been cancelled, do nothing */
1367 if (data
->cancelled
== 0)
1369 /* In case of error, no cleanup! */
1370 if (data
->rpc_status
!= 0 || !data
->rpc_done
)
1372 /* In case we need an open_confirm, no cleanup! */
1373 if (data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
)
1375 state
= nfs4_opendata_to_nfs4_state(data
);
1377 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1379 nfs4_opendata_put(data
);
1382 static const struct rpc_call_ops nfs4_open_ops
= {
1383 .rpc_call_prepare
= nfs4_open_prepare
,
1384 .rpc_call_done
= nfs4_open_done
,
1385 .rpc_release
= nfs4_open_release
,
1389 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1391 static int _nfs4_proc_open(struct nfs4_opendata
*data
)
1393 struct inode
*dir
= data
->dir
->d_inode
;
1394 struct nfs_server
*server
= NFS_SERVER(dir
);
1395 struct nfs_openargs
*o_arg
= &data
->o_arg
;
1396 struct nfs_openres
*o_res
= &data
->o_res
;
1397 struct rpc_task
*task
;
1398 struct rpc_message msg
= {
1399 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN
],
1402 .rpc_cred
= data
->owner
->so_cred
,
1404 struct rpc_task_setup task_setup_data
= {
1405 .rpc_client
= server
->client
,
1406 .rpc_message
= &msg
,
1407 .callback_ops
= &nfs4_open_ops
,
1408 .callback_data
= data
,
1409 .workqueue
= nfsiod_workqueue
,
1410 .flags
= RPC_TASK_ASYNC
,
1414 kref_get(&data
->kref
);
1416 data
->rpc_status
= 0;
1417 data
->cancelled
= 0;
1418 task
= rpc_run_task(&task_setup_data
);
1420 return PTR_ERR(task
);
1421 status
= nfs4_wait_for_completion_rpc_task(task
);
1423 data
->cancelled
= 1;
1426 status
= data
->rpc_status
;
1428 if (status
!= 0 || !data
->rpc_done
)
1431 if (o_res
->fh
.size
== 0)
1432 _nfs4_proc_lookup(dir
, o_arg
->name
, &o_res
->fh
, o_res
->f_attr
);
1434 if (o_arg
->open_flags
& O_CREAT
) {
1435 update_changeattr(dir
, &o_res
->cinfo
);
1436 nfs_post_op_update_inode(dir
, o_res
->dir_attr
);
1438 nfs_refresh_inode(dir
, o_res
->dir_attr
);
1439 if(o_res
->rflags
& NFS4_OPEN_RESULT_CONFIRM
) {
1440 status
= _nfs4_proc_open_confirm(data
);
1444 if (!(o_res
->f_attr
->valid
& NFS_ATTR_FATTR
))
1445 _nfs4_proc_getattr(server
, &o_res
->fh
, o_res
->f_attr
);
1449 static int nfs4_recover_expired_lease(struct nfs_server
*server
)
1451 struct nfs_client
*clp
= server
->nfs_client
;
1455 ret
= nfs4_wait_clnt_recover(clp
);
1458 if (!test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) &&
1459 !test_bit(NFS4CLNT_CHECK_LEASE
,&clp
->cl_state
))
1461 nfs4_schedule_state_recovery(clp
);
1468 * reclaim state on the server after a network partition.
1469 * Assumes caller holds the appropriate lock
1471 static int _nfs4_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1473 struct nfs4_opendata
*opendata
;
1476 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1477 if (IS_ERR(opendata
))
1478 return PTR_ERR(opendata
);
1479 ret
= nfs4_open_recover(opendata
, state
);
1481 d_drop(ctx
->path
.dentry
);
1482 nfs4_opendata_put(opendata
);
1486 static inline int nfs4_do_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1488 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1489 struct nfs4_exception exception
= { };
1493 err
= _nfs4_open_expired(ctx
, state
);
1494 if (err
!= -NFS4ERR_DELAY
)
1496 nfs4_handle_exception(server
, err
, &exception
);
1497 } while (exception
.retry
);
1501 static int nfs4_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1503 struct nfs_open_context
*ctx
;
1506 ctx
= nfs4_state_find_open_context(state
);
1508 return PTR_ERR(ctx
);
1509 ret
= nfs4_do_open_expired(ctx
, state
);
1510 put_nfs_open_context(ctx
);
1515 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1516 * fields corresponding to attributes that were used to store the verifier.
1517 * Make sure we clobber those fields in the later setattr call
1519 static inline void nfs4_exclusive_attrset(struct nfs4_opendata
*opendata
, struct iattr
*sattr
)
1521 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_ACCESS
) &&
1522 !(sattr
->ia_valid
& ATTR_ATIME_SET
))
1523 sattr
->ia_valid
|= ATTR_ATIME
;
1525 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_MODIFY
) &&
1526 !(sattr
->ia_valid
& ATTR_MTIME_SET
))
1527 sattr
->ia_valid
|= ATTR_MTIME
;
1531 * Returns a referenced nfs4_state
1533 static int _nfs4_do_open(struct inode
*dir
, struct path
*path
, fmode_t fmode
, int flags
, struct iattr
*sattr
, struct rpc_cred
*cred
, struct nfs4_state
**res
)
1535 struct nfs4_state_owner
*sp
;
1536 struct nfs4_state
*state
= NULL
;
1537 struct nfs_server
*server
= NFS_SERVER(dir
);
1538 struct nfs4_opendata
*opendata
;
1541 /* Protect against reboot recovery conflicts */
1543 if (!(sp
= nfs4_get_state_owner(server
, cred
))) {
1544 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1547 status
= nfs4_recover_expired_lease(server
);
1549 goto err_put_state_owner
;
1550 if (path
->dentry
->d_inode
!= NULL
)
1551 nfs4_return_incompatible_delegation(path
->dentry
->d_inode
, fmode
);
1553 opendata
= nfs4_opendata_alloc(path
, sp
, fmode
, flags
, sattr
);
1554 if (opendata
== NULL
)
1555 goto err_put_state_owner
;
1557 if (path
->dentry
->d_inode
!= NULL
)
1558 opendata
->state
= nfs4_get_open_state(path
->dentry
->d_inode
, sp
);
1560 status
= _nfs4_proc_open(opendata
);
1562 goto err_opendata_put
;
1564 if (opendata
->o_arg
.open_flags
& O_EXCL
)
1565 nfs4_exclusive_attrset(opendata
, sattr
);
1567 state
= nfs4_opendata_to_nfs4_state(opendata
);
1568 status
= PTR_ERR(state
);
1570 goto err_opendata_put
;
1571 nfs4_opendata_put(opendata
);
1572 nfs4_put_state_owner(sp
);
1576 nfs4_opendata_put(opendata
);
1577 err_put_state_owner
:
1578 nfs4_put_state_owner(sp
);
1585 static struct nfs4_state
*nfs4_do_open(struct inode
*dir
, struct path
*path
, fmode_t fmode
, int flags
, struct iattr
*sattr
, struct rpc_cred
*cred
)
1587 struct nfs4_exception exception
= { };
1588 struct nfs4_state
*res
;
1592 status
= _nfs4_do_open(dir
, path
, fmode
, flags
, sattr
, cred
, &res
);
1595 /* NOTE: BAD_SEQID means the server and client disagree about the
1596 * book-keeping w.r.t. state-changing operations
1597 * (OPEN/CLOSE/LOCK/LOCKU...)
1598 * It is actually a sign of a bug on the client or on the server.
1600 * If we receive a BAD_SEQID error in the particular case of
1601 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1602 * have unhashed the old state_owner for us, and that we can
1603 * therefore safely retry using a new one. We should still warn
1604 * the user though...
1606 if (status
== -NFS4ERR_BAD_SEQID
) {
1607 printk(KERN_WARNING
"NFS: v4 server %s "
1608 " returned a bad sequence-id error!\n",
1609 NFS_SERVER(dir
)->nfs_client
->cl_hostname
);
1610 exception
.retry
= 1;
1614 * BAD_STATEID on OPEN means that the server cancelled our
1615 * state before it received the OPEN_CONFIRM.
1616 * Recover by retrying the request as per the discussion
1617 * on Page 181 of RFC3530.
1619 if (status
== -NFS4ERR_BAD_STATEID
) {
1620 exception
.retry
= 1;
1623 if (status
== -EAGAIN
) {
1624 /* We must have found a delegation */
1625 exception
.retry
= 1;
1628 res
= ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir
),
1629 status
, &exception
));
1630 } while (exception
.retry
);
1634 static int _nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1635 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1636 struct nfs4_state
*state
)
1638 struct nfs_server
*server
= NFS_SERVER(inode
);
1639 struct nfs_setattrargs arg
= {
1640 .fh
= NFS_FH(inode
),
1643 .bitmask
= server
->attr_bitmask
,
1645 struct nfs_setattrres res
= {
1649 struct rpc_message msg
= {
1650 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETATTR
],
1655 unsigned long timestamp
= jiffies
;
1658 nfs_fattr_init(fattr
);
1660 if (nfs4_copy_delegation_stateid(&arg
.stateid
, inode
)) {
1661 /* Use that stateid */
1662 } else if (state
!= NULL
) {
1663 nfs4_copy_stateid(&arg
.stateid
, state
, current
->files
);
1665 memcpy(&arg
.stateid
, &zero_stateid
, sizeof(arg
.stateid
));
1667 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
1668 if (status
== 0 && state
!= NULL
)
1669 renew_lease(server
, timestamp
);
1673 static int nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1674 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1675 struct nfs4_state
*state
)
1677 struct nfs_server
*server
= NFS_SERVER(inode
);
1678 struct nfs4_exception exception
= { };
1681 err
= nfs4_handle_exception(server
,
1682 _nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
),
1684 } while (exception
.retry
);
1688 struct nfs4_closedata
{
1690 struct inode
*inode
;
1691 struct nfs4_state
*state
;
1692 struct nfs_closeargs arg
;
1693 struct nfs_closeres res
;
1694 struct nfs_fattr fattr
;
1695 unsigned long timestamp
;
1698 static void nfs4_free_closedata(void *data
)
1700 struct nfs4_closedata
*calldata
= data
;
1701 struct nfs4_state_owner
*sp
= calldata
->state
->owner
;
1703 nfs4_put_open_state(calldata
->state
);
1704 nfs_free_seqid(calldata
->arg
.seqid
);
1705 nfs4_put_state_owner(sp
);
1706 path_put(&calldata
->path
);
1710 static void nfs4_close_done(struct rpc_task
*task
, void *data
)
1712 struct nfs4_closedata
*calldata
= data
;
1713 struct nfs4_state
*state
= calldata
->state
;
1714 struct nfs_server
*server
= NFS_SERVER(calldata
->inode
);
1716 nfs4_sequence_done(server
, &calldata
->res
.seq_res
, task
->tk_status
);
1717 if (RPC_ASSASSINATED(task
))
1719 /* hmm. we are done with the inode, and in the process of freeing
1720 * the state_owner. we keep this around to process errors
1722 switch (task
->tk_status
) {
1724 nfs_set_open_stateid(state
, &calldata
->res
.stateid
, 0);
1725 renew_lease(server
, calldata
->timestamp
);
1727 case -NFS4ERR_STALE_STATEID
:
1728 case -NFS4ERR_OLD_STATEID
:
1729 case -NFS4ERR_BAD_STATEID
:
1730 case -NFS4ERR_EXPIRED
:
1731 if (calldata
->arg
.fmode
== 0)
1734 if (nfs4_async_handle_error(task
, server
, state
) == -EAGAIN
) {
1735 nfs4_restart_rpc(task
, server
->nfs_client
);
1739 nfs4_sequence_free_slot(server
->nfs_client
, &calldata
->res
.seq_res
);
1740 nfs_refresh_inode(calldata
->inode
, calldata
->res
.fattr
);
1743 static void nfs4_close_prepare(struct rpc_task
*task
, void *data
)
1745 struct nfs4_closedata
*calldata
= data
;
1746 struct nfs4_state
*state
= calldata
->state
;
1747 int clear_rd
, clear_wr
, clear_rdwr
;
1749 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
1752 clear_rd
= clear_wr
= clear_rdwr
= 0;
1753 spin_lock(&state
->owner
->so_lock
);
1754 /* Calculate the change in open mode */
1755 if (state
->n_rdwr
== 0) {
1756 if (state
->n_rdonly
== 0) {
1757 clear_rd
|= test_and_clear_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1758 clear_rdwr
|= test_and_clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1760 if (state
->n_wronly
== 0) {
1761 clear_wr
|= test_and_clear_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1762 clear_rdwr
|= test_and_clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1765 spin_unlock(&state
->owner
->so_lock
);
1766 if (!clear_rd
&& !clear_wr
&& !clear_rdwr
) {
1767 /* Note: exit _without_ calling nfs4_close_done */
1768 task
->tk_action
= NULL
;
1771 nfs_fattr_init(calldata
->res
.fattr
);
1772 if (test_bit(NFS_O_RDONLY_STATE
, &state
->flags
) != 0) {
1773 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
1774 calldata
->arg
.fmode
= FMODE_READ
;
1775 } else if (test_bit(NFS_O_WRONLY_STATE
, &state
->flags
) != 0) {
1776 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
1777 calldata
->arg
.fmode
= FMODE_WRITE
;
1779 calldata
->timestamp
= jiffies
;
1780 if (nfs4_setup_sequence((NFS_SERVER(calldata
->inode
))->nfs_client
,
1781 &calldata
->arg
.seq_args
, &calldata
->res
.seq_res
,
1784 rpc_call_start(task
);
1787 static const struct rpc_call_ops nfs4_close_ops
= {
1788 .rpc_call_prepare
= nfs4_close_prepare
,
1789 .rpc_call_done
= nfs4_close_done
,
1790 .rpc_release
= nfs4_free_closedata
,
1794 * It is possible for data to be read/written from a mem-mapped file
1795 * after the sys_close call (which hits the vfs layer as a flush).
1796 * This means that we can't safely call nfsv4 close on a file until
1797 * the inode is cleared. This in turn means that we are not good
1798 * NFSv4 citizens - we do not indicate to the server to update the file's
1799 * share state even when we are done with one of the three share
1800 * stateid's in the inode.
1802 * NOTE: Caller must be holding the sp->so_owner semaphore!
1804 int nfs4_do_close(struct path
*path
, struct nfs4_state
*state
, int wait
)
1806 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1807 struct nfs4_closedata
*calldata
;
1808 struct nfs4_state_owner
*sp
= state
->owner
;
1809 struct rpc_task
*task
;
1810 struct rpc_message msg
= {
1811 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CLOSE
],
1812 .rpc_cred
= state
->owner
->so_cred
,
1814 struct rpc_task_setup task_setup_data
= {
1815 .rpc_client
= server
->client
,
1816 .rpc_message
= &msg
,
1817 .callback_ops
= &nfs4_close_ops
,
1818 .workqueue
= nfsiod_workqueue
,
1819 .flags
= RPC_TASK_ASYNC
,
1821 int status
= -ENOMEM
;
1823 calldata
= kzalloc(sizeof(*calldata
), GFP_KERNEL
);
1824 if (calldata
== NULL
)
1826 calldata
->inode
= state
->inode
;
1827 calldata
->state
= state
;
1828 calldata
->arg
.fh
= NFS_FH(state
->inode
);
1829 calldata
->arg
.stateid
= &state
->open_stateid
;
1830 if (nfs4_has_session(server
->nfs_client
))
1831 memset(calldata
->arg
.stateid
->data
, 0, 4); /* clear seqid */
1832 /* Serialization for the sequence id */
1833 calldata
->arg
.seqid
= nfs_alloc_seqid(&state
->owner
->so_seqid
);
1834 if (calldata
->arg
.seqid
== NULL
)
1835 goto out_free_calldata
;
1836 calldata
->arg
.fmode
= 0;
1837 calldata
->arg
.bitmask
= server
->cache_consistency_bitmask
;
1838 calldata
->res
.fattr
= &calldata
->fattr
;
1839 calldata
->res
.seqid
= calldata
->arg
.seqid
;
1840 calldata
->res
.server
= server
;
1841 calldata
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
1842 calldata
->path
.mnt
= mntget(path
->mnt
);
1843 calldata
->path
.dentry
= dget(path
->dentry
);
1845 msg
.rpc_argp
= &calldata
->arg
,
1846 msg
.rpc_resp
= &calldata
->res
,
1847 task_setup_data
.callback_data
= calldata
;
1848 task
= rpc_run_task(&task_setup_data
);
1850 return PTR_ERR(task
);
1853 status
= rpc_wait_for_completion_task(task
);
1859 nfs4_put_open_state(state
);
1860 nfs4_put_state_owner(sp
);
1864 static int nfs4_intent_set_file(struct nameidata
*nd
, struct path
*path
, struct nfs4_state
*state
, fmode_t fmode
)
1869 /* If the open_intent is for execute, we have an extra check to make */
1870 if (fmode
& FMODE_EXEC
) {
1871 ret
= nfs_may_open(state
->inode
,
1872 state
->owner
->so_cred
,
1873 nd
->intent
.open
.flags
);
1877 filp
= lookup_instantiate_filp(nd
, path
->dentry
, NULL
);
1878 if (!IS_ERR(filp
)) {
1879 struct nfs_open_context
*ctx
;
1880 ctx
= nfs_file_open_context(filp
);
1884 ret
= PTR_ERR(filp
);
1886 nfs4_close_sync(path
, state
, fmode
& (FMODE_READ
|FMODE_WRITE
));
1891 nfs4_atomic_open(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
1893 struct path path
= {
1894 .mnt
= nd
->path
.mnt
,
1897 struct dentry
*parent
;
1899 struct rpc_cred
*cred
;
1900 struct nfs4_state
*state
;
1902 fmode_t fmode
= nd
->intent
.open
.flags
& (FMODE_READ
| FMODE_WRITE
| FMODE_EXEC
);
1904 if (nd
->flags
& LOOKUP_CREATE
) {
1905 attr
.ia_mode
= nd
->intent
.open
.create_mode
;
1906 attr
.ia_valid
= ATTR_MODE
;
1907 if (!IS_POSIXACL(dir
))
1908 attr
.ia_mode
&= ~current_umask();
1911 BUG_ON(nd
->intent
.open
.flags
& O_CREAT
);
1914 cred
= rpc_lookup_cred();
1916 return (struct dentry
*)cred
;
1917 parent
= dentry
->d_parent
;
1918 /* Protect against concurrent sillydeletes */
1919 nfs_block_sillyrename(parent
);
1920 state
= nfs4_do_open(dir
, &path
, fmode
, nd
->intent
.open
.flags
, &attr
, cred
);
1922 if (IS_ERR(state
)) {
1923 if (PTR_ERR(state
) == -ENOENT
) {
1924 d_add(dentry
, NULL
);
1925 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1927 nfs_unblock_sillyrename(parent
);
1928 return (struct dentry
*)state
;
1930 res
= d_add_unique(dentry
, igrab(state
->inode
));
1933 nfs_set_verifier(path
.dentry
, nfs_save_change_attribute(dir
));
1934 nfs_unblock_sillyrename(parent
);
1935 nfs4_intent_set_file(nd
, &path
, state
, fmode
);
1940 nfs4_open_revalidate(struct inode
*dir
, struct dentry
*dentry
, int openflags
, struct nameidata
*nd
)
1942 struct path path
= {
1943 .mnt
= nd
->path
.mnt
,
1946 struct rpc_cred
*cred
;
1947 struct nfs4_state
*state
;
1948 fmode_t fmode
= openflags
& (FMODE_READ
| FMODE_WRITE
);
1950 cred
= rpc_lookup_cred();
1952 return PTR_ERR(cred
);
1953 state
= nfs4_do_open(dir
, &path
, fmode
, openflags
, NULL
, cred
);
1955 if (IS_ERR(state
)) {
1956 switch (PTR_ERR(state
)) {
1962 lookup_instantiate_filp(nd
, (struct dentry
*)state
, NULL
);
1968 if (state
->inode
== dentry
->d_inode
) {
1969 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1970 nfs4_intent_set_file(nd
, &path
, state
, fmode
);
1973 nfs4_close_sync(&path
, state
, fmode
);
1979 void nfs4_close_context(struct nfs_open_context
*ctx
, int is_sync
)
1981 if (ctx
->state
== NULL
)
1984 nfs4_close_sync(&ctx
->path
, ctx
->state
, ctx
->mode
);
1986 nfs4_close_state(&ctx
->path
, ctx
->state
, ctx
->mode
);
1989 static int _nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
1991 struct nfs4_server_caps_arg args
= {
1994 struct nfs4_server_caps_res res
= {};
1995 struct rpc_message msg
= {
1996 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SERVER_CAPS
],
2002 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2004 memcpy(server
->attr_bitmask
, res
.attr_bitmask
, sizeof(server
->attr_bitmask
));
2005 if (res
.attr_bitmask
[0] & FATTR4_WORD0_ACL
)
2006 server
->caps
|= NFS_CAP_ACLS
;
2007 if (res
.has_links
!= 0)
2008 server
->caps
|= NFS_CAP_HARDLINKS
;
2009 if (res
.has_symlinks
!= 0)
2010 server
->caps
|= NFS_CAP_SYMLINKS
;
2011 memcpy(server
->cache_consistency_bitmask
, res
.attr_bitmask
, sizeof(server
->cache_consistency_bitmask
));
2012 server
->cache_consistency_bitmask
[0] &= FATTR4_WORD0_CHANGE
|FATTR4_WORD0_SIZE
;
2013 server
->cache_consistency_bitmask
[1] &= FATTR4_WORD1_TIME_METADATA
|FATTR4_WORD1_TIME_MODIFY
;
2014 server
->acl_bitmask
= res
.acl_bitmask
;
2020 int nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
2022 struct nfs4_exception exception
= { };
2025 err
= nfs4_handle_exception(server
,
2026 _nfs4_server_capabilities(server
, fhandle
),
2028 } while (exception
.retry
);
2032 static int _nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2033 struct nfs_fsinfo
*info
)
2035 struct nfs4_lookup_root_arg args
= {
2036 .bitmask
= nfs4_fattr_bitmap
,
2038 struct nfs4_lookup_res res
= {
2040 .fattr
= info
->fattr
,
2043 struct rpc_message msg
= {
2044 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP_ROOT
],
2049 nfs_fattr_init(info
->fattr
);
2050 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2053 static int nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2054 struct nfs_fsinfo
*info
)
2056 struct nfs4_exception exception
= { };
2059 err
= nfs4_handle_exception(server
,
2060 _nfs4_lookup_root(server
, fhandle
, info
),
2062 } while (exception
.retry
);
2067 * get the file handle for the "/" directory on the server
2069 static int nfs4_proc_get_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2070 struct nfs_fsinfo
*info
)
2074 status
= nfs4_lookup_root(server
, fhandle
, info
);
2076 status
= nfs4_server_capabilities(server
, fhandle
);
2078 status
= nfs4_do_fsinfo(server
, fhandle
, info
);
2079 return nfs4_map_errors(status
);
2083 * Get locations and (maybe) other attributes of a referral.
2084 * Note that we'll actually follow the referral later when
2085 * we detect fsid mismatch in inode revalidation
2087 static int nfs4_get_referral(struct inode
*dir
, const struct qstr
*name
, struct nfs_fattr
*fattr
, struct nfs_fh
*fhandle
)
2089 int status
= -ENOMEM
;
2090 struct page
*page
= NULL
;
2091 struct nfs4_fs_locations
*locations
= NULL
;
2093 page
= alloc_page(GFP_KERNEL
);
2096 locations
= kmalloc(sizeof(struct nfs4_fs_locations
), GFP_KERNEL
);
2097 if (locations
== NULL
)
2100 status
= nfs4_proc_fs_locations(dir
, name
, locations
, page
);
2103 /* Make sure server returned a different fsid for the referral */
2104 if (nfs_fsid_equal(&NFS_SERVER(dir
)->fsid
, &locations
->fattr
.fsid
)) {
2105 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__
, name
->name
);
2110 memcpy(fattr
, &locations
->fattr
, sizeof(struct nfs_fattr
));
2111 fattr
->valid
|= NFS_ATTR_FATTR_V4_REFERRAL
;
2113 fattr
->mode
= S_IFDIR
;
2114 memset(fhandle
, 0, sizeof(struct nfs_fh
));
2123 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2125 struct nfs4_getattr_arg args
= {
2127 .bitmask
= server
->attr_bitmask
,
2129 struct nfs4_getattr_res res
= {
2133 struct rpc_message msg
= {
2134 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETATTR
],
2139 nfs_fattr_init(fattr
);
2140 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2143 static int nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2145 struct nfs4_exception exception
= { };
2148 err
= nfs4_handle_exception(server
,
2149 _nfs4_proc_getattr(server
, fhandle
, fattr
),
2151 } while (exception
.retry
);
2156 * The file is not closed if it is opened due to the a request to change
2157 * the size of the file. The open call will not be needed once the
2158 * VFS layer lookup-intents are implemented.
2160 * Close is called when the inode is destroyed.
2161 * If we haven't opened the file for O_WRONLY, we
2162 * need to in the size_change case to obtain a stateid.
2165 * Because OPEN is always done by name in nfsv4, it is
2166 * possible that we opened a different file by the same
2167 * name. We can recognize this race condition, but we
2168 * can't do anything about it besides returning an error.
2170 * This will be fixed with VFS changes (lookup-intent).
2173 nfs4_proc_setattr(struct dentry
*dentry
, struct nfs_fattr
*fattr
,
2174 struct iattr
*sattr
)
2176 struct inode
*inode
= dentry
->d_inode
;
2177 struct rpc_cred
*cred
= NULL
;
2178 struct nfs4_state
*state
= NULL
;
2181 nfs_fattr_init(fattr
);
2183 /* Search for an existing open(O_WRITE) file */
2184 if (sattr
->ia_valid
& ATTR_FILE
) {
2185 struct nfs_open_context
*ctx
;
2187 ctx
= nfs_file_open_context(sattr
->ia_file
);
2194 status
= nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
);
2196 nfs_setattr_update_inode(inode
, sattr
);
2200 static int _nfs4_proc_lookupfh(struct nfs_server
*server
, const struct nfs_fh
*dirfh
,
2201 const struct qstr
*name
, struct nfs_fh
*fhandle
,
2202 struct nfs_fattr
*fattr
)
2205 struct nfs4_lookup_arg args
= {
2206 .bitmask
= server
->attr_bitmask
,
2210 struct nfs4_lookup_res res
= {
2215 struct rpc_message msg
= {
2216 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP
],
2221 nfs_fattr_init(fattr
);
2223 dprintk("NFS call lookupfh %s\n", name
->name
);
2224 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2225 dprintk("NFS reply lookupfh: %d\n", status
);
2229 static int nfs4_proc_lookupfh(struct nfs_server
*server
, struct nfs_fh
*dirfh
,
2230 struct qstr
*name
, struct nfs_fh
*fhandle
,
2231 struct nfs_fattr
*fattr
)
2233 struct nfs4_exception exception
= { };
2236 err
= _nfs4_proc_lookupfh(server
, dirfh
, name
, fhandle
, fattr
);
2238 if (err
== -NFS4ERR_MOVED
) {
2242 err
= nfs4_handle_exception(server
, err
, &exception
);
2243 } while (exception
.retry
);
2247 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
,
2248 struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2252 dprintk("NFS call lookup %s\n", name
->name
);
2253 status
= _nfs4_proc_lookupfh(NFS_SERVER(dir
), NFS_FH(dir
), name
, fhandle
, fattr
);
2254 if (status
== -NFS4ERR_MOVED
)
2255 status
= nfs4_get_referral(dir
, name
, fattr
, fhandle
);
2256 dprintk("NFS reply lookup: %d\n", status
);
2260 static int nfs4_proc_lookup(struct inode
*dir
, struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2262 struct nfs4_exception exception
= { };
2265 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2266 _nfs4_proc_lookup(dir
, name
, fhandle
, fattr
),
2268 } while (exception
.retry
);
2272 static int _nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2274 struct nfs_server
*server
= NFS_SERVER(inode
);
2275 struct nfs_fattr fattr
;
2276 struct nfs4_accessargs args
= {
2277 .fh
= NFS_FH(inode
),
2278 .bitmask
= server
->attr_bitmask
,
2280 struct nfs4_accessres res
= {
2284 struct rpc_message msg
= {
2285 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_ACCESS
],
2288 .rpc_cred
= entry
->cred
,
2290 int mode
= entry
->mask
;
2294 * Determine which access bits we want to ask for...
2296 if (mode
& MAY_READ
)
2297 args
.access
|= NFS4_ACCESS_READ
;
2298 if (S_ISDIR(inode
->i_mode
)) {
2299 if (mode
& MAY_WRITE
)
2300 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
;
2301 if (mode
& MAY_EXEC
)
2302 args
.access
|= NFS4_ACCESS_LOOKUP
;
2304 if (mode
& MAY_WRITE
)
2305 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
;
2306 if (mode
& MAY_EXEC
)
2307 args
.access
|= NFS4_ACCESS_EXECUTE
;
2309 nfs_fattr_init(&fattr
);
2310 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2313 if (res
.access
& NFS4_ACCESS_READ
)
2314 entry
->mask
|= MAY_READ
;
2315 if (res
.access
& (NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
))
2316 entry
->mask
|= MAY_WRITE
;
2317 if (res
.access
& (NFS4_ACCESS_LOOKUP
|NFS4_ACCESS_EXECUTE
))
2318 entry
->mask
|= MAY_EXEC
;
2319 nfs_refresh_inode(inode
, &fattr
);
2324 static int nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2326 struct nfs4_exception exception
= { };
2329 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2330 _nfs4_proc_access(inode
, entry
),
2332 } while (exception
.retry
);
2337 * TODO: For the time being, we don't try to get any attributes
2338 * along with any of the zero-copy operations READ, READDIR,
2341 * In the case of the first three, we want to put the GETATTR
2342 * after the read-type operation -- this is because it is hard
2343 * to predict the length of a GETATTR response in v4, and thus
2344 * align the READ data correctly. This means that the GETATTR
2345 * may end up partially falling into the page cache, and we should
2346 * shift it into the 'tail' of the xdr_buf before processing.
2347 * To do this efficiently, we need to know the total length
2348 * of data received, which doesn't seem to be available outside
2351 * In the case of WRITE, we also want to put the GETATTR after
2352 * the operation -- in this case because we want to make sure
2353 * we get the post-operation mtime and size. This means that
2354 * we can't use xdr_encode_pages() as written: we need a variant
2355 * of it which would leave room in the 'tail' iovec.
2357 * Both of these changes to the XDR layer would in fact be quite
2358 * minor, but I decided to leave them for a subsequent patch.
2360 static int _nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2361 unsigned int pgbase
, unsigned int pglen
)
2363 struct nfs4_readlink args
= {
2364 .fh
= NFS_FH(inode
),
2369 struct nfs4_readlink_res res
;
2370 struct rpc_message msg
= {
2371 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READLINK
],
2376 return nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
2379 static int nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2380 unsigned int pgbase
, unsigned int pglen
)
2382 struct nfs4_exception exception
= { };
2385 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2386 _nfs4_proc_readlink(inode
, page
, pgbase
, pglen
),
2388 } while (exception
.retry
);
2394 * We will need to arrange for the VFS layer to provide an atomic open.
2395 * Until then, this create/open method is prone to inefficiency and race
2396 * conditions due to the lookup, create, and open VFS calls from sys_open()
2397 * placed on the wire.
2399 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2400 * The file will be opened again in the subsequent VFS open call
2401 * (nfs4_proc_file_open).
2403 * The open for read will just hang around to be used by any process that
2404 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2408 nfs4_proc_create(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
2409 int flags
, struct nameidata
*nd
)
2411 struct path path
= {
2412 .mnt
= nd
->path
.mnt
,
2415 struct nfs4_state
*state
;
2416 struct rpc_cred
*cred
;
2417 fmode_t fmode
= flags
& (FMODE_READ
| FMODE_WRITE
);
2420 cred
= rpc_lookup_cred();
2422 status
= PTR_ERR(cred
);
2425 state
= nfs4_do_open(dir
, &path
, fmode
, flags
, sattr
, cred
);
2427 if (IS_ERR(state
)) {
2428 status
= PTR_ERR(state
);
2431 d_add(dentry
, igrab(state
->inode
));
2432 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
2433 if (flags
& O_EXCL
) {
2434 struct nfs_fattr fattr
;
2435 status
= nfs4_do_setattr(state
->inode
, cred
, &fattr
, sattr
, state
);
2437 nfs_setattr_update_inode(state
->inode
, sattr
);
2438 nfs_post_op_update_inode(state
->inode
, &fattr
);
2440 if (status
== 0 && (nd
->flags
& LOOKUP_OPEN
) != 0)
2441 status
= nfs4_intent_set_file(nd
, &path
, state
, fmode
);
2443 nfs4_close_sync(&path
, state
, fmode
);
2450 static int _nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2452 struct nfs_server
*server
= NFS_SERVER(dir
);
2453 struct nfs_removeargs args
= {
2455 .name
.len
= name
->len
,
2456 .name
.name
= name
->name
,
2457 .bitmask
= server
->attr_bitmask
,
2459 struct nfs_removeres res
= {
2462 struct rpc_message msg
= {
2463 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
],
2469 nfs_fattr_init(&res
.dir_attr
);
2470 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 1);
2472 update_changeattr(dir
, &res
.cinfo
);
2473 nfs_post_op_update_inode(dir
, &res
.dir_attr
);
2478 static int nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2480 struct nfs4_exception exception
= { };
2483 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2484 _nfs4_proc_remove(dir
, name
),
2486 } while (exception
.retry
);
2490 static void nfs4_proc_unlink_setup(struct rpc_message
*msg
, struct inode
*dir
)
2492 struct nfs_server
*server
= NFS_SERVER(dir
);
2493 struct nfs_removeargs
*args
= msg
->rpc_argp
;
2494 struct nfs_removeres
*res
= msg
->rpc_resp
;
2496 args
->bitmask
= server
->cache_consistency_bitmask
;
2497 res
->server
= server
;
2498 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
];
2501 static int nfs4_proc_unlink_done(struct rpc_task
*task
, struct inode
*dir
)
2503 struct nfs_removeres
*res
= task
->tk_msg
.rpc_resp
;
2505 nfs4_sequence_done(res
->server
, &res
->seq_res
, task
->tk_status
);
2506 if (nfs4_async_handle_error(task
, res
->server
, NULL
) == -EAGAIN
)
2508 nfs4_sequence_free_slot(res
->server
->nfs_client
, &res
->seq_res
);
2509 update_changeattr(dir
, &res
->cinfo
);
2510 nfs_post_op_update_inode(dir
, &res
->dir_attr
);
2514 static int _nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2515 struct inode
*new_dir
, struct qstr
*new_name
)
2517 struct nfs_server
*server
= NFS_SERVER(old_dir
);
2518 struct nfs4_rename_arg arg
= {
2519 .old_dir
= NFS_FH(old_dir
),
2520 .new_dir
= NFS_FH(new_dir
),
2521 .old_name
= old_name
,
2522 .new_name
= new_name
,
2523 .bitmask
= server
->attr_bitmask
,
2525 struct nfs_fattr old_fattr
, new_fattr
;
2526 struct nfs4_rename_res res
= {
2528 .old_fattr
= &old_fattr
,
2529 .new_fattr
= &new_fattr
,
2531 struct rpc_message msg
= {
2532 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENAME
],
2538 nfs_fattr_init(res
.old_fattr
);
2539 nfs_fattr_init(res
.new_fattr
);
2540 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2543 update_changeattr(old_dir
, &res
.old_cinfo
);
2544 nfs_post_op_update_inode(old_dir
, res
.old_fattr
);
2545 update_changeattr(new_dir
, &res
.new_cinfo
);
2546 nfs_post_op_update_inode(new_dir
, res
.new_fattr
);
2551 static int nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2552 struct inode
*new_dir
, struct qstr
*new_name
)
2554 struct nfs4_exception exception
= { };
2557 err
= nfs4_handle_exception(NFS_SERVER(old_dir
),
2558 _nfs4_proc_rename(old_dir
, old_name
,
2561 } while (exception
.retry
);
2565 static int _nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2567 struct nfs_server
*server
= NFS_SERVER(inode
);
2568 struct nfs4_link_arg arg
= {
2569 .fh
= NFS_FH(inode
),
2570 .dir_fh
= NFS_FH(dir
),
2572 .bitmask
= server
->attr_bitmask
,
2574 struct nfs_fattr fattr
, dir_attr
;
2575 struct nfs4_link_res res
= {
2578 .dir_attr
= &dir_attr
,
2580 struct rpc_message msg
= {
2581 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LINK
],
2587 nfs_fattr_init(res
.fattr
);
2588 nfs_fattr_init(res
.dir_attr
);
2589 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2591 update_changeattr(dir
, &res
.cinfo
);
2592 nfs_post_op_update_inode(dir
, res
.dir_attr
);
2593 nfs_post_op_update_inode(inode
, res
.fattr
);
2599 static int nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2601 struct nfs4_exception exception
= { };
2604 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2605 _nfs4_proc_link(inode
, dir
, name
),
2607 } while (exception
.retry
);
2611 struct nfs4_createdata
{
2612 struct rpc_message msg
;
2613 struct nfs4_create_arg arg
;
2614 struct nfs4_create_res res
;
2616 struct nfs_fattr fattr
;
2617 struct nfs_fattr dir_fattr
;
2620 static struct nfs4_createdata
*nfs4_alloc_createdata(struct inode
*dir
,
2621 struct qstr
*name
, struct iattr
*sattr
, u32 ftype
)
2623 struct nfs4_createdata
*data
;
2625 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
2627 struct nfs_server
*server
= NFS_SERVER(dir
);
2629 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE
];
2630 data
->msg
.rpc_argp
= &data
->arg
;
2631 data
->msg
.rpc_resp
= &data
->res
;
2632 data
->arg
.dir_fh
= NFS_FH(dir
);
2633 data
->arg
.server
= server
;
2634 data
->arg
.name
= name
;
2635 data
->arg
.attrs
= sattr
;
2636 data
->arg
.ftype
= ftype
;
2637 data
->arg
.bitmask
= server
->attr_bitmask
;
2638 data
->res
.server
= server
;
2639 data
->res
.fh
= &data
->fh
;
2640 data
->res
.fattr
= &data
->fattr
;
2641 data
->res
.dir_fattr
= &data
->dir_fattr
;
2642 nfs_fattr_init(data
->res
.fattr
);
2643 nfs_fattr_init(data
->res
.dir_fattr
);
2648 static int nfs4_do_create(struct inode
*dir
, struct dentry
*dentry
, struct nfs4_createdata
*data
)
2650 int status
= nfs4_call_sync(NFS_SERVER(dir
), &data
->msg
,
2651 &data
->arg
, &data
->res
, 1);
2653 update_changeattr(dir
, &data
->res
.dir_cinfo
);
2654 nfs_post_op_update_inode(dir
, data
->res
.dir_fattr
);
2655 status
= nfs_instantiate(dentry
, data
->res
.fh
, data
->res
.fattr
);
2660 static void nfs4_free_createdata(struct nfs4_createdata
*data
)
2665 static int _nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2666 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2668 struct nfs4_createdata
*data
;
2669 int status
= -ENAMETOOLONG
;
2671 if (len
> NFS4_MAXPATHLEN
)
2675 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4LNK
);
2679 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SYMLINK
];
2680 data
->arg
.u
.symlink
.pages
= &page
;
2681 data
->arg
.u
.symlink
.len
= len
;
2683 status
= nfs4_do_create(dir
, dentry
, data
);
2685 nfs4_free_createdata(data
);
2690 static int nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2691 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2693 struct nfs4_exception exception
= { };
2696 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2697 _nfs4_proc_symlink(dir
, dentry
, page
,
2700 } while (exception
.retry
);
2704 static int _nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2705 struct iattr
*sattr
)
2707 struct nfs4_createdata
*data
;
2708 int status
= -ENOMEM
;
2710 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4DIR
);
2714 status
= nfs4_do_create(dir
, dentry
, data
);
2716 nfs4_free_createdata(data
);
2721 static int nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2722 struct iattr
*sattr
)
2724 struct nfs4_exception exception
= { };
2727 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2728 _nfs4_proc_mkdir(dir
, dentry
, sattr
),
2730 } while (exception
.retry
);
2734 static int _nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2735 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
2737 struct inode
*dir
= dentry
->d_inode
;
2738 struct nfs4_readdir_arg args
= {
2743 .bitmask
= NFS_SERVER(dentry
->d_inode
)->cache_consistency_bitmask
,
2745 struct nfs4_readdir_res res
;
2746 struct rpc_message msg
= {
2747 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READDIR
],
2754 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__
,
2755 dentry
->d_parent
->d_name
.name
,
2756 dentry
->d_name
.name
,
2757 (unsigned long long)cookie
);
2758 nfs4_setup_readdir(cookie
, NFS_COOKIEVERF(dir
), dentry
, &args
);
2759 res
.pgbase
= args
.pgbase
;
2760 status
= nfs4_call_sync(NFS_SERVER(dir
), &msg
, &args
, &res
, 0);
2762 memcpy(NFS_COOKIEVERF(dir
), res
.verifier
.data
, NFS4_VERIFIER_SIZE
);
2764 nfs_invalidate_atime(dir
);
2766 dprintk("%s: returns %d\n", __func__
, status
);
2770 static int nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2771 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
2773 struct nfs4_exception exception
= { };
2776 err
= nfs4_handle_exception(NFS_SERVER(dentry
->d_inode
),
2777 _nfs4_proc_readdir(dentry
, cred
, cookie
,
2780 } while (exception
.retry
);
2784 static int _nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2785 struct iattr
*sattr
, dev_t rdev
)
2787 struct nfs4_createdata
*data
;
2788 int mode
= sattr
->ia_mode
;
2789 int status
= -ENOMEM
;
2791 BUG_ON(!(sattr
->ia_valid
& ATTR_MODE
));
2792 BUG_ON(!S_ISFIFO(mode
) && !S_ISBLK(mode
) && !S_ISCHR(mode
) && !S_ISSOCK(mode
));
2794 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4SOCK
);
2799 data
->arg
.ftype
= NF4FIFO
;
2800 else if (S_ISBLK(mode
)) {
2801 data
->arg
.ftype
= NF4BLK
;
2802 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2803 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2805 else if (S_ISCHR(mode
)) {
2806 data
->arg
.ftype
= NF4CHR
;
2807 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2808 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2811 status
= nfs4_do_create(dir
, dentry
, data
);
2813 nfs4_free_createdata(data
);
2818 static int nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2819 struct iattr
*sattr
, dev_t rdev
)
2821 struct nfs4_exception exception
= { };
2824 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2825 _nfs4_proc_mknod(dir
, dentry
, sattr
, rdev
),
2827 } while (exception
.retry
);
2831 static int _nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2832 struct nfs_fsstat
*fsstat
)
2834 struct nfs4_statfs_arg args
= {
2836 .bitmask
= server
->attr_bitmask
,
2838 struct nfs4_statfs_res res
= {
2841 struct rpc_message msg
= {
2842 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_STATFS
],
2847 nfs_fattr_init(fsstat
->fattr
);
2848 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2851 static int nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsstat
*fsstat
)
2853 struct nfs4_exception exception
= { };
2856 err
= nfs4_handle_exception(server
,
2857 _nfs4_proc_statfs(server
, fhandle
, fsstat
),
2859 } while (exception
.retry
);
2863 static int _nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2864 struct nfs_fsinfo
*fsinfo
)
2866 struct nfs4_fsinfo_arg args
= {
2868 .bitmask
= server
->attr_bitmask
,
2870 struct nfs4_fsinfo_res res
= {
2873 struct rpc_message msg
= {
2874 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FSINFO
],
2879 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2882 static int nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
2884 struct nfs4_exception exception
= { };
2888 err
= nfs4_handle_exception(server
,
2889 _nfs4_do_fsinfo(server
, fhandle
, fsinfo
),
2891 } while (exception
.retry
);
2895 static int nfs4_proc_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
2897 nfs_fattr_init(fsinfo
->fattr
);
2898 return nfs4_do_fsinfo(server
, fhandle
, fsinfo
);
2901 static int _nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2902 struct nfs_pathconf
*pathconf
)
2904 struct nfs4_pathconf_arg args
= {
2906 .bitmask
= server
->attr_bitmask
,
2908 struct nfs4_pathconf_res res
= {
2909 .pathconf
= pathconf
,
2911 struct rpc_message msg
= {
2912 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_PATHCONF
],
2917 /* None of the pathconf attributes are mandatory to implement */
2918 if ((args
.bitmask
[0] & nfs4_pathconf_bitmap
[0]) == 0) {
2919 memset(pathconf
, 0, sizeof(*pathconf
));
2923 nfs_fattr_init(pathconf
->fattr
);
2924 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2927 static int nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2928 struct nfs_pathconf
*pathconf
)
2930 struct nfs4_exception exception
= { };
2934 err
= nfs4_handle_exception(server
,
2935 _nfs4_proc_pathconf(server
, fhandle
, pathconf
),
2937 } while (exception
.retry
);
2941 static int nfs4_read_done(struct rpc_task
*task
, struct nfs_read_data
*data
)
2943 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
2945 dprintk("--> %s\n", __func__
);
2947 /* nfs4_sequence_free_slot called in the read rpc_call_done */
2948 nfs4_sequence_done(server
, &data
->res
.seq_res
, task
->tk_status
);
2950 if (nfs4_async_handle_error(task
, server
, data
->args
.context
->state
) == -EAGAIN
) {
2951 nfs4_restart_rpc(task
, server
->nfs_client
);
2955 nfs_invalidate_atime(data
->inode
);
2956 if (task
->tk_status
> 0)
2957 renew_lease(server
, data
->timestamp
);
2961 static void nfs4_proc_read_setup(struct nfs_read_data
*data
, struct rpc_message
*msg
)
2963 data
->timestamp
= jiffies
;
2964 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READ
];
2967 static int nfs4_write_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
2969 struct inode
*inode
= data
->inode
;
2971 /* slot is freed in nfs_writeback_done */
2972 nfs4_sequence_done(NFS_SERVER(inode
), &data
->res
.seq_res
,
2975 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), data
->args
.context
->state
) == -EAGAIN
) {
2976 nfs4_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
2979 if (task
->tk_status
>= 0) {
2980 renew_lease(NFS_SERVER(inode
), data
->timestamp
);
2981 nfs_post_op_update_inode_force_wcc(inode
, data
->res
.fattr
);
2986 static void nfs4_proc_write_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
2988 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
2990 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
2991 data
->res
.server
= server
;
2992 data
->timestamp
= jiffies
;
2994 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_WRITE
];
2997 static int nfs4_commit_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
2999 struct inode
*inode
= data
->inode
;
3001 nfs4_sequence_done(NFS_SERVER(inode
), &data
->res
.seq_res
,
3003 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), NULL
) == -EAGAIN
) {
3004 nfs4_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
3007 nfs4_sequence_free_slot(NFS_SERVER(inode
)->nfs_client
,
3008 &data
->res
.seq_res
);
3009 nfs_refresh_inode(inode
, data
->res
.fattr
);
3013 static void nfs4_proc_commit_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
3015 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
3017 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
3018 data
->res
.server
= server
;
3019 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_COMMIT
];
3023 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3024 * standalone procedure for queueing an asynchronous RENEW.
3026 static void nfs4_renew_done(struct rpc_task
*task
, void *data
)
3028 struct nfs_client
*clp
= (struct nfs_client
*)task
->tk_msg
.rpc_argp
;
3029 unsigned long timestamp
= (unsigned long)data
;
3031 if (task
->tk_status
< 0) {
3032 /* Unless we're shutting down, schedule state recovery! */
3033 if (test_bit(NFS_CS_RENEWD
, &clp
->cl_res_state
) != 0)
3034 nfs4_schedule_state_recovery(clp
);
3037 spin_lock(&clp
->cl_lock
);
3038 if (time_before(clp
->cl_last_renewal
,timestamp
))
3039 clp
->cl_last_renewal
= timestamp
;
3040 spin_unlock(&clp
->cl_lock
);
3043 static const struct rpc_call_ops nfs4_renew_ops
= {
3044 .rpc_call_done
= nfs4_renew_done
,
3047 int nfs4_proc_async_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3049 struct rpc_message msg
= {
3050 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3055 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
3056 &nfs4_renew_ops
, (void *)jiffies
);
3059 int nfs4_proc_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3061 struct rpc_message msg
= {
3062 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3066 unsigned long now
= jiffies
;
3069 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3072 spin_lock(&clp
->cl_lock
);
3073 if (time_before(clp
->cl_last_renewal
,now
))
3074 clp
->cl_last_renewal
= now
;
3075 spin_unlock(&clp
->cl_lock
);
3079 static inline int nfs4_server_supports_acls(struct nfs_server
*server
)
3081 return (server
->caps
& NFS_CAP_ACLS
)
3082 && (server
->acl_bitmask
& ACL4_SUPPORT_ALLOW_ACL
)
3083 && (server
->acl_bitmask
& ACL4_SUPPORT_DENY_ACL
);
3086 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3087 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3090 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3092 static void buf_to_pages(const void *buf
, size_t buflen
,
3093 struct page
**pages
, unsigned int *pgbase
)
3095 const void *p
= buf
;
3097 *pgbase
= offset_in_page(buf
);
3099 while (p
< buf
+ buflen
) {
3100 *(pages
++) = virt_to_page(p
);
3101 p
+= PAGE_CACHE_SIZE
;
3105 struct nfs4_cached_acl
{
3111 static void nfs4_set_cached_acl(struct inode
*inode
, struct nfs4_cached_acl
*acl
)
3113 struct nfs_inode
*nfsi
= NFS_I(inode
);
3115 spin_lock(&inode
->i_lock
);
3116 kfree(nfsi
->nfs4_acl
);
3117 nfsi
->nfs4_acl
= acl
;
3118 spin_unlock(&inode
->i_lock
);
3121 static void nfs4_zap_acl_attr(struct inode
*inode
)
3123 nfs4_set_cached_acl(inode
, NULL
);
3126 static inline ssize_t
nfs4_read_cached_acl(struct inode
*inode
, char *buf
, size_t buflen
)
3128 struct nfs_inode
*nfsi
= NFS_I(inode
);
3129 struct nfs4_cached_acl
*acl
;
3132 spin_lock(&inode
->i_lock
);
3133 acl
= nfsi
->nfs4_acl
;
3136 if (buf
== NULL
) /* user is just asking for length */
3138 if (acl
->cached
== 0)
3140 ret
= -ERANGE
; /* see getxattr(2) man page */
3141 if (acl
->len
> buflen
)
3143 memcpy(buf
, acl
->data
, acl
->len
);
3147 spin_unlock(&inode
->i_lock
);
3151 static void nfs4_write_cached_acl(struct inode
*inode
, const char *buf
, size_t acl_len
)
3153 struct nfs4_cached_acl
*acl
;
3155 if (buf
&& acl_len
<= PAGE_SIZE
) {
3156 acl
= kmalloc(sizeof(*acl
) + acl_len
, GFP_KERNEL
);
3160 memcpy(acl
->data
, buf
, acl_len
);
3162 acl
= kmalloc(sizeof(*acl
), GFP_KERNEL
);
3169 nfs4_set_cached_acl(inode
, acl
);
3172 static ssize_t
__nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3174 struct page
*pages
[NFS4ACL_MAXPAGES
];
3175 struct nfs_getaclargs args
= {
3176 .fh
= NFS_FH(inode
),
3180 struct nfs_getaclres res
= {
3184 struct rpc_message msg
= {
3185 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETACL
],
3189 struct page
*localpage
= NULL
;
3192 if (buflen
< PAGE_SIZE
) {
3193 /* As long as we're doing a round trip to the server anyway,
3194 * let's be prepared for a page of acl data. */
3195 localpage
= alloc_page(GFP_KERNEL
);
3196 resp_buf
= page_address(localpage
);
3197 if (localpage
== NULL
)
3199 args
.acl_pages
[0] = localpage
;
3200 args
.acl_pgbase
= 0;
3201 args
.acl_len
= PAGE_SIZE
;
3204 buf_to_pages(buf
, buflen
, args
.acl_pages
, &args
.acl_pgbase
);
3206 ret
= nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
3209 if (res
.acl_len
> args
.acl_len
)
3210 nfs4_write_cached_acl(inode
, NULL
, res
.acl_len
);
3212 nfs4_write_cached_acl(inode
, resp_buf
, res
.acl_len
);
3215 if (res
.acl_len
> buflen
)
3218 memcpy(buf
, resp_buf
, res
.acl_len
);
3223 __free_page(localpage
);
3227 static ssize_t
nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3229 struct nfs4_exception exception
= { };
3232 ret
= __nfs4_get_acl_uncached(inode
, buf
, buflen
);
3235 ret
= nfs4_handle_exception(NFS_SERVER(inode
), ret
, &exception
);
3236 } while (exception
.retry
);
3240 static ssize_t
nfs4_proc_get_acl(struct inode
*inode
, void *buf
, size_t buflen
)
3242 struct nfs_server
*server
= NFS_SERVER(inode
);
3245 if (!nfs4_server_supports_acls(server
))
3247 ret
= nfs_revalidate_inode(server
, inode
);
3250 ret
= nfs4_read_cached_acl(inode
, buf
, buflen
);
3253 return nfs4_get_acl_uncached(inode
, buf
, buflen
);
3256 static int __nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3258 struct nfs_server
*server
= NFS_SERVER(inode
);
3259 struct page
*pages
[NFS4ACL_MAXPAGES
];
3260 struct nfs_setaclargs arg
= {
3261 .fh
= NFS_FH(inode
),
3265 struct nfs_setaclres res
;
3266 struct rpc_message msg
= {
3267 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETACL
],
3273 if (!nfs4_server_supports_acls(server
))
3275 nfs_inode_return_delegation(inode
);
3276 buf_to_pages(buf
, buflen
, arg
.acl_pages
, &arg
.acl_pgbase
);
3277 ret
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3278 nfs_access_zap_cache(inode
);
3279 nfs_zap_acl_cache(inode
);
3283 static int nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3285 struct nfs4_exception exception
= { };
3288 err
= nfs4_handle_exception(NFS_SERVER(inode
),
3289 __nfs4_proc_set_acl(inode
, buf
, buflen
),
3291 } while (exception
.retry
);
3296 _nfs4_async_handle_error(struct rpc_task
*task
, const struct nfs_server
*server
, struct nfs_client
*clp
, struct nfs4_state
*state
)
3298 if (!clp
|| task
->tk_status
>= 0)
3300 switch(task
->tk_status
) {
3301 case -NFS4ERR_ADMIN_REVOKED
:
3302 case -NFS4ERR_BAD_STATEID
:
3303 case -NFS4ERR_OPENMODE
:
3306 nfs4_state_mark_reclaim_nograce(clp
, state
);
3307 case -NFS4ERR_STALE_CLIENTID
:
3308 case -NFS4ERR_STALE_STATEID
:
3309 case -NFS4ERR_EXPIRED
:
3310 rpc_sleep_on(&clp
->cl_rpcwaitq
, task
, NULL
);
3311 nfs4_schedule_state_recovery(clp
);
3312 if (test_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
) == 0)
3313 rpc_wake_up_queued_task(&clp
->cl_rpcwaitq
, task
);
3314 task
->tk_status
= 0;
3316 #if defined(CONFIG_NFS_V4_1)
3317 case -NFS4ERR_BADSESSION
:
3318 case -NFS4ERR_BADSLOT
:
3319 case -NFS4ERR_BAD_HIGH_SLOT
:
3320 case -NFS4ERR_DEADSESSION
:
3321 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
3322 case -NFS4ERR_SEQ_FALSE_RETRY
:
3323 case -NFS4ERR_SEQ_MISORDERED
:
3324 dprintk("%s ERROR %d, Reset session\n", __func__
,
3326 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
3327 task
->tk_status
= 0;
3329 #endif /* CONFIG_NFS_V4_1 */
3330 case -NFS4ERR_DELAY
:
3332 nfs_inc_server_stats(server
, NFSIOS_DELAY
);
3333 case -NFS4ERR_GRACE
:
3334 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
3335 task
->tk_status
= 0;
3337 case -NFS4ERR_OLD_STATEID
:
3338 task
->tk_status
= 0;
3341 task
->tk_status
= nfs4_map_errors(task
->tk_status
);
3346 nfs4_async_handle_error(struct rpc_task
*task
, const struct nfs_server
*server
, struct nfs4_state
*state
)
3348 return _nfs4_async_handle_error(task
, server
, server
->nfs_client
, state
);
3351 int nfs4_proc_setclientid(struct nfs_client
*clp
, u32 program
, unsigned short port
, struct rpc_cred
*cred
)
3353 nfs4_verifier sc_verifier
;
3354 struct nfs4_setclientid setclientid
= {
3355 .sc_verifier
= &sc_verifier
,
3358 struct rpc_message msg
= {
3359 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID
],
3360 .rpc_argp
= &setclientid
,
3368 p
= (__be32
*)sc_verifier
.data
;
3369 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
3370 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
3373 setclientid
.sc_name_len
= scnprintf(setclientid
.sc_name
,
3374 sizeof(setclientid
.sc_name
), "%s/%s %s %s %u",
3376 rpc_peeraddr2str(clp
->cl_rpcclient
,
3378 rpc_peeraddr2str(clp
->cl_rpcclient
,
3380 clp
->cl_rpcclient
->cl_auth
->au_ops
->au_name
,
3381 clp
->cl_id_uniquifier
);
3382 setclientid
.sc_netid_len
= scnprintf(setclientid
.sc_netid
,
3383 sizeof(setclientid
.sc_netid
),
3384 rpc_peeraddr2str(clp
->cl_rpcclient
,
3385 RPC_DISPLAY_NETID
));
3386 setclientid
.sc_uaddr_len
= scnprintf(setclientid
.sc_uaddr
,
3387 sizeof(setclientid
.sc_uaddr
), "%s.%u.%u",
3388 clp
->cl_ipaddr
, port
>> 8, port
& 255);
3390 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3391 if (status
!= -NFS4ERR_CLID_INUSE
)
3396 ssleep(clp
->cl_lease_time
+ 1);
3398 if (++clp
->cl_id_uniquifier
== 0)
3404 static int _nfs4_proc_setclientid_confirm(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3406 struct nfs_fsinfo fsinfo
;
3407 struct rpc_message msg
= {
3408 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID_CONFIRM
],
3410 .rpc_resp
= &fsinfo
,
3417 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3419 spin_lock(&clp
->cl_lock
);
3420 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
3421 clp
->cl_last_renewal
= now
;
3422 spin_unlock(&clp
->cl_lock
);
3427 int nfs4_proc_setclientid_confirm(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3432 err
= _nfs4_proc_setclientid_confirm(clp
, cred
);
3436 case -NFS4ERR_RESOURCE
:
3437 /* The IBM lawyers misread another document! */
3438 case -NFS4ERR_DELAY
:
3439 err
= nfs4_delay(clp
->cl_rpcclient
, &timeout
);
3445 struct nfs4_delegreturndata
{
3446 struct nfs4_delegreturnargs args
;
3447 struct nfs4_delegreturnres res
;
3449 nfs4_stateid stateid
;
3450 unsigned long timestamp
;
3451 struct nfs_fattr fattr
;
3455 static void nfs4_delegreturn_done(struct rpc_task
*task
, void *calldata
)
3457 struct nfs4_delegreturndata
*data
= calldata
;
3459 nfs4_sequence_done_free_slot(data
->res
.server
, &data
->res
.seq_res
,
3462 data
->rpc_status
= task
->tk_status
;
3463 if (data
->rpc_status
== 0)
3464 renew_lease(data
->res
.server
, data
->timestamp
);
3467 static void nfs4_delegreturn_release(void *calldata
)
3472 #if defined(CONFIG_NFS_V4_1)
3473 static void nfs4_delegreturn_prepare(struct rpc_task
*task
, void *data
)
3475 struct nfs4_delegreturndata
*d_data
;
3477 d_data
= (struct nfs4_delegreturndata
*)data
;
3479 if (nfs4_setup_sequence(d_data
->res
.server
->nfs_client
,
3480 &d_data
->args
.seq_args
,
3481 &d_data
->res
.seq_res
, 1, task
))
3483 rpc_call_start(task
);
3485 #endif /* CONFIG_NFS_V4_1 */
3487 static const struct rpc_call_ops nfs4_delegreturn_ops
= {
3488 #if defined(CONFIG_NFS_V4_1)
3489 .rpc_call_prepare
= nfs4_delegreturn_prepare
,
3490 #endif /* CONFIG_NFS_V4_1 */
3491 .rpc_call_done
= nfs4_delegreturn_done
,
3492 .rpc_release
= nfs4_delegreturn_release
,
3495 static int _nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3497 struct nfs4_delegreturndata
*data
;
3498 struct nfs_server
*server
= NFS_SERVER(inode
);
3499 struct rpc_task
*task
;
3500 struct rpc_message msg
= {
3501 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DELEGRETURN
],
3504 struct rpc_task_setup task_setup_data
= {
3505 .rpc_client
= server
->client
,
3506 .rpc_message
= &msg
,
3507 .callback_ops
= &nfs4_delegreturn_ops
,
3508 .flags
= RPC_TASK_ASYNC
,
3512 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
3515 data
->args
.fhandle
= &data
->fh
;
3516 data
->args
.stateid
= &data
->stateid
;
3517 data
->args
.bitmask
= server
->attr_bitmask
;
3518 nfs_copy_fh(&data
->fh
, NFS_FH(inode
));
3519 memcpy(&data
->stateid
, stateid
, sizeof(data
->stateid
));
3520 data
->res
.fattr
= &data
->fattr
;
3521 data
->res
.server
= server
;
3522 data
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3523 nfs_fattr_init(data
->res
.fattr
);
3524 data
->timestamp
= jiffies
;
3525 data
->rpc_status
= 0;
3527 task_setup_data
.callback_data
= data
;
3528 msg
.rpc_argp
= &data
->args
,
3529 msg
.rpc_resp
= &data
->res
,
3530 task
= rpc_run_task(&task_setup_data
);
3532 return PTR_ERR(task
);
3535 status
= nfs4_wait_for_completion_rpc_task(task
);
3538 status
= data
->rpc_status
;
3541 nfs_refresh_inode(inode
, &data
->fattr
);
3547 int nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3549 struct nfs_server
*server
= NFS_SERVER(inode
);
3550 struct nfs4_exception exception
= { };
3553 err
= _nfs4_proc_delegreturn(inode
, cred
, stateid
, issync
);
3555 case -NFS4ERR_STALE_STATEID
:
3556 case -NFS4ERR_EXPIRED
:
3560 err
= nfs4_handle_exception(server
, err
, &exception
);
3561 } while (exception
.retry
);
3565 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3566 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3569 * sleep, with exponential backoff, and retry the LOCK operation.
3571 static unsigned long
3572 nfs4_set_lock_task_retry(unsigned long timeout
)
3574 schedule_timeout_killable(timeout
);
3576 if (timeout
> NFS4_LOCK_MAXTIMEOUT
)
3577 return NFS4_LOCK_MAXTIMEOUT
;
3581 static int _nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3583 struct inode
*inode
= state
->inode
;
3584 struct nfs_server
*server
= NFS_SERVER(inode
);
3585 struct nfs_client
*clp
= server
->nfs_client
;
3586 struct nfs_lockt_args arg
= {
3587 .fh
= NFS_FH(inode
),
3590 struct nfs_lockt_res res
= {
3593 struct rpc_message msg
= {
3594 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKT
],
3597 .rpc_cred
= state
->owner
->so_cred
,
3599 struct nfs4_lock_state
*lsp
;
3602 arg
.lock_owner
.clientid
= clp
->cl_clientid
;
3603 status
= nfs4_set_lock_state(state
, request
);
3606 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3607 arg
.lock_owner
.id
= lsp
->ls_id
.id
;
3608 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3611 request
->fl_type
= F_UNLCK
;
3613 case -NFS4ERR_DENIED
:
3616 request
->fl_ops
->fl_release_private(request
);
3621 static int nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3623 struct nfs4_exception exception
= { };
3627 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
3628 _nfs4_proc_getlk(state
, cmd
, request
),
3630 } while (exception
.retry
);
3634 static int do_vfs_lock(struct file
*file
, struct file_lock
*fl
)
3637 switch (fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)) {
3639 res
= posix_lock_file_wait(file
, fl
);
3642 res
= flock_lock_file_wait(file
, fl
);
3650 struct nfs4_unlockdata
{
3651 struct nfs_locku_args arg
;
3652 struct nfs_locku_res res
;
3653 struct nfs4_lock_state
*lsp
;
3654 struct nfs_open_context
*ctx
;
3655 struct file_lock fl
;
3656 const struct nfs_server
*server
;
3657 unsigned long timestamp
;
3660 static struct nfs4_unlockdata
*nfs4_alloc_unlockdata(struct file_lock
*fl
,
3661 struct nfs_open_context
*ctx
,
3662 struct nfs4_lock_state
*lsp
,
3663 struct nfs_seqid
*seqid
)
3665 struct nfs4_unlockdata
*p
;
3666 struct inode
*inode
= lsp
->ls_state
->inode
;
3668 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
3671 p
->arg
.fh
= NFS_FH(inode
);
3673 p
->arg
.seqid
= seqid
;
3674 p
->res
.seqid
= seqid
;
3675 p
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3676 p
->arg
.stateid
= &lsp
->ls_stateid
;
3678 atomic_inc(&lsp
->ls_count
);
3679 /* Ensure we don't close file until we're done freeing locks! */
3680 p
->ctx
= get_nfs_open_context(ctx
);
3681 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
3682 p
->server
= NFS_SERVER(inode
);
3686 static void nfs4_locku_release_calldata(void *data
)
3688 struct nfs4_unlockdata
*calldata
= data
;
3689 nfs_free_seqid(calldata
->arg
.seqid
);
3690 nfs4_put_lock_state(calldata
->lsp
);
3691 put_nfs_open_context(calldata
->ctx
);
3695 static void nfs4_locku_done(struct rpc_task
*task
, void *data
)
3697 struct nfs4_unlockdata
*calldata
= data
;
3699 nfs4_sequence_done(calldata
->server
, &calldata
->res
.seq_res
,
3701 if (RPC_ASSASSINATED(task
))
3703 switch (task
->tk_status
) {
3705 memcpy(calldata
->lsp
->ls_stateid
.data
,
3706 calldata
->res
.stateid
.data
,
3707 sizeof(calldata
->lsp
->ls_stateid
.data
));
3708 renew_lease(calldata
->server
, calldata
->timestamp
);
3710 case -NFS4ERR_BAD_STATEID
:
3711 case -NFS4ERR_OLD_STATEID
:
3712 case -NFS4ERR_STALE_STATEID
:
3713 case -NFS4ERR_EXPIRED
:
3716 if (nfs4_async_handle_error(task
, calldata
->server
, NULL
) == -EAGAIN
)
3717 nfs4_restart_rpc(task
,
3718 calldata
->server
->nfs_client
);
3720 nfs4_sequence_free_slot(calldata
->server
->nfs_client
,
3721 &calldata
->res
.seq_res
);
3724 static void nfs4_locku_prepare(struct rpc_task
*task
, void *data
)
3726 struct nfs4_unlockdata
*calldata
= data
;
3728 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
3730 if ((calldata
->lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) == 0) {
3731 /* Note: exit _without_ running nfs4_locku_done */
3732 task
->tk_action
= NULL
;
3735 calldata
->timestamp
= jiffies
;
3736 if (nfs4_setup_sequence(calldata
->server
->nfs_client
,
3737 &calldata
->arg
.seq_args
,
3738 &calldata
->res
.seq_res
, 1, task
))
3740 rpc_call_start(task
);
3743 static const struct rpc_call_ops nfs4_locku_ops
= {
3744 .rpc_call_prepare
= nfs4_locku_prepare
,
3745 .rpc_call_done
= nfs4_locku_done
,
3746 .rpc_release
= nfs4_locku_release_calldata
,
3749 static struct rpc_task
*nfs4_do_unlck(struct file_lock
*fl
,
3750 struct nfs_open_context
*ctx
,
3751 struct nfs4_lock_state
*lsp
,
3752 struct nfs_seqid
*seqid
)
3754 struct nfs4_unlockdata
*data
;
3755 struct rpc_message msg
= {
3756 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKU
],
3757 .rpc_cred
= ctx
->cred
,
3759 struct rpc_task_setup task_setup_data
= {
3760 .rpc_client
= NFS_CLIENT(lsp
->ls_state
->inode
),
3761 .rpc_message
= &msg
,
3762 .callback_ops
= &nfs4_locku_ops
,
3763 .workqueue
= nfsiod_workqueue
,
3764 .flags
= RPC_TASK_ASYNC
,
3767 /* Ensure this is an unlock - when canceling a lock, the
3768 * canceled lock is passed in, and it won't be an unlock.
3770 fl
->fl_type
= F_UNLCK
;
3772 data
= nfs4_alloc_unlockdata(fl
, ctx
, lsp
, seqid
);
3774 nfs_free_seqid(seqid
);
3775 return ERR_PTR(-ENOMEM
);
3778 msg
.rpc_argp
= &data
->arg
,
3779 msg
.rpc_resp
= &data
->res
,
3780 task_setup_data
.callback_data
= data
;
3781 return rpc_run_task(&task_setup_data
);
3784 static int nfs4_proc_unlck(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3786 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
3787 struct nfs_seqid
*seqid
;
3788 struct nfs4_lock_state
*lsp
;
3789 struct rpc_task
*task
;
3791 unsigned char fl_flags
= request
->fl_flags
;
3793 status
= nfs4_set_lock_state(state
, request
);
3794 /* Unlock _before_ we do the RPC call */
3795 request
->fl_flags
|= FL_EXISTS
;
3796 down_read(&nfsi
->rwsem
);
3797 if (do_vfs_lock(request
->fl_file
, request
) == -ENOENT
) {
3798 up_read(&nfsi
->rwsem
);
3801 up_read(&nfsi
->rwsem
);
3804 /* Is this a delegated lock? */
3805 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
))
3807 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3808 seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
);
3812 task
= nfs4_do_unlck(request
, nfs_file_open_context(request
->fl_file
), lsp
, seqid
);
3813 status
= PTR_ERR(task
);
3816 status
= nfs4_wait_for_completion_rpc_task(task
);
3819 request
->fl_flags
= fl_flags
;
3823 struct nfs4_lockdata
{
3824 struct nfs_lock_args arg
;
3825 struct nfs_lock_res res
;
3826 struct nfs4_lock_state
*lsp
;
3827 struct nfs_open_context
*ctx
;
3828 struct file_lock fl
;
3829 unsigned long timestamp
;
3832 struct nfs_server
*server
;
3835 static struct nfs4_lockdata
*nfs4_alloc_lockdata(struct file_lock
*fl
,
3836 struct nfs_open_context
*ctx
, struct nfs4_lock_state
*lsp
)
3838 struct nfs4_lockdata
*p
;
3839 struct inode
*inode
= lsp
->ls_state
->inode
;
3840 struct nfs_server
*server
= NFS_SERVER(inode
);
3842 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
3846 p
->arg
.fh
= NFS_FH(inode
);
3848 p
->arg
.open_seqid
= nfs_alloc_seqid(&lsp
->ls_state
->owner
->so_seqid
);
3849 if (p
->arg
.open_seqid
== NULL
)
3851 p
->arg
.lock_seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
);
3852 if (p
->arg
.lock_seqid
== NULL
)
3853 goto out_free_seqid
;
3854 p
->arg
.lock_stateid
= &lsp
->ls_stateid
;
3855 p
->arg
.lock_owner
.clientid
= server
->nfs_client
->cl_clientid
;
3856 p
->arg
.lock_owner
.id
= lsp
->ls_id
.id
;
3857 p
->res
.lock_seqid
= p
->arg
.lock_seqid
;
3858 p
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3861 atomic_inc(&lsp
->ls_count
);
3862 p
->ctx
= get_nfs_open_context(ctx
);
3863 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
3866 nfs_free_seqid(p
->arg
.open_seqid
);
3872 static void nfs4_lock_prepare(struct rpc_task
*task
, void *calldata
)
3874 struct nfs4_lockdata
*data
= calldata
;
3875 struct nfs4_state
*state
= data
->lsp
->ls_state
;
3877 dprintk("%s: begin!\n", __func__
);
3878 if (nfs_wait_on_sequence(data
->arg
.lock_seqid
, task
) != 0)
3880 /* Do we need to do an open_to_lock_owner? */
3881 if (!(data
->arg
.lock_seqid
->sequence
->flags
& NFS_SEQID_CONFIRMED
)) {
3882 if (nfs_wait_on_sequence(data
->arg
.open_seqid
, task
) != 0)
3884 data
->arg
.open_stateid
= &state
->stateid
;
3885 data
->arg
.new_lock_owner
= 1;
3886 data
->res
.open_seqid
= data
->arg
.open_seqid
;
3888 data
->arg
.new_lock_owner
= 0;
3889 data
->timestamp
= jiffies
;
3890 if (nfs4_setup_sequence(data
->server
->nfs_client
, &data
->arg
.seq_args
,
3891 &data
->res
.seq_res
, 1, task
))
3893 rpc_call_start(task
);
3894 dprintk("%s: done!, ret = %d\n", __func__
, data
->rpc_status
);
3897 static void nfs4_lock_done(struct rpc_task
*task
, void *calldata
)
3899 struct nfs4_lockdata
*data
= calldata
;
3901 dprintk("%s: begin!\n", __func__
);
3903 nfs4_sequence_done_free_slot(data
->server
, &data
->res
.seq_res
,
3906 data
->rpc_status
= task
->tk_status
;
3907 if (RPC_ASSASSINATED(task
))
3909 if (data
->arg
.new_lock_owner
!= 0) {
3910 if (data
->rpc_status
== 0)
3911 nfs_confirm_seqid(&data
->lsp
->ls_seqid
, 0);
3915 if (data
->rpc_status
== 0) {
3916 memcpy(data
->lsp
->ls_stateid
.data
, data
->res
.stateid
.data
,
3917 sizeof(data
->lsp
->ls_stateid
.data
));
3918 data
->lsp
->ls_flags
|= NFS_LOCK_INITIALIZED
;
3919 renew_lease(NFS_SERVER(data
->ctx
->path
.dentry
->d_inode
), data
->timestamp
);
3922 dprintk("%s: done, ret = %d!\n", __func__
, data
->rpc_status
);
3925 static void nfs4_lock_release(void *calldata
)
3927 struct nfs4_lockdata
*data
= calldata
;
3929 dprintk("%s: begin!\n", __func__
);
3930 nfs_free_seqid(data
->arg
.open_seqid
);
3931 if (data
->cancelled
!= 0) {
3932 struct rpc_task
*task
;
3933 task
= nfs4_do_unlck(&data
->fl
, data
->ctx
, data
->lsp
,
3934 data
->arg
.lock_seqid
);
3937 dprintk("%s: cancelling lock!\n", __func__
);
3939 nfs_free_seqid(data
->arg
.lock_seqid
);
3940 nfs4_put_lock_state(data
->lsp
);
3941 put_nfs_open_context(data
->ctx
);
3943 dprintk("%s: done!\n", __func__
);
3946 static const struct rpc_call_ops nfs4_lock_ops
= {
3947 .rpc_call_prepare
= nfs4_lock_prepare
,
3948 .rpc_call_done
= nfs4_lock_done
,
3949 .rpc_release
= nfs4_lock_release
,
3952 static int _nfs4_do_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*fl
, int reclaim
)
3954 struct nfs4_lockdata
*data
;
3955 struct rpc_task
*task
;
3956 struct rpc_message msg
= {
3957 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCK
],
3958 .rpc_cred
= state
->owner
->so_cred
,
3960 struct rpc_task_setup task_setup_data
= {
3961 .rpc_client
= NFS_CLIENT(state
->inode
),
3962 .rpc_message
= &msg
,
3963 .callback_ops
= &nfs4_lock_ops
,
3964 .workqueue
= nfsiod_workqueue
,
3965 .flags
= RPC_TASK_ASYNC
,
3969 dprintk("%s: begin!\n", __func__
);
3970 data
= nfs4_alloc_lockdata(fl
, nfs_file_open_context(fl
->fl_file
),
3971 fl
->fl_u
.nfs4_fl
.owner
);
3975 data
->arg
.block
= 1;
3977 data
->arg
.reclaim
= 1;
3978 msg
.rpc_argp
= &data
->arg
,
3979 msg
.rpc_resp
= &data
->res
,
3980 task_setup_data
.callback_data
= data
;
3981 task
= rpc_run_task(&task_setup_data
);
3983 return PTR_ERR(task
);
3984 ret
= nfs4_wait_for_completion_rpc_task(task
);
3986 ret
= data
->rpc_status
;
3988 data
->cancelled
= 1;
3990 dprintk("%s: done, ret = %d!\n", __func__
, ret
);
3994 static int nfs4_lock_reclaim(struct nfs4_state
*state
, struct file_lock
*request
)
3996 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
3997 struct nfs4_exception exception
= { };
4001 /* Cache the lock if possible... */
4002 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4004 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 1);
4005 if (err
!= -NFS4ERR_DELAY
)
4007 nfs4_handle_exception(server
, err
, &exception
);
4008 } while (exception
.retry
);
4012 static int nfs4_lock_expired(struct nfs4_state
*state
, struct file_lock
*request
)
4014 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4015 struct nfs4_exception exception
= { };
4018 err
= nfs4_set_lock_state(state
, request
);
4022 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4024 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 0);
4025 if (err
!= -NFS4ERR_DELAY
)
4027 nfs4_handle_exception(server
, err
, &exception
);
4028 } while (exception
.retry
);
4032 static int _nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4034 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
4035 unsigned char fl_flags
= request
->fl_flags
;
4038 /* Is this a delegated open? */
4039 status
= nfs4_set_lock_state(state
, request
);
4042 request
->fl_flags
|= FL_ACCESS
;
4043 status
= do_vfs_lock(request
->fl_file
, request
);
4046 down_read(&nfsi
->rwsem
);
4047 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
)) {
4048 /* Yes: cache locks! */
4049 /* ...but avoid races with delegation recall... */
4050 request
->fl_flags
= fl_flags
& ~FL_SLEEP
;
4051 status
= do_vfs_lock(request
->fl_file
, request
);
4054 status
= _nfs4_do_setlk(state
, cmd
, request
, 0);
4057 /* Note: we always want to sleep here! */
4058 request
->fl_flags
= fl_flags
| FL_SLEEP
;
4059 if (do_vfs_lock(request
->fl_file
, request
) < 0)
4060 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n", __func__
);
4062 up_read(&nfsi
->rwsem
);
4064 request
->fl_flags
= fl_flags
;
4068 static int nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4070 struct nfs4_exception exception
= { };
4074 err
= _nfs4_proc_setlk(state
, cmd
, request
);
4075 if (err
== -NFS4ERR_DENIED
)
4077 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
4079 } while (exception
.retry
);
4084 nfs4_proc_lock(struct file
*filp
, int cmd
, struct file_lock
*request
)
4086 struct nfs_open_context
*ctx
;
4087 struct nfs4_state
*state
;
4088 unsigned long timeout
= NFS4_LOCK_MINTIMEOUT
;
4091 /* verify open state */
4092 ctx
= nfs_file_open_context(filp
);
4095 if (request
->fl_start
< 0 || request
->fl_end
< 0)
4098 if (IS_GETLK(cmd
)) {
4100 return nfs4_proc_getlk(state
, F_GETLK
, request
);
4104 if (!(IS_SETLK(cmd
) || IS_SETLKW(cmd
)))
4107 if (request
->fl_type
== F_UNLCK
) {
4109 return nfs4_proc_unlck(state
, cmd
, request
);
4116 status
= nfs4_proc_setlk(state
, cmd
, request
);
4117 if ((status
!= -EAGAIN
) || IS_SETLK(cmd
))
4119 timeout
= nfs4_set_lock_task_retry(timeout
);
4120 status
= -ERESTARTSYS
;
4123 } while(status
< 0);
4127 int nfs4_lock_delegation_recall(struct nfs4_state
*state
, struct file_lock
*fl
)
4129 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4130 struct nfs4_exception exception
= { };
4133 err
= nfs4_set_lock_state(state
, fl
);
4137 err
= _nfs4_do_setlk(state
, F_SETLK
, fl
, 0);
4140 printk(KERN_ERR
"%s: unhandled error %d.\n",
4145 case -NFS4ERR_EXPIRED
:
4146 case -NFS4ERR_STALE_CLIENTID
:
4147 case -NFS4ERR_STALE_STATEID
:
4148 nfs4_schedule_state_recovery(server
->nfs_client
);
4152 * The show must go on: exit, but mark the
4153 * stateid as needing recovery.
4155 case -NFS4ERR_ADMIN_REVOKED
:
4156 case -NFS4ERR_BAD_STATEID
:
4157 case -NFS4ERR_OPENMODE
:
4158 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
4162 case -NFS4ERR_DENIED
:
4163 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4166 case -NFS4ERR_DELAY
:
4169 err
= nfs4_handle_exception(server
, err
, &exception
);
4170 } while (exception
.retry
);
4175 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4177 int nfs4_setxattr(struct dentry
*dentry
, const char *key
, const void *buf
,
4178 size_t buflen
, int flags
)
4180 struct inode
*inode
= dentry
->d_inode
;
4182 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
4185 return nfs4_proc_set_acl(inode
, buf
, buflen
);
4188 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
4189 * and that's what we'll do for e.g. user attributes that haven't been set.
4190 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4191 * attributes in kernel-managed attribute namespaces. */
4192 ssize_t
nfs4_getxattr(struct dentry
*dentry
, const char *key
, void *buf
,
4195 struct inode
*inode
= dentry
->d_inode
;
4197 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
4200 return nfs4_proc_get_acl(inode
, buf
, buflen
);
4203 ssize_t
nfs4_listxattr(struct dentry
*dentry
, char *buf
, size_t buflen
)
4205 size_t len
= strlen(XATTR_NAME_NFSV4_ACL
) + 1;
4207 if (!nfs4_server_supports_acls(NFS_SERVER(dentry
->d_inode
)))
4209 if (buf
&& buflen
< len
)
4212 memcpy(buf
, XATTR_NAME_NFSV4_ACL
, len
);
4216 static void nfs_fixup_referral_attributes(struct nfs_fattr
*fattr
)
4218 if (!((fattr
->valid
& NFS_ATTR_FATTR_FILEID
) &&
4219 (fattr
->valid
& NFS_ATTR_FATTR_FSID
) &&
4220 (fattr
->valid
& NFS_ATTR_FATTR_V4_REFERRAL
)))
4223 fattr
->valid
|= NFS_ATTR_FATTR_TYPE
| NFS_ATTR_FATTR_MODE
|
4224 NFS_ATTR_FATTR_NLINK
;
4225 fattr
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
4229 int nfs4_proc_fs_locations(struct inode
*dir
, const struct qstr
*name
,
4230 struct nfs4_fs_locations
*fs_locations
, struct page
*page
)
4232 struct nfs_server
*server
= NFS_SERVER(dir
);
4234 [0] = FATTR4_WORD0_FSID
| FATTR4_WORD0_FS_LOCATIONS
,
4235 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID
,
4237 struct nfs4_fs_locations_arg args
= {
4238 .dir_fh
= NFS_FH(dir
),
4243 struct nfs4_fs_locations_res res
= {
4244 .fs_locations
= fs_locations
,
4246 struct rpc_message msg
= {
4247 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FS_LOCATIONS
],
4253 dprintk("%s: start\n", __func__
);
4254 nfs_fattr_init(&fs_locations
->fattr
);
4255 fs_locations
->server
= server
;
4256 fs_locations
->nlocations
= 0;
4257 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
4258 nfs_fixup_referral_attributes(&fs_locations
->fattr
);
4259 dprintk("%s: returned status = %d\n", __func__
, status
);
4263 #ifdef CONFIG_NFS_V4_1
4265 * nfs4_proc_exchange_id()
4267 * Since the clientid has expired, all compounds using sessions
4268 * associated with the stale clientid will be returning
4269 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4270 * be in some phase of session reset.
4272 static int nfs4_proc_exchange_id(struct nfs_client
*clp
, struct rpc_cred
*cred
)
4274 nfs4_verifier verifier
;
4275 struct nfs41_exchange_id_args args
= {
4277 .flags
= clp
->cl_exchange_flags
,
4279 struct nfs41_exchange_id_res res
= {
4283 struct rpc_message msg
= {
4284 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_EXCHANGE_ID
],
4291 dprintk("--> %s\n", __func__
);
4292 BUG_ON(clp
== NULL
);
4294 p
= (u32
*)verifier
.data
;
4295 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
4296 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
4297 args
.verifier
= &verifier
;
4300 args
.id_len
= scnprintf(args
.id
, sizeof(args
.id
),
4303 rpc_peeraddr2str(clp
->cl_rpcclient
,
4305 clp
->cl_id_uniquifier
);
4307 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
4309 if (status
!= NFS4ERR_CLID_INUSE
)
4315 if (++clp
->cl_id_uniquifier
== 0)
4319 dprintk("<-- %s status= %d\n", __func__
, status
);
4323 struct nfs4_get_lease_time_data
{
4324 struct nfs4_get_lease_time_args
*args
;
4325 struct nfs4_get_lease_time_res
*res
;
4326 struct nfs_client
*clp
;
4329 static void nfs4_get_lease_time_prepare(struct rpc_task
*task
,
4333 struct nfs4_get_lease_time_data
*data
=
4334 (struct nfs4_get_lease_time_data
*)calldata
;
4336 dprintk("--> %s\n", __func__
);
4337 /* just setup sequence, do not trigger session recovery
4338 since we're invoked within one */
4339 ret
= nfs41_setup_sequence(data
->clp
->cl_session
,
4340 &data
->args
->la_seq_args
,
4341 &data
->res
->lr_seq_res
, 0, task
);
4343 BUG_ON(ret
== -EAGAIN
);
4344 rpc_call_start(task
);
4345 dprintk("<-- %s\n", __func__
);
4349 * Called from nfs4_state_manager thread for session setup, so don't recover
4350 * from sequence operation or clientid errors.
4352 static void nfs4_get_lease_time_done(struct rpc_task
*task
, void *calldata
)
4354 struct nfs4_get_lease_time_data
*data
=
4355 (struct nfs4_get_lease_time_data
*)calldata
;
4357 dprintk("--> %s\n", __func__
);
4358 nfs41_sequence_done(data
->clp
, &data
->res
->lr_seq_res
, task
->tk_status
);
4359 switch (task
->tk_status
) {
4360 case -NFS4ERR_DELAY
:
4361 case -NFS4ERR_GRACE
:
4362 dprintk("%s Retry: tk_status %d\n", __func__
, task
->tk_status
);
4363 rpc_delay(task
, NFS4_POLL_RETRY_MIN
);
4364 task
->tk_status
= 0;
4365 nfs4_restart_rpc(task
, data
->clp
);
4368 nfs41_sequence_free_slot(data
->clp
, &data
->res
->lr_seq_res
);
4369 dprintk("<-- %s\n", __func__
);
4372 struct rpc_call_ops nfs4_get_lease_time_ops
= {
4373 .rpc_call_prepare
= nfs4_get_lease_time_prepare
,
4374 .rpc_call_done
= nfs4_get_lease_time_done
,
4377 int nfs4_proc_get_lease_time(struct nfs_client
*clp
, struct nfs_fsinfo
*fsinfo
)
4379 struct rpc_task
*task
;
4380 struct nfs4_get_lease_time_args args
;
4381 struct nfs4_get_lease_time_res res
= {
4382 .lr_fsinfo
= fsinfo
,
4384 struct nfs4_get_lease_time_data data
= {
4389 struct rpc_message msg
= {
4390 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GET_LEASE_TIME
],
4394 struct rpc_task_setup task_setup
= {
4395 .rpc_client
= clp
->cl_rpcclient
,
4396 .rpc_message
= &msg
,
4397 .callback_ops
= &nfs4_get_lease_time_ops
,
4398 .callback_data
= &data
4402 res
.lr_seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
4403 dprintk("--> %s\n", __func__
);
4404 task
= rpc_run_task(&task_setup
);
4407 status
= PTR_ERR(task
);
4409 status
= task
->tk_status
;
4412 dprintk("<-- %s return %d\n", __func__
, status
);
4418 * Reset a slot table
4420 static int nfs4_reset_slot_table(struct nfs4_slot_table
*tbl
, int max_slots
,
4421 int old_max_slots
, int ivalue
)
4426 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__
, max_slots
, tbl
);
4429 * Until we have dynamic slot table adjustment, insist
4430 * upon the same slot table size
4432 if (max_slots
!= old_max_slots
) {
4433 dprintk("%s reset slot table does't match old\n",
4435 ret
= -EINVAL
; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4438 spin_lock(&tbl
->slot_tbl_lock
);
4439 for (i
= 0; i
< max_slots
; ++i
)
4440 tbl
->slots
[i
].seq_nr
= ivalue
;
4441 tbl
->highest_used_slotid
= -1;
4442 spin_unlock(&tbl
->slot_tbl_lock
);
4443 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4444 tbl
, tbl
->slots
, tbl
->max_slots
);
4446 dprintk("<-- %s: return %d\n", __func__
, ret
);
4451 * Reset the forechannel and backchannel slot tables
4453 static int nfs4_reset_slot_tables(struct nfs4_session
*session
)
4457 status
= nfs4_reset_slot_table(&session
->fc_slot_table
,
4458 session
->fc_attrs
.max_reqs
,
4459 session
->fc_slot_table
.max_slots
,
4464 status
= nfs4_reset_slot_table(&session
->bc_slot_table
,
4465 session
->bc_attrs
.max_reqs
,
4466 session
->bc_slot_table
.max_slots
,
4471 /* Destroy the slot table */
4472 static void nfs4_destroy_slot_tables(struct nfs4_session
*session
)
4474 if (session
->fc_slot_table
.slots
!= NULL
) {
4475 kfree(session
->fc_slot_table
.slots
);
4476 session
->fc_slot_table
.slots
= NULL
;
4478 if (session
->bc_slot_table
.slots
!= NULL
) {
4479 kfree(session
->bc_slot_table
.slots
);
4480 session
->bc_slot_table
.slots
= NULL
;
4486 * Initialize slot table
4488 static int nfs4_init_slot_table(struct nfs4_slot_table
*tbl
,
4489 int max_slots
, int ivalue
)
4492 struct nfs4_slot
*slot
;
4495 BUG_ON(max_slots
> NFS4_MAX_SLOT_TABLE
);
4497 dprintk("--> %s: max_reqs=%u\n", __func__
, max_slots
);
4499 slot
= kcalloc(max_slots
, sizeof(struct nfs4_slot
), GFP_KERNEL
);
4502 for (i
= 0; i
< max_slots
; ++i
)
4503 slot
[i
].seq_nr
= ivalue
;
4506 spin_lock(&tbl
->slot_tbl_lock
);
4507 if (tbl
->slots
!= NULL
) {
4508 spin_unlock(&tbl
->slot_tbl_lock
);
4509 dprintk("%s: slot table already initialized. tbl=%p slots=%p\n",
4510 __func__
, tbl
, tbl
->slots
);
4514 tbl
->max_slots
= max_slots
;
4516 tbl
->highest_used_slotid
= -1; /* no slot is currently used */
4517 spin_unlock(&tbl
->slot_tbl_lock
);
4518 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4519 tbl
, tbl
->slots
, tbl
->max_slots
);
4521 dprintk("<-- %s: return %d\n", __func__
, ret
);
4530 * Initialize the forechannel and backchannel tables
4532 static int nfs4_init_slot_tables(struct nfs4_session
*session
)
4536 status
= nfs4_init_slot_table(&session
->fc_slot_table
,
4537 session
->fc_attrs
.max_reqs
, 1);
4541 status
= nfs4_init_slot_table(&session
->bc_slot_table
,
4542 session
->bc_attrs
.max_reqs
, 0);
4544 nfs4_destroy_slot_tables(session
);
4549 struct nfs4_session
*nfs4_alloc_session(struct nfs_client
*clp
)
4551 struct nfs4_session
*session
;
4552 struct nfs4_slot_table
*tbl
;
4554 session
= kzalloc(sizeof(struct nfs4_session
), GFP_KERNEL
);
4558 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
4560 * The create session reply races with the server back
4561 * channel probe. Mark the client NFS_CS_SESSION_INITING
4562 * so that the client back channel can find the
4565 clp
->cl_cons_state
= NFS_CS_SESSION_INITING
;
4567 tbl
= &session
->fc_slot_table
;
4568 spin_lock_init(&tbl
->slot_tbl_lock
);
4569 rpc_init_wait_queue(&tbl
->slot_tbl_waitq
, "ForeChannel Slot table");
4571 tbl
= &session
->bc_slot_table
;
4572 spin_lock_init(&tbl
->slot_tbl_lock
);
4573 rpc_init_wait_queue(&tbl
->slot_tbl_waitq
, "BackChannel Slot table");
4579 void nfs4_destroy_session(struct nfs4_session
*session
)
4581 nfs4_proc_destroy_session(session
);
4582 dprintk("%s Destroy backchannel for xprt %p\n",
4583 __func__
, session
->clp
->cl_rpcclient
->cl_xprt
);
4584 xprt_destroy_backchannel(session
->clp
->cl_rpcclient
->cl_xprt
,
4585 NFS41_BC_MIN_CALLBACKS
);
4586 nfs4_destroy_slot_tables(session
);
4591 * Initialize the values to be used by the client in CREATE_SESSION
4592 * If nfs4_init_session set the fore channel request and response sizes,
4595 * Set the back channel max_resp_sz_cached to zero to force the client to
4596 * always set csa_cachethis to FALSE because the current implementation
4597 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4599 static void nfs4_init_channel_attrs(struct nfs41_create_session_args
*args
)
4601 struct nfs4_session
*session
= args
->client
->cl_session
;
4602 unsigned int mxrqst_sz
= session
->fc_attrs
.max_rqst_sz
,
4603 mxresp_sz
= session
->fc_attrs
.max_resp_sz
;
4606 mxrqst_sz
= NFS_MAX_FILE_IO_SIZE
;
4608 mxresp_sz
= NFS_MAX_FILE_IO_SIZE
;
4609 /* Fore channel attributes */
4610 args
->fc_attrs
.headerpadsz
= 0;
4611 args
->fc_attrs
.max_rqst_sz
= mxrqst_sz
;
4612 args
->fc_attrs
.max_resp_sz
= mxresp_sz
;
4613 args
->fc_attrs
.max_resp_sz_cached
= mxresp_sz
;
4614 args
->fc_attrs
.max_ops
= NFS4_MAX_OPS
;
4615 args
->fc_attrs
.max_reqs
= session
->clp
->cl_rpcclient
->cl_xprt
->max_reqs
;
4617 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4618 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4620 args
->fc_attrs
.max_rqst_sz
, args
->fc_attrs
.max_resp_sz
,
4621 args
->fc_attrs
.max_resp_sz_cached
, args
->fc_attrs
.max_ops
,
4622 args
->fc_attrs
.max_reqs
);
4624 /* Back channel attributes */
4625 args
->bc_attrs
.headerpadsz
= 0;
4626 args
->bc_attrs
.max_rqst_sz
= PAGE_SIZE
;
4627 args
->bc_attrs
.max_resp_sz
= PAGE_SIZE
;
4628 args
->bc_attrs
.max_resp_sz_cached
= 0;
4629 args
->bc_attrs
.max_ops
= NFS4_MAX_BACK_CHANNEL_OPS
;
4630 args
->bc_attrs
.max_reqs
= 1;
4632 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4633 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4635 args
->bc_attrs
.max_rqst_sz
, args
->bc_attrs
.max_resp_sz
,
4636 args
->bc_attrs
.max_resp_sz_cached
, args
->bc_attrs
.max_ops
,
4637 args
->bc_attrs
.max_reqs
);
4640 static int _verify_channel_attr(char *chan
, char *attr_name
, u32 sent
, u32 rcvd
)
4644 printk(KERN_WARNING
"%s: Session INVALID: %s channel %s increased. "
4645 "sent=%u rcvd=%u\n", __func__
, chan
, attr_name
, sent
, rcvd
);
4649 #define _verify_fore_channel_attr(_name_) \
4650 _verify_channel_attr("fore", #_name_, \
4651 args->fc_attrs._name_, \
4652 session->fc_attrs._name_)
4654 #define _verify_back_channel_attr(_name_) \
4655 _verify_channel_attr("back", #_name_, \
4656 args->bc_attrs._name_, \
4657 session->bc_attrs._name_)
4660 * The server is not allowed to increase the fore channel header pad size,
4661 * maximum response size, or maximum number of operations.
4663 * The back channel attributes are only negotiatied down: We send what the
4664 * (back channel) server insists upon.
4666 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args
*args
,
4667 struct nfs4_session
*session
)
4671 ret
|= _verify_fore_channel_attr(headerpadsz
);
4672 ret
|= _verify_fore_channel_attr(max_resp_sz
);
4673 ret
|= _verify_fore_channel_attr(max_ops
);
4675 ret
|= _verify_back_channel_attr(headerpadsz
);
4676 ret
|= _verify_back_channel_attr(max_rqst_sz
);
4677 ret
|= _verify_back_channel_attr(max_resp_sz
);
4678 ret
|= _verify_back_channel_attr(max_resp_sz_cached
);
4679 ret
|= _verify_back_channel_attr(max_ops
);
4680 ret
|= _verify_back_channel_attr(max_reqs
);
4685 static int _nfs4_proc_create_session(struct nfs_client
*clp
)
4687 struct nfs4_session
*session
= clp
->cl_session
;
4688 struct nfs41_create_session_args args
= {
4690 .cb_program
= NFS4_CALLBACK
,
4692 struct nfs41_create_session_res res
= {
4695 struct rpc_message msg
= {
4696 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE_SESSION
],
4702 nfs4_init_channel_attrs(&args
);
4703 args
.flags
= (SESSION4_PERSIST
| SESSION4_BACK_CHAN
);
4705 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
4708 /* Verify the session's negotiated channel_attrs values */
4709 status
= nfs4_verify_channel_attrs(&args
, session
);
4711 /* Increment the clientid slot sequence id */
4719 * Issues a CREATE_SESSION operation to the server.
4720 * It is the responsibility of the caller to verify the session is
4721 * expired before calling this routine.
4723 int nfs4_proc_create_session(struct nfs_client
*clp
, int reset
)
4727 struct nfs_fsinfo fsinfo
;
4728 struct nfs4_session
*session
= clp
->cl_session
;
4730 dprintk("--> %s clp=%p session=%p\n", __func__
, clp
, session
);
4732 status
= _nfs4_proc_create_session(clp
);
4736 /* Init or reset the fore channel */
4738 status
= nfs4_reset_slot_tables(session
);
4740 status
= nfs4_init_slot_tables(session
);
4741 dprintk("fore channel slot table initialization returned %d\n", status
);
4745 ptr
= (unsigned *)&session
->sess_id
.data
[0];
4746 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__
,
4747 clp
->cl_seqid
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
4750 /* Lease time is aleady set */
4753 /* Get the lease time */
4754 status
= nfs4_proc_get_lease_time(clp
, &fsinfo
);
4756 /* Update lease time and schedule renewal */
4757 spin_lock(&clp
->cl_lock
);
4758 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
4759 clp
->cl_last_renewal
= jiffies
;
4760 clear_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
);
4761 spin_unlock(&clp
->cl_lock
);
4763 nfs4_schedule_state_renewal(clp
);
4766 dprintk("<-- %s\n", __func__
);
4771 * Issue the over-the-wire RPC DESTROY_SESSION.
4772 * The caller must serialize access to this routine.
4774 int nfs4_proc_destroy_session(struct nfs4_session
*session
)
4777 struct rpc_message msg
;
4779 dprintk("--> nfs4_proc_destroy_session\n");
4781 /* session is still being setup */
4782 if (session
->clp
->cl_cons_state
!= NFS_CS_READY
)
4785 msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DESTROY_SESSION
];
4786 msg
.rpc_argp
= session
;
4787 msg
.rpc_resp
= NULL
;
4788 msg
.rpc_cred
= NULL
;
4789 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
4793 "Got error %d from the server on DESTROY_SESSION. "
4794 "Session has been destroyed regardless...\n", status
);
4796 dprintk("<-- nfs4_proc_destroy_session\n");
4800 int nfs4_init_session(struct nfs_server
*server
)
4802 struct nfs_client
*clp
= server
->nfs_client
;
4805 if (!nfs4_has_session(clp
))
4808 clp
->cl_session
->fc_attrs
.max_rqst_sz
= server
->wsize
;
4809 clp
->cl_session
->fc_attrs
.max_resp_sz
= server
->rsize
;
4810 ret
= nfs4_recover_expired_lease(server
);
4812 ret
= nfs4_check_client_ready(clp
);
4817 * Renew the cl_session lease.
4819 static int nfs4_proc_sequence(struct nfs_client
*clp
, struct rpc_cred
*cred
)
4821 struct nfs4_sequence_args args
;
4822 struct nfs4_sequence_res res
;
4824 struct rpc_message msg
= {
4825 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SEQUENCE
],
4831 args
.sa_cache_this
= 0;
4833 return nfs4_call_sync_sequence(clp
, clp
->cl_rpcclient
, &msg
, &args
,
4837 void nfs41_sequence_call_done(struct rpc_task
*task
, void *data
)
4839 struct nfs_client
*clp
= (struct nfs_client
*)data
;
4841 nfs41_sequence_done(clp
, task
->tk_msg
.rpc_resp
, task
->tk_status
);
4843 if (task
->tk_status
< 0) {
4844 dprintk("%s ERROR %d\n", __func__
, task
->tk_status
);
4846 if (_nfs4_async_handle_error(task
, NULL
, clp
, NULL
)
4848 nfs4_restart_rpc(task
, clp
);
4852 nfs41_sequence_free_slot(clp
, task
->tk_msg
.rpc_resp
);
4853 dprintk("%s rpc_cred %p\n", __func__
, task
->tk_msg
.rpc_cred
);
4855 kfree(task
->tk_msg
.rpc_argp
);
4856 kfree(task
->tk_msg
.rpc_resp
);
4858 dprintk("<-- %s\n", __func__
);
4861 static void nfs41_sequence_prepare(struct rpc_task
*task
, void *data
)
4863 struct nfs_client
*clp
;
4864 struct nfs4_sequence_args
*args
;
4865 struct nfs4_sequence_res
*res
;
4867 clp
= (struct nfs_client
*)data
;
4868 args
= task
->tk_msg
.rpc_argp
;
4869 res
= task
->tk_msg
.rpc_resp
;
4871 if (nfs4_setup_sequence(clp
, args
, res
, 0, task
))
4873 rpc_call_start(task
);
4876 static const struct rpc_call_ops nfs41_sequence_ops
= {
4877 .rpc_call_done
= nfs41_sequence_call_done
,
4878 .rpc_call_prepare
= nfs41_sequence_prepare
,
4881 static int nfs41_proc_async_sequence(struct nfs_client
*clp
,
4882 struct rpc_cred
*cred
)
4884 struct nfs4_sequence_args
*args
;
4885 struct nfs4_sequence_res
*res
;
4886 struct rpc_message msg
= {
4887 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SEQUENCE
],
4891 args
= kzalloc(sizeof(*args
), GFP_KERNEL
);
4894 res
= kzalloc(sizeof(*res
), GFP_KERNEL
);
4899 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
4900 msg
.rpc_argp
= args
;
4903 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
4904 &nfs41_sequence_ops
, (void *)clp
);
4907 #endif /* CONFIG_NFS_V4_1 */
4909 struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops
= {
4910 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
4911 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
4912 .recover_open
= nfs4_open_reclaim
,
4913 .recover_lock
= nfs4_lock_reclaim
,
4914 .establish_clid
= nfs4_init_clientid
,
4915 .get_clid_cred
= nfs4_get_setclientid_cred
,
4918 #if defined(CONFIG_NFS_V4_1)
4919 struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops
= {
4920 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
4921 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
4922 .recover_open
= nfs4_open_reclaim
,
4923 .recover_lock
= nfs4_lock_reclaim
,
4924 .establish_clid
= nfs4_proc_exchange_id
,
4925 .get_clid_cred
= nfs4_get_exchange_id_cred
,
4927 #endif /* CONFIG_NFS_V4_1 */
4929 struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops
= {
4930 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
4931 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
4932 .recover_open
= nfs4_open_expired
,
4933 .recover_lock
= nfs4_lock_expired
,
4934 .establish_clid
= nfs4_init_clientid
,
4935 .get_clid_cred
= nfs4_get_setclientid_cred
,
4938 #if defined(CONFIG_NFS_V4_1)
4939 struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops
= {
4940 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
4941 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
4942 .recover_open
= nfs4_open_expired
,
4943 .recover_lock
= nfs4_lock_expired
,
4944 .establish_clid
= nfs4_proc_exchange_id
,
4945 .get_clid_cred
= nfs4_get_exchange_id_cred
,
4947 #endif /* CONFIG_NFS_V4_1 */
4949 struct nfs4_state_maintenance_ops nfs40_state_renewal_ops
= {
4950 .sched_state_renewal
= nfs4_proc_async_renew
,
4951 .get_state_renewal_cred_locked
= nfs4_get_renew_cred_locked
,
4952 .renew_lease
= nfs4_proc_renew
,
4955 #if defined(CONFIG_NFS_V4_1)
4956 struct nfs4_state_maintenance_ops nfs41_state_renewal_ops
= {
4957 .sched_state_renewal
= nfs41_proc_async_sequence
,
4958 .get_state_renewal_cred_locked
= nfs4_get_machine_cred_locked
,
4959 .renew_lease
= nfs4_proc_sequence
,
4964 * Per minor version reboot and network partition recovery ops
4967 struct nfs4_state_recovery_ops
*nfs4_reboot_recovery_ops
[] = {
4968 &nfs40_reboot_recovery_ops
,
4969 #if defined(CONFIG_NFS_V4_1)
4970 &nfs41_reboot_recovery_ops
,
4974 struct nfs4_state_recovery_ops
*nfs4_nograce_recovery_ops
[] = {
4975 &nfs40_nograce_recovery_ops
,
4976 #if defined(CONFIG_NFS_V4_1)
4977 &nfs41_nograce_recovery_ops
,
4981 struct nfs4_state_maintenance_ops
*nfs4_state_renewal_ops
[] = {
4982 &nfs40_state_renewal_ops
,
4983 #if defined(CONFIG_NFS_V4_1)
4984 &nfs41_state_renewal_ops
,
4988 static const struct inode_operations nfs4_file_inode_operations
= {
4989 .permission
= nfs_permission
,
4990 .getattr
= nfs_getattr
,
4991 .setattr
= nfs_setattr
,
4992 .getxattr
= nfs4_getxattr
,
4993 .setxattr
= nfs4_setxattr
,
4994 .listxattr
= nfs4_listxattr
,
4997 const struct nfs_rpc_ops nfs_v4_clientops
= {
4998 .version
= 4, /* protocol version */
4999 .dentry_ops
= &nfs4_dentry_operations
,
5000 .dir_inode_ops
= &nfs4_dir_inode_operations
,
5001 .file_inode_ops
= &nfs4_file_inode_operations
,
5002 .getroot
= nfs4_proc_get_root
,
5003 .getattr
= nfs4_proc_getattr
,
5004 .setattr
= nfs4_proc_setattr
,
5005 .lookupfh
= nfs4_proc_lookupfh
,
5006 .lookup
= nfs4_proc_lookup
,
5007 .access
= nfs4_proc_access
,
5008 .readlink
= nfs4_proc_readlink
,
5009 .create
= nfs4_proc_create
,
5010 .remove
= nfs4_proc_remove
,
5011 .unlink_setup
= nfs4_proc_unlink_setup
,
5012 .unlink_done
= nfs4_proc_unlink_done
,
5013 .rename
= nfs4_proc_rename
,
5014 .link
= nfs4_proc_link
,
5015 .symlink
= nfs4_proc_symlink
,
5016 .mkdir
= nfs4_proc_mkdir
,
5017 .rmdir
= nfs4_proc_remove
,
5018 .readdir
= nfs4_proc_readdir
,
5019 .mknod
= nfs4_proc_mknod
,
5020 .statfs
= nfs4_proc_statfs
,
5021 .fsinfo
= nfs4_proc_fsinfo
,
5022 .pathconf
= nfs4_proc_pathconf
,
5023 .set_capabilities
= nfs4_server_capabilities
,
5024 .decode_dirent
= nfs4_decode_dirent
,
5025 .read_setup
= nfs4_proc_read_setup
,
5026 .read_done
= nfs4_read_done
,
5027 .write_setup
= nfs4_proc_write_setup
,
5028 .write_done
= nfs4_write_done
,
5029 .commit_setup
= nfs4_proc_commit_setup
,
5030 .commit_done
= nfs4_commit_done
,
5031 .lock
= nfs4_proc_lock
,
5032 .clear_acl_cache
= nfs4_zap_acl_attr
,
5033 .close_context
= nfs4_close_context
,