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/delay.h>
40 #include <linux/errno.h>
41 #include <linux/string.h>
42 #include <linux/slab.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>
52 #include <linux/xattr.h>
53 #include <linux/utsname.h>
56 #include "delegation.h"
62 #define NFSDBG_FACILITY NFSDBG_PROC
64 #define NFS4_POLL_RETRY_MIN (HZ/10)
65 #define NFS4_POLL_RETRY_MAX (15*HZ)
67 #define NFS4_MAX_LOOP_ON_RECOVER (10)
70 static int _nfs4_proc_open(struct nfs4_opendata
*data
);
71 static int _nfs4_recover_proc_open(struct nfs4_opendata
*data
);
72 static int nfs4_do_fsinfo(struct nfs_server
*, struct nfs_fh
*, struct nfs_fsinfo
*);
73 static int nfs4_async_handle_error(struct rpc_task
*, const struct nfs_server
*, struct nfs4_state
*);
74 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
75 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
76 static int nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
77 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
78 struct nfs4_state
*state
);
80 /* Prevent leaks of NFSv4 errors into userland */
81 static int nfs4_map_errors(int err
)
86 case -NFS4ERR_RESOURCE
:
89 dprintk("%s could not handle NFSv4 error %d\n",
97 * This is our standard bitmap for GETATTR requests.
99 const u32 nfs4_fattr_bitmap
[2] = {
101 | FATTR4_WORD0_CHANGE
104 | FATTR4_WORD0_FILEID
,
106 | FATTR4_WORD1_NUMLINKS
108 | FATTR4_WORD1_OWNER_GROUP
109 | FATTR4_WORD1_RAWDEV
110 | FATTR4_WORD1_SPACE_USED
111 | FATTR4_WORD1_TIME_ACCESS
112 | FATTR4_WORD1_TIME_METADATA
113 | FATTR4_WORD1_TIME_MODIFY
116 const u32 nfs4_statfs_bitmap
[2] = {
117 FATTR4_WORD0_FILES_AVAIL
118 | FATTR4_WORD0_FILES_FREE
119 | FATTR4_WORD0_FILES_TOTAL
,
120 FATTR4_WORD1_SPACE_AVAIL
121 | FATTR4_WORD1_SPACE_FREE
122 | FATTR4_WORD1_SPACE_TOTAL
125 const u32 nfs4_pathconf_bitmap
[2] = {
127 | FATTR4_WORD0_MAXNAME
,
131 const u32 nfs4_fsinfo_bitmap
[2] = { FATTR4_WORD0_MAXFILESIZE
132 | FATTR4_WORD0_MAXREAD
133 | FATTR4_WORD0_MAXWRITE
134 | FATTR4_WORD0_LEASE_TIME
,
135 FATTR4_WORD1_TIME_DELTA
136 | FATTR4_WORD1_FS_LAYOUT_TYPES
139 const u32 nfs4_fs_locations_bitmap
[2] = {
141 | FATTR4_WORD0_CHANGE
144 | FATTR4_WORD0_FILEID
145 | FATTR4_WORD0_FS_LOCATIONS
,
147 | FATTR4_WORD1_NUMLINKS
149 | FATTR4_WORD1_OWNER_GROUP
150 | FATTR4_WORD1_RAWDEV
151 | FATTR4_WORD1_SPACE_USED
152 | FATTR4_WORD1_TIME_ACCESS
153 | FATTR4_WORD1_TIME_METADATA
154 | FATTR4_WORD1_TIME_MODIFY
155 | FATTR4_WORD1_MOUNTED_ON_FILEID
158 static void nfs4_setup_readdir(u64 cookie
, __be32
*verifier
, struct dentry
*dentry
,
159 struct nfs4_readdir_arg
*readdir
)
163 BUG_ON(readdir
->count
< 80);
165 readdir
->cookie
= cookie
;
166 memcpy(&readdir
->verifier
, verifier
, sizeof(readdir
->verifier
));
171 memset(&readdir
->verifier
, 0, sizeof(readdir
->verifier
));
176 * NFSv4 servers do not return entries for '.' and '..'
177 * Therefore, we fake these entries here. We let '.'
178 * have cookie 0 and '..' have cookie 1. Note that
179 * when talking to the server, we always send cookie 0
182 start
= p
= kmap_atomic(*readdir
->pages
, KM_USER0
);
185 *p
++ = xdr_one
; /* next */
186 *p
++ = xdr_zero
; /* cookie, first word */
187 *p
++ = xdr_one
; /* cookie, second word */
188 *p
++ = xdr_one
; /* entry len */
189 memcpy(p
, ".\0\0\0", 4); /* entry */
191 *p
++ = xdr_one
; /* bitmap length */
192 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
193 *p
++ = htonl(8); /* attribute buffer length */
194 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_inode
));
197 *p
++ = xdr_one
; /* next */
198 *p
++ = xdr_zero
; /* cookie, first word */
199 *p
++ = xdr_two
; /* cookie, second word */
200 *p
++ = xdr_two
; /* entry len */
201 memcpy(p
, "..\0\0", 4); /* entry */
203 *p
++ = xdr_one
; /* bitmap length */
204 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
205 *p
++ = htonl(8); /* attribute buffer length */
206 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_parent
->d_inode
));
208 readdir
->pgbase
= (char *)p
- (char *)start
;
209 readdir
->count
-= readdir
->pgbase
;
210 kunmap_atomic(start
, KM_USER0
);
213 static int nfs4_wait_clnt_recover(struct nfs_client
*clp
)
219 res
= wait_on_bit(&clp
->cl_state
, NFS4CLNT_MANAGER_RUNNING
,
220 nfs_wait_bit_killable
, TASK_KILLABLE
);
224 static int nfs4_delay(struct rpc_clnt
*clnt
, long *timeout
)
231 *timeout
= NFS4_POLL_RETRY_MIN
;
232 if (*timeout
> NFS4_POLL_RETRY_MAX
)
233 *timeout
= NFS4_POLL_RETRY_MAX
;
234 schedule_timeout_killable(*timeout
);
235 if (fatal_signal_pending(current
))
241 /* This is the error handling routine for processes that are allowed
244 static int nfs4_handle_exception(const struct nfs_server
*server
, int errorcode
, struct nfs4_exception
*exception
)
246 struct nfs_client
*clp
= server
->nfs_client
;
247 struct nfs4_state
*state
= exception
->state
;
250 exception
->retry
= 0;
254 case -NFS4ERR_ADMIN_REVOKED
:
255 case -NFS4ERR_BAD_STATEID
:
256 case -NFS4ERR_OPENMODE
:
259 nfs4_state_mark_reclaim_nograce(clp
, state
);
260 goto do_state_recovery
;
261 case -NFS4ERR_STALE_STATEID
:
262 case -NFS4ERR_STALE_CLIENTID
:
263 case -NFS4ERR_EXPIRED
:
264 goto do_state_recovery
;
265 #if defined(CONFIG_NFS_V4_1)
266 case -NFS4ERR_BADSESSION
:
267 case -NFS4ERR_BADSLOT
:
268 case -NFS4ERR_BAD_HIGH_SLOT
:
269 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
270 case -NFS4ERR_DEADSESSION
:
271 case -NFS4ERR_SEQ_FALSE_RETRY
:
272 case -NFS4ERR_SEQ_MISORDERED
:
273 dprintk("%s ERROR: %d Reset session\n", __func__
,
275 nfs4_schedule_state_recovery(clp
);
276 exception
->retry
= 1;
278 #endif /* defined(CONFIG_NFS_V4_1) */
279 case -NFS4ERR_FILE_OPEN
:
280 if (exception
->timeout
> HZ
) {
281 /* We have retried a decent amount, time to
290 ret
= nfs4_delay(server
->client
, &exception
->timeout
);
293 case -NFS4ERR_OLD_STATEID
:
294 exception
->retry
= 1;
296 /* We failed to handle the error */
297 return nfs4_map_errors(ret
);
299 nfs4_schedule_state_recovery(clp
);
300 ret
= nfs4_wait_clnt_recover(clp
);
302 exception
->retry
= 1;
307 static void do_renew_lease(struct nfs_client
*clp
, unsigned long timestamp
)
309 spin_lock(&clp
->cl_lock
);
310 if (time_before(clp
->cl_last_renewal
,timestamp
))
311 clp
->cl_last_renewal
= timestamp
;
312 spin_unlock(&clp
->cl_lock
);
315 static void renew_lease(const struct nfs_server
*server
, unsigned long timestamp
)
317 do_renew_lease(server
->nfs_client
, timestamp
);
320 #if defined(CONFIG_NFS_V4_1)
323 * nfs4_free_slot - free a slot and efficiently update slot table.
325 * freeing a slot is trivially done by clearing its respective bit
327 * If the freed slotid equals highest_used_slotid we want to update it
328 * so that the server would be able to size down the slot table if needed,
329 * otherwise we know that the highest_used_slotid is still in use.
330 * When updating highest_used_slotid there may be "holes" in the bitmap
331 * so we need to scan down from highest_used_slotid to 0 looking for the now
332 * highest slotid in use.
333 * If none found, highest_used_slotid is set to -1.
335 * Must be called while holding tbl->slot_tbl_lock
338 nfs4_free_slot(struct nfs4_slot_table
*tbl
, struct nfs4_slot
*free_slot
)
340 int free_slotid
= free_slot
- tbl
->slots
;
341 int slotid
= free_slotid
;
343 BUG_ON(slotid
< 0 || slotid
>= NFS4_MAX_SLOT_TABLE
);
344 /* clear used bit in bitmap */
345 __clear_bit(slotid
, tbl
->used_slots
);
347 /* update highest_used_slotid when it is freed */
348 if (slotid
== tbl
->highest_used_slotid
) {
349 slotid
= find_last_bit(tbl
->used_slots
, tbl
->max_slots
);
350 if (slotid
< tbl
->max_slots
)
351 tbl
->highest_used_slotid
= slotid
;
353 tbl
->highest_used_slotid
= -1;
355 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__
,
356 free_slotid
, tbl
->highest_used_slotid
);
360 * Signal state manager thread if session fore channel is drained
362 static void nfs4_check_drain_fc_complete(struct nfs4_session
*ses
)
364 struct rpc_task
*task
;
366 if (!test_bit(NFS4_SESSION_DRAINING
, &ses
->session_state
)) {
367 task
= rpc_wake_up_next(&ses
->fc_slot_table
.slot_tbl_waitq
);
369 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
373 if (ses
->fc_slot_table
.highest_used_slotid
!= -1)
376 dprintk("%s COMPLETE: Session Fore Channel Drained\n", __func__
);
377 complete(&ses
->fc_slot_table
.complete
);
381 * Signal state manager thread if session back channel is drained
383 void nfs4_check_drain_bc_complete(struct nfs4_session
*ses
)
385 if (!test_bit(NFS4_SESSION_DRAINING
, &ses
->session_state
) ||
386 ses
->bc_slot_table
.highest_used_slotid
!= -1)
388 dprintk("%s COMPLETE: Session Back Channel Drained\n", __func__
);
389 complete(&ses
->bc_slot_table
.complete
);
392 static void nfs41_sequence_free_slot(struct nfs4_sequence_res
*res
)
394 struct nfs4_slot_table
*tbl
;
396 tbl
= &res
->sr_session
->fc_slot_table
;
398 /* just wake up the next guy waiting since
399 * we may have not consumed a slot after all */
400 dprintk("%s: No slot\n", __func__
);
404 spin_lock(&tbl
->slot_tbl_lock
);
405 nfs4_free_slot(tbl
, res
->sr_slot
);
406 nfs4_check_drain_fc_complete(res
->sr_session
);
407 spin_unlock(&tbl
->slot_tbl_lock
);
411 static int nfs41_sequence_done(struct rpc_task
*task
, struct nfs4_sequence_res
*res
)
413 unsigned long timestamp
;
414 struct nfs_client
*clp
;
417 * sr_status remains 1 if an RPC level error occurred. The server
418 * may or may not have processed the sequence operation..
419 * Proceed as if the server received and processed the sequence
422 if (res
->sr_status
== 1)
423 res
->sr_status
= NFS_OK
;
425 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
429 /* Check the SEQUENCE operation status */
430 switch (res
->sr_status
) {
432 /* Update the slot's sequence and clientid lease timer */
433 ++res
->sr_slot
->seq_nr
;
434 timestamp
= res
->sr_renewal_time
;
435 clp
= res
->sr_session
->clp
;
436 do_renew_lease(clp
, timestamp
);
437 /* Check sequence flags */
438 if (atomic_read(&clp
->cl_count
) > 1)
439 nfs41_handle_sequence_flag_errors(clp
, res
->sr_status_flags
);
442 /* The server detected a resend of the RPC call and
443 * returned NFS4ERR_DELAY as per Section 2.10.6.2
446 dprintk("%s: slot=%td seq=%d: Operation in progress\n",
448 res
->sr_slot
- res
->sr_session
->fc_slot_table
.slots
,
449 res
->sr_slot
->seq_nr
);
452 /* Just update the slot sequence no. */
453 ++res
->sr_slot
->seq_nr
;
456 /* The session may be reset by one of the error handlers. */
457 dprintk("%s: Error %d free the slot \n", __func__
, res
->sr_status
);
458 nfs41_sequence_free_slot(res
);
461 if (!rpc_restart_call(task
))
463 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
467 static int nfs4_sequence_done(struct rpc_task
*task
,
468 struct nfs4_sequence_res
*res
)
470 if (res
->sr_session
== NULL
)
472 return nfs41_sequence_done(task
, res
);
476 * nfs4_find_slot - efficiently look for a free slot
478 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
479 * If found, we mark the slot as used, update the highest_used_slotid,
480 * and respectively set up the sequence operation args.
481 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
483 * Note: must be called with under the slot_tbl_lock.
486 nfs4_find_slot(struct nfs4_slot_table
*tbl
)
489 u8 ret_id
= NFS4_MAX_SLOT_TABLE
;
490 BUILD_BUG_ON((u8
)NFS4_MAX_SLOT_TABLE
!= (int)NFS4_MAX_SLOT_TABLE
);
492 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
493 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
,
495 slotid
= find_first_zero_bit(tbl
->used_slots
, tbl
->max_slots
);
496 if (slotid
>= tbl
->max_slots
)
498 __set_bit(slotid
, tbl
->used_slots
);
499 if (slotid
> tbl
->highest_used_slotid
)
500 tbl
->highest_used_slotid
= slotid
;
503 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
504 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
, ret_id
);
508 static int nfs41_setup_sequence(struct nfs4_session
*session
,
509 struct nfs4_sequence_args
*args
,
510 struct nfs4_sequence_res
*res
,
512 struct rpc_task
*task
)
514 struct nfs4_slot
*slot
;
515 struct nfs4_slot_table
*tbl
;
518 dprintk("--> %s\n", __func__
);
519 /* slot already allocated? */
520 if (res
->sr_slot
!= NULL
)
523 tbl
= &session
->fc_slot_table
;
525 spin_lock(&tbl
->slot_tbl_lock
);
526 if (test_bit(NFS4_SESSION_DRAINING
, &session
->session_state
) &&
527 !rpc_task_has_priority(task
, RPC_PRIORITY_PRIVILEGED
)) {
529 * The state manager will wait until the slot table is empty.
530 * Schedule the reset thread
532 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
533 spin_unlock(&tbl
->slot_tbl_lock
);
534 dprintk("%s Schedule Session Reset\n", __func__
);
538 if (!rpc_queue_empty(&tbl
->slot_tbl_waitq
) &&
539 !rpc_task_has_priority(task
, RPC_PRIORITY_PRIVILEGED
)) {
540 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
541 spin_unlock(&tbl
->slot_tbl_lock
);
542 dprintk("%s enforce FIFO order\n", __func__
);
546 slotid
= nfs4_find_slot(tbl
);
547 if (slotid
== NFS4_MAX_SLOT_TABLE
) {
548 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
549 spin_unlock(&tbl
->slot_tbl_lock
);
550 dprintk("<-- %s: no free slots\n", __func__
);
553 spin_unlock(&tbl
->slot_tbl_lock
);
555 rpc_task_set_priority(task
, RPC_PRIORITY_NORMAL
);
556 slot
= tbl
->slots
+ slotid
;
557 args
->sa_session
= session
;
558 args
->sa_slotid
= slotid
;
559 args
->sa_cache_this
= cache_reply
;
561 dprintk("<-- %s slotid=%d seqid=%d\n", __func__
, slotid
, slot
->seq_nr
);
563 res
->sr_session
= session
;
565 res
->sr_renewal_time
= jiffies
;
566 res
->sr_status_flags
= 0;
568 * sr_status is only set in decode_sequence, and so will remain
569 * set to 1 if an rpc level failure occurs.
575 int nfs4_setup_sequence(const struct nfs_server
*server
,
576 struct nfs4_sequence_args
*args
,
577 struct nfs4_sequence_res
*res
,
579 struct rpc_task
*task
)
581 struct nfs4_session
*session
= nfs4_get_session(server
);
584 if (session
== NULL
) {
585 args
->sa_session
= NULL
;
586 res
->sr_session
= NULL
;
590 dprintk("--> %s clp %p session %p sr_slot %td\n",
591 __func__
, session
->clp
, session
, res
->sr_slot
?
592 res
->sr_slot
- session
->fc_slot_table
.slots
: -1);
594 ret
= nfs41_setup_sequence(session
, args
, res
, cache_reply
,
597 dprintk("<-- %s status=%d\n", __func__
, ret
);
601 struct nfs41_call_sync_data
{
602 const struct nfs_server
*seq_server
;
603 struct nfs4_sequence_args
*seq_args
;
604 struct nfs4_sequence_res
*seq_res
;
608 static void nfs41_call_sync_prepare(struct rpc_task
*task
, void *calldata
)
610 struct nfs41_call_sync_data
*data
= calldata
;
612 dprintk("--> %s data->seq_server %p\n", __func__
, data
->seq_server
);
614 if (nfs4_setup_sequence(data
->seq_server
, data
->seq_args
,
615 data
->seq_res
, data
->cache_reply
, task
))
617 rpc_call_start(task
);
620 static void nfs41_call_priv_sync_prepare(struct rpc_task
*task
, void *calldata
)
622 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
623 nfs41_call_sync_prepare(task
, calldata
);
626 static void nfs41_call_sync_done(struct rpc_task
*task
, void *calldata
)
628 struct nfs41_call_sync_data
*data
= calldata
;
630 nfs41_sequence_done(task
, data
->seq_res
);
633 struct rpc_call_ops nfs41_call_sync_ops
= {
634 .rpc_call_prepare
= nfs41_call_sync_prepare
,
635 .rpc_call_done
= nfs41_call_sync_done
,
638 struct rpc_call_ops nfs41_call_priv_sync_ops
= {
639 .rpc_call_prepare
= nfs41_call_priv_sync_prepare
,
640 .rpc_call_done
= nfs41_call_sync_done
,
643 static int nfs4_call_sync_sequence(struct nfs_server
*server
,
644 struct rpc_message
*msg
,
645 struct nfs4_sequence_args
*args
,
646 struct nfs4_sequence_res
*res
,
651 struct rpc_task
*task
;
652 struct nfs41_call_sync_data data
= {
653 .seq_server
= server
,
656 .cache_reply
= cache_reply
,
658 struct rpc_task_setup task_setup
= {
659 .rpc_client
= server
->client
,
661 .callback_ops
= &nfs41_call_sync_ops
,
662 .callback_data
= &data
667 task_setup
.callback_ops
= &nfs41_call_priv_sync_ops
;
668 task
= rpc_run_task(&task_setup
);
672 ret
= task
->tk_status
;
678 int _nfs4_call_sync_session(struct nfs_server
*server
,
679 struct rpc_message
*msg
,
680 struct nfs4_sequence_args
*args
,
681 struct nfs4_sequence_res
*res
,
684 return nfs4_call_sync_sequence(server
, msg
, args
, res
, cache_reply
, 0);
688 static int nfs4_sequence_done(struct rpc_task
*task
,
689 struct nfs4_sequence_res
*res
)
693 #endif /* CONFIG_NFS_V4_1 */
695 int _nfs4_call_sync(struct nfs_server
*server
,
696 struct rpc_message
*msg
,
697 struct nfs4_sequence_args
*args
,
698 struct nfs4_sequence_res
*res
,
701 args
->sa_session
= res
->sr_session
= NULL
;
702 return rpc_call_sync(server
->client
, msg
, 0);
705 #define nfs4_call_sync(server, msg, args, res, cache_reply) \
706 (server)->nfs_client->cl_mvops->call_sync((server), (msg), &(args)->seq_args, \
707 &(res)->seq_res, (cache_reply))
709 static void update_changeattr(struct inode
*dir
, struct nfs4_change_info
*cinfo
)
711 struct nfs_inode
*nfsi
= NFS_I(dir
);
713 spin_lock(&dir
->i_lock
);
714 nfsi
->cache_validity
|= NFS_INO_INVALID_ATTR
|NFS_INO_REVAL_PAGECACHE
|NFS_INO_INVALID_DATA
;
715 if (!cinfo
->atomic
|| cinfo
->before
!= nfsi
->change_attr
)
716 nfs_force_lookup_revalidate(dir
);
717 nfsi
->change_attr
= cinfo
->after
;
718 spin_unlock(&dir
->i_lock
);
721 struct nfs4_opendata
{
723 struct nfs_openargs o_arg
;
724 struct nfs_openres o_res
;
725 struct nfs_open_confirmargs c_arg
;
726 struct nfs_open_confirmres c_res
;
727 struct nfs_fattr f_attr
;
728 struct nfs_fattr dir_attr
;
731 struct nfs4_state_owner
*owner
;
732 struct nfs4_state
*state
;
734 unsigned long timestamp
;
735 unsigned int rpc_done
: 1;
741 static void nfs4_init_opendata_res(struct nfs4_opendata
*p
)
743 p
->o_res
.f_attr
= &p
->f_attr
;
744 p
->o_res
.dir_attr
= &p
->dir_attr
;
745 p
->o_res
.seqid
= p
->o_arg
.seqid
;
746 p
->c_res
.seqid
= p
->c_arg
.seqid
;
747 p
->o_res
.server
= p
->o_arg
.server
;
748 nfs_fattr_init(&p
->f_attr
);
749 nfs_fattr_init(&p
->dir_attr
);
752 static struct nfs4_opendata
*nfs4_opendata_alloc(struct path
*path
,
753 struct nfs4_state_owner
*sp
, fmode_t fmode
, int flags
,
754 const struct iattr
*attrs
,
757 struct dentry
*parent
= dget_parent(path
->dentry
);
758 struct inode
*dir
= parent
->d_inode
;
759 struct nfs_server
*server
= NFS_SERVER(dir
);
760 struct nfs4_opendata
*p
;
762 p
= kzalloc(sizeof(*p
), gfp_mask
);
765 p
->o_arg
.seqid
= nfs_alloc_seqid(&sp
->so_seqid
, gfp_mask
);
766 if (p
->o_arg
.seqid
== NULL
)
772 atomic_inc(&sp
->so_count
);
773 p
->o_arg
.fh
= NFS_FH(dir
);
774 p
->o_arg
.open_flags
= flags
;
775 p
->o_arg
.fmode
= fmode
& (FMODE_READ
|FMODE_WRITE
);
776 p
->o_arg
.clientid
= server
->nfs_client
->cl_clientid
;
777 p
->o_arg
.id
= sp
->so_owner_id
.id
;
778 p
->o_arg
.name
= &p
->path
.dentry
->d_name
;
779 p
->o_arg
.server
= server
;
780 p
->o_arg
.bitmask
= server
->attr_bitmask
;
781 p
->o_arg
.claim
= NFS4_OPEN_CLAIM_NULL
;
782 if (flags
& O_CREAT
) {
785 p
->o_arg
.u
.attrs
= &p
->attrs
;
786 memcpy(&p
->attrs
, attrs
, sizeof(p
->attrs
));
787 s
= (u32
*) p
->o_arg
.u
.verifier
.data
;
791 p
->c_arg
.fh
= &p
->o_res
.fh
;
792 p
->c_arg
.stateid
= &p
->o_res
.stateid
;
793 p
->c_arg
.seqid
= p
->o_arg
.seqid
;
794 nfs4_init_opendata_res(p
);
804 static void nfs4_opendata_free(struct kref
*kref
)
806 struct nfs4_opendata
*p
= container_of(kref
,
807 struct nfs4_opendata
, kref
);
809 nfs_free_seqid(p
->o_arg
.seqid
);
810 if (p
->state
!= NULL
)
811 nfs4_put_open_state(p
->state
);
812 nfs4_put_state_owner(p
->owner
);
818 static void nfs4_opendata_put(struct nfs4_opendata
*p
)
821 kref_put(&p
->kref
, nfs4_opendata_free
);
824 static int nfs4_wait_for_completion_rpc_task(struct rpc_task
*task
)
828 ret
= rpc_wait_for_completion_task(task
);
832 static int can_open_cached(struct nfs4_state
*state
, fmode_t mode
, int open_mode
)
836 if (open_mode
& O_EXCL
)
838 switch (mode
& (FMODE_READ
|FMODE_WRITE
)) {
840 ret
|= test_bit(NFS_O_RDONLY_STATE
, &state
->flags
) != 0
841 && state
->n_rdonly
!= 0;
844 ret
|= test_bit(NFS_O_WRONLY_STATE
, &state
->flags
) != 0
845 && state
->n_wronly
!= 0;
847 case FMODE_READ
|FMODE_WRITE
:
848 ret
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
) != 0
849 && state
->n_rdwr
!= 0;
855 static int can_open_delegated(struct nfs_delegation
*delegation
, fmode_t fmode
)
857 if ((delegation
->type
& fmode
) != fmode
)
859 if (test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
))
861 nfs_mark_delegation_referenced(delegation
);
865 static void update_open_stateflags(struct nfs4_state
*state
, fmode_t fmode
)
874 case FMODE_READ
|FMODE_WRITE
:
877 nfs4_state_set_mode_locked(state
, state
->state
| fmode
);
880 static void nfs_set_open_stateid_locked(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
882 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
883 memcpy(state
->stateid
.data
, stateid
->data
, sizeof(state
->stateid
.data
));
884 memcpy(state
->open_stateid
.data
, stateid
->data
, sizeof(state
->open_stateid
.data
));
887 set_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
890 set_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
892 case FMODE_READ
|FMODE_WRITE
:
893 set_bit(NFS_O_RDWR_STATE
, &state
->flags
);
897 static void nfs_set_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
899 write_seqlock(&state
->seqlock
);
900 nfs_set_open_stateid_locked(state
, stateid
, fmode
);
901 write_sequnlock(&state
->seqlock
);
904 static void __update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, const nfs4_stateid
*deleg_stateid
, fmode_t fmode
)
907 * Protect the call to nfs4_state_set_mode_locked and
908 * serialise the stateid update
910 write_seqlock(&state
->seqlock
);
911 if (deleg_stateid
!= NULL
) {
912 memcpy(state
->stateid
.data
, deleg_stateid
->data
, sizeof(state
->stateid
.data
));
913 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
915 if (open_stateid
!= NULL
)
916 nfs_set_open_stateid_locked(state
, open_stateid
, fmode
);
917 write_sequnlock(&state
->seqlock
);
918 spin_lock(&state
->owner
->so_lock
);
919 update_open_stateflags(state
, fmode
);
920 spin_unlock(&state
->owner
->so_lock
);
923 static int update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, nfs4_stateid
*delegation
, fmode_t fmode
)
925 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
926 struct nfs_delegation
*deleg_cur
;
929 fmode
&= (FMODE_READ
|FMODE_WRITE
);
932 deleg_cur
= rcu_dereference(nfsi
->delegation
);
933 if (deleg_cur
== NULL
)
936 spin_lock(&deleg_cur
->lock
);
937 if (nfsi
->delegation
!= deleg_cur
||
938 (deleg_cur
->type
& fmode
) != fmode
)
939 goto no_delegation_unlock
;
941 if (delegation
== NULL
)
942 delegation
= &deleg_cur
->stateid
;
943 else if (memcmp(deleg_cur
->stateid
.data
, delegation
->data
, NFS4_STATEID_SIZE
) != 0)
944 goto no_delegation_unlock
;
946 nfs_mark_delegation_referenced(deleg_cur
);
947 __update_open_stateid(state
, open_stateid
, &deleg_cur
->stateid
, fmode
);
949 no_delegation_unlock
:
950 spin_unlock(&deleg_cur
->lock
);
954 if (!ret
&& open_stateid
!= NULL
) {
955 __update_open_stateid(state
, open_stateid
, NULL
, fmode
);
963 static void nfs4_return_incompatible_delegation(struct inode
*inode
, fmode_t fmode
)
965 struct nfs_delegation
*delegation
;
968 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
969 if (delegation
== NULL
|| (delegation
->type
& fmode
) == fmode
) {
974 nfs_inode_return_delegation(inode
);
977 static struct nfs4_state
*nfs4_try_open_cached(struct nfs4_opendata
*opendata
)
979 struct nfs4_state
*state
= opendata
->state
;
980 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
981 struct nfs_delegation
*delegation
;
982 int open_mode
= opendata
->o_arg
.open_flags
& O_EXCL
;
983 fmode_t fmode
= opendata
->o_arg
.fmode
;
984 nfs4_stateid stateid
;
988 if (can_open_cached(state
, fmode
, open_mode
)) {
989 spin_lock(&state
->owner
->so_lock
);
990 if (can_open_cached(state
, fmode
, open_mode
)) {
991 update_open_stateflags(state
, fmode
);
992 spin_unlock(&state
->owner
->so_lock
);
993 goto out_return_state
;
995 spin_unlock(&state
->owner
->so_lock
);
998 delegation
= rcu_dereference(nfsi
->delegation
);
999 if (delegation
== NULL
||
1000 !can_open_delegated(delegation
, fmode
)) {
1004 /* Save the delegation */
1005 memcpy(stateid
.data
, delegation
->stateid
.data
, sizeof(stateid
.data
));
1007 ret
= nfs_may_open(state
->inode
, state
->owner
->so_cred
, open_mode
);
1012 /* Try to update the stateid using the delegation */
1013 if (update_open_stateid(state
, NULL
, &stateid
, fmode
))
1014 goto out_return_state
;
1017 return ERR_PTR(ret
);
1019 atomic_inc(&state
->count
);
1023 static struct nfs4_state
*nfs4_opendata_to_nfs4_state(struct nfs4_opendata
*data
)
1025 struct inode
*inode
;
1026 struct nfs4_state
*state
= NULL
;
1027 struct nfs_delegation
*delegation
;
1030 if (!data
->rpc_done
) {
1031 state
= nfs4_try_open_cached(data
);
1036 if (!(data
->f_attr
.valid
& NFS_ATTR_FATTR
))
1038 inode
= nfs_fhget(data
->dir
->d_sb
, &data
->o_res
.fh
, &data
->f_attr
);
1039 ret
= PTR_ERR(inode
);
1043 state
= nfs4_get_open_state(inode
, data
->owner
);
1046 if (data
->o_res
.delegation_type
!= 0) {
1047 int delegation_flags
= 0;
1050 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
1052 delegation_flags
= delegation
->flags
;
1054 if ((delegation_flags
& 1UL<<NFS_DELEGATION_NEED_RECLAIM
) == 0)
1055 nfs_inode_set_delegation(state
->inode
,
1056 data
->owner
->so_cred
,
1059 nfs_inode_reclaim_delegation(state
->inode
,
1060 data
->owner
->so_cred
,
1064 update_open_stateid(state
, &data
->o_res
.stateid
, NULL
,
1072 return ERR_PTR(ret
);
1075 static struct nfs_open_context
*nfs4_state_find_open_context(struct nfs4_state
*state
)
1077 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
1078 struct nfs_open_context
*ctx
;
1080 spin_lock(&state
->inode
->i_lock
);
1081 list_for_each_entry(ctx
, &nfsi
->open_files
, list
) {
1082 if (ctx
->state
!= state
)
1084 get_nfs_open_context(ctx
);
1085 spin_unlock(&state
->inode
->i_lock
);
1088 spin_unlock(&state
->inode
->i_lock
);
1089 return ERR_PTR(-ENOENT
);
1092 static struct nfs4_opendata
*nfs4_open_recoverdata_alloc(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1094 struct nfs4_opendata
*opendata
;
1096 opendata
= nfs4_opendata_alloc(&ctx
->path
, state
->owner
, 0, 0, NULL
, GFP_NOFS
);
1097 if (opendata
== NULL
)
1098 return ERR_PTR(-ENOMEM
);
1099 opendata
->state
= state
;
1100 atomic_inc(&state
->count
);
1104 static int nfs4_open_recover_helper(struct nfs4_opendata
*opendata
, fmode_t fmode
, struct nfs4_state
**res
)
1106 struct nfs4_state
*newstate
;
1109 opendata
->o_arg
.open_flags
= 0;
1110 opendata
->o_arg
.fmode
= fmode
;
1111 memset(&opendata
->o_res
, 0, sizeof(opendata
->o_res
));
1112 memset(&opendata
->c_res
, 0, sizeof(opendata
->c_res
));
1113 nfs4_init_opendata_res(opendata
);
1114 ret
= _nfs4_recover_proc_open(opendata
);
1117 newstate
= nfs4_opendata_to_nfs4_state(opendata
);
1118 if (IS_ERR(newstate
))
1119 return PTR_ERR(newstate
);
1120 nfs4_close_state(&opendata
->path
, newstate
, fmode
);
1125 static int nfs4_open_recover(struct nfs4_opendata
*opendata
, struct nfs4_state
*state
)
1127 struct nfs4_state
*newstate
;
1130 /* memory barrier prior to reading state->n_* */
1131 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
1133 if (state
->n_rdwr
!= 0) {
1134 clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1135 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
|FMODE_WRITE
, &newstate
);
1138 if (newstate
!= state
)
1141 if (state
->n_wronly
!= 0) {
1142 clear_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1143 ret
= nfs4_open_recover_helper(opendata
, FMODE_WRITE
, &newstate
);
1146 if (newstate
!= state
)
1149 if (state
->n_rdonly
!= 0) {
1150 clear_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1151 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
, &newstate
);
1154 if (newstate
!= state
)
1158 * We may have performed cached opens for all three recoveries.
1159 * Check if we need to update the current stateid.
1161 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0 &&
1162 memcmp(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
)) != 0) {
1163 write_seqlock(&state
->seqlock
);
1164 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
1165 memcpy(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
));
1166 write_sequnlock(&state
->seqlock
);
1173 * reclaim state on the server after a reboot.
1175 static int _nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1177 struct nfs_delegation
*delegation
;
1178 struct nfs4_opendata
*opendata
;
1179 fmode_t delegation_type
= 0;
1182 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1183 if (IS_ERR(opendata
))
1184 return PTR_ERR(opendata
);
1185 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_PREVIOUS
;
1186 opendata
->o_arg
.fh
= NFS_FH(state
->inode
);
1188 delegation
= rcu_dereference(NFS_I(state
->inode
)->delegation
);
1189 if (delegation
!= NULL
&& test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) != 0)
1190 delegation_type
= delegation
->type
;
1192 opendata
->o_arg
.u
.delegation_type
= delegation_type
;
1193 status
= nfs4_open_recover(opendata
, state
);
1194 nfs4_opendata_put(opendata
);
1198 static int nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1200 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1201 struct nfs4_exception exception
= { };
1204 err
= _nfs4_do_open_reclaim(ctx
, state
);
1205 if (err
!= -NFS4ERR_DELAY
)
1207 nfs4_handle_exception(server
, err
, &exception
);
1208 } while (exception
.retry
);
1212 static int nfs4_open_reclaim(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1214 struct nfs_open_context
*ctx
;
1217 ctx
= nfs4_state_find_open_context(state
);
1219 return PTR_ERR(ctx
);
1220 ret
= nfs4_do_open_reclaim(ctx
, state
);
1221 put_nfs_open_context(ctx
);
1225 static int _nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1227 struct nfs4_opendata
*opendata
;
1230 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1231 if (IS_ERR(opendata
))
1232 return PTR_ERR(opendata
);
1233 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_DELEGATE_CUR
;
1234 memcpy(opendata
->o_arg
.u
.delegation
.data
, stateid
->data
,
1235 sizeof(opendata
->o_arg
.u
.delegation
.data
));
1236 ret
= nfs4_open_recover(opendata
, state
);
1237 nfs4_opendata_put(opendata
);
1241 int nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1243 struct nfs4_exception exception
= { };
1244 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1247 err
= _nfs4_open_delegation_recall(ctx
, state
, stateid
);
1253 case -NFS4ERR_BADSESSION
:
1254 case -NFS4ERR_BADSLOT
:
1255 case -NFS4ERR_BAD_HIGH_SLOT
:
1256 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
1257 case -NFS4ERR_DEADSESSION
:
1258 nfs4_schedule_state_recovery(
1259 server
->nfs_client
);
1261 case -NFS4ERR_STALE_CLIENTID
:
1262 case -NFS4ERR_STALE_STATEID
:
1263 case -NFS4ERR_EXPIRED
:
1264 /* Don't recall a delegation if it was lost */
1265 nfs4_schedule_state_recovery(server
->nfs_client
);
1269 * The show must go on: exit, but mark the
1270 * stateid as needing recovery.
1272 case -NFS4ERR_ADMIN_REVOKED
:
1273 case -NFS4ERR_BAD_STATEID
:
1274 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
1277 * User RPCSEC_GSS context has expired.
1278 * We cannot recover this stateid now, so
1279 * skip it and allow recovery thread to
1286 err
= nfs4_handle_exception(server
, err
, &exception
);
1287 } while (exception
.retry
);
1292 static void nfs4_open_confirm_done(struct rpc_task
*task
, void *calldata
)
1294 struct nfs4_opendata
*data
= calldata
;
1296 data
->rpc_status
= task
->tk_status
;
1297 if (data
->rpc_status
== 0) {
1298 memcpy(data
->o_res
.stateid
.data
, data
->c_res
.stateid
.data
,
1299 sizeof(data
->o_res
.stateid
.data
));
1300 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1301 renew_lease(data
->o_res
.server
, data
->timestamp
);
1306 static void nfs4_open_confirm_release(void *calldata
)
1308 struct nfs4_opendata
*data
= calldata
;
1309 struct nfs4_state
*state
= NULL
;
1311 /* If this request hasn't been cancelled, do nothing */
1312 if (data
->cancelled
== 0)
1314 /* In case of error, no cleanup! */
1315 if (!data
->rpc_done
)
1317 state
= nfs4_opendata_to_nfs4_state(data
);
1319 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1321 nfs4_opendata_put(data
);
1324 static const struct rpc_call_ops nfs4_open_confirm_ops
= {
1325 .rpc_call_done
= nfs4_open_confirm_done
,
1326 .rpc_release
= nfs4_open_confirm_release
,
1330 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1332 static int _nfs4_proc_open_confirm(struct nfs4_opendata
*data
)
1334 struct nfs_server
*server
= NFS_SERVER(data
->dir
->d_inode
);
1335 struct rpc_task
*task
;
1336 struct rpc_message msg
= {
1337 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_CONFIRM
],
1338 .rpc_argp
= &data
->c_arg
,
1339 .rpc_resp
= &data
->c_res
,
1340 .rpc_cred
= data
->owner
->so_cred
,
1342 struct rpc_task_setup task_setup_data
= {
1343 .rpc_client
= server
->client
,
1344 .rpc_message
= &msg
,
1345 .callback_ops
= &nfs4_open_confirm_ops
,
1346 .callback_data
= data
,
1347 .workqueue
= nfsiod_workqueue
,
1348 .flags
= RPC_TASK_ASYNC
,
1352 kref_get(&data
->kref
);
1354 data
->rpc_status
= 0;
1355 data
->timestamp
= jiffies
;
1356 task
= rpc_run_task(&task_setup_data
);
1358 return PTR_ERR(task
);
1359 status
= nfs4_wait_for_completion_rpc_task(task
);
1361 data
->cancelled
= 1;
1364 status
= data
->rpc_status
;
1369 static void nfs4_open_prepare(struct rpc_task
*task
, void *calldata
)
1371 struct nfs4_opendata
*data
= calldata
;
1372 struct nfs4_state_owner
*sp
= data
->owner
;
1374 if (nfs_wait_on_sequence(data
->o_arg
.seqid
, task
) != 0)
1377 * Check if we still need to send an OPEN call, or if we can use
1378 * a delegation instead.
1380 if (data
->state
!= NULL
) {
1381 struct nfs_delegation
*delegation
;
1383 if (can_open_cached(data
->state
, data
->o_arg
.fmode
, data
->o_arg
.open_flags
))
1386 delegation
= rcu_dereference(NFS_I(data
->state
->inode
)->delegation
);
1387 if (delegation
!= NULL
&&
1388 test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) == 0) {
1394 /* Update sequence id. */
1395 data
->o_arg
.id
= sp
->so_owner_id
.id
;
1396 data
->o_arg
.clientid
= sp
->so_server
->nfs_client
->cl_clientid
;
1397 if (data
->o_arg
.claim
== NFS4_OPEN_CLAIM_PREVIOUS
) {
1398 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_NOATTR
];
1399 nfs_copy_fh(&data
->o_res
.fh
, data
->o_arg
.fh
);
1401 data
->timestamp
= jiffies
;
1402 if (nfs4_setup_sequence(data
->o_arg
.server
,
1403 &data
->o_arg
.seq_args
,
1404 &data
->o_res
.seq_res
, 1, task
))
1406 rpc_call_start(task
);
1409 task
->tk_action
= NULL
;
1413 static void nfs4_recover_open_prepare(struct rpc_task
*task
, void *calldata
)
1415 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
1416 nfs4_open_prepare(task
, calldata
);
1419 static void nfs4_open_done(struct rpc_task
*task
, void *calldata
)
1421 struct nfs4_opendata
*data
= calldata
;
1423 data
->rpc_status
= task
->tk_status
;
1425 if (!nfs4_sequence_done(task
, &data
->o_res
.seq_res
))
1428 if (task
->tk_status
== 0) {
1429 switch (data
->o_res
.f_attr
->mode
& S_IFMT
) {
1433 data
->rpc_status
= -ELOOP
;
1436 data
->rpc_status
= -EISDIR
;
1439 data
->rpc_status
= -ENOTDIR
;
1441 renew_lease(data
->o_res
.server
, data
->timestamp
);
1442 if (!(data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
))
1443 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1448 static void nfs4_open_release(void *calldata
)
1450 struct nfs4_opendata
*data
= calldata
;
1451 struct nfs4_state
*state
= NULL
;
1453 /* If this request hasn't been cancelled, do nothing */
1454 if (data
->cancelled
== 0)
1456 /* In case of error, no cleanup! */
1457 if (data
->rpc_status
!= 0 || !data
->rpc_done
)
1459 /* In case we need an open_confirm, no cleanup! */
1460 if (data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
)
1462 state
= nfs4_opendata_to_nfs4_state(data
);
1464 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1466 nfs4_opendata_put(data
);
1469 static const struct rpc_call_ops nfs4_open_ops
= {
1470 .rpc_call_prepare
= nfs4_open_prepare
,
1471 .rpc_call_done
= nfs4_open_done
,
1472 .rpc_release
= nfs4_open_release
,
1475 static const struct rpc_call_ops nfs4_recover_open_ops
= {
1476 .rpc_call_prepare
= nfs4_recover_open_prepare
,
1477 .rpc_call_done
= nfs4_open_done
,
1478 .rpc_release
= nfs4_open_release
,
1481 static int nfs4_run_open_task(struct nfs4_opendata
*data
, int isrecover
)
1483 struct inode
*dir
= data
->dir
->d_inode
;
1484 struct nfs_server
*server
= NFS_SERVER(dir
);
1485 struct nfs_openargs
*o_arg
= &data
->o_arg
;
1486 struct nfs_openres
*o_res
= &data
->o_res
;
1487 struct rpc_task
*task
;
1488 struct rpc_message msg
= {
1489 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN
],
1492 .rpc_cred
= data
->owner
->so_cred
,
1494 struct rpc_task_setup task_setup_data
= {
1495 .rpc_client
= server
->client
,
1496 .rpc_message
= &msg
,
1497 .callback_ops
= &nfs4_open_ops
,
1498 .callback_data
= data
,
1499 .workqueue
= nfsiod_workqueue
,
1500 .flags
= RPC_TASK_ASYNC
,
1504 kref_get(&data
->kref
);
1506 data
->rpc_status
= 0;
1507 data
->cancelled
= 0;
1509 task_setup_data
.callback_ops
= &nfs4_recover_open_ops
;
1510 task
= rpc_run_task(&task_setup_data
);
1512 return PTR_ERR(task
);
1513 status
= nfs4_wait_for_completion_rpc_task(task
);
1515 data
->cancelled
= 1;
1518 status
= data
->rpc_status
;
1524 static int _nfs4_recover_proc_open(struct nfs4_opendata
*data
)
1526 struct inode
*dir
= data
->dir
->d_inode
;
1527 struct nfs_openres
*o_res
= &data
->o_res
;
1530 status
= nfs4_run_open_task(data
, 1);
1531 if (status
!= 0 || !data
->rpc_done
)
1534 nfs_refresh_inode(dir
, o_res
->dir_attr
);
1536 if (o_res
->rflags
& NFS4_OPEN_RESULT_CONFIRM
) {
1537 status
= _nfs4_proc_open_confirm(data
);
1546 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1548 static int _nfs4_proc_open(struct nfs4_opendata
*data
)
1550 struct inode
*dir
= data
->dir
->d_inode
;
1551 struct nfs_server
*server
= NFS_SERVER(dir
);
1552 struct nfs_openargs
*o_arg
= &data
->o_arg
;
1553 struct nfs_openres
*o_res
= &data
->o_res
;
1556 status
= nfs4_run_open_task(data
, 0);
1557 if (status
!= 0 || !data
->rpc_done
)
1560 if (o_arg
->open_flags
& O_CREAT
) {
1561 update_changeattr(dir
, &o_res
->cinfo
);
1562 nfs_post_op_update_inode(dir
, o_res
->dir_attr
);
1564 nfs_refresh_inode(dir
, o_res
->dir_attr
);
1565 if ((o_res
->rflags
& NFS4_OPEN_RESULT_LOCKTYPE_POSIX
) == 0)
1566 server
->caps
&= ~NFS_CAP_POSIX_LOCK
;
1567 if(o_res
->rflags
& NFS4_OPEN_RESULT_CONFIRM
) {
1568 status
= _nfs4_proc_open_confirm(data
);
1572 if (!(o_res
->f_attr
->valid
& NFS_ATTR_FATTR
))
1573 _nfs4_proc_getattr(server
, &o_res
->fh
, o_res
->f_attr
);
1577 static int nfs4_recover_expired_lease(struct nfs_server
*server
)
1579 struct nfs_client
*clp
= server
->nfs_client
;
1583 for (loop
= NFS4_MAX_LOOP_ON_RECOVER
; loop
!= 0; loop
--) {
1584 ret
= nfs4_wait_clnt_recover(clp
);
1587 if (!test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) &&
1588 !test_bit(NFS4CLNT_CHECK_LEASE
,&clp
->cl_state
))
1590 nfs4_schedule_state_recovery(clp
);
1598 * reclaim state on the server after a network partition.
1599 * Assumes caller holds the appropriate lock
1601 static int _nfs4_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1603 struct nfs4_opendata
*opendata
;
1606 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1607 if (IS_ERR(opendata
))
1608 return PTR_ERR(opendata
);
1609 ret
= nfs4_open_recover(opendata
, state
);
1611 d_drop(ctx
->path
.dentry
);
1612 nfs4_opendata_put(opendata
);
1616 static int nfs4_do_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1618 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1619 struct nfs4_exception exception
= { };
1623 err
= _nfs4_open_expired(ctx
, state
);
1627 case -NFS4ERR_GRACE
:
1628 case -NFS4ERR_DELAY
:
1629 nfs4_handle_exception(server
, err
, &exception
);
1632 } while (exception
.retry
);
1637 static int nfs4_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1639 struct nfs_open_context
*ctx
;
1642 ctx
= nfs4_state_find_open_context(state
);
1644 return PTR_ERR(ctx
);
1645 ret
= nfs4_do_open_expired(ctx
, state
);
1646 put_nfs_open_context(ctx
);
1651 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1652 * fields corresponding to attributes that were used to store the verifier.
1653 * Make sure we clobber those fields in the later setattr call
1655 static inline void nfs4_exclusive_attrset(struct nfs4_opendata
*opendata
, struct iattr
*sattr
)
1657 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_ACCESS
) &&
1658 !(sattr
->ia_valid
& ATTR_ATIME_SET
))
1659 sattr
->ia_valid
|= ATTR_ATIME
;
1661 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_MODIFY
) &&
1662 !(sattr
->ia_valid
& ATTR_MTIME_SET
))
1663 sattr
->ia_valid
|= ATTR_MTIME
;
1667 * Returns a referenced nfs4_state
1669 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
)
1671 struct nfs4_state_owner
*sp
;
1672 struct nfs4_state
*state
= NULL
;
1673 struct nfs_server
*server
= NFS_SERVER(dir
);
1674 struct nfs4_opendata
*opendata
;
1677 /* Protect against reboot recovery conflicts */
1679 if (!(sp
= nfs4_get_state_owner(server
, cred
))) {
1680 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1683 status
= nfs4_recover_expired_lease(server
);
1685 goto err_put_state_owner
;
1686 if (path
->dentry
->d_inode
!= NULL
)
1687 nfs4_return_incompatible_delegation(path
->dentry
->d_inode
, fmode
);
1689 opendata
= nfs4_opendata_alloc(path
, sp
, fmode
, flags
, sattr
, GFP_KERNEL
);
1690 if (opendata
== NULL
)
1691 goto err_put_state_owner
;
1693 if (path
->dentry
->d_inode
!= NULL
)
1694 opendata
->state
= nfs4_get_open_state(path
->dentry
->d_inode
, sp
);
1696 status
= _nfs4_proc_open(opendata
);
1698 goto err_opendata_put
;
1700 state
= nfs4_opendata_to_nfs4_state(opendata
);
1701 status
= PTR_ERR(state
);
1703 goto err_opendata_put
;
1704 if (server
->caps
& NFS_CAP_POSIX_LOCK
)
1705 set_bit(NFS_STATE_POSIX_LOCKS
, &state
->flags
);
1707 if (opendata
->o_arg
.open_flags
& O_EXCL
) {
1708 nfs4_exclusive_attrset(opendata
, sattr
);
1710 nfs_fattr_init(opendata
->o_res
.f_attr
);
1711 status
= nfs4_do_setattr(state
->inode
, cred
,
1712 opendata
->o_res
.f_attr
, sattr
,
1715 nfs_setattr_update_inode(state
->inode
, sattr
);
1716 nfs_post_op_update_inode(state
->inode
, opendata
->o_res
.f_attr
);
1718 nfs4_opendata_put(opendata
);
1719 nfs4_put_state_owner(sp
);
1723 nfs4_opendata_put(opendata
);
1724 err_put_state_owner
:
1725 nfs4_put_state_owner(sp
);
1732 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
)
1734 struct nfs4_exception exception
= { };
1735 struct nfs4_state
*res
;
1739 status
= _nfs4_do_open(dir
, path
, fmode
, flags
, sattr
, cred
, &res
);
1742 /* NOTE: BAD_SEQID means the server and client disagree about the
1743 * book-keeping w.r.t. state-changing operations
1744 * (OPEN/CLOSE/LOCK/LOCKU...)
1745 * It is actually a sign of a bug on the client or on the server.
1747 * If we receive a BAD_SEQID error in the particular case of
1748 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1749 * have unhashed the old state_owner for us, and that we can
1750 * therefore safely retry using a new one. We should still warn
1751 * the user though...
1753 if (status
== -NFS4ERR_BAD_SEQID
) {
1754 printk(KERN_WARNING
"NFS: v4 server %s "
1755 " returned a bad sequence-id error!\n",
1756 NFS_SERVER(dir
)->nfs_client
->cl_hostname
);
1757 exception
.retry
= 1;
1761 * BAD_STATEID on OPEN means that the server cancelled our
1762 * state before it received the OPEN_CONFIRM.
1763 * Recover by retrying the request as per the discussion
1764 * on Page 181 of RFC3530.
1766 if (status
== -NFS4ERR_BAD_STATEID
) {
1767 exception
.retry
= 1;
1770 if (status
== -EAGAIN
) {
1771 /* We must have found a delegation */
1772 exception
.retry
= 1;
1775 res
= ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir
),
1776 status
, &exception
));
1777 } while (exception
.retry
);
1781 static int _nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1782 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1783 struct nfs4_state
*state
)
1785 struct nfs_server
*server
= NFS_SERVER(inode
);
1786 struct nfs_setattrargs arg
= {
1787 .fh
= NFS_FH(inode
),
1790 .bitmask
= server
->attr_bitmask
,
1792 struct nfs_setattrres res
= {
1796 struct rpc_message msg
= {
1797 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETATTR
],
1802 unsigned long timestamp
= jiffies
;
1805 nfs_fattr_init(fattr
);
1807 if (nfs4_copy_delegation_stateid(&arg
.stateid
, inode
)) {
1808 /* Use that stateid */
1809 } else if (state
!= NULL
) {
1810 nfs4_copy_stateid(&arg
.stateid
, state
, current
->files
, current
->tgid
);
1812 memcpy(&arg
.stateid
, &zero_stateid
, sizeof(arg
.stateid
));
1814 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
1815 if (status
== 0 && state
!= NULL
)
1816 renew_lease(server
, timestamp
);
1820 static int nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1821 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1822 struct nfs4_state
*state
)
1824 struct nfs_server
*server
= NFS_SERVER(inode
);
1825 struct nfs4_exception exception
= { };
1828 err
= nfs4_handle_exception(server
,
1829 _nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
),
1831 } while (exception
.retry
);
1835 struct nfs4_closedata
{
1837 struct inode
*inode
;
1838 struct nfs4_state
*state
;
1839 struct nfs_closeargs arg
;
1840 struct nfs_closeres res
;
1841 struct nfs_fattr fattr
;
1842 unsigned long timestamp
;
1847 static void nfs4_free_closedata(void *data
)
1849 struct nfs4_closedata
*calldata
= data
;
1850 struct nfs4_state_owner
*sp
= calldata
->state
->owner
;
1853 pnfs_roc_release(calldata
->state
->inode
);
1854 nfs4_put_open_state(calldata
->state
);
1855 nfs_free_seqid(calldata
->arg
.seqid
);
1856 nfs4_put_state_owner(sp
);
1857 path_put(&calldata
->path
);
1861 static void nfs4_close_clear_stateid_flags(struct nfs4_state
*state
,
1864 spin_lock(&state
->owner
->so_lock
);
1865 if (!(fmode
& FMODE_READ
))
1866 clear_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1867 if (!(fmode
& FMODE_WRITE
))
1868 clear_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1869 clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1870 spin_unlock(&state
->owner
->so_lock
);
1873 static void nfs4_close_done(struct rpc_task
*task
, void *data
)
1875 struct nfs4_closedata
*calldata
= data
;
1876 struct nfs4_state
*state
= calldata
->state
;
1877 struct nfs_server
*server
= NFS_SERVER(calldata
->inode
);
1879 if (!nfs4_sequence_done(task
, &calldata
->res
.seq_res
))
1881 /* hmm. we are done with the inode, and in the process of freeing
1882 * the state_owner. we keep this around to process errors
1884 switch (task
->tk_status
) {
1887 pnfs_roc_set_barrier(state
->inode
,
1888 calldata
->roc_barrier
);
1889 nfs_set_open_stateid(state
, &calldata
->res
.stateid
, 0);
1890 renew_lease(server
, calldata
->timestamp
);
1891 nfs4_close_clear_stateid_flags(state
,
1892 calldata
->arg
.fmode
);
1894 case -NFS4ERR_STALE_STATEID
:
1895 case -NFS4ERR_OLD_STATEID
:
1896 case -NFS4ERR_BAD_STATEID
:
1897 case -NFS4ERR_EXPIRED
:
1898 if (calldata
->arg
.fmode
== 0)
1901 if (nfs4_async_handle_error(task
, server
, state
) == -EAGAIN
)
1902 rpc_restart_call_prepare(task
);
1904 nfs_release_seqid(calldata
->arg
.seqid
);
1905 nfs_refresh_inode(calldata
->inode
, calldata
->res
.fattr
);
1908 static void nfs4_close_prepare(struct rpc_task
*task
, void *data
)
1910 struct nfs4_closedata
*calldata
= data
;
1911 struct nfs4_state
*state
= calldata
->state
;
1914 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
1917 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
1918 calldata
->arg
.fmode
= FMODE_READ
|FMODE_WRITE
;
1919 spin_lock(&state
->owner
->so_lock
);
1920 /* Calculate the change in open mode */
1921 if (state
->n_rdwr
== 0) {
1922 if (state
->n_rdonly
== 0) {
1923 call_close
|= test_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1924 call_close
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1925 calldata
->arg
.fmode
&= ~FMODE_READ
;
1927 if (state
->n_wronly
== 0) {
1928 call_close
|= test_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1929 call_close
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1930 calldata
->arg
.fmode
&= ~FMODE_WRITE
;
1933 spin_unlock(&state
->owner
->so_lock
);
1936 /* Note: exit _without_ calling nfs4_close_done */
1937 task
->tk_action
= NULL
;
1941 if (calldata
->arg
.fmode
== 0) {
1942 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CLOSE
];
1943 if (calldata
->roc
&&
1944 pnfs_roc_drain(calldata
->inode
, &calldata
->roc_barrier
)) {
1945 rpc_sleep_on(&NFS_SERVER(calldata
->inode
)->roc_rpcwaitq
,
1951 nfs_fattr_init(calldata
->res
.fattr
);
1952 calldata
->timestamp
= jiffies
;
1953 if (nfs4_setup_sequence(NFS_SERVER(calldata
->inode
),
1954 &calldata
->arg
.seq_args
, &calldata
->res
.seq_res
,
1957 rpc_call_start(task
);
1960 static const struct rpc_call_ops nfs4_close_ops
= {
1961 .rpc_call_prepare
= nfs4_close_prepare
,
1962 .rpc_call_done
= nfs4_close_done
,
1963 .rpc_release
= nfs4_free_closedata
,
1967 * It is possible for data to be read/written from a mem-mapped file
1968 * after the sys_close call (which hits the vfs layer as a flush).
1969 * This means that we can't safely call nfsv4 close on a file until
1970 * the inode is cleared. This in turn means that we are not good
1971 * NFSv4 citizens - we do not indicate to the server to update the file's
1972 * share state even when we are done with one of the three share
1973 * stateid's in the inode.
1975 * NOTE: Caller must be holding the sp->so_owner semaphore!
1977 int nfs4_do_close(struct path
*path
, struct nfs4_state
*state
, gfp_t gfp_mask
, int wait
, bool roc
)
1979 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1980 struct nfs4_closedata
*calldata
;
1981 struct nfs4_state_owner
*sp
= state
->owner
;
1982 struct rpc_task
*task
;
1983 struct rpc_message msg
= {
1984 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CLOSE
],
1985 .rpc_cred
= state
->owner
->so_cred
,
1987 struct rpc_task_setup task_setup_data
= {
1988 .rpc_client
= server
->client
,
1989 .rpc_message
= &msg
,
1990 .callback_ops
= &nfs4_close_ops
,
1991 .workqueue
= nfsiod_workqueue
,
1992 .flags
= RPC_TASK_ASYNC
,
1994 int status
= -ENOMEM
;
1996 calldata
= kzalloc(sizeof(*calldata
), gfp_mask
);
1997 if (calldata
== NULL
)
1999 calldata
->inode
= state
->inode
;
2000 calldata
->state
= state
;
2001 calldata
->arg
.fh
= NFS_FH(state
->inode
);
2002 calldata
->arg
.stateid
= &state
->open_stateid
;
2003 /* Serialization for the sequence id */
2004 calldata
->arg
.seqid
= nfs_alloc_seqid(&state
->owner
->so_seqid
, gfp_mask
);
2005 if (calldata
->arg
.seqid
== NULL
)
2006 goto out_free_calldata
;
2007 calldata
->arg
.fmode
= 0;
2008 calldata
->arg
.bitmask
= server
->cache_consistency_bitmask
;
2009 calldata
->res
.fattr
= &calldata
->fattr
;
2010 calldata
->res
.seqid
= calldata
->arg
.seqid
;
2011 calldata
->res
.server
= server
;
2012 calldata
->roc
= roc
;
2014 calldata
->path
= *path
;
2016 msg
.rpc_argp
= &calldata
->arg
;
2017 msg
.rpc_resp
= &calldata
->res
;
2018 task_setup_data
.callback_data
= calldata
;
2019 task
= rpc_run_task(&task_setup_data
);
2021 return PTR_ERR(task
);
2024 status
= rpc_wait_for_completion_task(task
);
2031 pnfs_roc_release(state
->inode
);
2032 nfs4_put_open_state(state
);
2033 nfs4_put_state_owner(sp
);
2037 static struct inode
*
2038 nfs4_atomic_open(struct inode
*dir
, struct nfs_open_context
*ctx
, int open_flags
, struct iattr
*attr
)
2040 struct nfs4_state
*state
;
2042 /* Protect against concurrent sillydeletes */
2043 state
= nfs4_do_open(dir
, &ctx
->path
, ctx
->mode
, open_flags
, attr
, ctx
->cred
);
2045 return ERR_CAST(state
);
2047 return igrab(state
->inode
);
2050 static void nfs4_close_context(struct nfs_open_context
*ctx
, int is_sync
)
2052 if (ctx
->state
== NULL
)
2055 nfs4_close_sync(&ctx
->path
, ctx
->state
, ctx
->mode
);
2057 nfs4_close_state(&ctx
->path
, ctx
->state
, ctx
->mode
);
2060 static int _nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
2062 struct nfs4_server_caps_arg args
= {
2065 struct nfs4_server_caps_res res
= {};
2066 struct rpc_message msg
= {
2067 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SERVER_CAPS
],
2073 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2075 memcpy(server
->attr_bitmask
, res
.attr_bitmask
, sizeof(server
->attr_bitmask
));
2076 server
->caps
&= ~(NFS_CAP_ACLS
|NFS_CAP_HARDLINKS
|
2077 NFS_CAP_SYMLINKS
|NFS_CAP_FILEID
|
2078 NFS_CAP_MODE
|NFS_CAP_NLINK
|NFS_CAP_OWNER
|
2079 NFS_CAP_OWNER_GROUP
|NFS_CAP_ATIME
|
2080 NFS_CAP_CTIME
|NFS_CAP_MTIME
);
2081 if (res
.attr_bitmask
[0] & FATTR4_WORD0_ACL
)
2082 server
->caps
|= NFS_CAP_ACLS
;
2083 if (res
.has_links
!= 0)
2084 server
->caps
|= NFS_CAP_HARDLINKS
;
2085 if (res
.has_symlinks
!= 0)
2086 server
->caps
|= NFS_CAP_SYMLINKS
;
2087 if (res
.attr_bitmask
[0] & FATTR4_WORD0_FILEID
)
2088 server
->caps
|= NFS_CAP_FILEID
;
2089 if (res
.attr_bitmask
[1] & FATTR4_WORD1_MODE
)
2090 server
->caps
|= NFS_CAP_MODE
;
2091 if (res
.attr_bitmask
[1] & FATTR4_WORD1_NUMLINKS
)
2092 server
->caps
|= NFS_CAP_NLINK
;
2093 if (res
.attr_bitmask
[1] & FATTR4_WORD1_OWNER
)
2094 server
->caps
|= NFS_CAP_OWNER
;
2095 if (res
.attr_bitmask
[1] & FATTR4_WORD1_OWNER_GROUP
)
2096 server
->caps
|= NFS_CAP_OWNER_GROUP
;
2097 if (res
.attr_bitmask
[1] & FATTR4_WORD1_TIME_ACCESS
)
2098 server
->caps
|= NFS_CAP_ATIME
;
2099 if (res
.attr_bitmask
[1] & FATTR4_WORD1_TIME_METADATA
)
2100 server
->caps
|= NFS_CAP_CTIME
;
2101 if (res
.attr_bitmask
[1] & FATTR4_WORD1_TIME_MODIFY
)
2102 server
->caps
|= NFS_CAP_MTIME
;
2104 memcpy(server
->cache_consistency_bitmask
, res
.attr_bitmask
, sizeof(server
->cache_consistency_bitmask
));
2105 server
->cache_consistency_bitmask
[0] &= FATTR4_WORD0_CHANGE
|FATTR4_WORD0_SIZE
;
2106 server
->cache_consistency_bitmask
[1] &= FATTR4_WORD1_TIME_METADATA
|FATTR4_WORD1_TIME_MODIFY
;
2107 server
->acl_bitmask
= res
.acl_bitmask
;
2113 int nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
2115 struct nfs4_exception exception
= { };
2118 err
= nfs4_handle_exception(server
,
2119 _nfs4_server_capabilities(server
, fhandle
),
2121 } while (exception
.retry
);
2125 static int _nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2126 struct nfs_fsinfo
*info
)
2128 struct nfs4_lookup_root_arg args
= {
2129 .bitmask
= nfs4_fattr_bitmap
,
2131 struct nfs4_lookup_res res
= {
2133 .fattr
= info
->fattr
,
2136 struct rpc_message msg
= {
2137 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP_ROOT
],
2142 nfs_fattr_init(info
->fattr
);
2143 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2146 static int nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2147 struct nfs_fsinfo
*info
)
2149 struct nfs4_exception exception
= { };
2152 err
= nfs4_handle_exception(server
,
2153 _nfs4_lookup_root(server
, fhandle
, info
),
2155 } while (exception
.retry
);
2160 * get the file handle for the "/" directory on the server
2162 static int nfs4_proc_get_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2163 struct nfs_fsinfo
*info
)
2167 status
= nfs4_lookup_root(server
, fhandle
, info
);
2169 status
= nfs4_server_capabilities(server
, fhandle
);
2171 status
= nfs4_do_fsinfo(server
, fhandle
, info
);
2172 return nfs4_map_errors(status
);
2176 * Get locations and (maybe) other attributes of a referral.
2177 * Note that we'll actually follow the referral later when
2178 * we detect fsid mismatch in inode revalidation
2180 static int nfs4_get_referral(struct inode
*dir
, const struct qstr
*name
, struct nfs_fattr
*fattr
, struct nfs_fh
*fhandle
)
2182 int status
= -ENOMEM
;
2183 struct page
*page
= NULL
;
2184 struct nfs4_fs_locations
*locations
= NULL
;
2186 page
= alloc_page(GFP_KERNEL
);
2189 locations
= kmalloc(sizeof(struct nfs4_fs_locations
), GFP_KERNEL
);
2190 if (locations
== NULL
)
2193 status
= nfs4_proc_fs_locations(dir
, name
, locations
, page
);
2196 /* Make sure server returned a different fsid for the referral */
2197 if (nfs_fsid_equal(&NFS_SERVER(dir
)->fsid
, &locations
->fattr
.fsid
)) {
2198 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__
, name
->name
);
2203 memcpy(fattr
, &locations
->fattr
, sizeof(struct nfs_fattr
));
2204 fattr
->valid
|= NFS_ATTR_FATTR_V4_REFERRAL
;
2206 fattr
->mode
= S_IFDIR
;
2207 memset(fhandle
, 0, sizeof(struct nfs_fh
));
2215 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2217 struct nfs4_getattr_arg args
= {
2219 .bitmask
= server
->attr_bitmask
,
2221 struct nfs4_getattr_res res
= {
2225 struct rpc_message msg
= {
2226 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETATTR
],
2231 nfs_fattr_init(fattr
);
2232 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2235 static int nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2237 struct nfs4_exception exception
= { };
2240 err
= nfs4_handle_exception(server
,
2241 _nfs4_proc_getattr(server
, fhandle
, fattr
),
2243 } while (exception
.retry
);
2248 * The file is not closed if it is opened due to the a request to change
2249 * the size of the file. The open call will not be needed once the
2250 * VFS layer lookup-intents are implemented.
2252 * Close is called when the inode is destroyed.
2253 * If we haven't opened the file for O_WRONLY, we
2254 * need to in the size_change case to obtain a stateid.
2257 * Because OPEN is always done by name in nfsv4, it is
2258 * possible that we opened a different file by the same
2259 * name. We can recognize this race condition, but we
2260 * can't do anything about it besides returning an error.
2262 * This will be fixed with VFS changes (lookup-intent).
2265 nfs4_proc_setattr(struct dentry
*dentry
, struct nfs_fattr
*fattr
,
2266 struct iattr
*sattr
)
2268 struct inode
*inode
= dentry
->d_inode
;
2269 struct rpc_cred
*cred
= NULL
;
2270 struct nfs4_state
*state
= NULL
;
2273 nfs_fattr_init(fattr
);
2275 /* Search for an existing open(O_WRITE) file */
2276 if (sattr
->ia_valid
& ATTR_FILE
) {
2277 struct nfs_open_context
*ctx
;
2279 ctx
= nfs_file_open_context(sattr
->ia_file
);
2286 status
= nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
);
2288 nfs_setattr_update_inode(inode
, sattr
);
2292 static int _nfs4_proc_lookupfh(struct nfs_server
*server
, const struct nfs_fh
*dirfh
,
2293 const struct qstr
*name
, struct nfs_fh
*fhandle
,
2294 struct nfs_fattr
*fattr
)
2297 struct nfs4_lookup_arg args
= {
2298 .bitmask
= server
->attr_bitmask
,
2302 struct nfs4_lookup_res res
= {
2307 struct rpc_message msg
= {
2308 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP
],
2313 nfs_fattr_init(fattr
);
2315 dprintk("NFS call lookupfh %s\n", name
->name
);
2316 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2317 dprintk("NFS reply lookupfh: %d\n", status
);
2321 static int nfs4_proc_lookupfh(struct nfs_server
*server
, struct nfs_fh
*dirfh
,
2322 struct qstr
*name
, struct nfs_fh
*fhandle
,
2323 struct nfs_fattr
*fattr
)
2325 struct nfs4_exception exception
= { };
2328 err
= _nfs4_proc_lookupfh(server
, dirfh
, name
, fhandle
, fattr
);
2330 if (err
== -NFS4ERR_MOVED
) {
2334 err
= nfs4_handle_exception(server
, err
, &exception
);
2335 } while (exception
.retry
);
2339 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
,
2340 struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2344 dprintk("NFS call lookup %s\n", name
->name
);
2345 status
= _nfs4_proc_lookupfh(NFS_SERVER(dir
), NFS_FH(dir
), name
, fhandle
, fattr
);
2346 if (status
== -NFS4ERR_MOVED
)
2347 status
= nfs4_get_referral(dir
, name
, fattr
, fhandle
);
2348 dprintk("NFS reply lookup: %d\n", status
);
2352 static int nfs4_proc_lookup(struct inode
*dir
, struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2354 struct nfs4_exception exception
= { };
2357 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2358 _nfs4_proc_lookup(dir
, name
, fhandle
, fattr
),
2360 } while (exception
.retry
);
2364 static int _nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2366 struct nfs_server
*server
= NFS_SERVER(inode
);
2367 struct nfs4_accessargs args
= {
2368 .fh
= NFS_FH(inode
),
2369 .bitmask
= server
->attr_bitmask
,
2371 struct nfs4_accessres res
= {
2374 struct rpc_message msg
= {
2375 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_ACCESS
],
2378 .rpc_cred
= entry
->cred
,
2380 int mode
= entry
->mask
;
2384 * Determine which access bits we want to ask for...
2386 if (mode
& MAY_READ
)
2387 args
.access
|= NFS4_ACCESS_READ
;
2388 if (S_ISDIR(inode
->i_mode
)) {
2389 if (mode
& MAY_WRITE
)
2390 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
;
2391 if (mode
& MAY_EXEC
)
2392 args
.access
|= NFS4_ACCESS_LOOKUP
;
2394 if (mode
& MAY_WRITE
)
2395 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
;
2396 if (mode
& MAY_EXEC
)
2397 args
.access
|= NFS4_ACCESS_EXECUTE
;
2400 res
.fattr
= nfs_alloc_fattr();
2401 if (res
.fattr
== NULL
)
2404 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2407 if (res
.access
& NFS4_ACCESS_READ
)
2408 entry
->mask
|= MAY_READ
;
2409 if (res
.access
& (NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
))
2410 entry
->mask
|= MAY_WRITE
;
2411 if (res
.access
& (NFS4_ACCESS_LOOKUP
|NFS4_ACCESS_EXECUTE
))
2412 entry
->mask
|= MAY_EXEC
;
2413 nfs_refresh_inode(inode
, res
.fattr
);
2415 nfs_free_fattr(res
.fattr
);
2419 static int nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2421 struct nfs4_exception exception
= { };
2424 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2425 _nfs4_proc_access(inode
, entry
),
2427 } while (exception
.retry
);
2432 * TODO: For the time being, we don't try to get any attributes
2433 * along with any of the zero-copy operations READ, READDIR,
2436 * In the case of the first three, we want to put the GETATTR
2437 * after the read-type operation -- this is because it is hard
2438 * to predict the length of a GETATTR response in v4, and thus
2439 * align the READ data correctly. This means that the GETATTR
2440 * may end up partially falling into the page cache, and we should
2441 * shift it into the 'tail' of the xdr_buf before processing.
2442 * To do this efficiently, we need to know the total length
2443 * of data received, which doesn't seem to be available outside
2446 * In the case of WRITE, we also want to put the GETATTR after
2447 * the operation -- in this case because we want to make sure
2448 * we get the post-operation mtime and size. This means that
2449 * we can't use xdr_encode_pages() as written: we need a variant
2450 * of it which would leave room in the 'tail' iovec.
2452 * Both of these changes to the XDR layer would in fact be quite
2453 * minor, but I decided to leave them for a subsequent patch.
2455 static int _nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2456 unsigned int pgbase
, unsigned int pglen
)
2458 struct nfs4_readlink args
= {
2459 .fh
= NFS_FH(inode
),
2464 struct nfs4_readlink_res res
;
2465 struct rpc_message msg
= {
2466 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READLINK
],
2471 return nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
2474 static int nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2475 unsigned int pgbase
, unsigned int pglen
)
2477 struct nfs4_exception exception
= { };
2480 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2481 _nfs4_proc_readlink(inode
, page
, pgbase
, pglen
),
2483 } while (exception
.retry
);
2489 * We will need to arrange for the VFS layer to provide an atomic open.
2490 * Until then, this create/open method is prone to inefficiency and race
2491 * conditions due to the lookup, create, and open VFS calls from sys_open()
2492 * placed on the wire.
2494 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2495 * The file will be opened again in the subsequent VFS open call
2496 * (nfs4_proc_file_open).
2498 * The open for read will just hang around to be used by any process that
2499 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2503 nfs4_proc_create(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
2504 int flags
, struct nfs_open_context
*ctx
)
2506 struct path my_path
= {
2509 struct path
*path
= &my_path
;
2510 struct nfs4_state
*state
;
2511 struct rpc_cred
*cred
= NULL
;
2520 sattr
->ia_mode
&= ~current_umask();
2521 state
= nfs4_do_open(dir
, path
, fmode
, flags
, sattr
, cred
);
2523 if (IS_ERR(state
)) {
2524 status
= PTR_ERR(state
);
2527 d_add(dentry
, igrab(state
->inode
));
2528 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
2532 nfs4_close_sync(path
, state
, fmode
);
2537 static int _nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2539 struct nfs_server
*server
= NFS_SERVER(dir
);
2540 struct nfs_removeargs args
= {
2542 .name
.len
= name
->len
,
2543 .name
.name
= name
->name
,
2544 .bitmask
= server
->attr_bitmask
,
2546 struct nfs_removeres res
= {
2549 struct rpc_message msg
= {
2550 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
],
2554 int status
= -ENOMEM
;
2556 res
.dir_attr
= nfs_alloc_fattr();
2557 if (res
.dir_attr
== NULL
)
2560 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 1);
2562 update_changeattr(dir
, &res
.cinfo
);
2563 nfs_post_op_update_inode(dir
, res
.dir_attr
);
2565 nfs_free_fattr(res
.dir_attr
);
2570 static int nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2572 struct nfs4_exception exception
= { };
2575 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2576 _nfs4_proc_remove(dir
, name
),
2578 } while (exception
.retry
);
2582 static void nfs4_proc_unlink_setup(struct rpc_message
*msg
, struct inode
*dir
)
2584 struct nfs_server
*server
= NFS_SERVER(dir
);
2585 struct nfs_removeargs
*args
= msg
->rpc_argp
;
2586 struct nfs_removeres
*res
= msg
->rpc_resp
;
2588 args
->bitmask
= server
->cache_consistency_bitmask
;
2589 res
->server
= server
;
2590 res
->seq_res
.sr_slot
= NULL
;
2591 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
];
2594 static int nfs4_proc_unlink_done(struct rpc_task
*task
, struct inode
*dir
)
2596 struct nfs_removeres
*res
= task
->tk_msg
.rpc_resp
;
2598 if (!nfs4_sequence_done(task
, &res
->seq_res
))
2600 if (nfs4_async_handle_error(task
, res
->server
, NULL
) == -EAGAIN
)
2602 update_changeattr(dir
, &res
->cinfo
);
2603 nfs_post_op_update_inode(dir
, res
->dir_attr
);
2607 static void nfs4_proc_rename_setup(struct rpc_message
*msg
, struct inode
*dir
)
2609 struct nfs_server
*server
= NFS_SERVER(dir
);
2610 struct nfs_renameargs
*arg
= msg
->rpc_argp
;
2611 struct nfs_renameres
*res
= msg
->rpc_resp
;
2613 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENAME
];
2614 arg
->bitmask
= server
->attr_bitmask
;
2615 res
->server
= server
;
2618 static int nfs4_proc_rename_done(struct rpc_task
*task
, struct inode
*old_dir
,
2619 struct inode
*new_dir
)
2621 struct nfs_renameres
*res
= task
->tk_msg
.rpc_resp
;
2623 if (!nfs4_sequence_done(task
, &res
->seq_res
))
2625 if (nfs4_async_handle_error(task
, res
->server
, NULL
) == -EAGAIN
)
2628 update_changeattr(old_dir
, &res
->old_cinfo
);
2629 nfs_post_op_update_inode(old_dir
, res
->old_fattr
);
2630 update_changeattr(new_dir
, &res
->new_cinfo
);
2631 nfs_post_op_update_inode(new_dir
, res
->new_fattr
);
2635 static int _nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2636 struct inode
*new_dir
, struct qstr
*new_name
)
2638 struct nfs_server
*server
= NFS_SERVER(old_dir
);
2639 struct nfs_renameargs arg
= {
2640 .old_dir
= NFS_FH(old_dir
),
2641 .new_dir
= NFS_FH(new_dir
),
2642 .old_name
= old_name
,
2643 .new_name
= new_name
,
2644 .bitmask
= server
->attr_bitmask
,
2646 struct nfs_renameres res
= {
2649 struct rpc_message msg
= {
2650 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENAME
],
2654 int status
= -ENOMEM
;
2656 res
.old_fattr
= nfs_alloc_fattr();
2657 res
.new_fattr
= nfs_alloc_fattr();
2658 if (res
.old_fattr
== NULL
|| res
.new_fattr
== NULL
)
2661 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2663 update_changeattr(old_dir
, &res
.old_cinfo
);
2664 nfs_post_op_update_inode(old_dir
, res
.old_fattr
);
2665 update_changeattr(new_dir
, &res
.new_cinfo
);
2666 nfs_post_op_update_inode(new_dir
, res
.new_fattr
);
2669 nfs_free_fattr(res
.new_fattr
);
2670 nfs_free_fattr(res
.old_fattr
);
2674 static int nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2675 struct inode
*new_dir
, struct qstr
*new_name
)
2677 struct nfs4_exception exception
= { };
2680 err
= nfs4_handle_exception(NFS_SERVER(old_dir
),
2681 _nfs4_proc_rename(old_dir
, old_name
,
2684 } while (exception
.retry
);
2688 static int _nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2690 struct nfs_server
*server
= NFS_SERVER(inode
);
2691 struct nfs4_link_arg arg
= {
2692 .fh
= NFS_FH(inode
),
2693 .dir_fh
= NFS_FH(dir
),
2695 .bitmask
= server
->attr_bitmask
,
2697 struct nfs4_link_res res
= {
2700 struct rpc_message msg
= {
2701 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LINK
],
2705 int status
= -ENOMEM
;
2707 res
.fattr
= nfs_alloc_fattr();
2708 res
.dir_attr
= nfs_alloc_fattr();
2709 if (res
.fattr
== NULL
|| res
.dir_attr
== NULL
)
2712 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2714 update_changeattr(dir
, &res
.cinfo
);
2715 nfs_post_op_update_inode(dir
, res
.dir_attr
);
2716 nfs_post_op_update_inode(inode
, res
.fattr
);
2719 nfs_free_fattr(res
.dir_attr
);
2720 nfs_free_fattr(res
.fattr
);
2724 static int nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2726 struct nfs4_exception exception
= { };
2729 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2730 _nfs4_proc_link(inode
, dir
, name
),
2732 } while (exception
.retry
);
2736 struct nfs4_createdata
{
2737 struct rpc_message msg
;
2738 struct nfs4_create_arg arg
;
2739 struct nfs4_create_res res
;
2741 struct nfs_fattr fattr
;
2742 struct nfs_fattr dir_fattr
;
2745 static struct nfs4_createdata
*nfs4_alloc_createdata(struct inode
*dir
,
2746 struct qstr
*name
, struct iattr
*sattr
, u32 ftype
)
2748 struct nfs4_createdata
*data
;
2750 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
2752 struct nfs_server
*server
= NFS_SERVER(dir
);
2754 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE
];
2755 data
->msg
.rpc_argp
= &data
->arg
;
2756 data
->msg
.rpc_resp
= &data
->res
;
2757 data
->arg
.dir_fh
= NFS_FH(dir
);
2758 data
->arg
.server
= server
;
2759 data
->arg
.name
= name
;
2760 data
->arg
.attrs
= sattr
;
2761 data
->arg
.ftype
= ftype
;
2762 data
->arg
.bitmask
= server
->attr_bitmask
;
2763 data
->res
.server
= server
;
2764 data
->res
.fh
= &data
->fh
;
2765 data
->res
.fattr
= &data
->fattr
;
2766 data
->res
.dir_fattr
= &data
->dir_fattr
;
2767 nfs_fattr_init(data
->res
.fattr
);
2768 nfs_fattr_init(data
->res
.dir_fattr
);
2773 static int nfs4_do_create(struct inode
*dir
, struct dentry
*dentry
, struct nfs4_createdata
*data
)
2775 int status
= nfs4_call_sync(NFS_SERVER(dir
), &data
->msg
,
2776 &data
->arg
, &data
->res
, 1);
2778 update_changeattr(dir
, &data
->res
.dir_cinfo
);
2779 nfs_post_op_update_inode(dir
, data
->res
.dir_fattr
);
2780 status
= nfs_instantiate(dentry
, data
->res
.fh
, data
->res
.fattr
);
2785 static void nfs4_free_createdata(struct nfs4_createdata
*data
)
2790 static int _nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2791 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2793 struct nfs4_createdata
*data
;
2794 int status
= -ENAMETOOLONG
;
2796 if (len
> NFS4_MAXPATHLEN
)
2800 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4LNK
);
2804 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SYMLINK
];
2805 data
->arg
.u
.symlink
.pages
= &page
;
2806 data
->arg
.u
.symlink
.len
= len
;
2808 status
= nfs4_do_create(dir
, dentry
, data
);
2810 nfs4_free_createdata(data
);
2815 static int nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2816 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2818 struct nfs4_exception exception
= { };
2821 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2822 _nfs4_proc_symlink(dir
, dentry
, page
,
2825 } while (exception
.retry
);
2829 static int _nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2830 struct iattr
*sattr
)
2832 struct nfs4_createdata
*data
;
2833 int status
= -ENOMEM
;
2835 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4DIR
);
2839 status
= nfs4_do_create(dir
, dentry
, data
);
2841 nfs4_free_createdata(data
);
2846 static int nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2847 struct iattr
*sattr
)
2849 struct nfs4_exception exception
= { };
2852 sattr
->ia_mode
&= ~current_umask();
2854 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2855 _nfs4_proc_mkdir(dir
, dentry
, sattr
),
2857 } while (exception
.retry
);
2861 static int _nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2862 u64 cookie
, struct page
**pages
, unsigned int count
, int plus
)
2864 struct inode
*dir
= dentry
->d_inode
;
2865 struct nfs4_readdir_arg args
= {
2870 .bitmask
= NFS_SERVER(dentry
->d_inode
)->attr_bitmask
,
2873 struct nfs4_readdir_res res
;
2874 struct rpc_message msg
= {
2875 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READDIR
],
2882 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__
,
2883 dentry
->d_parent
->d_name
.name
,
2884 dentry
->d_name
.name
,
2885 (unsigned long long)cookie
);
2886 nfs4_setup_readdir(cookie
, NFS_COOKIEVERF(dir
), dentry
, &args
);
2887 res
.pgbase
= args
.pgbase
;
2888 status
= nfs4_call_sync(NFS_SERVER(dir
), &msg
, &args
, &res
, 0);
2890 memcpy(NFS_COOKIEVERF(dir
), res
.verifier
.data
, NFS4_VERIFIER_SIZE
);
2891 status
+= args
.pgbase
;
2894 nfs_invalidate_atime(dir
);
2896 dprintk("%s: returns %d\n", __func__
, status
);
2900 static int nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2901 u64 cookie
, struct page
**pages
, unsigned int count
, int plus
)
2903 struct nfs4_exception exception
= { };
2906 err
= nfs4_handle_exception(NFS_SERVER(dentry
->d_inode
),
2907 _nfs4_proc_readdir(dentry
, cred
, cookie
,
2908 pages
, count
, plus
),
2910 } while (exception
.retry
);
2914 static int _nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2915 struct iattr
*sattr
, dev_t rdev
)
2917 struct nfs4_createdata
*data
;
2918 int mode
= sattr
->ia_mode
;
2919 int status
= -ENOMEM
;
2921 BUG_ON(!(sattr
->ia_valid
& ATTR_MODE
));
2922 BUG_ON(!S_ISFIFO(mode
) && !S_ISBLK(mode
) && !S_ISCHR(mode
) && !S_ISSOCK(mode
));
2924 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4SOCK
);
2929 data
->arg
.ftype
= NF4FIFO
;
2930 else if (S_ISBLK(mode
)) {
2931 data
->arg
.ftype
= NF4BLK
;
2932 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2933 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2935 else if (S_ISCHR(mode
)) {
2936 data
->arg
.ftype
= NF4CHR
;
2937 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2938 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2941 status
= nfs4_do_create(dir
, dentry
, data
);
2943 nfs4_free_createdata(data
);
2948 static int nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2949 struct iattr
*sattr
, dev_t rdev
)
2951 struct nfs4_exception exception
= { };
2954 sattr
->ia_mode
&= ~current_umask();
2956 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2957 _nfs4_proc_mknod(dir
, dentry
, sattr
, rdev
),
2959 } while (exception
.retry
);
2963 static int _nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2964 struct nfs_fsstat
*fsstat
)
2966 struct nfs4_statfs_arg args
= {
2968 .bitmask
= server
->attr_bitmask
,
2970 struct nfs4_statfs_res res
= {
2973 struct rpc_message msg
= {
2974 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_STATFS
],
2979 nfs_fattr_init(fsstat
->fattr
);
2980 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2983 static int nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsstat
*fsstat
)
2985 struct nfs4_exception exception
= { };
2988 err
= nfs4_handle_exception(server
,
2989 _nfs4_proc_statfs(server
, fhandle
, fsstat
),
2991 } while (exception
.retry
);
2995 static int _nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2996 struct nfs_fsinfo
*fsinfo
)
2998 struct nfs4_fsinfo_arg args
= {
3000 .bitmask
= server
->attr_bitmask
,
3002 struct nfs4_fsinfo_res res
= {
3005 struct rpc_message msg
= {
3006 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FSINFO
],
3011 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
3014 static int nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
3016 struct nfs4_exception exception
= { };
3020 err
= nfs4_handle_exception(server
,
3021 _nfs4_do_fsinfo(server
, fhandle
, fsinfo
),
3023 } while (exception
.retry
);
3027 static int nfs4_proc_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
3029 nfs_fattr_init(fsinfo
->fattr
);
3030 return nfs4_do_fsinfo(server
, fhandle
, fsinfo
);
3033 static int _nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
3034 struct nfs_pathconf
*pathconf
)
3036 struct nfs4_pathconf_arg args
= {
3038 .bitmask
= server
->attr_bitmask
,
3040 struct nfs4_pathconf_res res
= {
3041 .pathconf
= pathconf
,
3043 struct rpc_message msg
= {
3044 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_PATHCONF
],
3049 /* None of the pathconf attributes are mandatory to implement */
3050 if ((args
.bitmask
[0] & nfs4_pathconf_bitmap
[0]) == 0) {
3051 memset(pathconf
, 0, sizeof(*pathconf
));
3055 nfs_fattr_init(pathconf
->fattr
);
3056 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
3059 static int nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
3060 struct nfs_pathconf
*pathconf
)
3062 struct nfs4_exception exception
= { };
3066 err
= nfs4_handle_exception(server
,
3067 _nfs4_proc_pathconf(server
, fhandle
, pathconf
),
3069 } while (exception
.retry
);
3073 static int nfs4_read_done(struct rpc_task
*task
, struct nfs_read_data
*data
)
3075 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
3077 dprintk("--> %s\n", __func__
);
3079 if (!nfs4_sequence_done(task
, &data
->res
.seq_res
))
3082 if (nfs4_async_handle_error(task
, server
, data
->args
.context
->state
) == -EAGAIN
) {
3083 nfs_restart_rpc(task
, server
->nfs_client
);
3087 nfs_invalidate_atime(data
->inode
);
3088 if (task
->tk_status
> 0)
3089 renew_lease(server
, data
->timestamp
);
3093 static void nfs4_proc_read_setup(struct nfs_read_data
*data
, struct rpc_message
*msg
)
3095 data
->timestamp
= jiffies
;
3096 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READ
];
3099 static int nfs4_write_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
3101 struct inode
*inode
= data
->inode
;
3103 if (!nfs4_sequence_done(task
, &data
->res
.seq_res
))
3106 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), data
->args
.context
->state
) == -EAGAIN
) {
3107 nfs_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
3110 if (task
->tk_status
>= 0) {
3111 renew_lease(NFS_SERVER(inode
), data
->timestamp
);
3112 nfs_post_op_update_inode_force_wcc(inode
, data
->res
.fattr
);
3117 static void nfs4_proc_write_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
3119 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
3121 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
3122 data
->res
.server
= server
;
3123 data
->timestamp
= jiffies
;
3125 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_WRITE
];
3128 static int nfs4_commit_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
3130 struct inode
*inode
= data
->inode
;
3132 if (!nfs4_sequence_done(task
, &data
->res
.seq_res
))
3135 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), NULL
) == -EAGAIN
) {
3136 nfs_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
3139 nfs_refresh_inode(inode
, data
->res
.fattr
);
3143 static void nfs4_proc_commit_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
3145 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
3147 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
3148 data
->res
.server
= server
;
3149 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_COMMIT
];
3152 struct nfs4_renewdata
{
3153 struct nfs_client
*client
;
3154 unsigned long timestamp
;
3158 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3159 * standalone procedure for queueing an asynchronous RENEW.
3161 static void nfs4_renew_release(void *calldata
)
3163 struct nfs4_renewdata
*data
= calldata
;
3164 struct nfs_client
*clp
= data
->client
;
3166 if (atomic_read(&clp
->cl_count
) > 1)
3167 nfs4_schedule_state_renewal(clp
);
3168 nfs_put_client(clp
);
3172 static void nfs4_renew_done(struct rpc_task
*task
, void *calldata
)
3174 struct nfs4_renewdata
*data
= calldata
;
3175 struct nfs_client
*clp
= data
->client
;
3176 unsigned long timestamp
= data
->timestamp
;
3178 if (task
->tk_status
< 0) {
3179 /* Unless we're shutting down, schedule state recovery! */
3180 if (test_bit(NFS_CS_RENEWD
, &clp
->cl_res_state
) != 0)
3181 nfs4_schedule_state_recovery(clp
);
3184 do_renew_lease(clp
, timestamp
);
3187 static const struct rpc_call_ops nfs4_renew_ops
= {
3188 .rpc_call_done
= nfs4_renew_done
,
3189 .rpc_release
= nfs4_renew_release
,
3192 int nfs4_proc_async_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3194 struct rpc_message msg
= {
3195 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3199 struct nfs4_renewdata
*data
;
3201 if (!atomic_inc_not_zero(&clp
->cl_count
))
3203 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
3207 data
->timestamp
= jiffies
;
3208 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
3209 &nfs4_renew_ops
, data
);
3212 int nfs4_proc_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3214 struct rpc_message msg
= {
3215 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3219 unsigned long now
= jiffies
;
3222 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3225 do_renew_lease(clp
, now
);
3229 static inline int nfs4_server_supports_acls(struct nfs_server
*server
)
3231 return (server
->caps
& NFS_CAP_ACLS
)
3232 && (server
->acl_bitmask
& ACL4_SUPPORT_ALLOW_ACL
)
3233 && (server
->acl_bitmask
& ACL4_SUPPORT_DENY_ACL
);
3236 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3237 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3240 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3242 static void buf_to_pages(const void *buf
, size_t buflen
,
3243 struct page
**pages
, unsigned int *pgbase
)
3245 const void *p
= buf
;
3247 *pgbase
= offset_in_page(buf
);
3249 while (p
< buf
+ buflen
) {
3250 *(pages
++) = virt_to_page(p
);
3251 p
+= PAGE_CACHE_SIZE
;
3255 struct nfs4_cached_acl
{
3261 static void nfs4_set_cached_acl(struct inode
*inode
, struct nfs4_cached_acl
*acl
)
3263 struct nfs_inode
*nfsi
= NFS_I(inode
);
3265 spin_lock(&inode
->i_lock
);
3266 kfree(nfsi
->nfs4_acl
);
3267 nfsi
->nfs4_acl
= acl
;
3268 spin_unlock(&inode
->i_lock
);
3271 static void nfs4_zap_acl_attr(struct inode
*inode
)
3273 nfs4_set_cached_acl(inode
, NULL
);
3276 static inline ssize_t
nfs4_read_cached_acl(struct inode
*inode
, char *buf
, size_t buflen
)
3278 struct nfs_inode
*nfsi
= NFS_I(inode
);
3279 struct nfs4_cached_acl
*acl
;
3282 spin_lock(&inode
->i_lock
);
3283 acl
= nfsi
->nfs4_acl
;
3286 if (buf
== NULL
) /* user is just asking for length */
3288 if (acl
->cached
== 0)
3290 ret
= -ERANGE
; /* see getxattr(2) man page */
3291 if (acl
->len
> buflen
)
3293 memcpy(buf
, acl
->data
, acl
->len
);
3297 spin_unlock(&inode
->i_lock
);
3301 static void nfs4_write_cached_acl(struct inode
*inode
, const char *buf
, size_t acl_len
)
3303 struct nfs4_cached_acl
*acl
;
3305 if (buf
&& acl_len
<= PAGE_SIZE
) {
3306 acl
= kmalloc(sizeof(*acl
) + acl_len
, GFP_KERNEL
);
3310 memcpy(acl
->data
, buf
, acl_len
);
3312 acl
= kmalloc(sizeof(*acl
), GFP_KERNEL
);
3319 nfs4_set_cached_acl(inode
, acl
);
3322 static ssize_t
__nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3324 struct page
*pages
[NFS4ACL_MAXPAGES
];
3325 struct nfs_getaclargs args
= {
3326 .fh
= NFS_FH(inode
),
3330 struct nfs_getaclres res
= {
3334 struct rpc_message msg
= {
3335 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETACL
],
3339 struct page
*localpage
= NULL
;
3342 if (buflen
< PAGE_SIZE
) {
3343 /* As long as we're doing a round trip to the server anyway,
3344 * let's be prepared for a page of acl data. */
3345 localpage
= alloc_page(GFP_KERNEL
);
3346 resp_buf
= page_address(localpage
);
3347 if (localpage
== NULL
)
3349 args
.acl_pages
[0] = localpage
;
3350 args
.acl_pgbase
= 0;
3351 args
.acl_len
= PAGE_SIZE
;
3354 buf_to_pages(buf
, buflen
, args
.acl_pages
, &args
.acl_pgbase
);
3356 ret
= nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
3359 if (res
.acl_len
> args
.acl_len
)
3360 nfs4_write_cached_acl(inode
, NULL
, res
.acl_len
);
3362 nfs4_write_cached_acl(inode
, resp_buf
, res
.acl_len
);
3365 if (res
.acl_len
> buflen
)
3368 memcpy(buf
, resp_buf
, res
.acl_len
);
3373 __free_page(localpage
);
3377 static ssize_t
nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3379 struct nfs4_exception exception
= { };
3382 ret
= __nfs4_get_acl_uncached(inode
, buf
, buflen
);
3385 ret
= nfs4_handle_exception(NFS_SERVER(inode
), ret
, &exception
);
3386 } while (exception
.retry
);
3390 static ssize_t
nfs4_proc_get_acl(struct inode
*inode
, void *buf
, size_t buflen
)
3392 struct nfs_server
*server
= NFS_SERVER(inode
);
3395 if (!nfs4_server_supports_acls(server
))
3397 ret
= nfs_revalidate_inode(server
, inode
);
3400 if (NFS_I(inode
)->cache_validity
& NFS_INO_INVALID_ACL
)
3401 nfs_zap_acl_cache(inode
);
3402 ret
= nfs4_read_cached_acl(inode
, buf
, buflen
);
3405 return nfs4_get_acl_uncached(inode
, buf
, buflen
);
3408 static int __nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3410 struct nfs_server
*server
= NFS_SERVER(inode
);
3411 struct page
*pages
[NFS4ACL_MAXPAGES
];
3412 struct nfs_setaclargs arg
= {
3413 .fh
= NFS_FH(inode
),
3417 struct nfs_setaclres res
;
3418 struct rpc_message msg
= {
3419 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETACL
],
3425 if (!nfs4_server_supports_acls(server
))
3427 nfs_inode_return_delegation(inode
);
3428 buf_to_pages(buf
, buflen
, arg
.acl_pages
, &arg
.acl_pgbase
);
3429 ret
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3431 * Acl update can result in inode attribute update.
3432 * so mark the attribute cache invalid.
3434 spin_lock(&inode
->i_lock
);
3435 NFS_I(inode
)->cache_validity
|= NFS_INO_INVALID_ATTR
;
3436 spin_unlock(&inode
->i_lock
);
3437 nfs_access_zap_cache(inode
);
3438 nfs_zap_acl_cache(inode
);
3442 static int nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3444 struct nfs4_exception exception
= { };
3447 err
= nfs4_handle_exception(NFS_SERVER(inode
),
3448 __nfs4_proc_set_acl(inode
, buf
, buflen
),
3450 } while (exception
.retry
);
3455 nfs4_async_handle_error(struct rpc_task
*task
, const struct nfs_server
*server
, struct nfs4_state
*state
)
3457 struct nfs_client
*clp
= server
->nfs_client
;
3459 if (task
->tk_status
>= 0)
3461 switch(task
->tk_status
) {
3462 case -NFS4ERR_ADMIN_REVOKED
:
3463 case -NFS4ERR_BAD_STATEID
:
3464 case -NFS4ERR_OPENMODE
:
3467 nfs4_state_mark_reclaim_nograce(clp
, state
);
3468 goto do_state_recovery
;
3469 case -NFS4ERR_STALE_STATEID
:
3470 case -NFS4ERR_STALE_CLIENTID
:
3471 case -NFS4ERR_EXPIRED
:
3472 goto do_state_recovery
;
3473 #if defined(CONFIG_NFS_V4_1)
3474 case -NFS4ERR_BADSESSION
:
3475 case -NFS4ERR_BADSLOT
:
3476 case -NFS4ERR_BAD_HIGH_SLOT
:
3477 case -NFS4ERR_DEADSESSION
:
3478 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
3479 case -NFS4ERR_SEQ_FALSE_RETRY
:
3480 case -NFS4ERR_SEQ_MISORDERED
:
3481 dprintk("%s ERROR %d, Reset session\n", __func__
,
3483 nfs4_schedule_state_recovery(clp
);
3484 task
->tk_status
= 0;
3486 #endif /* CONFIG_NFS_V4_1 */
3487 case -NFS4ERR_DELAY
:
3488 nfs_inc_server_stats(server
, NFSIOS_DELAY
);
3489 case -NFS4ERR_GRACE
:
3491 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
3492 task
->tk_status
= 0;
3494 case -NFS4ERR_OLD_STATEID
:
3495 task
->tk_status
= 0;
3498 task
->tk_status
= nfs4_map_errors(task
->tk_status
);
3501 rpc_sleep_on(&clp
->cl_rpcwaitq
, task
, NULL
);
3502 nfs4_schedule_state_recovery(clp
);
3503 if (test_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
) == 0)
3504 rpc_wake_up_queued_task(&clp
->cl_rpcwaitq
, task
);
3505 task
->tk_status
= 0;
3509 int nfs4_proc_setclientid(struct nfs_client
*clp
, u32 program
,
3510 unsigned short port
, struct rpc_cred
*cred
,
3511 struct nfs4_setclientid_res
*res
)
3513 nfs4_verifier sc_verifier
;
3514 struct nfs4_setclientid setclientid
= {
3515 .sc_verifier
= &sc_verifier
,
3517 .sc_cb_ident
= clp
->cl_cb_ident
,
3519 struct rpc_message msg
= {
3520 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID
],
3521 .rpc_argp
= &setclientid
,
3529 p
= (__be32
*)sc_verifier
.data
;
3530 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
3531 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
3534 setclientid
.sc_name_len
= scnprintf(setclientid
.sc_name
,
3535 sizeof(setclientid
.sc_name
), "%s/%s %s %s %u",
3537 rpc_peeraddr2str(clp
->cl_rpcclient
,
3539 rpc_peeraddr2str(clp
->cl_rpcclient
,
3541 clp
->cl_rpcclient
->cl_auth
->au_ops
->au_name
,
3542 clp
->cl_id_uniquifier
);
3543 setclientid
.sc_netid_len
= scnprintf(setclientid
.sc_netid
,
3544 sizeof(setclientid
.sc_netid
),
3545 rpc_peeraddr2str(clp
->cl_rpcclient
,
3546 RPC_DISPLAY_NETID
));
3547 setclientid
.sc_uaddr_len
= scnprintf(setclientid
.sc_uaddr
,
3548 sizeof(setclientid
.sc_uaddr
), "%s.%u.%u",
3549 clp
->cl_ipaddr
, port
>> 8, port
& 255);
3551 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3552 if (status
!= -NFS4ERR_CLID_INUSE
)
3557 ssleep(clp
->cl_lease_time
/ HZ
+ 1);
3559 if (++clp
->cl_id_uniquifier
== 0)
3565 static int _nfs4_proc_setclientid_confirm(struct nfs_client
*clp
,
3566 struct nfs4_setclientid_res
*arg
,
3567 struct rpc_cred
*cred
)
3569 struct nfs_fsinfo fsinfo
;
3570 struct rpc_message msg
= {
3571 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID_CONFIRM
],
3573 .rpc_resp
= &fsinfo
,
3580 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3582 spin_lock(&clp
->cl_lock
);
3583 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
3584 clp
->cl_last_renewal
= now
;
3585 spin_unlock(&clp
->cl_lock
);
3590 int nfs4_proc_setclientid_confirm(struct nfs_client
*clp
,
3591 struct nfs4_setclientid_res
*arg
,
3592 struct rpc_cred
*cred
)
3597 err
= _nfs4_proc_setclientid_confirm(clp
, arg
, cred
);
3601 case -NFS4ERR_RESOURCE
:
3602 /* The IBM lawyers misread another document! */
3603 case -NFS4ERR_DELAY
:
3604 err
= nfs4_delay(clp
->cl_rpcclient
, &timeout
);
3610 struct nfs4_delegreturndata
{
3611 struct nfs4_delegreturnargs args
;
3612 struct nfs4_delegreturnres res
;
3614 nfs4_stateid stateid
;
3615 unsigned long timestamp
;
3616 struct nfs_fattr fattr
;
3620 static void nfs4_delegreturn_done(struct rpc_task
*task
, void *calldata
)
3622 struct nfs4_delegreturndata
*data
= calldata
;
3624 if (!nfs4_sequence_done(task
, &data
->res
.seq_res
))
3627 switch (task
->tk_status
) {
3628 case -NFS4ERR_STALE_STATEID
:
3629 case -NFS4ERR_EXPIRED
:
3631 renew_lease(data
->res
.server
, data
->timestamp
);
3634 if (nfs4_async_handle_error(task
, data
->res
.server
, NULL
) ==
3636 nfs_restart_rpc(task
, data
->res
.server
->nfs_client
);
3640 data
->rpc_status
= task
->tk_status
;
3643 static void nfs4_delegreturn_release(void *calldata
)
3648 #if defined(CONFIG_NFS_V4_1)
3649 static void nfs4_delegreturn_prepare(struct rpc_task
*task
, void *data
)
3651 struct nfs4_delegreturndata
*d_data
;
3653 d_data
= (struct nfs4_delegreturndata
*)data
;
3655 if (nfs4_setup_sequence(d_data
->res
.server
,
3656 &d_data
->args
.seq_args
,
3657 &d_data
->res
.seq_res
, 1, task
))
3659 rpc_call_start(task
);
3661 #endif /* CONFIG_NFS_V4_1 */
3663 static const struct rpc_call_ops nfs4_delegreturn_ops
= {
3664 #if defined(CONFIG_NFS_V4_1)
3665 .rpc_call_prepare
= nfs4_delegreturn_prepare
,
3666 #endif /* CONFIG_NFS_V4_1 */
3667 .rpc_call_done
= nfs4_delegreturn_done
,
3668 .rpc_release
= nfs4_delegreturn_release
,
3671 static int _nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3673 struct nfs4_delegreturndata
*data
;
3674 struct nfs_server
*server
= NFS_SERVER(inode
);
3675 struct rpc_task
*task
;
3676 struct rpc_message msg
= {
3677 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DELEGRETURN
],
3680 struct rpc_task_setup task_setup_data
= {
3681 .rpc_client
= server
->client
,
3682 .rpc_message
= &msg
,
3683 .callback_ops
= &nfs4_delegreturn_ops
,
3684 .flags
= RPC_TASK_ASYNC
,
3688 data
= kzalloc(sizeof(*data
), GFP_NOFS
);
3691 data
->args
.fhandle
= &data
->fh
;
3692 data
->args
.stateid
= &data
->stateid
;
3693 data
->args
.bitmask
= server
->attr_bitmask
;
3694 nfs_copy_fh(&data
->fh
, NFS_FH(inode
));
3695 memcpy(&data
->stateid
, stateid
, sizeof(data
->stateid
));
3696 data
->res
.fattr
= &data
->fattr
;
3697 data
->res
.server
= server
;
3698 nfs_fattr_init(data
->res
.fattr
);
3699 data
->timestamp
= jiffies
;
3700 data
->rpc_status
= 0;
3702 task_setup_data
.callback_data
= data
;
3703 msg
.rpc_argp
= &data
->args
;
3704 msg
.rpc_resp
= &data
->res
;
3705 task
= rpc_run_task(&task_setup_data
);
3707 return PTR_ERR(task
);
3710 status
= nfs4_wait_for_completion_rpc_task(task
);
3713 status
= data
->rpc_status
;
3716 nfs_refresh_inode(inode
, &data
->fattr
);
3722 int nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3724 struct nfs_server
*server
= NFS_SERVER(inode
);
3725 struct nfs4_exception exception
= { };
3728 err
= _nfs4_proc_delegreturn(inode
, cred
, stateid
, issync
);
3730 case -NFS4ERR_STALE_STATEID
:
3731 case -NFS4ERR_EXPIRED
:
3735 err
= nfs4_handle_exception(server
, err
, &exception
);
3736 } while (exception
.retry
);
3740 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3741 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3744 * sleep, with exponential backoff, and retry the LOCK operation.
3746 static unsigned long
3747 nfs4_set_lock_task_retry(unsigned long timeout
)
3749 schedule_timeout_killable(timeout
);
3751 if (timeout
> NFS4_LOCK_MAXTIMEOUT
)
3752 return NFS4_LOCK_MAXTIMEOUT
;
3756 static int _nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3758 struct inode
*inode
= state
->inode
;
3759 struct nfs_server
*server
= NFS_SERVER(inode
);
3760 struct nfs_client
*clp
= server
->nfs_client
;
3761 struct nfs_lockt_args arg
= {
3762 .fh
= NFS_FH(inode
),
3765 struct nfs_lockt_res res
= {
3768 struct rpc_message msg
= {
3769 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKT
],
3772 .rpc_cred
= state
->owner
->so_cred
,
3774 struct nfs4_lock_state
*lsp
;
3777 arg
.lock_owner
.clientid
= clp
->cl_clientid
;
3778 status
= nfs4_set_lock_state(state
, request
);
3781 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3782 arg
.lock_owner
.id
= lsp
->ls_id
.id
;
3783 arg
.lock_owner
.s_dev
= server
->s_dev
;
3784 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3787 request
->fl_type
= F_UNLCK
;
3789 case -NFS4ERR_DENIED
:
3792 request
->fl_ops
->fl_release_private(request
);
3797 static int nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3799 struct nfs4_exception exception
= { };
3803 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
3804 _nfs4_proc_getlk(state
, cmd
, request
),
3806 } while (exception
.retry
);
3810 static int do_vfs_lock(struct file
*file
, struct file_lock
*fl
)
3813 switch (fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)) {
3815 res
= posix_lock_file_wait(file
, fl
);
3818 res
= flock_lock_file_wait(file
, fl
);
3826 struct nfs4_unlockdata
{
3827 struct nfs_locku_args arg
;
3828 struct nfs_locku_res res
;
3829 struct nfs4_lock_state
*lsp
;
3830 struct nfs_open_context
*ctx
;
3831 struct file_lock fl
;
3832 const struct nfs_server
*server
;
3833 unsigned long timestamp
;
3836 static struct nfs4_unlockdata
*nfs4_alloc_unlockdata(struct file_lock
*fl
,
3837 struct nfs_open_context
*ctx
,
3838 struct nfs4_lock_state
*lsp
,
3839 struct nfs_seqid
*seqid
)
3841 struct nfs4_unlockdata
*p
;
3842 struct inode
*inode
= lsp
->ls_state
->inode
;
3844 p
= kzalloc(sizeof(*p
), GFP_NOFS
);
3847 p
->arg
.fh
= NFS_FH(inode
);
3849 p
->arg
.seqid
= seqid
;
3850 p
->res
.seqid
= seqid
;
3851 p
->arg
.stateid
= &lsp
->ls_stateid
;
3853 atomic_inc(&lsp
->ls_count
);
3854 /* Ensure we don't close file until we're done freeing locks! */
3855 p
->ctx
= get_nfs_open_context(ctx
);
3856 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
3857 p
->server
= NFS_SERVER(inode
);
3861 static void nfs4_locku_release_calldata(void *data
)
3863 struct nfs4_unlockdata
*calldata
= data
;
3864 nfs_free_seqid(calldata
->arg
.seqid
);
3865 nfs4_put_lock_state(calldata
->lsp
);
3866 put_nfs_open_context(calldata
->ctx
);
3870 static void nfs4_locku_done(struct rpc_task
*task
, void *data
)
3872 struct nfs4_unlockdata
*calldata
= data
;
3874 if (!nfs4_sequence_done(task
, &calldata
->res
.seq_res
))
3876 switch (task
->tk_status
) {
3878 memcpy(calldata
->lsp
->ls_stateid
.data
,
3879 calldata
->res
.stateid
.data
,
3880 sizeof(calldata
->lsp
->ls_stateid
.data
));
3881 renew_lease(calldata
->server
, calldata
->timestamp
);
3883 case -NFS4ERR_BAD_STATEID
:
3884 case -NFS4ERR_OLD_STATEID
:
3885 case -NFS4ERR_STALE_STATEID
:
3886 case -NFS4ERR_EXPIRED
:
3889 if (nfs4_async_handle_error(task
, calldata
->server
, NULL
) == -EAGAIN
)
3890 nfs_restart_rpc(task
,
3891 calldata
->server
->nfs_client
);
3895 static void nfs4_locku_prepare(struct rpc_task
*task
, void *data
)
3897 struct nfs4_unlockdata
*calldata
= data
;
3899 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
3901 if ((calldata
->lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) == 0) {
3902 /* Note: exit _without_ running nfs4_locku_done */
3903 task
->tk_action
= NULL
;
3906 calldata
->timestamp
= jiffies
;
3907 if (nfs4_setup_sequence(calldata
->server
,
3908 &calldata
->arg
.seq_args
,
3909 &calldata
->res
.seq_res
, 1, task
))
3911 rpc_call_start(task
);
3914 static const struct rpc_call_ops nfs4_locku_ops
= {
3915 .rpc_call_prepare
= nfs4_locku_prepare
,
3916 .rpc_call_done
= nfs4_locku_done
,
3917 .rpc_release
= nfs4_locku_release_calldata
,
3920 static struct rpc_task
*nfs4_do_unlck(struct file_lock
*fl
,
3921 struct nfs_open_context
*ctx
,
3922 struct nfs4_lock_state
*lsp
,
3923 struct nfs_seqid
*seqid
)
3925 struct nfs4_unlockdata
*data
;
3926 struct rpc_message msg
= {
3927 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKU
],
3928 .rpc_cred
= ctx
->cred
,
3930 struct rpc_task_setup task_setup_data
= {
3931 .rpc_client
= NFS_CLIENT(lsp
->ls_state
->inode
),
3932 .rpc_message
= &msg
,
3933 .callback_ops
= &nfs4_locku_ops
,
3934 .workqueue
= nfsiod_workqueue
,
3935 .flags
= RPC_TASK_ASYNC
,
3938 /* Ensure this is an unlock - when canceling a lock, the
3939 * canceled lock is passed in, and it won't be an unlock.
3941 fl
->fl_type
= F_UNLCK
;
3943 data
= nfs4_alloc_unlockdata(fl
, ctx
, lsp
, seqid
);
3945 nfs_free_seqid(seqid
);
3946 return ERR_PTR(-ENOMEM
);
3949 msg
.rpc_argp
= &data
->arg
;
3950 msg
.rpc_resp
= &data
->res
;
3951 task_setup_data
.callback_data
= data
;
3952 return rpc_run_task(&task_setup_data
);
3955 static int nfs4_proc_unlck(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3957 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
3958 struct nfs_seqid
*seqid
;
3959 struct nfs4_lock_state
*lsp
;
3960 struct rpc_task
*task
;
3962 unsigned char fl_flags
= request
->fl_flags
;
3964 status
= nfs4_set_lock_state(state
, request
);
3965 /* Unlock _before_ we do the RPC call */
3966 request
->fl_flags
|= FL_EXISTS
;
3967 down_read(&nfsi
->rwsem
);
3968 if (do_vfs_lock(request
->fl_file
, request
) == -ENOENT
) {
3969 up_read(&nfsi
->rwsem
);
3972 up_read(&nfsi
->rwsem
);
3975 /* Is this a delegated lock? */
3976 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
))
3978 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3979 seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
, GFP_KERNEL
);
3983 task
= nfs4_do_unlck(request
, nfs_file_open_context(request
->fl_file
), lsp
, seqid
);
3984 status
= PTR_ERR(task
);
3987 status
= nfs4_wait_for_completion_rpc_task(task
);
3990 request
->fl_flags
= fl_flags
;
3994 struct nfs4_lockdata
{
3995 struct nfs_lock_args arg
;
3996 struct nfs_lock_res res
;
3997 struct nfs4_lock_state
*lsp
;
3998 struct nfs_open_context
*ctx
;
3999 struct file_lock fl
;
4000 unsigned long timestamp
;
4003 struct nfs_server
*server
;
4006 static struct nfs4_lockdata
*nfs4_alloc_lockdata(struct file_lock
*fl
,
4007 struct nfs_open_context
*ctx
, struct nfs4_lock_state
*lsp
,
4010 struct nfs4_lockdata
*p
;
4011 struct inode
*inode
= lsp
->ls_state
->inode
;
4012 struct nfs_server
*server
= NFS_SERVER(inode
);
4014 p
= kzalloc(sizeof(*p
), gfp_mask
);
4018 p
->arg
.fh
= NFS_FH(inode
);
4020 p
->arg
.open_seqid
= nfs_alloc_seqid(&lsp
->ls_state
->owner
->so_seqid
, gfp_mask
);
4021 if (p
->arg
.open_seqid
== NULL
)
4023 p
->arg
.lock_seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
, gfp_mask
);
4024 if (p
->arg
.lock_seqid
== NULL
)
4025 goto out_free_seqid
;
4026 p
->arg
.lock_stateid
= &lsp
->ls_stateid
;
4027 p
->arg
.lock_owner
.clientid
= server
->nfs_client
->cl_clientid
;
4028 p
->arg
.lock_owner
.id
= lsp
->ls_id
.id
;
4029 p
->arg
.lock_owner
.s_dev
= server
->s_dev
;
4030 p
->res
.lock_seqid
= p
->arg
.lock_seqid
;
4033 atomic_inc(&lsp
->ls_count
);
4034 p
->ctx
= get_nfs_open_context(ctx
);
4035 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
4038 nfs_free_seqid(p
->arg
.open_seqid
);
4044 static void nfs4_lock_prepare(struct rpc_task
*task
, void *calldata
)
4046 struct nfs4_lockdata
*data
= calldata
;
4047 struct nfs4_state
*state
= data
->lsp
->ls_state
;
4049 dprintk("%s: begin!\n", __func__
);
4050 if (nfs_wait_on_sequence(data
->arg
.lock_seqid
, task
) != 0)
4052 /* Do we need to do an open_to_lock_owner? */
4053 if (!(data
->arg
.lock_seqid
->sequence
->flags
& NFS_SEQID_CONFIRMED
)) {
4054 if (nfs_wait_on_sequence(data
->arg
.open_seqid
, task
) != 0)
4056 data
->arg
.open_stateid
= &state
->stateid
;
4057 data
->arg
.new_lock_owner
= 1;
4058 data
->res
.open_seqid
= data
->arg
.open_seqid
;
4060 data
->arg
.new_lock_owner
= 0;
4061 data
->timestamp
= jiffies
;
4062 if (nfs4_setup_sequence(data
->server
,
4063 &data
->arg
.seq_args
,
4064 &data
->res
.seq_res
, 1, task
))
4066 rpc_call_start(task
);
4067 dprintk("%s: done!, ret = %d\n", __func__
, data
->rpc_status
);
4070 static void nfs4_recover_lock_prepare(struct rpc_task
*task
, void *calldata
)
4072 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
4073 nfs4_lock_prepare(task
, calldata
);
4076 static void nfs4_lock_done(struct rpc_task
*task
, void *calldata
)
4078 struct nfs4_lockdata
*data
= calldata
;
4080 dprintk("%s: begin!\n", __func__
);
4082 if (!nfs4_sequence_done(task
, &data
->res
.seq_res
))
4085 data
->rpc_status
= task
->tk_status
;
4086 if (data
->arg
.new_lock_owner
!= 0) {
4087 if (data
->rpc_status
== 0)
4088 nfs_confirm_seqid(&data
->lsp
->ls_seqid
, 0);
4092 if (data
->rpc_status
== 0) {
4093 memcpy(data
->lsp
->ls_stateid
.data
, data
->res
.stateid
.data
,
4094 sizeof(data
->lsp
->ls_stateid
.data
));
4095 data
->lsp
->ls_flags
|= NFS_LOCK_INITIALIZED
;
4096 renew_lease(NFS_SERVER(data
->ctx
->path
.dentry
->d_inode
), data
->timestamp
);
4099 dprintk("%s: done, ret = %d!\n", __func__
, data
->rpc_status
);
4102 static void nfs4_lock_release(void *calldata
)
4104 struct nfs4_lockdata
*data
= calldata
;
4106 dprintk("%s: begin!\n", __func__
);
4107 nfs_free_seqid(data
->arg
.open_seqid
);
4108 if (data
->cancelled
!= 0) {
4109 struct rpc_task
*task
;
4110 task
= nfs4_do_unlck(&data
->fl
, data
->ctx
, data
->lsp
,
4111 data
->arg
.lock_seqid
);
4114 dprintk("%s: cancelling lock!\n", __func__
);
4116 nfs_free_seqid(data
->arg
.lock_seqid
);
4117 nfs4_put_lock_state(data
->lsp
);
4118 put_nfs_open_context(data
->ctx
);
4120 dprintk("%s: done!\n", __func__
);
4123 static const struct rpc_call_ops nfs4_lock_ops
= {
4124 .rpc_call_prepare
= nfs4_lock_prepare
,
4125 .rpc_call_done
= nfs4_lock_done
,
4126 .rpc_release
= nfs4_lock_release
,
4129 static const struct rpc_call_ops nfs4_recover_lock_ops
= {
4130 .rpc_call_prepare
= nfs4_recover_lock_prepare
,
4131 .rpc_call_done
= nfs4_lock_done
,
4132 .rpc_release
= nfs4_lock_release
,
4135 static void nfs4_handle_setlk_error(struct nfs_server
*server
, struct nfs4_lock_state
*lsp
, int new_lock_owner
, int error
)
4137 struct nfs_client
*clp
= server
->nfs_client
;
4138 struct nfs4_state
*state
= lsp
->ls_state
;
4141 case -NFS4ERR_ADMIN_REVOKED
:
4142 case -NFS4ERR_BAD_STATEID
:
4143 case -NFS4ERR_EXPIRED
:
4144 if (new_lock_owner
!= 0 ||
4145 (lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) != 0)
4146 nfs4_state_mark_reclaim_nograce(clp
, state
);
4147 lsp
->ls_seqid
.flags
&= ~NFS_SEQID_CONFIRMED
;
4149 case -NFS4ERR_STALE_STATEID
:
4150 if (new_lock_owner
!= 0 ||
4151 (lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) != 0)
4152 nfs4_state_mark_reclaim_reboot(clp
, state
);
4153 lsp
->ls_seqid
.flags
&= ~NFS_SEQID_CONFIRMED
;
4157 static int _nfs4_do_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*fl
, int recovery_type
)
4159 struct nfs4_lockdata
*data
;
4160 struct rpc_task
*task
;
4161 struct rpc_message msg
= {
4162 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCK
],
4163 .rpc_cred
= state
->owner
->so_cred
,
4165 struct rpc_task_setup task_setup_data
= {
4166 .rpc_client
= NFS_CLIENT(state
->inode
),
4167 .rpc_message
= &msg
,
4168 .callback_ops
= &nfs4_lock_ops
,
4169 .workqueue
= nfsiod_workqueue
,
4170 .flags
= RPC_TASK_ASYNC
,
4174 dprintk("%s: begin!\n", __func__
);
4175 data
= nfs4_alloc_lockdata(fl
, nfs_file_open_context(fl
->fl_file
),
4176 fl
->fl_u
.nfs4_fl
.owner
,
4177 recovery_type
== NFS_LOCK_NEW
? GFP_KERNEL
: GFP_NOFS
);
4181 data
->arg
.block
= 1;
4182 if (recovery_type
> NFS_LOCK_NEW
) {
4183 if (recovery_type
== NFS_LOCK_RECLAIM
)
4184 data
->arg
.reclaim
= NFS_LOCK_RECLAIM
;
4185 task_setup_data
.callback_ops
= &nfs4_recover_lock_ops
;
4187 msg
.rpc_argp
= &data
->arg
;
4188 msg
.rpc_resp
= &data
->res
;
4189 task_setup_data
.callback_data
= data
;
4190 task
= rpc_run_task(&task_setup_data
);
4192 return PTR_ERR(task
);
4193 ret
= nfs4_wait_for_completion_rpc_task(task
);
4195 ret
= data
->rpc_status
;
4197 nfs4_handle_setlk_error(data
->server
, data
->lsp
,
4198 data
->arg
.new_lock_owner
, ret
);
4200 data
->cancelled
= 1;
4202 dprintk("%s: done, ret = %d!\n", __func__
, ret
);
4206 static int nfs4_lock_reclaim(struct nfs4_state
*state
, struct file_lock
*request
)
4208 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4209 struct nfs4_exception exception
= { };
4213 /* Cache the lock if possible... */
4214 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4216 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, NFS_LOCK_RECLAIM
);
4217 if (err
!= -NFS4ERR_DELAY
)
4219 nfs4_handle_exception(server
, err
, &exception
);
4220 } while (exception
.retry
);
4224 static int nfs4_lock_expired(struct nfs4_state
*state
, struct file_lock
*request
)
4226 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4227 struct nfs4_exception exception
= { };
4230 err
= nfs4_set_lock_state(state
, request
);
4234 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4236 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, NFS_LOCK_EXPIRED
);
4240 case -NFS4ERR_GRACE
:
4241 case -NFS4ERR_DELAY
:
4242 nfs4_handle_exception(server
, err
, &exception
);
4245 } while (exception
.retry
);
4250 static int _nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4252 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
4253 unsigned char fl_flags
= request
->fl_flags
;
4254 int status
= -ENOLCK
;
4256 if ((fl_flags
& FL_POSIX
) &&
4257 !test_bit(NFS_STATE_POSIX_LOCKS
, &state
->flags
))
4259 /* Is this a delegated open? */
4260 status
= nfs4_set_lock_state(state
, request
);
4263 request
->fl_flags
|= FL_ACCESS
;
4264 status
= do_vfs_lock(request
->fl_file
, request
);
4267 down_read(&nfsi
->rwsem
);
4268 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
)) {
4269 /* Yes: cache locks! */
4270 /* ...but avoid races with delegation recall... */
4271 request
->fl_flags
= fl_flags
& ~FL_SLEEP
;
4272 status
= do_vfs_lock(request
->fl_file
, request
);
4275 status
= _nfs4_do_setlk(state
, cmd
, request
, NFS_LOCK_NEW
);
4278 /* Note: we always want to sleep here! */
4279 request
->fl_flags
= fl_flags
| FL_SLEEP
;
4280 if (do_vfs_lock(request
->fl_file
, request
) < 0)
4281 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n", __func__
);
4283 up_read(&nfsi
->rwsem
);
4285 request
->fl_flags
= fl_flags
;
4289 static int nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4291 struct nfs4_exception exception
= { };
4295 err
= _nfs4_proc_setlk(state
, cmd
, request
);
4296 if (err
== -NFS4ERR_DENIED
)
4298 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
4300 } while (exception
.retry
);
4305 nfs4_proc_lock(struct file
*filp
, int cmd
, struct file_lock
*request
)
4307 struct nfs_open_context
*ctx
;
4308 struct nfs4_state
*state
;
4309 unsigned long timeout
= NFS4_LOCK_MINTIMEOUT
;
4312 /* verify open state */
4313 ctx
= nfs_file_open_context(filp
);
4316 if (request
->fl_start
< 0 || request
->fl_end
< 0)
4319 if (IS_GETLK(cmd
)) {
4321 return nfs4_proc_getlk(state
, F_GETLK
, request
);
4325 if (!(IS_SETLK(cmd
) || IS_SETLKW(cmd
)))
4328 if (request
->fl_type
== F_UNLCK
) {
4330 return nfs4_proc_unlck(state
, cmd
, request
);
4337 status
= nfs4_proc_setlk(state
, cmd
, request
);
4338 if ((status
!= -EAGAIN
) || IS_SETLK(cmd
))
4340 timeout
= nfs4_set_lock_task_retry(timeout
);
4341 status
= -ERESTARTSYS
;
4344 } while(status
< 0);
4348 int nfs4_lock_delegation_recall(struct nfs4_state
*state
, struct file_lock
*fl
)
4350 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4351 struct nfs4_exception exception
= { };
4354 err
= nfs4_set_lock_state(state
, fl
);
4358 err
= _nfs4_do_setlk(state
, F_SETLK
, fl
, NFS_LOCK_NEW
);
4361 printk(KERN_ERR
"%s: unhandled error %d.\n",
4366 case -NFS4ERR_EXPIRED
:
4367 case -NFS4ERR_STALE_CLIENTID
:
4368 case -NFS4ERR_STALE_STATEID
:
4369 case -NFS4ERR_BADSESSION
:
4370 case -NFS4ERR_BADSLOT
:
4371 case -NFS4ERR_BAD_HIGH_SLOT
:
4372 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
4373 case -NFS4ERR_DEADSESSION
:
4374 nfs4_schedule_state_recovery(server
->nfs_client
);
4378 * The show must go on: exit, but mark the
4379 * stateid as needing recovery.
4381 case -NFS4ERR_ADMIN_REVOKED
:
4382 case -NFS4ERR_BAD_STATEID
:
4383 case -NFS4ERR_OPENMODE
:
4384 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
4389 * User RPCSEC_GSS context has expired.
4390 * We cannot recover this stateid now, so
4391 * skip it and allow recovery thread to
4397 case -NFS4ERR_DENIED
:
4398 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4401 case -NFS4ERR_DELAY
:
4404 err
= nfs4_handle_exception(server
, err
, &exception
);
4405 } while (exception
.retry
);
4410 static void nfs4_release_lockowner_release(void *calldata
)
4415 const struct rpc_call_ops nfs4_release_lockowner_ops
= {
4416 .rpc_release
= nfs4_release_lockowner_release
,
4419 void nfs4_release_lockowner(const struct nfs4_lock_state
*lsp
)
4421 struct nfs_server
*server
= lsp
->ls_state
->owner
->so_server
;
4422 struct nfs_release_lockowner_args
*args
;
4423 struct rpc_message msg
= {
4424 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RELEASE_LOCKOWNER
],
4427 if (server
->nfs_client
->cl_mvops
->minor_version
!= 0)
4429 args
= kmalloc(sizeof(*args
), GFP_NOFS
);
4432 args
->lock_owner
.clientid
= server
->nfs_client
->cl_clientid
;
4433 args
->lock_owner
.id
= lsp
->ls_id
.id
;
4434 args
->lock_owner
.s_dev
= server
->s_dev
;
4435 msg
.rpc_argp
= args
;
4436 rpc_call_async(server
->client
, &msg
, 0, &nfs4_release_lockowner_ops
, args
);
4439 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4441 static int nfs4_xattr_set_nfs4_acl(struct dentry
*dentry
, const char *key
,
4442 const void *buf
, size_t buflen
,
4443 int flags
, int type
)
4445 if (strcmp(key
, "") != 0)
4448 return nfs4_proc_set_acl(dentry
->d_inode
, buf
, buflen
);
4451 static int nfs4_xattr_get_nfs4_acl(struct dentry
*dentry
, const char *key
,
4452 void *buf
, size_t buflen
, int type
)
4454 if (strcmp(key
, "") != 0)
4457 return nfs4_proc_get_acl(dentry
->d_inode
, buf
, buflen
);
4460 static size_t nfs4_xattr_list_nfs4_acl(struct dentry
*dentry
, char *list
,
4461 size_t list_len
, const char *name
,
4462 size_t name_len
, int type
)
4464 size_t len
= sizeof(XATTR_NAME_NFSV4_ACL
);
4466 if (!nfs4_server_supports_acls(NFS_SERVER(dentry
->d_inode
)))
4469 if (list
&& len
<= list_len
)
4470 memcpy(list
, XATTR_NAME_NFSV4_ACL
, len
);
4474 static void nfs_fixup_referral_attributes(struct nfs_fattr
*fattr
)
4476 if (!((fattr
->valid
& NFS_ATTR_FATTR_FILEID
) &&
4477 (fattr
->valid
& NFS_ATTR_FATTR_FSID
) &&
4478 (fattr
->valid
& NFS_ATTR_FATTR_V4_REFERRAL
)))
4481 fattr
->valid
|= NFS_ATTR_FATTR_TYPE
| NFS_ATTR_FATTR_MODE
|
4482 NFS_ATTR_FATTR_NLINK
;
4483 fattr
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
4487 int nfs4_proc_fs_locations(struct inode
*dir
, const struct qstr
*name
,
4488 struct nfs4_fs_locations
*fs_locations
, struct page
*page
)
4490 struct nfs_server
*server
= NFS_SERVER(dir
);
4492 [0] = FATTR4_WORD0_FSID
| FATTR4_WORD0_FS_LOCATIONS
,
4493 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID
,
4495 struct nfs4_fs_locations_arg args
= {
4496 .dir_fh
= NFS_FH(dir
),
4501 struct nfs4_fs_locations_res res
= {
4502 .fs_locations
= fs_locations
,
4504 struct rpc_message msg
= {
4505 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FS_LOCATIONS
],
4511 dprintk("%s: start\n", __func__
);
4512 nfs_fattr_init(&fs_locations
->fattr
);
4513 fs_locations
->server
= server
;
4514 fs_locations
->nlocations
= 0;
4515 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
4516 nfs_fixup_referral_attributes(&fs_locations
->fattr
);
4517 dprintk("%s: returned status = %d\n", __func__
, status
);
4521 #ifdef CONFIG_NFS_V4_1
4523 * Check the exchange flags returned by the server for invalid flags, having
4524 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
4527 static int nfs4_check_cl_exchange_flags(u32 flags
)
4529 if (flags
& ~EXCHGID4_FLAG_MASK_R
)
4531 if ((flags
& EXCHGID4_FLAG_USE_PNFS_MDS
) &&
4532 (flags
& EXCHGID4_FLAG_USE_NON_PNFS
))
4534 if (!(flags
& (EXCHGID4_FLAG_MASK_PNFS
)))
4538 return -NFS4ERR_INVAL
;
4542 * nfs4_proc_exchange_id()
4544 * Since the clientid has expired, all compounds using sessions
4545 * associated with the stale clientid will be returning
4546 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4547 * be in some phase of session reset.
4549 int nfs4_proc_exchange_id(struct nfs_client
*clp
, struct rpc_cred
*cred
)
4551 nfs4_verifier verifier
;
4552 struct nfs41_exchange_id_args args
= {
4554 .flags
= EXCHGID4_FLAG_SUPP_MOVED_REFER
,
4556 struct nfs41_exchange_id_res res
= {
4560 struct rpc_message msg
= {
4561 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_EXCHANGE_ID
],
4568 dprintk("--> %s\n", __func__
);
4569 BUG_ON(clp
== NULL
);
4571 p
= (u32
*)verifier
.data
;
4572 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
4573 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
4574 args
.verifier
= &verifier
;
4576 args
.id_len
= scnprintf(args
.id
, sizeof(args
.id
),
4579 init_utsname()->nodename
,
4580 init_utsname()->domainname
,
4581 clp
->cl_rpcclient
->cl_auth
->au_flavor
);
4583 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
4585 status
= nfs4_check_cl_exchange_flags(clp
->cl_exchange_flags
);
4586 dprintk("<-- %s status= %d\n", __func__
, status
);
4590 struct nfs4_get_lease_time_data
{
4591 struct nfs4_get_lease_time_args
*args
;
4592 struct nfs4_get_lease_time_res
*res
;
4593 struct nfs_client
*clp
;
4596 static void nfs4_get_lease_time_prepare(struct rpc_task
*task
,
4600 struct nfs4_get_lease_time_data
*data
=
4601 (struct nfs4_get_lease_time_data
*)calldata
;
4603 dprintk("--> %s\n", __func__
);
4604 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
4605 /* just setup sequence, do not trigger session recovery
4606 since we're invoked within one */
4607 ret
= nfs41_setup_sequence(data
->clp
->cl_session
,
4608 &data
->args
->la_seq_args
,
4609 &data
->res
->lr_seq_res
, 0, task
);
4611 BUG_ON(ret
== -EAGAIN
);
4612 rpc_call_start(task
);
4613 dprintk("<-- %s\n", __func__
);
4617 * Called from nfs4_state_manager thread for session setup, so don't recover
4618 * from sequence operation or clientid errors.
4620 static void nfs4_get_lease_time_done(struct rpc_task
*task
, void *calldata
)
4622 struct nfs4_get_lease_time_data
*data
=
4623 (struct nfs4_get_lease_time_data
*)calldata
;
4625 dprintk("--> %s\n", __func__
);
4626 if (!nfs41_sequence_done(task
, &data
->res
->lr_seq_res
))
4628 switch (task
->tk_status
) {
4629 case -NFS4ERR_DELAY
:
4630 case -NFS4ERR_GRACE
:
4631 dprintk("%s Retry: tk_status %d\n", __func__
, task
->tk_status
);
4632 rpc_delay(task
, NFS4_POLL_RETRY_MIN
);
4633 task
->tk_status
= 0;
4634 nfs_restart_rpc(task
, data
->clp
);
4637 dprintk("<-- %s\n", __func__
);
4640 struct rpc_call_ops nfs4_get_lease_time_ops
= {
4641 .rpc_call_prepare
= nfs4_get_lease_time_prepare
,
4642 .rpc_call_done
= nfs4_get_lease_time_done
,
4645 int nfs4_proc_get_lease_time(struct nfs_client
*clp
, struct nfs_fsinfo
*fsinfo
)
4647 struct rpc_task
*task
;
4648 struct nfs4_get_lease_time_args args
;
4649 struct nfs4_get_lease_time_res res
= {
4650 .lr_fsinfo
= fsinfo
,
4652 struct nfs4_get_lease_time_data data
= {
4657 struct rpc_message msg
= {
4658 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GET_LEASE_TIME
],
4662 struct rpc_task_setup task_setup
= {
4663 .rpc_client
= clp
->cl_rpcclient
,
4664 .rpc_message
= &msg
,
4665 .callback_ops
= &nfs4_get_lease_time_ops
,
4666 .callback_data
= &data
4670 dprintk("--> %s\n", __func__
);
4671 task
= rpc_run_task(&task_setup
);
4674 status
= PTR_ERR(task
);
4676 status
= task
->tk_status
;
4679 dprintk("<-- %s return %d\n", __func__
, status
);
4685 * Reset a slot table
4687 static int nfs4_reset_slot_table(struct nfs4_slot_table
*tbl
, u32 max_reqs
,
4690 struct nfs4_slot
*new = NULL
;
4694 dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__
,
4695 max_reqs
, tbl
->max_slots
);
4697 /* Does the newly negotiated max_reqs match the existing slot table? */
4698 if (max_reqs
!= tbl
->max_slots
) {
4700 new = kmalloc(max_reqs
* sizeof(struct nfs4_slot
),
4707 spin_lock(&tbl
->slot_tbl_lock
);
4710 tbl
->max_slots
= max_reqs
;
4712 for (i
= 0; i
< tbl
->max_slots
; ++i
)
4713 tbl
->slots
[i
].seq_nr
= ivalue
;
4714 spin_unlock(&tbl
->slot_tbl_lock
);
4715 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4716 tbl
, tbl
->slots
, tbl
->max_slots
);
4718 dprintk("<-- %s: return %d\n", __func__
, ret
);
4723 * Reset the forechannel and backchannel slot tables
4725 static int nfs4_reset_slot_tables(struct nfs4_session
*session
)
4729 status
= nfs4_reset_slot_table(&session
->fc_slot_table
,
4730 session
->fc_attrs
.max_reqs
, 1);
4734 status
= nfs4_reset_slot_table(&session
->bc_slot_table
,
4735 session
->bc_attrs
.max_reqs
, 0);
4739 /* Destroy the slot table */
4740 static void nfs4_destroy_slot_tables(struct nfs4_session
*session
)
4742 if (session
->fc_slot_table
.slots
!= NULL
) {
4743 kfree(session
->fc_slot_table
.slots
);
4744 session
->fc_slot_table
.slots
= NULL
;
4746 if (session
->bc_slot_table
.slots
!= NULL
) {
4747 kfree(session
->bc_slot_table
.slots
);
4748 session
->bc_slot_table
.slots
= NULL
;
4754 * Initialize slot table
4756 static int nfs4_init_slot_table(struct nfs4_slot_table
*tbl
,
4757 int max_slots
, int ivalue
)
4759 struct nfs4_slot
*slot
;
4762 BUG_ON(max_slots
> NFS4_MAX_SLOT_TABLE
);
4764 dprintk("--> %s: max_reqs=%u\n", __func__
, max_slots
);
4766 slot
= kcalloc(max_slots
, sizeof(struct nfs4_slot
), GFP_NOFS
);
4771 spin_lock(&tbl
->slot_tbl_lock
);
4772 tbl
->max_slots
= max_slots
;
4774 tbl
->highest_used_slotid
= -1; /* no slot is currently used */
4775 spin_unlock(&tbl
->slot_tbl_lock
);
4776 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4777 tbl
, tbl
->slots
, tbl
->max_slots
);
4779 dprintk("<-- %s: return %d\n", __func__
, ret
);
4784 * Initialize the forechannel and backchannel tables
4786 static int nfs4_init_slot_tables(struct nfs4_session
*session
)
4788 struct nfs4_slot_table
*tbl
;
4791 tbl
= &session
->fc_slot_table
;
4792 if (tbl
->slots
== NULL
) {
4793 status
= nfs4_init_slot_table(tbl
,
4794 session
->fc_attrs
.max_reqs
, 1);
4799 tbl
= &session
->bc_slot_table
;
4800 if (tbl
->slots
== NULL
) {
4801 status
= nfs4_init_slot_table(tbl
,
4802 session
->bc_attrs
.max_reqs
, 0);
4804 nfs4_destroy_slot_tables(session
);
4810 struct nfs4_session
*nfs4_alloc_session(struct nfs_client
*clp
)
4812 struct nfs4_session
*session
;
4813 struct nfs4_slot_table
*tbl
;
4815 session
= kzalloc(sizeof(struct nfs4_session
), GFP_NOFS
);
4819 tbl
= &session
->fc_slot_table
;
4820 tbl
->highest_used_slotid
= -1;
4821 spin_lock_init(&tbl
->slot_tbl_lock
);
4822 rpc_init_priority_wait_queue(&tbl
->slot_tbl_waitq
, "ForeChannel Slot table");
4823 init_completion(&tbl
->complete
);
4825 tbl
= &session
->bc_slot_table
;
4826 tbl
->highest_used_slotid
= -1;
4827 spin_lock_init(&tbl
->slot_tbl_lock
);
4828 rpc_init_wait_queue(&tbl
->slot_tbl_waitq
, "BackChannel Slot table");
4829 init_completion(&tbl
->complete
);
4831 session
->session_state
= 1<<NFS4_SESSION_INITING
;
4837 void nfs4_destroy_session(struct nfs4_session
*session
)
4839 nfs4_proc_destroy_session(session
);
4840 dprintk("%s Destroy backchannel for xprt %p\n",
4841 __func__
, session
->clp
->cl_rpcclient
->cl_xprt
);
4842 xprt_destroy_backchannel(session
->clp
->cl_rpcclient
->cl_xprt
,
4843 NFS41_BC_MIN_CALLBACKS
);
4844 nfs4_destroy_slot_tables(session
);
4849 * Initialize the values to be used by the client in CREATE_SESSION
4850 * If nfs4_init_session set the fore channel request and response sizes,
4853 * Set the back channel max_resp_sz_cached to zero to force the client to
4854 * always set csa_cachethis to FALSE because the current implementation
4855 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4857 static void nfs4_init_channel_attrs(struct nfs41_create_session_args
*args
)
4859 struct nfs4_session
*session
= args
->client
->cl_session
;
4860 unsigned int mxrqst_sz
= session
->fc_attrs
.max_rqst_sz
,
4861 mxresp_sz
= session
->fc_attrs
.max_resp_sz
;
4864 mxrqst_sz
= NFS_MAX_FILE_IO_SIZE
;
4866 mxresp_sz
= NFS_MAX_FILE_IO_SIZE
;
4867 /* Fore channel attributes */
4868 args
->fc_attrs
.headerpadsz
= 0;
4869 args
->fc_attrs
.max_rqst_sz
= mxrqst_sz
;
4870 args
->fc_attrs
.max_resp_sz
= mxresp_sz
;
4871 args
->fc_attrs
.max_ops
= NFS4_MAX_OPS
;
4872 args
->fc_attrs
.max_reqs
= session
->clp
->cl_rpcclient
->cl_xprt
->max_reqs
;
4874 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4875 "max_ops=%u max_reqs=%u\n",
4877 args
->fc_attrs
.max_rqst_sz
, args
->fc_attrs
.max_resp_sz
,
4878 args
->fc_attrs
.max_ops
, args
->fc_attrs
.max_reqs
);
4880 /* Back channel attributes */
4881 args
->bc_attrs
.headerpadsz
= 0;
4882 args
->bc_attrs
.max_rqst_sz
= PAGE_SIZE
;
4883 args
->bc_attrs
.max_resp_sz
= PAGE_SIZE
;
4884 args
->bc_attrs
.max_resp_sz_cached
= 0;
4885 args
->bc_attrs
.max_ops
= NFS4_MAX_BACK_CHANNEL_OPS
;
4886 args
->bc_attrs
.max_reqs
= 1;
4888 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4889 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4891 args
->bc_attrs
.max_rqst_sz
, args
->bc_attrs
.max_resp_sz
,
4892 args
->bc_attrs
.max_resp_sz_cached
, args
->bc_attrs
.max_ops
,
4893 args
->bc_attrs
.max_reqs
);
4896 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args
*args
, struct nfs4_session
*session
)
4898 struct nfs4_channel_attrs
*sent
= &args
->fc_attrs
;
4899 struct nfs4_channel_attrs
*rcvd
= &session
->fc_attrs
;
4901 if (rcvd
->headerpadsz
> sent
->headerpadsz
)
4903 if (rcvd
->max_resp_sz
> sent
->max_resp_sz
)
4906 * Our requested max_ops is the minimum we need; we're not
4907 * prepared to break up compounds into smaller pieces than that.
4908 * So, no point even trying to continue if the server won't
4911 if (rcvd
->max_ops
< sent
->max_ops
)
4913 if (rcvd
->max_reqs
== 0)
4918 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args
*args
, struct nfs4_session
*session
)
4920 struct nfs4_channel_attrs
*sent
= &args
->bc_attrs
;
4921 struct nfs4_channel_attrs
*rcvd
= &session
->bc_attrs
;
4923 if (rcvd
->max_rqst_sz
> sent
->max_rqst_sz
)
4925 if (rcvd
->max_resp_sz
< sent
->max_resp_sz
)
4927 if (rcvd
->max_resp_sz_cached
> sent
->max_resp_sz_cached
)
4929 /* These would render the backchannel useless: */
4930 if (rcvd
->max_ops
== 0)
4932 if (rcvd
->max_reqs
== 0)
4937 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args
*args
,
4938 struct nfs4_session
*session
)
4942 ret
= nfs4_verify_fore_channel_attrs(args
, session
);
4945 return nfs4_verify_back_channel_attrs(args
, session
);
4948 static int _nfs4_proc_create_session(struct nfs_client
*clp
)
4950 struct nfs4_session
*session
= clp
->cl_session
;
4951 struct nfs41_create_session_args args
= {
4953 .cb_program
= NFS4_CALLBACK
,
4955 struct nfs41_create_session_res res
= {
4958 struct rpc_message msg
= {
4959 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE_SESSION
],
4965 nfs4_init_channel_attrs(&args
);
4966 args
.flags
= (SESSION4_PERSIST
| SESSION4_BACK_CHAN
);
4968 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
4971 /* Verify the session's negotiated channel_attrs values */
4972 status
= nfs4_verify_channel_attrs(&args
, session
);
4974 /* Increment the clientid slot sequence id */
4982 * Issues a CREATE_SESSION operation to the server.
4983 * It is the responsibility of the caller to verify the session is
4984 * expired before calling this routine.
4986 int nfs4_proc_create_session(struct nfs_client
*clp
)
4990 struct nfs4_session
*session
= clp
->cl_session
;
4992 dprintk("--> %s clp=%p session=%p\n", __func__
, clp
, session
);
4994 status
= _nfs4_proc_create_session(clp
);
4998 /* Init and reset the fore channel */
4999 status
= nfs4_init_slot_tables(session
);
5000 dprintk("slot table initialization returned %d\n", status
);
5003 status
= nfs4_reset_slot_tables(session
);
5004 dprintk("slot table reset returned %d\n", status
);
5008 ptr
= (unsigned *)&session
->sess_id
.data
[0];
5009 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__
,
5010 clp
->cl_seqid
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
5012 dprintk("<-- %s\n", __func__
);
5017 * Issue the over-the-wire RPC DESTROY_SESSION.
5018 * The caller must serialize access to this routine.
5020 int nfs4_proc_destroy_session(struct nfs4_session
*session
)
5023 struct rpc_message msg
;
5025 dprintk("--> nfs4_proc_destroy_session\n");
5027 /* session is still being setup */
5028 if (session
->clp
->cl_cons_state
!= NFS_CS_READY
)
5031 msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DESTROY_SESSION
];
5032 msg
.rpc_argp
= session
;
5033 msg
.rpc_resp
= NULL
;
5034 msg
.rpc_cred
= NULL
;
5035 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
5039 "Got error %d from the server on DESTROY_SESSION. "
5040 "Session has been destroyed regardless...\n", status
);
5042 dprintk("<-- nfs4_proc_destroy_session\n");
5046 int nfs4_init_session(struct nfs_server
*server
)
5048 struct nfs_client
*clp
= server
->nfs_client
;
5049 struct nfs4_session
*session
;
5050 unsigned int rsize
, wsize
;
5053 if (!nfs4_has_session(clp
))
5056 session
= clp
->cl_session
;
5057 if (!test_and_clear_bit(NFS4_SESSION_INITING
, &session
->session_state
))
5060 rsize
= server
->rsize
;
5062 rsize
= NFS_MAX_FILE_IO_SIZE
;
5063 wsize
= server
->wsize
;
5065 wsize
= NFS_MAX_FILE_IO_SIZE
;
5067 session
->fc_attrs
.max_rqst_sz
= wsize
+ nfs41_maxwrite_overhead
;
5068 session
->fc_attrs
.max_resp_sz
= rsize
+ nfs41_maxread_overhead
;
5070 ret
= nfs4_recover_expired_lease(server
);
5072 ret
= nfs4_check_client_ready(clp
);
5077 * Renew the cl_session lease.
5079 struct nfs4_sequence_data
{
5080 struct nfs_client
*clp
;
5081 struct nfs4_sequence_args args
;
5082 struct nfs4_sequence_res res
;
5085 static void nfs41_sequence_release(void *data
)
5087 struct nfs4_sequence_data
*calldata
= data
;
5088 struct nfs_client
*clp
= calldata
->clp
;
5090 if (atomic_read(&clp
->cl_count
) > 1)
5091 nfs4_schedule_state_renewal(clp
);
5092 nfs_put_client(clp
);
5096 static int nfs41_sequence_handle_errors(struct rpc_task
*task
, struct nfs_client
*clp
)
5098 switch(task
->tk_status
) {
5099 case -NFS4ERR_DELAY
:
5100 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
5103 nfs4_schedule_state_recovery(clp
);
5108 static void nfs41_sequence_call_done(struct rpc_task
*task
, void *data
)
5110 struct nfs4_sequence_data
*calldata
= data
;
5111 struct nfs_client
*clp
= calldata
->clp
;
5113 if (!nfs41_sequence_done(task
, task
->tk_msg
.rpc_resp
))
5116 if (task
->tk_status
< 0) {
5117 dprintk("%s ERROR %d\n", __func__
, task
->tk_status
);
5118 if (atomic_read(&clp
->cl_count
) == 1)
5121 if (nfs41_sequence_handle_errors(task
, clp
) == -EAGAIN
) {
5122 rpc_restart_call_prepare(task
);
5126 dprintk("%s rpc_cred %p\n", __func__
, task
->tk_msg
.rpc_cred
);
5128 dprintk("<-- %s\n", __func__
);
5131 static void nfs41_sequence_prepare(struct rpc_task
*task
, void *data
)
5133 struct nfs4_sequence_data
*calldata
= data
;
5134 struct nfs_client
*clp
= calldata
->clp
;
5135 struct nfs4_sequence_args
*args
;
5136 struct nfs4_sequence_res
*res
;
5138 args
= task
->tk_msg
.rpc_argp
;
5139 res
= task
->tk_msg
.rpc_resp
;
5141 if (nfs41_setup_sequence(clp
->cl_session
, args
, res
, 0, task
))
5143 rpc_call_start(task
);
5146 static const struct rpc_call_ops nfs41_sequence_ops
= {
5147 .rpc_call_done
= nfs41_sequence_call_done
,
5148 .rpc_call_prepare
= nfs41_sequence_prepare
,
5149 .rpc_release
= nfs41_sequence_release
,
5152 static struct rpc_task
*_nfs41_proc_sequence(struct nfs_client
*clp
, struct rpc_cred
*cred
)
5154 struct nfs4_sequence_data
*calldata
;
5155 struct rpc_message msg
= {
5156 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SEQUENCE
],
5159 struct rpc_task_setup task_setup_data
= {
5160 .rpc_client
= clp
->cl_rpcclient
,
5161 .rpc_message
= &msg
,
5162 .callback_ops
= &nfs41_sequence_ops
,
5163 .flags
= RPC_TASK_ASYNC
| RPC_TASK_SOFT
,
5166 if (!atomic_inc_not_zero(&clp
->cl_count
))
5167 return ERR_PTR(-EIO
);
5168 calldata
= kzalloc(sizeof(*calldata
), GFP_NOFS
);
5169 if (calldata
== NULL
) {
5170 nfs_put_client(clp
);
5171 return ERR_PTR(-ENOMEM
);
5173 msg
.rpc_argp
= &calldata
->args
;
5174 msg
.rpc_resp
= &calldata
->res
;
5175 calldata
->clp
= clp
;
5176 task_setup_data
.callback_data
= calldata
;
5178 return rpc_run_task(&task_setup_data
);
5181 static int nfs41_proc_async_sequence(struct nfs_client
*clp
, struct rpc_cred
*cred
)
5183 struct rpc_task
*task
;
5186 task
= _nfs41_proc_sequence(clp
, cred
);
5188 ret
= PTR_ERR(task
);
5191 dprintk("<-- %s status=%d\n", __func__
, ret
);
5195 static int nfs4_proc_sequence(struct nfs_client
*clp
, struct rpc_cred
*cred
)
5197 struct rpc_task
*task
;
5200 task
= _nfs41_proc_sequence(clp
, cred
);
5202 ret
= PTR_ERR(task
);
5205 ret
= rpc_wait_for_completion_task(task
);
5207 ret
= task
->tk_status
;
5210 dprintk("<-- %s status=%d\n", __func__
, ret
);
5214 struct nfs4_reclaim_complete_data
{
5215 struct nfs_client
*clp
;
5216 struct nfs41_reclaim_complete_args arg
;
5217 struct nfs41_reclaim_complete_res res
;
5220 static void nfs4_reclaim_complete_prepare(struct rpc_task
*task
, void *data
)
5222 struct nfs4_reclaim_complete_data
*calldata
= data
;
5224 rpc_task_set_priority(task
, RPC_PRIORITY_PRIVILEGED
);
5225 if (nfs41_setup_sequence(calldata
->clp
->cl_session
,
5226 &calldata
->arg
.seq_args
,
5227 &calldata
->res
.seq_res
, 0, task
))
5230 rpc_call_start(task
);
5233 static int nfs41_reclaim_complete_handle_errors(struct rpc_task
*task
, struct nfs_client
*clp
)
5235 switch(task
->tk_status
) {
5237 case -NFS4ERR_COMPLETE_ALREADY
:
5238 case -NFS4ERR_WRONG_CRED
: /* What to do here? */
5240 case -NFS4ERR_DELAY
:
5241 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
5244 nfs4_schedule_state_recovery(clp
);
5249 static void nfs4_reclaim_complete_done(struct rpc_task
*task
, void *data
)
5251 struct nfs4_reclaim_complete_data
*calldata
= data
;
5252 struct nfs_client
*clp
= calldata
->clp
;
5253 struct nfs4_sequence_res
*res
= &calldata
->res
.seq_res
;
5255 dprintk("--> %s\n", __func__
);
5256 if (!nfs41_sequence_done(task
, res
))
5259 if (nfs41_reclaim_complete_handle_errors(task
, clp
) == -EAGAIN
) {
5260 rpc_restart_call_prepare(task
);
5263 dprintk("<-- %s\n", __func__
);
5266 static void nfs4_free_reclaim_complete_data(void *data
)
5268 struct nfs4_reclaim_complete_data
*calldata
= data
;
5273 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops
= {
5274 .rpc_call_prepare
= nfs4_reclaim_complete_prepare
,
5275 .rpc_call_done
= nfs4_reclaim_complete_done
,
5276 .rpc_release
= nfs4_free_reclaim_complete_data
,
5280 * Issue a global reclaim complete.
5282 static int nfs41_proc_reclaim_complete(struct nfs_client
*clp
)
5284 struct nfs4_reclaim_complete_data
*calldata
;
5285 struct rpc_task
*task
;
5286 struct rpc_message msg
= {
5287 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RECLAIM_COMPLETE
],
5289 struct rpc_task_setup task_setup_data
= {
5290 .rpc_client
= clp
->cl_rpcclient
,
5291 .rpc_message
= &msg
,
5292 .callback_ops
= &nfs4_reclaim_complete_call_ops
,
5293 .flags
= RPC_TASK_ASYNC
,
5295 int status
= -ENOMEM
;
5297 dprintk("--> %s\n", __func__
);
5298 calldata
= kzalloc(sizeof(*calldata
), GFP_NOFS
);
5299 if (calldata
== NULL
)
5301 calldata
->clp
= clp
;
5302 calldata
->arg
.one_fs
= 0;
5304 msg
.rpc_argp
= &calldata
->arg
;
5305 msg
.rpc_resp
= &calldata
->res
;
5306 task_setup_data
.callback_data
= calldata
;
5307 task
= rpc_run_task(&task_setup_data
);
5309 status
= PTR_ERR(task
);
5315 dprintk("<-- %s status=%d\n", __func__
, status
);
5320 nfs4_layoutget_prepare(struct rpc_task
*task
, void *calldata
)
5322 struct nfs4_layoutget
*lgp
= calldata
;
5323 struct nfs_server
*server
= NFS_SERVER(lgp
->args
.inode
);
5325 dprintk("--> %s\n", __func__
);
5326 /* Note the is a race here, where a CB_LAYOUTRECALL can come in
5327 * right now covering the LAYOUTGET we are about to send.
5328 * However, that is not so catastrophic, and there seems
5329 * to be no way to prevent it completely.
5331 if (nfs4_setup_sequence(server
, &lgp
->args
.seq_args
,
5332 &lgp
->res
.seq_res
, 0, task
))
5334 if (pnfs_choose_layoutget_stateid(&lgp
->args
.stateid
,
5335 NFS_I(lgp
->args
.inode
)->layout
,
5336 lgp
->args
.ctx
->state
)) {
5337 rpc_exit(task
, NFS4_OK
);
5340 rpc_call_start(task
);
5343 static void nfs4_layoutget_done(struct rpc_task
*task
, void *calldata
)
5345 struct nfs4_layoutget
*lgp
= calldata
;
5346 struct nfs_server
*server
= NFS_SERVER(lgp
->args
.inode
);
5348 dprintk("--> %s\n", __func__
);
5350 if (!nfs4_sequence_done(task
, &lgp
->res
.seq_res
))
5353 switch (task
->tk_status
) {
5356 case -NFS4ERR_LAYOUTTRYLATER
:
5357 case -NFS4ERR_RECALLCONFLICT
:
5358 task
->tk_status
= -NFS4ERR_DELAY
;
5361 if (nfs4_async_handle_error(task
, server
, NULL
) == -EAGAIN
) {
5362 rpc_restart_call_prepare(task
);
5366 dprintk("<-- %s\n", __func__
);
5369 static void nfs4_layoutget_release(void *calldata
)
5371 struct nfs4_layoutget
*lgp
= calldata
;
5373 dprintk("--> %s\n", __func__
);
5374 if (lgp
->res
.layout
.buf
!= NULL
)
5375 free_page((unsigned long) lgp
->res
.layout
.buf
);
5376 put_nfs_open_context(lgp
->args
.ctx
);
5378 dprintk("<-- %s\n", __func__
);
5381 static const struct rpc_call_ops nfs4_layoutget_call_ops
= {
5382 .rpc_call_prepare
= nfs4_layoutget_prepare
,
5383 .rpc_call_done
= nfs4_layoutget_done
,
5384 .rpc_release
= nfs4_layoutget_release
,
5387 int nfs4_proc_layoutget(struct nfs4_layoutget
*lgp
)
5389 struct nfs_server
*server
= NFS_SERVER(lgp
->args
.inode
);
5390 struct rpc_task
*task
;
5391 struct rpc_message msg
= {
5392 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LAYOUTGET
],
5393 .rpc_argp
= &lgp
->args
,
5394 .rpc_resp
= &lgp
->res
,
5396 struct rpc_task_setup task_setup_data
= {
5397 .rpc_client
= server
->client
,
5398 .rpc_message
= &msg
,
5399 .callback_ops
= &nfs4_layoutget_call_ops
,
5400 .callback_data
= lgp
,
5401 .flags
= RPC_TASK_ASYNC
,
5405 dprintk("--> %s\n", __func__
);
5407 lgp
->res
.layout
.buf
= (void *)__get_free_page(GFP_NOFS
);
5408 if (lgp
->res
.layout
.buf
== NULL
) {
5409 nfs4_layoutget_release(lgp
);
5413 lgp
->res
.seq_res
.sr_slot
= NULL
;
5414 task
= rpc_run_task(&task_setup_data
);
5416 return PTR_ERR(task
);
5417 status
= nfs4_wait_for_completion_rpc_task(task
);
5419 status
= task
->tk_status
;
5421 status
= pnfs_layout_process(lgp
);
5423 dprintk("<-- %s status=%d\n", __func__
, status
);
5428 _nfs4_proc_getdeviceinfo(struct nfs_server
*server
, struct pnfs_device
*pdev
)
5430 struct nfs4_getdeviceinfo_args args
= {
5433 struct nfs4_getdeviceinfo_res res
= {
5436 struct rpc_message msg
= {
5437 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETDEVICEINFO
],
5443 dprintk("--> %s\n", __func__
);
5444 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
5445 dprintk("<-- %s status=%d\n", __func__
, status
);
5450 int nfs4_proc_getdeviceinfo(struct nfs_server
*server
, struct pnfs_device
*pdev
)
5452 struct nfs4_exception exception
= { };
5456 err
= nfs4_handle_exception(server
,
5457 _nfs4_proc_getdeviceinfo(server
, pdev
),
5459 } while (exception
.retry
);
5462 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo
);
5464 #endif /* CONFIG_NFS_V4_1 */
5466 struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops
= {
5467 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
5468 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
5469 .recover_open
= nfs4_open_reclaim
,
5470 .recover_lock
= nfs4_lock_reclaim
,
5471 .establish_clid
= nfs4_init_clientid
,
5472 .get_clid_cred
= nfs4_get_setclientid_cred
,
5475 #if defined(CONFIG_NFS_V4_1)
5476 struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops
= {
5477 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
5478 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
5479 .recover_open
= nfs4_open_reclaim
,
5480 .recover_lock
= nfs4_lock_reclaim
,
5481 .establish_clid
= nfs41_init_clientid
,
5482 .get_clid_cred
= nfs4_get_exchange_id_cred
,
5483 .reclaim_complete
= nfs41_proc_reclaim_complete
,
5485 #endif /* CONFIG_NFS_V4_1 */
5487 struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops
= {
5488 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
5489 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
5490 .recover_open
= nfs4_open_expired
,
5491 .recover_lock
= nfs4_lock_expired
,
5492 .establish_clid
= nfs4_init_clientid
,
5493 .get_clid_cred
= nfs4_get_setclientid_cred
,
5496 #if defined(CONFIG_NFS_V4_1)
5497 struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops
= {
5498 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
5499 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
5500 .recover_open
= nfs4_open_expired
,
5501 .recover_lock
= nfs4_lock_expired
,
5502 .establish_clid
= nfs41_init_clientid
,
5503 .get_clid_cred
= nfs4_get_exchange_id_cred
,
5505 #endif /* CONFIG_NFS_V4_1 */
5507 struct nfs4_state_maintenance_ops nfs40_state_renewal_ops
= {
5508 .sched_state_renewal
= nfs4_proc_async_renew
,
5509 .get_state_renewal_cred_locked
= nfs4_get_renew_cred_locked
,
5510 .renew_lease
= nfs4_proc_renew
,
5513 #if defined(CONFIG_NFS_V4_1)
5514 struct nfs4_state_maintenance_ops nfs41_state_renewal_ops
= {
5515 .sched_state_renewal
= nfs41_proc_async_sequence
,
5516 .get_state_renewal_cred_locked
= nfs4_get_machine_cred_locked
,
5517 .renew_lease
= nfs4_proc_sequence
,
5521 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops
= {
5523 .call_sync
= _nfs4_call_sync
,
5524 .validate_stateid
= nfs4_validate_delegation_stateid
,
5525 .reboot_recovery_ops
= &nfs40_reboot_recovery_ops
,
5526 .nograce_recovery_ops
= &nfs40_nograce_recovery_ops
,
5527 .state_renewal_ops
= &nfs40_state_renewal_ops
,
5530 #if defined(CONFIG_NFS_V4_1)
5531 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops
= {
5533 .call_sync
= _nfs4_call_sync_session
,
5534 .validate_stateid
= nfs41_validate_delegation_stateid
,
5535 .reboot_recovery_ops
= &nfs41_reboot_recovery_ops
,
5536 .nograce_recovery_ops
= &nfs41_nograce_recovery_ops
,
5537 .state_renewal_ops
= &nfs41_state_renewal_ops
,
5541 const struct nfs4_minor_version_ops
*nfs_v4_minor_ops
[] = {
5542 [0] = &nfs_v4_0_minor_ops
,
5543 #if defined(CONFIG_NFS_V4_1)
5544 [1] = &nfs_v4_1_minor_ops
,
5548 static const struct inode_operations nfs4_file_inode_operations
= {
5549 .permission
= nfs_permission
,
5550 .getattr
= nfs_getattr
,
5551 .setattr
= nfs_setattr
,
5552 .getxattr
= generic_getxattr
,
5553 .setxattr
= generic_setxattr
,
5554 .listxattr
= generic_listxattr
,
5555 .removexattr
= generic_removexattr
,
5558 const struct nfs_rpc_ops nfs_v4_clientops
= {
5559 .version
= 4, /* protocol version */
5560 .dentry_ops
= &nfs4_dentry_operations
,
5561 .dir_inode_ops
= &nfs4_dir_inode_operations
,
5562 .file_inode_ops
= &nfs4_file_inode_operations
,
5563 .getroot
= nfs4_proc_get_root
,
5564 .getattr
= nfs4_proc_getattr
,
5565 .setattr
= nfs4_proc_setattr
,
5566 .lookupfh
= nfs4_proc_lookupfh
,
5567 .lookup
= nfs4_proc_lookup
,
5568 .access
= nfs4_proc_access
,
5569 .readlink
= nfs4_proc_readlink
,
5570 .create
= nfs4_proc_create
,
5571 .remove
= nfs4_proc_remove
,
5572 .unlink_setup
= nfs4_proc_unlink_setup
,
5573 .unlink_done
= nfs4_proc_unlink_done
,
5574 .rename
= nfs4_proc_rename
,
5575 .rename_setup
= nfs4_proc_rename_setup
,
5576 .rename_done
= nfs4_proc_rename_done
,
5577 .link
= nfs4_proc_link
,
5578 .symlink
= nfs4_proc_symlink
,
5579 .mkdir
= nfs4_proc_mkdir
,
5580 .rmdir
= nfs4_proc_remove
,
5581 .readdir
= nfs4_proc_readdir
,
5582 .mknod
= nfs4_proc_mknod
,
5583 .statfs
= nfs4_proc_statfs
,
5584 .fsinfo
= nfs4_proc_fsinfo
,
5585 .pathconf
= nfs4_proc_pathconf
,
5586 .set_capabilities
= nfs4_server_capabilities
,
5587 .decode_dirent
= nfs4_decode_dirent
,
5588 .read_setup
= nfs4_proc_read_setup
,
5589 .read_done
= nfs4_read_done
,
5590 .write_setup
= nfs4_proc_write_setup
,
5591 .write_done
= nfs4_write_done
,
5592 .commit_setup
= nfs4_proc_commit_setup
,
5593 .commit_done
= nfs4_commit_done
,
5594 .lock
= nfs4_proc_lock
,
5595 .clear_acl_cache
= nfs4_zap_acl_attr
,
5596 .close_context
= nfs4_close_context
,
5597 .open_context
= nfs4_atomic_open
,
5600 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler
= {
5601 .prefix
= XATTR_NAME_NFSV4_ACL
,
5602 .list
= nfs4_xattr_list_nfs4_acl
,
5603 .get
= nfs4_xattr_get_nfs4_acl
,
5604 .set
= nfs4_xattr_set_nfs4_acl
,
5607 const struct xattr_handler
*nfs4_xattr_handlers
[] = {
5608 &nfs4_xattr_nfs4_acl_handler
,