4 * Client-side procedure declarations for NFSv4.
6 * Copyright (c) 2002 The Regents of the University of Michigan.
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include <linux/utsname.h>
40 #include <linux/delay.h>
41 #include <linux/errno.h>
42 #include <linux/string.h>
43 #include <linux/sunrpc/clnt.h>
44 #include <linux/nfs.h>
45 #include <linux/nfs4.h>
46 #include <linux/nfs_fs.h>
47 #include <linux/nfs_page.h>
48 #include <linux/namei.h>
49 #include <linux/mount.h>
50 #include <linux/module.h>
51 #include <linux/sunrpc/bc_xprt.h>
54 #include "delegation.h"
59 #define NFSDBG_FACILITY NFSDBG_PROC
61 #define NFS4_POLL_RETRY_MIN (HZ/10)
62 #define NFS4_POLL_RETRY_MAX (15*HZ)
64 #define NFS4_MAX_LOOP_ON_RECOVER (10)
67 static int _nfs4_proc_open(struct nfs4_opendata
*data
);
68 static int nfs4_do_fsinfo(struct nfs_server
*, struct nfs_fh
*, struct nfs_fsinfo
*);
69 static int nfs4_async_handle_error(struct rpc_task
*, const struct nfs_server
*, struct nfs4_state
*);
70 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
71 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
);
73 /* Prevent leaks of NFSv4 errors into userland */
74 static int nfs4_map_errors(int err
)
77 dprintk("%s could not handle NFSv4 error %d\n",
85 * This is our standard bitmap for GETATTR requests.
87 const u32 nfs4_fattr_bitmap
[2] = {
92 | FATTR4_WORD0_FILEID
,
94 | FATTR4_WORD1_NUMLINKS
96 | FATTR4_WORD1_OWNER_GROUP
98 | FATTR4_WORD1_SPACE_USED
99 | FATTR4_WORD1_TIME_ACCESS
100 | FATTR4_WORD1_TIME_METADATA
101 | FATTR4_WORD1_TIME_MODIFY
104 const u32 nfs4_statfs_bitmap
[2] = {
105 FATTR4_WORD0_FILES_AVAIL
106 | FATTR4_WORD0_FILES_FREE
107 | FATTR4_WORD0_FILES_TOTAL
,
108 FATTR4_WORD1_SPACE_AVAIL
109 | FATTR4_WORD1_SPACE_FREE
110 | FATTR4_WORD1_SPACE_TOTAL
113 const u32 nfs4_pathconf_bitmap
[2] = {
115 | FATTR4_WORD0_MAXNAME
,
119 const u32 nfs4_fsinfo_bitmap
[2] = { FATTR4_WORD0_MAXFILESIZE
120 | FATTR4_WORD0_MAXREAD
121 | FATTR4_WORD0_MAXWRITE
122 | FATTR4_WORD0_LEASE_TIME
,
126 const u32 nfs4_fs_locations_bitmap
[2] = {
128 | FATTR4_WORD0_CHANGE
131 | FATTR4_WORD0_FILEID
132 | FATTR4_WORD0_FS_LOCATIONS
,
134 | FATTR4_WORD1_NUMLINKS
136 | FATTR4_WORD1_OWNER_GROUP
137 | FATTR4_WORD1_RAWDEV
138 | FATTR4_WORD1_SPACE_USED
139 | FATTR4_WORD1_TIME_ACCESS
140 | FATTR4_WORD1_TIME_METADATA
141 | FATTR4_WORD1_TIME_MODIFY
142 | FATTR4_WORD1_MOUNTED_ON_FILEID
145 static void nfs4_setup_readdir(u64 cookie
, __be32
*verifier
, struct dentry
*dentry
,
146 struct nfs4_readdir_arg
*readdir
)
150 BUG_ON(readdir
->count
< 80);
152 readdir
->cookie
= cookie
;
153 memcpy(&readdir
->verifier
, verifier
, sizeof(readdir
->verifier
));
158 memset(&readdir
->verifier
, 0, sizeof(readdir
->verifier
));
163 * NFSv4 servers do not return entries for '.' and '..'
164 * Therefore, we fake these entries here. We let '.'
165 * have cookie 0 and '..' have cookie 1. Note that
166 * when talking to the server, we always send cookie 0
169 start
= p
= kmap_atomic(*readdir
->pages
, KM_USER0
);
172 *p
++ = xdr_one
; /* next */
173 *p
++ = xdr_zero
; /* cookie, first word */
174 *p
++ = xdr_one
; /* cookie, second word */
175 *p
++ = xdr_one
; /* entry len */
176 memcpy(p
, ".\0\0\0", 4); /* entry */
178 *p
++ = xdr_one
; /* bitmap length */
179 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
180 *p
++ = htonl(8); /* attribute buffer length */
181 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_inode
));
184 *p
++ = xdr_one
; /* next */
185 *p
++ = xdr_zero
; /* cookie, first word */
186 *p
++ = xdr_two
; /* cookie, second word */
187 *p
++ = xdr_two
; /* entry len */
188 memcpy(p
, "..\0\0", 4); /* entry */
190 *p
++ = xdr_one
; /* bitmap length */
191 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
192 *p
++ = htonl(8); /* attribute buffer length */
193 p
= xdr_encode_hyper(p
, NFS_FILEID(dentry
->d_parent
->d_inode
));
195 readdir
->pgbase
= (char *)p
- (char *)start
;
196 readdir
->count
-= readdir
->pgbase
;
197 kunmap_atomic(start
, KM_USER0
);
200 static int nfs4_wait_clnt_recover(struct nfs_client
*clp
)
206 res
= wait_on_bit(&clp
->cl_state
, NFS4CLNT_MANAGER_RUNNING
,
207 nfs_wait_bit_killable
, TASK_KILLABLE
);
211 static int nfs4_delay(struct rpc_clnt
*clnt
, long *timeout
)
218 *timeout
= NFS4_POLL_RETRY_MIN
;
219 if (*timeout
> NFS4_POLL_RETRY_MAX
)
220 *timeout
= NFS4_POLL_RETRY_MAX
;
221 schedule_timeout_killable(*timeout
);
222 if (fatal_signal_pending(current
))
228 /* This is the error handling routine for processes that are allowed
231 static int nfs4_handle_exception(const struct nfs_server
*server
, int errorcode
, struct nfs4_exception
*exception
)
233 struct nfs_client
*clp
= server
->nfs_client
;
234 struct nfs4_state
*state
= exception
->state
;
237 exception
->retry
= 0;
241 case -NFS4ERR_ADMIN_REVOKED
:
242 case -NFS4ERR_BAD_STATEID
:
243 case -NFS4ERR_OPENMODE
:
246 nfs4_state_mark_reclaim_nograce(clp
, state
);
247 case -NFS4ERR_STALE_CLIENTID
:
248 case -NFS4ERR_STALE_STATEID
:
249 case -NFS4ERR_EXPIRED
:
250 nfs4_schedule_state_recovery(clp
);
251 ret
= nfs4_wait_clnt_recover(clp
);
253 exception
->retry
= 1;
254 #if !defined(CONFIG_NFS_V4_1)
256 #else /* !defined(CONFIG_NFS_V4_1) */
257 if (!nfs4_has_session(server
->nfs_client
))
260 case -NFS4ERR_BADSESSION
:
261 case -NFS4ERR_BADSLOT
:
262 case -NFS4ERR_BAD_HIGH_SLOT
:
263 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
264 case -NFS4ERR_DEADSESSION
:
265 case -NFS4ERR_SEQ_FALSE_RETRY
:
266 case -NFS4ERR_SEQ_MISORDERED
:
267 dprintk("%s ERROR: %d Reset session\n", __func__
,
269 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
270 exception
->retry
= 1;
272 #endif /* !defined(CONFIG_NFS_V4_1) */
273 case -NFS4ERR_FILE_OPEN
:
276 ret
= nfs4_delay(server
->client
, &exception
->timeout
);
279 case -NFS4ERR_OLD_STATEID
:
280 exception
->retry
= 1;
282 /* We failed to handle the error */
283 return nfs4_map_errors(ret
);
287 static void renew_lease(const struct nfs_server
*server
, unsigned long timestamp
)
289 struct nfs_client
*clp
= server
->nfs_client
;
290 spin_lock(&clp
->cl_lock
);
291 if (time_before(clp
->cl_last_renewal
,timestamp
))
292 clp
->cl_last_renewal
= timestamp
;
293 spin_unlock(&clp
->cl_lock
);
296 #if defined(CONFIG_NFS_V4_1)
299 * nfs4_free_slot - free a slot and efficiently update slot table.
301 * freeing a slot is trivially done by clearing its respective bit
303 * If the freed slotid equals highest_used_slotid we want to update it
304 * so that the server would be able to size down the slot table if needed,
305 * otherwise we know that the highest_used_slotid is still in use.
306 * When updating highest_used_slotid there may be "holes" in the bitmap
307 * so we need to scan down from highest_used_slotid to 0 looking for the now
308 * highest slotid in use.
309 * If none found, highest_used_slotid is set to -1.
312 nfs4_free_slot(struct nfs4_slot_table
*tbl
, u8 free_slotid
)
314 int slotid
= free_slotid
;
316 spin_lock(&tbl
->slot_tbl_lock
);
317 /* clear used bit in bitmap */
318 __clear_bit(slotid
, tbl
->used_slots
);
320 /* update highest_used_slotid when it is freed */
321 if (slotid
== tbl
->highest_used_slotid
) {
322 slotid
= find_last_bit(tbl
->used_slots
, tbl
->max_slots
);
323 if (slotid
>= 0 && slotid
< tbl
->max_slots
)
324 tbl
->highest_used_slotid
= slotid
;
326 tbl
->highest_used_slotid
= -1;
328 rpc_wake_up_next(&tbl
->slot_tbl_waitq
);
329 spin_unlock(&tbl
->slot_tbl_lock
);
330 dprintk("%s: free_slotid %u highest_used_slotid %d\n", __func__
,
331 free_slotid
, tbl
->highest_used_slotid
);
334 void nfs41_sequence_free_slot(const struct nfs_client
*clp
,
335 struct nfs4_sequence_res
*res
)
337 struct nfs4_slot_table
*tbl
;
339 if (!nfs4_has_session(clp
)) {
340 dprintk("%s: No session\n", __func__
);
343 tbl
= &clp
->cl_session
->fc_slot_table
;
344 if (res
->sr_slotid
== NFS4_MAX_SLOT_TABLE
) {
345 dprintk("%s: No slot\n", __func__
);
346 /* just wake up the next guy waiting since
347 * we may have not consumed a slot after all */
348 rpc_wake_up_next(&tbl
->slot_tbl_waitq
);
351 nfs4_free_slot(tbl
, res
->sr_slotid
);
352 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
355 static void nfs41_sequence_done(struct nfs_client
*clp
,
356 struct nfs4_sequence_res
*res
,
359 unsigned long timestamp
;
360 struct nfs4_slot_table
*tbl
;
361 struct nfs4_slot
*slot
;
364 * sr_status remains 1 if an RPC level error occurred. The server
365 * may or may not have processed the sequence operation..
366 * Proceed as if the server received and processed the sequence
369 if (res
->sr_status
== 1)
370 res
->sr_status
= NFS_OK
;
372 /* -ERESTARTSYS can result in skipping nfs41_sequence_setup */
373 if (res
->sr_slotid
== NFS4_MAX_SLOT_TABLE
)
376 tbl
= &clp
->cl_session
->fc_slot_table
;
377 slot
= tbl
->slots
+ res
->sr_slotid
;
379 if (res
->sr_status
== 0) {
380 /* Update the slot's sequence and clientid lease timer */
382 timestamp
= res
->sr_renewal_time
;
383 spin_lock(&clp
->cl_lock
);
384 if (time_before(clp
->cl_last_renewal
, timestamp
))
385 clp
->cl_last_renewal
= timestamp
;
386 spin_unlock(&clp
->cl_lock
);
390 /* The session may be reset by one of the error handlers. */
391 dprintk("%s: Error %d free the slot \n", __func__
, res
->sr_status
);
392 nfs41_sequence_free_slot(clp
, res
);
396 * nfs4_find_slot - efficiently look for a free slot
398 * nfs4_find_slot looks for an unset bit in the used_slots bitmap.
399 * If found, we mark the slot as used, update the highest_used_slotid,
400 * and respectively set up the sequence operation args.
401 * The slot number is returned if found, or NFS4_MAX_SLOT_TABLE otherwise.
403 * Note: must be called with under the slot_tbl_lock.
406 nfs4_find_slot(struct nfs4_slot_table
*tbl
, struct rpc_task
*task
)
409 u8 ret_id
= NFS4_MAX_SLOT_TABLE
;
410 BUILD_BUG_ON((u8
)NFS4_MAX_SLOT_TABLE
!= (int)NFS4_MAX_SLOT_TABLE
);
412 dprintk("--> %s used_slots=%04lx highest_used=%d max_slots=%d\n",
413 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
,
415 slotid
= find_first_zero_bit(tbl
->used_slots
, tbl
->max_slots
);
416 if (slotid
>= tbl
->max_slots
)
418 __set_bit(slotid
, tbl
->used_slots
);
419 if (slotid
> tbl
->highest_used_slotid
)
420 tbl
->highest_used_slotid
= slotid
;
423 dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
424 __func__
, tbl
->used_slots
[0], tbl
->highest_used_slotid
, ret_id
);
428 static int nfs4_recover_session(struct nfs4_session
*session
)
430 struct nfs_client
*clp
= session
->clp
;
434 for (loop
= NFS4_MAX_LOOP_ON_RECOVER
; loop
!= 0; loop
--) {
435 ret
= nfs4_wait_clnt_recover(clp
);
438 if (!test_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
))
440 nfs4_schedule_state_manager(clp
);
446 static int nfs41_setup_sequence(struct nfs4_session
*session
,
447 struct nfs4_sequence_args
*args
,
448 struct nfs4_sequence_res
*res
,
450 struct rpc_task
*task
)
452 struct nfs4_slot
*slot
;
453 struct nfs4_slot_table
*tbl
;
457 dprintk("--> %s\n", __func__
);
458 /* slot already allocated? */
459 if (res
->sr_slotid
!= NFS4_MAX_SLOT_TABLE
)
462 memset(res
, 0, sizeof(*res
));
463 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
464 tbl
= &session
->fc_slot_table
;
466 spin_lock(&tbl
->slot_tbl_lock
);
467 if (test_bit(NFS4CLNT_SESSION_SETUP
, &session
->clp
->cl_state
)) {
468 if (tbl
->highest_used_slotid
!= -1) {
469 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
470 spin_unlock(&tbl
->slot_tbl_lock
);
471 dprintk("<-- %s: Session reset: draining\n", __func__
);
475 /* The slot table is empty; start the reset thread */
476 dprintk("%s Session Reset\n", __func__
);
477 spin_unlock(&tbl
->slot_tbl_lock
);
478 status
= nfs4_recover_session(session
);
481 spin_lock(&tbl
->slot_tbl_lock
);
484 slotid
= nfs4_find_slot(tbl
, task
);
485 if (slotid
== NFS4_MAX_SLOT_TABLE
) {
486 rpc_sleep_on(&tbl
->slot_tbl_waitq
, task
, NULL
);
487 spin_unlock(&tbl
->slot_tbl_lock
);
488 dprintk("<-- %s: no free slots\n", __func__
);
491 spin_unlock(&tbl
->slot_tbl_lock
);
493 slot
= tbl
->slots
+ slotid
;
494 args
->sa_session
= session
;
495 args
->sa_slotid
= slotid
;
496 args
->sa_cache_this
= cache_reply
;
498 dprintk("<-- %s slotid=%d seqid=%d\n", __func__
, slotid
, slot
->seq_nr
);
500 res
->sr_session
= session
;
501 res
->sr_slotid
= slotid
;
502 res
->sr_renewal_time
= jiffies
;
504 * sr_status is only set in decode_sequence, and so will remain
505 * set to 1 if an rpc level failure occurs.
511 int nfs4_setup_sequence(struct nfs_client
*clp
,
512 struct nfs4_sequence_args
*args
,
513 struct nfs4_sequence_res
*res
,
515 struct rpc_task
*task
)
519 dprintk("--> %s clp %p session %p sr_slotid %d\n",
520 __func__
, clp
, clp
->cl_session
, res
->sr_slotid
);
522 if (!nfs4_has_session(clp
))
524 ret
= nfs41_setup_sequence(clp
->cl_session
, args
, res
, cache_reply
,
526 if (ret
!= -EAGAIN
) {
527 /* terminate rpc task */
528 task
->tk_status
= ret
;
529 task
->tk_action
= NULL
;
532 dprintk("<-- %s status=%d\n", __func__
, ret
);
536 struct nfs41_call_sync_data
{
537 struct nfs_client
*clp
;
538 struct nfs4_sequence_args
*seq_args
;
539 struct nfs4_sequence_res
*seq_res
;
543 static void nfs41_call_sync_prepare(struct rpc_task
*task
, void *calldata
)
545 struct nfs41_call_sync_data
*data
= calldata
;
547 dprintk("--> %s data->clp->cl_session %p\n", __func__
,
548 data
->clp
->cl_session
);
549 if (nfs4_setup_sequence(data
->clp
, data
->seq_args
,
550 data
->seq_res
, data
->cache_reply
, task
))
552 rpc_call_start(task
);
555 static void nfs41_call_sync_done(struct rpc_task
*task
, void *calldata
)
557 struct nfs41_call_sync_data
*data
= calldata
;
559 nfs41_sequence_done(data
->clp
, data
->seq_res
, task
->tk_status
);
560 nfs41_sequence_free_slot(data
->clp
, data
->seq_res
);
563 struct rpc_call_ops nfs41_call_sync_ops
= {
564 .rpc_call_prepare
= nfs41_call_sync_prepare
,
565 .rpc_call_done
= nfs41_call_sync_done
,
568 static int nfs4_call_sync_sequence(struct nfs_client
*clp
,
569 struct rpc_clnt
*clnt
,
570 struct rpc_message
*msg
,
571 struct nfs4_sequence_args
*args
,
572 struct nfs4_sequence_res
*res
,
576 struct rpc_task
*task
;
577 struct nfs41_call_sync_data data
= {
581 .cache_reply
= cache_reply
,
583 struct rpc_task_setup task_setup
= {
586 .callback_ops
= &nfs41_call_sync_ops
,
587 .callback_data
= &data
590 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
591 task
= rpc_run_task(&task_setup
);
595 ret
= task
->tk_status
;
601 int _nfs4_call_sync_session(struct nfs_server
*server
,
602 struct rpc_message
*msg
,
603 struct nfs4_sequence_args
*args
,
604 struct nfs4_sequence_res
*res
,
607 return nfs4_call_sync_sequence(server
->nfs_client
, server
->client
,
608 msg
, args
, res
, cache_reply
);
611 #endif /* CONFIG_NFS_V4_1 */
613 int _nfs4_call_sync(struct nfs_server
*server
,
614 struct rpc_message
*msg
,
615 struct nfs4_sequence_args
*args
,
616 struct nfs4_sequence_res
*res
,
619 args
->sa_session
= res
->sr_session
= NULL
;
620 return rpc_call_sync(server
->client
, msg
, 0);
623 #define nfs4_call_sync(server, msg, args, res, cache_reply) \
624 (server)->nfs_client->cl_call_sync((server), (msg), &(args)->seq_args, \
625 &(res)->seq_res, (cache_reply))
627 static void nfs4_sequence_done(const struct nfs_server
*server
,
628 struct nfs4_sequence_res
*res
, int rpc_status
)
630 #ifdef CONFIG_NFS_V4_1
631 if (nfs4_has_session(server
->nfs_client
))
632 nfs41_sequence_done(server
->nfs_client
, res
, rpc_status
);
633 #endif /* CONFIG_NFS_V4_1 */
636 /* no restart, therefore free slot here */
637 static void nfs4_sequence_done_free_slot(const struct nfs_server
*server
,
638 struct nfs4_sequence_res
*res
,
641 nfs4_sequence_done(server
, res
, rpc_status
);
642 nfs4_sequence_free_slot(server
->nfs_client
, res
);
645 static void update_changeattr(struct inode
*dir
, struct nfs4_change_info
*cinfo
)
647 struct nfs_inode
*nfsi
= NFS_I(dir
);
649 spin_lock(&dir
->i_lock
);
650 nfsi
->cache_validity
|= NFS_INO_INVALID_ATTR
|NFS_INO_REVAL_PAGECACHE
|NFS_INO_INVALID_DATA
;
651 if (!cinfo
->atomic
|| cinfo
->before
!= nfsi
->change_attr
)
652 nfs_force_lookup_revalidate(dir
);
653 nfsi
->change_attr
= cinfo
->after
;
654 spin_unlock(&dir
->i_lock
);
657 struct nfs4_opendata
{
659 struct nfs_openargs o_arg
;
660 struct nfs_openres o_res
;
661 struct nfs_open_confirmargs c_arg
;
662 struct nfs_open_confirmres c_res
;
663 struct nfs_fattr f_attr
;
664 struct nfs_fattr dir_attr
;
667 struct nfs4_state_owner
*owner
;
668 struct nfs4_state
*state
;
670 unsigned long timestamp
;
671 unsigned int rpc_done
: 1;
677 static void nfs4_init_opendata_res(struct nfs4_opendata
*p
)
679 p
->o_res
.f_attr
= &p
->f_attr
;
680 p
->o_res
.dir_attr
= &p
->dir_attr
;
681 p
->o_res
.seqid
= p
->o_arg
.seqid
;
682 p
->c_res
.seqid
= p
->c_arg
.seqid
;
683 p
->o_res
.server
= p
->o_arg
.server
;
684 nfs_fattr_init(&p
->f_attr
);
685 nfs_fattr_init(&p
->dir_attr
);
686 p
->o_res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
689 static struct nfs4_opendata
*nfs4_opendata_alloc(struct path
*path
,
690 struct nfs4_state_owner
*sp
, fmode_t fmode
, int flags
,
691 const struct iattr
*attrs
)
693 struct dentry
*parent
= dget_parent(path
->dentry
);
694 struct inode
*dir
= parent
->d_inode
;
695 struct nfs_server
*server
= NFS_SERVER(dir
);
696 struct nfs4_opendata
*p
;
698 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
701 p
->o_arg
.seqid
= nfs_alloc_seqid(&sp
->so_seqid
);
702 if (p
->o_arg
.seqid
== NULL
)
704 p
->path
.mnt
= mntget(path
->mnt
);
705 p
->path
.dentry
= dget(path
->dentry
);
708 atomic_inc(&sp
->so_count
);
709 p
->o_arg
.fh
= NFS_FH(dir
);
710 p
->o_arg
.open_flags
= flags
;
711 p
->o_arg
.fmode
= fmode
& (FMODE_READ
|FMODE_WRITE
);
712 p
->o_arg
.clientid
= server
->nfs_client
->cl_clientid
;
713 p
->o_arg
.id
= sp
->so_owner_id
.id
;
714 p
->o_arg
.name
= &p
->path
.dentry
->d_name
;
715 p
->o_arg
.server
= server
;
716 p
->o_arg
.bitmask
= server
->attr_bitmask
;
717 p
->o_arg
.claim
= NFS4_OPEN_CLAIM_NULL
;
718 if (flags
& O_EXCL
) {
719 u32
*s
= (u32
*) p
->o_arg
.u
.verifier
.data
;
722 } else if (flags
& O_CREAT
) {
723 p
->o_arg
.u
.attrs
= &p
->attrs
;
724 memcpy(&p
->attrs
, attrs
, sizeof(p
->attrs
));
726 p
->c_arg
.fh
= &p
->o_res
.fh
;
727 p
->c_arg
.stateid
= &p
->o_res
.stateid
;
728 p
->c_arg
.seqid
= p
->o_arg
.seqid
;
729 nfs4_init_opendata_res(p
);
739 static void nfs4_opendata_free(struct kref
*kref
)
741 struct nfs4_opendata
*p
= container_of(kref
,
742 struct nfs4_opendata
, kref
);
744 nfs_free_seqid(p
->o_arg
.seqid
);
745 if (p
->state
!= NULL
)
746 nfs4_put_open_state(p
->state
);
747 nfs4_put_state_owner(p
->owner
);
753 static void nfs4_opendata_put(struct nfs4_opendata
*p
)
756 kref_put(&p
->kref
, nfs4_opendata_free
);
759 static int nfs4_wait_for_completion_rpc_task(struct rpc_task
*task
)
763 ret
= rpc_wait_for_completion_task(task
);
767 static int can_open_cached(struct nfs4_state
*state
, fmode_t mode
, int open_mode
)
771 if (open_mode
& O_EXCL
)
773 switch (mode
& (FMODE_READ
|FMODE_WRITE
)) {
775 ret
|= test_bit(NFS_O_RDONLY_STATE
, &state
->flags
) != 0;
778 ret
|= test_bit(NFS_O_WRONLY_STATE
, &state
->flags
) != 0;
780 case FMODE_READ
|FMODE_WRITE
:
781 ret
|= test_bit(NFS_O_RDWR_STATE
, &state
->flags
) != 0;
787 static int can_open_delegated(struct nfs_delegation
*delegation
, fmode_t fmode
)
789 if ((delegation
->type
& fmode
) != fmode
)
791 if (test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
))
793 nfs_mark_delegation_referenced(delegation
);
797 static void update_open_stateflags(struct nfs4_state
*state
, fmode_t fmode
)
806 case FMODE_READ
|FMODE_WRITE
:
809 nfs4_state_set_mode_locked(state
, state
->state
| fmode
);
812 static void nfs_set_open_stateid_locked(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
814 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
815 memcpy(state
->stateid
.data
, stateid
->data
, sizeof(state
->stateid
.data
));
816 memcpy(state
->open_stateid
.data
, stateid
->data
, sizeof(state
->open_stateid
.data
));
819 set_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
822 set_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
824 case FMODE_READ
|FMODE_WRITE
:
825 set_bit(NFS_O_RDWR_STATE
, &state
->flags
);
829 static void nfs_set_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*stateid
, fmode_t fmode
)
831 write_seqlock(&state
->seqlock
);
832 nfs_set_open_stateid_locked(state
, stateid
, fmode
);
833 write_sequnlock(&state
->seqlock
);
836 static void __update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, const nfs4_stateid
*deleg_stateid
, fmode_t fmode
)
839 * Protect the call to nfs4_state_set_mode_locked and
840 * serialise the stateid update
842 write_seqlock(&state
->seqlock
);
843 if (deleg_stateid
!= NULL
) {
844 memcpy(state
->stateid
.data
, deleg_stateid
->data
, sizeof(state
->stateid
.data
));
845 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
847 if (open_stateid
!= NULL
)
848 nfs_set_open_stateid_locked(state
, open_stateid
, fmode
);
849 write_sequnlock(&state
->seqlock
);
850 spin_lock(&state
->owner
->so_lock
);
851 update_open_stateflags(state
, fmode
);
852 spin_unlock(&state
->owner
->so_lock
);
855 static int update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*open_stateid
, nfs4_stateid
*delegation
, fmode_t fmode
)
857 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
858 struct nfs_delegation
*deleg_cur
;
861 fmode
&= (FMODE_READ
|FMODE_WRITE
);
864 deleg_cur
= rcu_dereference(nfsi
->delegation
);
865 if (deleg_cur
== NULL
)
868 spin_lock(&deleg_cur
->lock
);
869 if (nfsi
->delegation
!= deleg_cur
||
870 (deleg_cur
->type
& fmode
) != fmode
)
871 goto no_delegation_unlock
;
873 if (delegation
== NULL
)
874 delegation
= &deleg_cur
->stateid
;
875 else if (memcmp(deleg_cur
->stateid
.data
, delegation
->data
, NFS4_STATEID_SIZE
) != 0)
876 goto no_delegation_unlock
;
878 nfs_mark_delegation_referenced(deleg_cur
);
879 __update_open_stateid(state
, open_stateid
, &deleg_cur
->stateid
, fmode
);
881 no_delegation_unlock
:
882 spin_unlock(&deleg_cur
->lock
);
886 if (!ret
&& open_stateid
!= NULL
) {
887 __update_open_stateid(state
, open_stateid
, NULL
, fmode
);
895 static void nfs4_return_incompatible_delegation(struct inode
*inode
, fmode_t fmode
)
897 struct nfs_delegation
*delegation
;
900 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
901 if (delegation
== NULL
|| (delegation
->type
& fmode
) == fmode
) {
906 nfs_inode_return_delegation(inode
);
909 static struct nfs4_state
*nfs4_try_open_cached(struct nfs4_opendata
*opendata
)
911 struct nfs4_state
*state
= opendata
->state
;
912 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
913 struct nfs_delegation
*delegation
;
914 int open_mode
= opendata
->o_arg
.open_flags
& O_EXCL
;
915 fmode_t fmode
= opendata
->o_arg
.fmode
;
916 nfs4_stateid stateid
;
920 if (can_open_cached(state
, fmode
, open_mode
)) {
921 spin_lock(&state
->owner
->so_lock
);
922 if (can_open_cached(state
, fmode
, open_mode
)) {
923 update_open_stateflags(state
, fmode
);
924 spin_unlock(&state
->owner
->so_lock
);
925 goto out_return_state
;
927 spin_unlock(&state
->owner
->so_lock
);
930 delegation
= rcu_dereference(nfsi
->delegation
);
931 if (delegation
== NULL
||
932 !can_open_delegated(delegation
, fmode
)) {
936 /* Save the delegation */
937 memcpy(stateid
.data
, delegation
->stateid
.data
, sizeof(stateid
.data
));
939 ret
= nfs_may_open(state
->inode
, state
->owner
->so_cred
, open_mode
);
944 /* Try to update the stateid using the delegation */
945 if (update_open_stateid(state
, NULL
, &stateid
, fmode
))
946 goto out_return_state
;
951 atomic_inc(&state
->count
);
955 static struct nfs4_state
*nfs4_opendata_to_nfs4_state(struct nfs4_opendata
*data
)
958 struct nfs4_state
*state
= NULL
;
959 struct nfs_delegation
*delegation
;
962 if (!data
->rpc_done
) {
963 state
= nfs4_try_open_cached(data
);
968 if (!(data
->f_attr
.valid
& NFS_ATTR_FATTR
))
970 inode
= nfs_fhget(data
->dir
->d_sb
, &data
->o_res
.fh
, &data
->f_attr
);
971 ret
= PTR_ERR(inode
);
975 state
= nfs4_get_open_state(inode
, data
->owner
);
978 if (data
->o_res
.delegation_type
!= 0) {
979 int delegation_flags
= 0;
982 delegation
= rcu_dereference(NFS_I(inode
)->delegation
);
984 delegation_flags
= delegation
->flags
;
986 if ((delegation_flags
& 1UL<<NFS_DELEGATION_NEED_RECLAIM
) == 0)
987 nfs_inode_set_delegation(state
->inode
,
988 data
->owner
->so_cred
,
991 nfs_inode_reclaim_delegation(state
->inode
,
992 data
->owner
->so_cred
,
996 update_open_stateid(state
, &data
->o_res
.stateid
, NULL
,
1004 return ERR_PTR(ret
);
1007 static struct nfs_open_context
*nfs4_state_find_open_context(struct nfs4_state
*state
)
1009 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
1010 struct nfs_open_context
*ctx
;
1012 spin_lock(&state
->inode
->i_lock
);
1013 list_for_each_entry(ctx
, &nfsi
->open_files
, list
) {
1014 if (ctx
->state
!= state
)
1016 get_nfs_open_context(ctx
);
1017 spin_unlock(&state
->inode
->i_lock
);
1020 spin_unlock(&state
->inode
->i_lock
);
1021 return ERR_PTR(-ENOENT
);
1024 static struct nfs4_opendata
*nfs4_open_recoverdata_alloc(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1026 struct nfs4_opendata
*opendata
;
1028 opendata
= nfs4_opendata_alloc(&ctx
->path
, state
->owner
, 0, 0, NULL
);
1029 if (opendata
== NULL
)
1030 return ERR_PTR(-ENOMEM
);
1031 opendata
->state
= state
;
1032 atomic_inc(&state
->count
);
1036 static int nfs4_open_recover_helper(struct nfs4_opendata
*opendata
, fmode_t fmode
, struct nfs4_state
**res
)
1038 struct nfs4_state
*newstate
;
1041 opendata
->o_arg
.open_flags
= 0;
1042 opendata
->o_arg
.fmode
= fmode
;
1043 memset(&opendata
->o_res
, 0, sizeof(opendata
->o_res
));
1044 memset(&opendata
->c_res
, 0, sizeof(opendata
->c_res
));
1045 nfs4_init_opendata_res(opendata
);
1046 ret
= _nfs4_proc_open(opendata
);
1049 newstate
= nfs4_opendata_to_nfs4_state(opendata
);
1050 if (IS_ERR(newstate
))
1051 return PTR_ERR(newstate
);
1052 nfs4_close_state(&opendata
->path
, newstate
, fmode
);
1057 static int nfs4_open_recover(struct nfs4_opendata
*opendata
, struct nfs4_state
*state
)
1059 struct nfs4_state
*newstate
;
1062 /* memory barrier prior to reading state->n_* */
1063 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
1065 if (state
->n_rdwr
!= 0) {
1066 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
|FMODE_WRITE
, &newstate
);
1069 if (newstate
!= state
)
1072 if (state
->n_wronly
!= 0) {
1073 ret
= nfs4_open_recover_helper(opendata
, FMODE_WRITE
, &newstate
);
1076 if (newstate
!= state
)
1079 if (state
->n_rdonly
!= 0) {
1080 ret
= nfs4_open_recover_helper(opendata
, FMODE_READ
, &newstate
);
1083 if (newstate
!= state
)
1087 * We may have performed cached opens for all three recoveries.
1088 * Check if we need to update the current stateid.
1090 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0 &&
1091 memcmp(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
)) != 0) {
1092 write_seqlock(&state
->seqlock
);
1093 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) == 0)
1094 memcpy(state
->stateid
.data
, state
->open_stateid
.data
, sizeof(state
->stateid
.data
));
1095 write_sequnlock(&state
->seqlock
);
1102 * reclaim state on the server after a reboot.
1104 static int _nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1106 struct nfs_delegation
*delegation
;
1107 struct nfs4_opendata
*opendata
;
1108 fmode_t delegation_type
= 0;
1111 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1112 if (IS_ERR(opendata
))
1113 return PTR_ERR(opendata
);
1114 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_PREVIOUS
;
1115 opendata
->o_arg
.fh
= NFS_FH(state
->inode
);
1117 delegation
= rcu_dereference(NFS_I(state
->inode
)->delegation
);
1118 if (delegation
!= NULL
&& test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) != 0)
1119 delegation_type
= delegation
->type
;
1121 opendata
->o_arg
.u
.delegation_type
= delegation_type
;
1122 status
= nfs4_open_recover(opendata
, state
);
1123 nfs4_opendata_put(opendata
);
1127 static int nfs4_do_open_reclaim(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1129 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1130 struct nfs4_exception exception
= { };
1133 err
= _nfs4_do_open_reclaim(ctx
, state
);
1134 if (err
!= -NFS4ERR_DELAY
)
1136 nfs4_handle_exception(server
, err
, &exception
);
1137 } while (exception
.retry
);
1141 static int nfs4_open_reclaim(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1143 struct nfs_open_context
*ctx
;
1146 ctx
= nfs4_state_find_open_context(state
);
1148 return PTR_ERR(ctx
);
1149 ret
= nfs4_do_open_reclaim(ctx
, state
);
1150 put_nfs_open_context(ctx
);
1154 static int _nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1156 struct nfs4_opendata
*opendata
;
1159 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1160 if (IS_ERR(opendata
))
1161 return PTR_ERR(opendata
);
1162 opendata
->o_arg
.claim
= NFS4_OPEN_CLAIM_DELEGATE_CUR
;
1163 memcpy(opendata
->o_arg
.u
.delegation
.data
, stateid
->data
,
1164 sizeof(opendata
->o_arg
.u
.delegation
.data
));
1165 ret
= nfs4_open_recover(opendata
, state
);
1166 nfs4_opendata_put(opendata
);
1170 int nfs4_open_delegation_recall(struct nfs_open_context
*ctx
, struct nfs4_state
*state
, const nfs4_stateid
*stateid
)
1172 struct nfs4_exception exception
= { };
1173 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1176 err
= _nfs4_open_delegation_recall(ctx
, state
, stateid
);
1182 case -NFS4ERR_STALE_CLIENTID
:
1183 case -NFS4ERR_STALE_STATEID
:
1184 case -NFS4ERR_EXPIRED
:
1185 /* Don't recall a delegation if it was lost */
1186 nfs4_schedule_state_recovery(server
->nfs_client
);
1190 * The show must go on: exit, but mark the
1191 * stateid as needing recovery.
1193 case -NFS4ERR_ADMIN_REVOKED
:
1194 case -NFS4ERR_BAD_STATEID
:
1195 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
1200 err
= nfs4_handle_exception(server
, err
, &exception
);
1201 } while (exception
.retry
);
1206 static void nfs4_open_confirm_done(struct rpc_task
*task
, void *calldata
)
1208 struct nfs4_opendata
*data
= calldata
;
1210 data
->rpc_status
= task
->tk_status
;
1211 if (RPC_ASSASSINATED(task
))
1213 if (data
->rpc_status
== 0) {
1214 memcpy(data
->o_res
.stateid
.data
, data
->c_res
.stateid
.data
,
1215 sizeof(data
->o_res
.stateid
.data
));
1216 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1217 renew_lease(data
->o_res
.server
, data
->timestamp
);
1222 static void nfs4_open_confirm_release(void *calldata
)
1224 struct nfs4_opendata
*data
= calldata
;
1225 struct nfs4_state
*state
= NULL
;
1227 /* If this request hasn't been cancelled, do nothing */
1228 if (data
->cancelled
== 0)
1230 /* In case of error, no cleanup! */
1231 if (!data
->rpc_done
)
1233 state
= nfs4_opendata_to_nfs4_state(data
);
1235 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1237 nfs4_opendata_put(data
);
1240 static const struct rpc_call_ops nfs4_open_confirm_ops
= {
1241 .rpc_call_done
= nfs4_open_confirm_done
,
1242 .rpc_release
= nfs4_open_confirm_release
,
1246 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1248 static int _nfs4_proc_open_confirm(struct nfs4_opendata
*data
)
1250 struct nfs_server
*server
= NFS_SERVER(data
->dir
->d_inode
);
1251 struct rpc_task
*task
;
1252 struct rpc_message msg
= {
1253 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_CONFIRM
],
1254 .rpc_argp
= &data
->c_arg
,
1255 .rpc_resp
= &data
->c_res
,
1256 .rpc_cred
= data
->owner
->so_cred
,
1258 struct rpc_task_setup task_setup_data
= {
1259 .rpc_client
= server
->client
,
1260 .rpc_message
= &msg
,
1261 .callback_ops
= &nfs4_open_confirm_ops
,
1262 .callback_data
= data
,
1263 .workqueue
= nfsiod_workqueue
,
1264 .flags
= RPC_TASK_ASYNC
,
1268 kref_get(&data
->kref
);
1270 data
->rpc_status
= 0;
1271 data
->timestamp
= jiffies
;
1272 task
= rpc_run_task(&task_setup_data
);
1274 return PTR_ERR(task
);
1275 status
= nfs4_wait_for_completion_rpc_task(task
);
1277 data
->cancelled
= 1;
1280 status
= data
->rpc_status
;
1285 static void nfs4_open_prepare(struct rpc_task
*task
, void *calldata
)
1287 struct nfs4_opendata
*data
= calldata
;
1288 struct nfs4_state_owner
*sp
= data
->owner
;
1290 if (nfs_wait_on_sequence(data
->o_arg
.seqid
, task
) != 0)
1293 * Check if we still need to send an OPEN call, or if we can use
1294 * a delegation instead.
1296 if (data
->state
!= NULL
) {
1297 struct nfs_delegation
*delegation
;
1299 if (can_open_cached(data
->state
, data
->o_arg
.fmode
, data
->o_arg
.open_flags
))
1302 delegation
= rcu_dereference(NFS_I(data
->state
->inode
)->delegation
);
1303 if (delegation
!= NULL
&&
1304 test_bit(NFS_DELEGATION_NEED_RECLAIM
, &delegation
->flags
) == 0) {
1310 /* Update sequence id. */
1311 data
->o_arg
.id
= sp
->so_owner_id
.id
;
1312 data
->o_arg
.clientid
= sp
->so_client
->cl_clientid
;
1313 if (data
->o_arg
.claim
== NFS4_OPEN_CLAIM_PREVIOUS
) {
1314 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_NOATTR
];
1315 nfs_copy_fh(&data
->o_res
.fh
, data
->o_arg
.fh
);
1317 data
->timestamp
= jiffies
;
1318 if (nfs4_setup_sequence(data
->o_arg
.server
->nfs_client
,
1319 &data
->o_arg
.seq_args
,
1320 &data
->o_res
.seq_res
, 1, task
))
1322 rpc_call_start(task
);
1325 task
->tk_action
= NULL
;
1329 static void nfs4_open_done(struct rpc_task
*task
, void *calldata
)
1331 struct nfs4_opendata
*data
= calldata
;
1333 data
->rpc_status
= task
->tk_status
;
1335 nfs4_sequence_done_free_slot(data
->o_arg
.server
, &data
->o_res
.seq_res
,
1338 if (RPC_ASSASSINATED(task
))
1340 if (task
->tk_status
== 0) {
1341 switch (data
->o_res
.f_attr
->mode
& S_IFMT
) {
1345 data
->rpc_status
= -ELOOP
;
1348 data
->rpc_status
= -EISDIR
;
1351 data
->rpc_status
= -ENOTDIR
;
1353 renew_lease(data
->o_res
.server
, data
->timestamp
);
1354 if (!(data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
))
1355 nfs_confirm_seqid(&data
->owner
->so_seqid
, 0);
1360 static void nfs4_open_release(void *calldata
)
1362 struct nfs4_opendata
*data
= calldata
;
1363 struct nfs4_state
*state
= NULL
;
1365 /* If this request hasn't been cancelled, do nothing */
1366 if (data
->cancelled
== 0)
1368 /* In case of error, no cleanup! */
1369 if (data
->rpc_status
!= 0 || !data
->rpc_done
)
1371 /* In case we need an open_confirm, no cleanup! */
1372 if (data
->o_res
.rflags
& NFS4_OPEN_RESULT_CONFIRM
)
1374 state
= nfs4_opendata_to_nfs4_state(data
);
1376 nfs4_close_state(&data
->path
, state
, data
->o_arg
.fmode
);
1378 nfs4_opendata_put(data
);
1381 static const struct rpc_call_ops nfs4_open_ops
= {
1382 .rpc_call_prepare
= nfs4_open_prepare
,
1383 .rpc_call_done
= nfs4_open_done
,
1384 .rpc_release
= nfs4_open_release
,
1388 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
1390 static int _nfs4_proc_open(struct nfs4_opendata
*data
)
1392 struct inode
*dir
= data
->dir
->d_inode
;
1393 struct nfs_server
*server
= NFS_SERVER(dir
);
1394 struct nfs_openargs
*o_arg
= &data
->o_arg
;
1395 struct nfs_openres
*o_res
= &data
->o_res
;
1396 struct rpc_task
*task
;
1397 struct rpc_message msg
= {
1398 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN
],
1401 .rpc_cred
= data
->owner
->so_cred
,
1403 struct rpc_task_setup task_setup_data
= {
1404 .rpc_client
= server
->client
,
1405 .rpc_message
= &msg
,
1406 .callback_ops
= &nfs4_open_ops
,
1407 .callback_data
= data
,
1408 .workqueue
= nfsiod_workqueue
,
1409 .flags
= RPC_TASK_ASYNC
,
1413 kref_get(&data
->kref
);
1415 data
->rpc_status
= 0;
1416 data
->cancelled
= 0;
1417 task
= rpc_run_task(&task_setup_data
);
1419 return PTR_ERR(task
);
1420 status
= nfs4_wait_for_completion_rpc_task(task
);
1422 data
->cancelled
= 1;
1425 status
= data
->rpc_status
;
1427 if (status
!= 0 || !data
->rpc_done
)
1430 if (o_res
->fh
.size
== 0)
1431 _nfs4_proc_lookup(dir
, o_arg
->name
, &o_res
->fh
, o_res
->f_attr
);
1433 if (o_arg
->open_flags
& O_CREAT
) {
1434 update_changeattr(dir
, &o_res
->cinfo
);
1435 nfs_post_op_update_inode(dir
, o_res
->dir_attr
);
1437 nfs_refresh_inode(dir
, o_res
->dir_attr
);
1438 if(o_res
->rflags
& NFS4_OPEN_RESULT_CONFIRM
) {
1439 status
= _nfs4_proc_open_confirm(data
);
1443 if (!(o_res
->f_attr
->valid
& NFS_ATTR_FATTR
))
1444 _nfs4_proc_getattr(server
, &o_res
->fh
, o_res
->f_attr
);
1448 static int nfs4_recover_expired_lease(struct nfs_server
*server
)
1450 struct nfs_client
*clp
= server
->nfs_client
;
1454 for (loop
= NFS4_MAX_LOOP_ON_RECOVER
; loop
!= 0; loop
--) {
1455 ret
= nfs4_wait_clnt_recover(clp
);
1458 if (!test_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
) &&
1459 !test_bit(NFS4CLNT_CHECK_LEASE
,&clp
->cl_state
))
1461 nfs4_schedule_state_recovery(clp
);
1469 * reclaim state on the server after a network partition.
1470 * Assumes caller holds the appropriate lock
1472 static int _nfs4_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1474 struct nfs4_opendata
*opendata
;
1477 opendata
= nfs4_open_recoverdata_alloc(ctx
, state
);
1478 if (IS_ERR(opendata
))
1479 return PTR_ERR(opendata
);
1480 ret
= nfs4_open_recover(opendata
, state
);
1482 d_drop(ctx
->path
.dentry
);
1483 nfs4_opendata_put(opendata
);
1487 static inline int nfs4_do_open_expired(struct nfs_open_context
*ctx
, struct nfs4_state
*state
)
1489 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1490 struct nfs4_exception exception
= { };
1494 err
= _nfs4_open_expired(ctx
, state
);
1495 if (err
!= -NFS4ERR_DELAY
)
1497 nfs4_handle_exception(server
, err
, &exception
);
1498 } while (exception
.retry
);
1502 static int nfs4_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
1504 struct nfs_open_context
*ctx
;
1507 ctx
= nfs4_state_find_open_context(state
);
1509 return PTR_ERR(ctx
);
1510 ret
= nfs4_do_open_expired(ctx
, state
);
1511 put_nfs_open_context(ctx
);
1516 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
1517 * fields corresponding to attributes that were used to store the verifier.
1518 * Make sure we clobber those fields in the later setattr call
1520 static inline void nfs4_exclusive_attrset(struct nfs4_opendata
*opendata
, struct iattr
*sattr
)
1522 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_ACCESS
) &&
1523 !(sattr
->ia_valid
& ATTR_ATIME_SET
))
1524 sattr
->ia_valid
|= ATTR_ATIME
;
1526 if ((opendata
->o_res
.attrset
[1] & FATTR4_WORD1_TIME_MODIFY
) &&
1527 !(sattr
->ia_valid
& ATTR_MTIME_SET
))
1528 sattr
->ia_valid
|= ATTR_MTIME
;
1532 * Returns a referenced nfs4_state
1534 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
)
1536 struct nfs4_state_owner
*sp
;
1537 struct nfs4_state
*state
= NULL
;
1538 struct nfs_server
*server
= NFS_SERVER(dir
);
1539 struct nfs4_opendata
*opendata
;
1542 /* Protect against reboot recovery conflicts */
1544 if (!(sp
= nfs4_get_state_owner(server
, cred
))) {
1545 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
1548 status
= nfs4_recover_expired_lease(server
);
1550 goto err_put_state_owner
;
1551 if (path
->dentry
->d_inode
!= NULL
)
1552 nfs4_return_incompatible_delegation(path
->dentry
->d_inode
, fmode
);
1554 opendata
= nfs4_opendata_alloc(path
, sp
, fmode
, flags
, sattr
);
1555 if (opendata
== NULL
)
1556 goto err_put_state_owner
;
1558 if (path
->dentry
->d_inode
!= NULL
)
1559 opendata
->state
= nfs4_get_open_state(path
->dentry
->d_inode
, sp
);
1561 status
= _nfs4_proc_open(opendata
);
1563 goto err_opendata_put
;
1565 if (opendata
->o_arg
.open_flags
& O_EXCL
)
1566 nfs4_exclusive_attrset(opendata
, sattr
);
1568 state
= nfs4_opendata_to_nfs4_state(opendata
);
1569 status
= PTR_ERR(state
);
1571 goto err_opendata_put
;
1572 nfs4_opendata_put(opendata
);
1573 nfs4_put_state_owner(sp
);
1577 nfs4_opendata_put(opendata
);
1578 err_put_state_owner
:
1579 nfs4_put_state_owner(sp
);
1586 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
)
1588 struct nfs4_exception exception
= { };
1589 struct nfs4_state
*res
;
1593 status
= _nfs4_do_open(dir
, path
, fmode
, flags
, sattr
, cred
, &res
);
1596 /* NOTE: BAD_SEQID means the server and client disagree about the
1597 * book-keeping w.r.t. state-changing operations
1598 * (OPEN/CLOSE/LOCK/LOCKU...)
1599 * It is actually a sign of a bug on the client or on the server.
1601 * If we receive a BAD_SEQID error in the particular case of
1602 * doing an OPEN, we assume that nfs_increment_open_seqid() will
1603 * have unhashed the old state_owner for us, and that we can
1604 * therefore safely retry using a new one. We should still warn
1605 * the user though...
1607 if (status
== -NFS4ERR_BAD_SEQID
) {
1608 printk(KERN_WARNING
"NFS: v4 server %s "
1609 " returned a bad sequence-id error!\n",
1610 NFS_SERVER(dir
)->nfs_client
->cl_hostname
);
1611 exception
.retry
= 1;
1615 * BAD_STATEID on OPEN means that the server cancelled our
1616 * state before it received the OPEN_CONFIRM.
1617 * Recover by retrying the request as per the discussion
1618 * on Page 181 of RFC3530.
1620 if (status
== -NFS4ERR_BAD_STATEID
) {
1621 exception
.retry
= 1;
1624 if (status
== -EAGAIN
) {
1625 /* We must have found a delegation */
1626 exception
.retry
= 1;
1629 res
= ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir
),
1630 status
, &exception
));
1631 } while (exception
.retry
);
1635 static int _nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1636 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1637 struct nfs4_state
*state
)
1639 struct nfs_server
*server
= NFS_SERVER(inode
);
1640 struct nfs_setattrargs arg
= {
1641 .fh
= NFS_FH(inode
),
1644 .bitmask
= server
->attr_bitmask
,
1646 struct nfs_setattrres res
= {
1650 struct rpc_message msg
= {
1651 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETATTR
],
1656 unsigned long timestamp
= jiffies
;
1659 nfs_fattr_init(fattr
);
1661 if (nfs4_copy_delegation_stateid(&arg
.stateid
, inode
)) {
1662 /* Use that stateid */
1663 } else if (state
!= NULL
) {
1664 nfs4_copy_stateid(&arg
.stateid
, state
, current
->files
);
1666 memcpy(&arg
.stateid
, &zero_stateid
, sizeof(arg
.stateid
));
1668 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
1669 if (status
== 0 && state
!= NULL
)
1670 renew_lease(server
, timestamp
);
1674 static int nfs4_do_setattr(struct inode
*inode
, struct rpc_cred
*cred
,
1675 struct nfs_fattr
*fattr
, struct iattr
*sattr
,
1676 struct nfs4_state
*state
)
1678 struct nfs_server
*server
= NFS_SERVER(inode
);
1679 struct nfs4_exception exception
= { };
1682 err
= nfs4_handle_exception(server
,
1683 _nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
),
1685 } while (exception
.retry
);
1689 struct nfs4_closedata
{
1691 struct inode
*inode
;
1692 struct nfs4_state
*state
;
1693 struct nfs_closeargs arg
;
1694 struct nfs_closeres res
;
1695 struct nfs_fattr fattr
;
1696 unsigned long timestamp
;
1699 static void nfs4_free_closedata(void *data
)
1701 struct nfs4_closedata
*calldata
= data
;
1702 struct nfs4_state_owner
*sp
= calldata
->state
->owner
;
1704 nfs4_put_open_state(calldata
->state
);
1705 nfs_free_seqid(calldata
->arg
.seqid
);
1706 nfs4_put_state_owner(sp
);
1707 path_put(&calldata
->path
);
1711 static void nfs4_close_done(struct rpc_task
*task
, void *data
)
1713 struct nfs4_closedata
*calldata
= data
;
1714 struct nfs4_state
*state
= calldata
->state
;
1715 struct nfs_server
*server
= NFS_SERVER(calldata
->inode
);
1717 nfs4_sequence_done(server
, &calldata
->res
.seq_res
, task
->tk_status
);
1718 if (RPC_ASSASSINATED(task
))
1720 /* hmm. we are done with the inode, and in the process of freeing
1721 * the state_owner. we keep this around to process errors
1723 switch (task
->tk_status
) {
1725 nfs_set_open_stateid(state
, &calldata
->res
.stateid
, 0);
1726 renew_lease(server
, calldata
->timestamp
);
1728 case -NFS4ERR_STALE_STATEID
:
1729 case -NFS4ERR_OLD_STATEID
:
1730 case -NFS4ERR_BAD_STATEID
:
1731 case -NFS4ERR_EXPIRED
:
1732 if (calldata
->arg
.fmode
== 0)
1735 if (nfs4_async_handle_error(task
, server
, state
) == -EAGAIN
) {
1736 nfs4_restart_rpc(task
, server
->nfs_client
);
1740 nfs4_sequence_free_slot(server
->nfs_client
, &calldata
->res
.seq_res
);
1741 nfs_refresh_inode(calldata
->inode
, calldata
->res
.fattr
);
1744 static void nfs4_close_prepare(struct rpc_task
*task
, void *data
)
1746 struct nfs4_closedata
*calldata
= data
;
1747 struct nfs4_state
*state
= calldata
->state
;
1748 int clear_rd
, clear_wr
, clear_rdwr
;
1750 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
1753 clear_rd
= clear_wr
= clear_rdwr
= 0;
1754 spin_lock(&state
->owner
->so_lock
);
1755 /* Calculate the change in open mode */
1756 if (state
->n_rdwr
== 0) {
1757 if (state
->n_rdonly
== 0) {
1758 clear_rd
|= test_and_clear_bit(NFS_O_RDONLY_STATE
, &state
->flags
);
1759 clear_rdwr
|= test_and_clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1761 if (state
->n_wronly
== 0) {
1762 clear_wr
|= test_and_clear_bit(NFS_O_WRONLY_STATE
, &state
->flags
);
1763 clear_rdwr
|= test_and_clear_bit(NFS_O_RDWR_STATE
, &state
->flags
);
1766 spin_unlock(&state
->owner
->so_lock
);
1767 if (!clear_rd
&& !clear_wr
&& !clear_rdwr
) {
1768 /* Note: exit _without_ calling nfs4_close_done */
1769 task
->tk_action
= NULL
;
1772 nfs_fattr_init(calldata
->res
.fattr
);
1773 if (test_bit(NFS_O_RDONLY_STATE
, &state
->flags
) != 0) {
1774 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
1775 calldata
->arg
.fmode
= FMODE_READ
;
1776 } else if (test_bit(NFS_O_WRONLY_STATE
, &state
->flags
) != 0) {
1777 task
->tk_msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
1778 calldata
->arg
.fmode
= FMODE_WRITE
;
1780 calldata
->timestamp
= jiffies
;
1781 if (nfs4_setup_sequence((NFS_SERVER(calldata
->inode
))->nfs_client
,
1782 &calldata
->arg
.seq_args
, &calldata
->res
.seq_res
,
1785 rpc_call_start(task
);
1788 static const struct rpc_call_ops nfs4_close_ops
= {
1789 .rpc_call_prepare
= nfs4_close_prepare
,
1790 .rpc_call_done
= nfs4_close_done
,
1791 .rpc_release
= nfs4_free_closedata
,
1795 * It is possible for data to be read/written from a mem-mapped file
1796 * after the sys_close call (which hits the vfs layer as a flush).
1797 * This means that we can't safely call nfsv4 close on a file until
1798 * the inode is cleared. This in turn means that we are not good
1799 * NFSv4 citizens - we do not indicate to the server to update the file's
1800 * share state even when we are done with one of the three share
1801 * stateid's in the inode.
1803 * NOTE: Caller must be holding the sp->so_owner semaphore!
1805 int nfs4_do_close(struct path
*path
, struct nfs4_state
*state
, int wait
)
1807 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
1808 struct nfs4_closedata
*calldata
;
1809 struct nfs4_state_owner
*sp
= state
->owner
;
1810 struct rpc_task
*task
;
1811 struct rpc_message msg
= {
1812 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CLOSE
],
1813 .rpc_cred
= state
->owner
->so_cred
,
1815 struct rpc_task_setup task_setup_data
= {
1816 .rpc_client
= server
->client
,
1817 .rpc_message
= &msg
,
1818 .callback_ops
= &nfs4_close_ops
,
1819 .workqueue
= nfsiod_workqueue
,
1820 .flags
= RPC_TASK_ASYNC
,
1822 int status
= -ENOMEM
;
1824 calldata
= kzalloc(sizeof(*calldata
), GFP_KERNEL
);
1825 if (calldata
== NULL
)
1827 calldata
->inode
= state
->inode
;
1828 calldata
->state
= state
;
1829 calldata
->arg
.fh
= NFS_FH(state
->inode
);
1830 calldata
->arg
.stateid
= &state
->open_stateid
;
1831 if (nfs4_has_session(server
->nfs_client
))
1832 memset(calldata
->arg
.stateid
->data
, 0, 4); /* clear seqid */
1833 /* Serialization for the sequence id */
1834 calldata
->arg
.seqid
= nfs_alloc_seqid(&state
->owner
->so_seqid
);
1835 if (calldata
->arg
.seqid
== NULL
)
1836 goto out_free_calldata
;
1837 calldata
->arg
.fmode
= 0;
1838 calldata
->arg
.bitmask
= server
->cache_consistency_bitmask
;
1839 calldata
->res
.fattr
= &calldata
->fattr
;
1840 calldata
->res
.seqid
= calldata
->arg
.seqid
;
1841 calldata
->res
.server
= server
;
1842 calldata
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
1843 calldata
->path
.mnt
= mntget(path
->mnt
);
1844 calldata
->path
.dentry
= dget(path
->dentry
);
1846 msg
.rpc_argp
= &calldata
->arg
,
1847 msg
.rpc_resp
= &calldata
->res
,
1848 task_setup_data
.callback_data
= calldata
;
1849 task
= rpc_run_task(&task_setup_data
);
1851 return PTR_ERR(task
);
1854 status
= rpc_wait_for_completion_task(task
);
1860 nfs4_put_open_state(state
);
1861 nfs4_put_state_owner(sp
);
1865 static int nfs4_intent_set_file(struct nameidata
*nd
, struct path
*path
, struct nfs4_state
*state
, fmode_t fmode
)
1870 /* If the open_intent is for execute, we have an extra check to make */
1871 if (fmode
& FMODE_EXEC
) {
1872 ret
= nfs_may_open(state
->inode
,
1873 state
->owner
->so_cred
,
1874 nd
->intent
.open
.flags
);
1878 filp
= lookup_instantiate_filp(nd
, path
->dentry
, NULL
);
1879 if (!IS_ERR(filp
)) {
1880 struct nfs_open_context
*ctx
;
1881 ctx
= nfs_file_open_context(filp
);
1885 ret
= PTR_ERR(filp
);
1887 nfs4_close_sync(path
, state
, fmode
& (FMODE_READ
|FMODE_WRITE
));
1892 nfs4_atomic_open(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
1894 struct path path
= {
1895 .mnt
= nd
->path
.mnt
,
1898 struct dentry
*parent
;
1900 struct rpc_cred
*cred
;
1901 struct nfs4_state
*state
;
1903 fmode_t fmode
= nd
->intent
.open
.flags
& (FMODE_READ
| FMODE_WRITE
| FMODE_EXEC
);
1905 if (nd
->flags
& LOOKUP_CREATE
) {
1906 attr
.ia_mode
= nd
->intent
.open
.create_mode
;
1907 attr
.ia_valid
= ATTR_MODE
;
1908 if (!IS_POSIXACL(dir
))
1909 attr
.ia_mode
&= ~current_umask();
1912 BUG_ON(nd
->intent
.open
.flags
& O_CREAT
);
1915 cred
= rpc_lookup_cred();
1917 return (struct dentry
*)cred
;
1918 parent
= dentry
->d_parent
;
1919 /* Protect against concurrent sillydeletes */
1920 nfs_block_sillyrename(parent
);
1921 state
= nfs4_do_open(dir
, &path
, fmode
, nd
->intent
.open
.flags
, &attr
, cred
);
1923 if (IS_ERR(state
)) {
1924 if (PTR_ERR(state
) == -ENOENT
) {
1925 d_add(dentry
, NULL
);
1926 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1928 nfs_unblock_sillyrename(parent
);
1929 return (struct dentry
*)state
;
1931 res
= d_add_unique(dentry
, igrab(state
->inode
));
1934 nfs_set_verifier(path
.dentry
, nfs_save_change_attribute(dir
));
1935 nfs_unblock_sillyrename(parent
);
1936 nfs4_intent_set_file(nd
, &path
, state
, fmode
);
1941 nfs4_open_revalidate(struct inode
*dir
, struct dentry
*dentry
, int openflags
, struct nameidata
*nd
)
1943 struct path path
= {
1944 .mnt
= nd
->path
.mnt
,
1947 struct rpc_cred
*cred
;
1948 struct nfs4_state
*state
;
1949 fmode_t fmode
= openflags
& (FMODE_READ
| FMODE_WRITE
);
1951 cred
= rpc_lookup_cred();
1953 return PTR_ERR(cred
);
1954 state
= nfs4_do_open(dir
, &path
, fmode
, openflags
, NULL
, cred
);
1956 if (IS_ERR(state
)) {
1957 switch (PTR_ERR(state
)) {
1963 lookup_instantiate_filp(nd
, (struct dentry
*)state
, NULL
);
1969 if (state
->inode
== dentry
->d_inode
) {
1970 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
1971 nfs4_intent_set_file(nd
, &path
, state
, fmode
);
1974 nfs4_close_sync(&path
, state
, fmode
);
1980 void nfs4_close_context(struct nfs_open_context
*ctx
, int is_sync
)
1982 if (ctx
->state
== NULL
)
1985 nfs4_close_sync(&ctx
->path
, ctx
->state
, ctx
->mode
);
1987 nfs4_close_state(&ctx
->path
, ctx
->state
, ctx
->mode
);
1990 static int _nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
1992 struct nfs4_server_caps_arg args
= {
1995 struct nfs4_server_caps_res res
= {};
1996 struct rpc_message msg
= {
1997 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SERVER_CAPS
],
2003 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2005 memcpy(server
->attr_bitmask
, res
.attr_bitmask
, sizeof(server
->attr_bitmask
));
2006 if (res
.attr_bitmask
[0] & FATTR4_WORD0_ACL
)
2007 server
->caps
|= NFS_CAP_ACLS
;
2008 if (res
.has_links
!= 0)
2009 server
->caps
|= NFS_CAP_HARDLINKS
;
2010 if (res
.has_symlinks
!= 0)
2011 server
->caps
|= NFS_CAP_SYMLINKS
;
2012 memcpy(server
->cache_consistency_bitmask
, res
.attr_bitmask
, sizeof(server
->cache_consistency_bitmask
));
2013 server
->cache_consistency_bitmask
[0] &= FATTR4_WORD0_CHANGE
|FATTR4_WORD0_SIZE
;
2014 server
->cache_consistency_bitmask
[1] &= FATTR4_WORD1_TIME_METADATA
|FATTR4_WORD1_TIME_MODIFY
;
2015 server
->acl_bitmask
= res
.acl_bitmask
;
2021 int nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
2023 struct nfs4_exception exception
= { };
2026 err
= nfs4_handle_exception(server
,
2027 _nfs4_server_capabilities(server
, fhandle
),
2029 } while (exception
.retry
);
2033 static int _nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2034 struct nfs_fsinfo
*info
)
2036 struct nfs4_lookup_root_arg args
= {
2037 .bitmask
= nfs4_fattr_bitmap
,
2039 struct nfs4_lookup_res res
= {
2041 .fattr
= info
->fattr
,
2044 struct rpc_message msg
= {
2045 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP_ROOT
],
2050 nfs_fattr_init(info
->fattr
);
2051 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2054 static int nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2055 struct nfs_fsinfo
*info
)
2057 struct nfs4_exception exception
= { };
2060 err
= nfs4_handle_exception(server
,
2061 _nfs4_lookup_root(server
, fhandle
, info
),
2063 } while (exception
.retry
);
2068 * get the file handle for the "/" directory on the server
2070 static int nfs4_proc_get_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2071 struct nfs_fsinfo
*info
)
2075 status
= nfs4_lookup_root(server
, fhandle
, info
);
2077 status
= nfs4_server_capabilities(server
, fhandle
);
2079 status
= nfs4_do_fsinfo(server
, fhandle
, info
);
2080 return nfs4_map_errors(status
);
2084 * Get locations and (maybe) other attributes of a referral.
2085 * Note that we'll actually follow the referral later when
2086 * we detect fsid mismatch in inode revalidation
2088 static int nfs4_get_referral(struct inode
*dir
, const struct qstr
*name
, struct nfs_fattr
*fattr
, struct nfs_fh
*fhandle
)
2090 int status
= -ENOMEM
;
2091 struct page
*page
= NULL
;
2092 struct nfs4_fs_locations
*locations
= NULL
;
2094 page
= alloc_page(GFP_KERNEL
);
2097 locations
= kmalloc(sizeof(struct nfs4_fs_locations
), GFP_KERNEL
);
2098 if (locations
== NULL
)
2101 status
= nfs4_proc_fs_locations(dir
, name
, locations
, page
);
2104 /* Make sure server returned a different fsid for the referral */
2105 if (nfs_fsid_equal(&NFS_SERVER(dir
)->fsid
, &locations
->fattr
.fsid
)) {
2106 dprintk("%s: server did not return a different fsid for a referral at %s\n", __func__
, name
->name
);
2111 memcpy(fattr
, &locations
->fattr
, sizeof(struct nfs_fattr
));
2112 fattr
->valid
|= NFS_ATTR_FATTR_V4_REFERRAL
;
2114 fattr
->mode
= S_IFDIR
;
2115 memset(fhandle
, 0, sizeof(struct nfs_fh
));
2124 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2126 struct nfs4_getattr_arg args
= {
2128 .bitmask
= server
->attr_bitmask
,
2130 struct nfs4_getattr_res res
= {
2134 struct rpc_message msg
= {
2135 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETATTR
],
2140 nfs_fattr_init(fattr
);
2141 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2144 static int nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2146 struct nfs4_exception exception
= { };
2149 err
= nfs4_handle_exception(server
,
2150 _nfs4_proc_getattr(server
, fhandle
, fattr
),
2152 } while (exception
.retry
);
2157 * The file is not closed if it is opened due to the a request to change
2158 * the size of the file. The open call will not be needed once the
2159 * VFS layer lookup-intents are implemented.
2161 * Close is called when the inode is destroyed.
2162 * If we haven't opened the file for O_WRONLY, we
2163 * need to in the size_change case to obtain a stateid.
2166 * Because OPEN is always done by name in nfsv4, it is
2167 * possible that we opened a different file by the same
2168 * name. We can recognize this race condition, but we
2169 * can't do anything about it besides returning an error.
2171 * This will be fixed with VFS changes (lookup-intent).
2174 nfs4_proc_setattr(struct dentry
*dentry
, struct nfs_fattr
*fattr
,
2175 struct iattr
*sattr
)
2177 struct inode
*inode
= dentry
->d_inode
;
2178 struct rpc_cred
*cred
= NULL
;
2179 struct nfs4_state
*state
= NULL
;
2182 nfs_fattr_init(fattr
);
2184 /* Search for an existing open(O_WRITE) file */
2185 if (sattr
->ia_valid
& ATTR_FILE
) {
2186 struct nfs_open_context
*ctx
;
2188 ctx
= nfs_file_open_context(sattr
->ia_file
);
2195 status
= nfs4_do_setattr(inode
, cred
, fattr
, sattr
, state
);
2197 nfs_setattr_update_inode(inode
, sattr
);
2201 static int _nfs4_proc_lookupfh(struct nfs_server
*server
, const struct nfs_fh
*dirfh
,
2202 const struct qstr
*name
, struct nfs_fh
*fhandle
,
2203 struct nfs_fattr
*fattr
)
2206 struct nfs4_lookup_arg args
= {
2207 .bitmask
= server
->attr_bitmask
,
2211 struct nfs4_lookup_res res
= {
2216 struct rpc_message msg
= {
2217 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP
],
2222 nfs_fattr_init(fattr
);
2224 dprintk("NFS call lookupfh %s\n", name
->name
);
2225 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2226 dprintk("NFS reply lookupfh: %d\n", status
);
2230 static int nfs4_proc_lookupfh(struct nfs_server
*server
, struct nfs_fh
*dirfh
,
2231 struct qstr
*name
, struct nfs_fh
*fhandle
,
2232 struct nfs_fattr
*fattr
)
2234 struct nfs4_exception exception
= { };
2237 err
= _nfs4_proc_lookupfh(server
, dirfh
, name
, fhandle
, fattr
);
2239 if (err
== -NFS4ERR_MOVED
) {
2243 err
= nfs4_handle_exception(server
, err
, &exception
);
2244 } while (exception
.retry
);
2248 static int _nfs4_proc_lookup(struct inode
*dir
, const struct qstr
*name
,
2249 struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2253 dprintk("NFS call lookup %s\n", name
->name
);
2254 status
= _nfs4_proc_lookupfh(NFS_SERVER(dir
), NFS_FH(dir
), name
, fhandle
, fattr
);
2255 if (status
== -NFS4ERR_MOVED
)
2256 status
= nfs4_get_referral(dir
, name
, fattr
, fhandle
);
2257 dprintk("NFS reply lookup: %d\n", status
);
2261 static int nfs4_proc_lookup(struct inode
*dir
, struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
2263 struct nfs4_exception exception
= { };
2266 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2267 _nfs4_proc_lookup(dir
, name
, fhandle
, fattr
),
2269 } while (exception
.retry
);
2273 static int _nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2275 struct nfs_server
*server
= NFS_SERVER(inode
);
2276 struct nfs_fattr fattr
;
2277 struct nfs4_accessargs args
= {
2278 .fh
= NFS_FH(inode
),
2279 .bitmask
= server
->attr_bitmask
,
2281 struct nfs4_accessres res
= {
2285 struct rpc_message msg
= {
2286 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_ACCESS
],
2289 .rpc_cred
= entry
->cred
,
2291 int mode
= entry
->mask
;
2295 * Determine which access bits we want to ask for...
2297 if (mode
& MAY_READ
)
2298 args
.access
|= NFS4_ACCESS_READ
;
2299 if (S_ISDIR(inode
->i_mode
)) {
2300 if (mode
& MAY_WRITE
)
2301 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
;
2302 if (mode
& MAY_EXEC
)
2303 args
.access
|= NFS4_ACCESS_LOOKUP
;
2305 if (mode
& MAY_WRITE
)
2306 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
;
2307 if (mode
& MAY_EXEC
)
2308 args
.access
|= NFS4_ACCESS_EXECUTE
;
2310 nfs_fattr_init(&fattr
);
2311 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2314 if (res
.access
& NFS4_ACCESS_READ
)
2315 entry
->mask
|= MAY_READ
;
2316 if (res
.access
& (NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
))
2317 entry
->mask
|= MAY_WRITE
;
2318 if (res
.access
& (NFS4_ACCESS_LOOKUP
|NFS4_ACCESS_EXECUTE
))
2319 entry
->mask
|= MAY_EXEC
;
2320 nfs_refresh_inode(inode
, &fattr
);
2325 static int nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
2327 struct nfs4_exception exception
= { };
2330 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2331 _nfs4_proc_access(inode
, entry
),
2333 } while (exception
.retry
);
2338 * TODO: For the time being, we don't try to get any attributes
2339 * along with any of the zero-copy operations READ, READDIR,
2342 * In the case of the first three, we want to put the GETATTR
2343 * after the read-type operation -- this is because it is hard
2344 * to predict the length of a GETATTR response in v4, and thus
2345 * align the READ data correctly. This means that the GETATTR
2346 * may end up partially falling into the page cache, and we should
2347 * shift it into the 'tail' of the xdr_buf before processing.
2348 * To do this efficiently, we need to know the total length
2349 * of data received, which doesn't seem to be available outside
2352 * In the case of WRITE, we also want to put the GETATTR after
2353 * the operation -- in this case because we want to make sure
2354 * we get the post-operation mtime and size. This means that
2355 * we can't use xdr_encode_pages() as written: we need a variant
2356 * of it which would leave room in the 'tail' iovec.
2358 * Both of these changes to the XDR layer would in fact be quite
2359 * minor, but I decided to leave them for a subsequent patch.
2361 static int _nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2362 unsigned int pgbase
, unsigned int pglen
)
2364 struct nfs4_readlink args
= {
2365 .fh
= NFS_FH(inode
),
2370 struct nfs4_readlink_res res
;
2371 struct rpc_message msg
= {
2372 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READLINK
],
2377 return nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
2380 static int nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
2381 unsigned int pgbase
, unsigned int pglen
)
2383 struct nfs4_exception exception
= { };
2386 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2387 _nfs4_proc_readlink(inode
, page
, pgbase
, pglen
),
2389 } while (exception
.retry
);
2395 * We will need to arrange for the VFS layer to provide an atomic open.
2396 * Until then, this create/open method is prone to inefficiency and race
2397 * conditions due to the lookup, create, and open VFS calls from sys_open()
2398 * placed on the wire.
2400 * Given the above sorry state of affairs, I'm simply sending an OPEN.
2401 * The file will be opened again in the subsequent VFS open call
2402 * (nfs4_proc_file_open).
2404 * The open for read will just hang around to be used by any process that
2405 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
2409 nfs4_proc_create(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
2410 int flags
, struct nameidata
*nd
)
2412 struct path path
= {
2413 .mnt
= nd
->path
.mnt
,
2416 struct nfs4_state
*state
;
2417 struct rpc_cred
*cred
;
2418 fmode_t fmode
= flags
& (FMODE_READ
| FMODE_WRITE
);
2421 cred
= rpc_lookup_cred();
2423 status
= PTR_ERR(cred
);
2426 state
= nfs4_do_open(dir
, &path
, fmode
, flags
, sattr
, cred
);
2428 if (IS_ERR(state
)) {
2429 status
= PTR_ERR(state
);
2432 d_add(dentry
, igrab(state
->inode
));
2433 nfs_set_verifier(dentry
, nfs_save_change_attribute(dir
));
2434 if (flags
& O_EXCL
) {
2435 struct nfs_fattr fattr
;
2436 status
= nfs4_do_setattr(state
->inode
, cred
, &fattr
, sattr
, state
);
2438 nfs_setattr_update_inode(state
->inode
, sattr
);
2439 nfs_post_op_update_inode(state
->inode
, &fattr
);
2441 if (status
== 0 && (nd
->flags
& LOOKUP_OPEN
) != 0)
2442 status
= nfs4_intent_set_file(nd
, &path
, state
, fmode
);
2444 nfs4_close_sync(&path
, state
, fmode
);
2451 static int _nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2453 struct nfs_server
*server
= NFS_SERVER(dir
);
2454 struct nfs_removeargs args
= {
2456 .name
.len
= name
->len
,
2457 .name
.name
= name
->name
,
2458 .bitmask
= server
->attr_bitmask
,
2460 struct nfs_removeres res
= {
2463 struct rpc_message msg
= {
2464 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
],
2470 nfs_fattr_init(&res
.dir_attr
);
2471 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 1);
2473 update_changeattr(dir
, &res
.cinfo
);
2474 nfs_post_op_update_inode(dir
, &res
.dir_attr
);
2479 static int nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
2481 struct nfs4_exception exception
= { };
2484 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2485 _nfs4_proc_remove(dir
, name
),
2487 } while (exception
.retry
);
2491 static void nfs4_proc_unlink_setup(struct rpc_message
*msg
, struct inode
*dir
)
2493 struct nfs_server
*server
= NFS_SERVER(dir
);
2494 struct nfs_removeargs
*args
= msg
->rpc_argp
;
2495 struct nfs_removeres
*res
= msg
->rpc_resp
;
2497 args
->bitmask
= server
->cache_consistency_bitmask
;
2498 res
->server
= server
;
2499 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
];
2502 static int nfs4_proc_unlink_done(struct rpc_task
*task
, struct inode
*dir
)
2504 struct nfs_removeres
*res
= task
->tk_msg
.rpc_resp
;
2506 nfs4_sequence_done(res
->server
, &res
->seq_res
, task
->tk_status
);
2507 if (nfs4_async_handle_error(task
, res
->server
, NULL
) == -EAGAIN
)
2509 nfs4_sequence_free_slot(res
->server
->nfs_client
, &res
->seq_res
);
2510 update_changeattr(dir
, &res
->cinfo
);
2511 nfs_post_op_update_inode(dir
, &res
->dir_attr
);
2515 static int _nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2516 struct inode
*new_dir
, struct qstr
*new_name
)
2518 struct nfs_server
*server
= NFS_SERVER(old_dir
);
2519 struct nfs4_rename_arg arg
= {
2520 .old_dir
= NFS_FH(old_dir
),
2521 .new_dir
= NFS_FH(new_dir
),
2522 .old_name
= old_name
,
2523 .new_name
= new_name
,
2524 .bitmask
= server
->attr_bitmask
,
2526 struct nfs_fattr old_fattr
, new_fattr
;
2527 struct nfs4_rename_res res
= {
2529 .old_fattr
= &old_fattr
,
2530 .new_fattr
= &new_fattr
,
2532 struct rpc_message msg
= {
2533 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENAME
],
2539 nfs_fattr_init(res
.old_fattr
);
2540 nfs_fattr_init(res
.new_fattr
);
2541 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2544 update_changeattr(old_dir
, &res
.old_cinfo
);
2545 nfs_post_op_update_inode(old_dir
, res
.old_fattr
);
2546 update_changeattr(new_dir
, &res
.new_cinfo
);
2547 nfs_post_op_update_inode(new_dir
, res
.new_fattr
);
2552 static int nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
2553 struct inode
*new_dir
, struct qstr
*new_name
)
2555 struct nfs4_exception exception
= { };
2558 err
= nfs4_handle_exception(NFS_SERVER(old_dir
),
2559 _nfs4_proc_rename(old_dir
, old_name
,
2562 } while (exception
.retry
);
2566 static int _nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2568 struct nfs_server
*server
= NFS_SERVER(inode
);
2569 struct nfs4_link_arg arg
= {
2570 .fh
= NFS_FH(inode
),
2571 .dir_fh
= NFS_FH(dir
),
2573 .bitmask
= server
->attr_bitmask
,
2575 struct nfs_fattr fattr
, dir_attr
;
2576 struct nfs4_link_res res
= {
2579 .dir_attr
= &dir_attr
,
2581 struct rpc_message msg
= {
2582 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LINK
],
2588 nfs_fattr_init(res
.fattr
);
2589 nfs_fattr_init(res
.dir_attr
);
2590 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
2592 update_changeattr(dir
, &res
.cinfo
);
2593 nfs_post_op_update_inode(dir
, res
.dir_attr
);
2594 nfs_post_op_update_inode(inode
, res
.fattr
);
2600 static int nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
2602 struct nfs4_exception exception
= { };
2605 err
= nfs4_handle_exception(NFS_SERVER(inode
),
2606 _nfs4_proc_link(inode
, dir
, name
),
2608 } while (exception
.retry
);
2612 struct nfs4_createdata
{
2613 struct rpc_message msg
;
2614 struct nfs4_create_arg arg
;
2615 struct nfs4_create_res res
;
2617 struct nfs_fattr fattr
;
2618 struct nfs_fattr dir_fattr
;
2621 static struct nfs4_createdata
*nfs4_alloc_createdata(struct inode
*dir
,
2622 struct qstr
*name
, struct iattr
*sattr
, u32 ftype
)
2624 struct nfs4_createdata
*data
;
2626 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
2628 struct nfs_server
*server
= NFS_SERVER(dir
);
2630 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE
];
2631 data
->msg
.rpc_argp
= &data
->arg
;
2632 data
->msg
.rpc_resp
= &data
->res
;
2633 data
->arg
.dir_fh
= NFS_FH(dir
);
2634 data
->arg
.server
= server
;
2635 data
->arg
.name
= name
;
2636 data
->arg
.attrs
= sattr
;
2637 data
->arg
.ftype
= ftype
;
2638 data
->arg
.bitmask
= server
->attr_bitmask
;
2639 data
->res
.server
= server
;
2640 data
->res
.fh
= &data
->fh
;
2641 data
->res
.fattr
= &data
->fattr
;
2642 data
->res
.dir_fattr
= &data
->dir_fattr
;
2643 nfs_fattr_init(data
->res
.fattr
);
2644 nfs_fattr_init(data
->res
.dir_fattr
);
2649 static int nfs4_do_create(struct inode
*dir
, struct dentry
*dentry
, struct nfs4_createdata
*data
)
2651 int status
= nfs4_call_sync(NFS_SERVER(dir
), &data
->msg
,
2652 &data
->arg
, &data
->res
, 1);
2654 update_changeattr(dir
, &data
->res
.dir_cinfo
);
2655 nfs_post_op_update_inode(dir
, data
->res
.dir_fattr
);
2656 status
= nfs_instantiate(dentry
, data
->res
.fh
, data
->res
.fattr
);
2661 static void nfs4_free_createdata(struct nfs4_createdata
*data
)
2666 static int _nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2667 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2669 struct nfs4_createdata
*data
;
2670 int status
= -ENAMETOOLONG
;
2672 if (len
> NFS4_MAXPATHLEN
)
2676 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4LNK
);
2680 data
->msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SYMLINK
];
2681 data
->arg
.u
.symlink
.pages
= &page
;
2682 data
->arg
.u
.symlink
.len
= len
;
2684 status
= nfs4_do_create(dir
, dentry
, data
);
2686 nfs4_free_createdata(data
);
2691 static int nfs4_proc_symlink(struct inode
*dir
, struct dentry
*dentry
,
2692 struct page
*page
, unsigned int len
, struct iattr
*sattr
)
2694 struct nfs4_exception exception
= { };
2697 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2698 _nfs4_proc_symlink(dir
, dentry
, page
,
2701 } while (exception
.retry
);
2705 static int _nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2706 struct iattr
*sattr
)
2708 struct nfs4_createdata
*data
;
2709 int status
= -ENOMEM
;
2711 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4DIR
);
2715 status
= nfs4_do_create(dir
, dentry
, data
);
2717 nfs4_free_createdata(data
);
2722 static int nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
2723 struct iattr
*sattr
)
2725 struct nfs4_exception exception
= { };
2728 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2729 _nfs4_proc_mkdir(dir
, dentry
, sattr
),
2731 } while (exception
.retry
);
2735 static int _nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2736 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
2738 struct inode
*dir
= dentry
->d_inode
;
2739 struct nfs4_readdir_arg args
= {
2744 .bitmask
= NFS_SERVER(dentry
->d_inode
)->cache_consistency_bitmask
,
2746 struct nfs4_readdir_res res
;
2747 struct rpc_message msg
= {
2748 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READDIR
],
2755 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __func__
,
2756 dentry
->d_parent
->d_name
.name
,
2757 dentry
->d_name
.name
,
2758 (unsigned long long)cookie
);
2759 nfs4_setup_readdir(cookie
, NFS_COOKIEVERF(dir
), dentry
, &args
);
2760 res
.pgbase
= args
.pgbase
;
2761 status
= nfs4_call_sync(NFS_SERVER(dir
), &msg
, &args
, &res
, 0);
2763 memcpy(NFS_COOKIEVERF(dir
), res
.verifier
.data
, NFS4_VERIFIER_SIZE
);
2765 nfs_invalidate_atime(dir
);
2767 dprintk("%s: returns %d\n", __func__
, status
);
2771 static int nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
2772 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
2774 struct nfs4_exception exception
= { };
2777 err
= nfs4_handle_exception(NFS_SERVER(dentry
->d_inode
),
2778 _nfs4_proc_readdir(dentry
, cred
, cookie
,
2781 } while (exception
.retry
);
2785 static int _nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2786 struct iattr
*sattr
, dev_t rdev
)
2788 struct nfs4_createdata
*data
;
2789 int mode
= sattr
->ia_mode
;
2790 int status
= -ENOMEM
;
2792 BUG_ON(!(sattr
->ia_valid
& ATTR_MODE
));
2793 BUG_ON(!S_ISFIFO(mode
) && !S_ISBLK(mode
) && !S_ISCHR(mode
) && !S_ISSOCK(mode
));
2795 data
= nfs4_alloc_createdata(dir
, &dentry
->d_name
, sattr
, NF4SOCK
);
2800 data
->arg
.ftype
= NF4FIFO
;
2801 else if (S_ISBLK(mode
)) {
2802 data
->arg
.ftype
= NF4BLK
;
2803 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2804 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2806 else if (S_ISCHR(mode
)) {
2807 data
->arg
.ftype
= NF4CHR
;
2808 data
->arg
.u
.device
.specdata1
= MAJOR(rdev
);
2809 data
->arg
.u
.device
.specdata2
= MINOR(rdev
);
2812 status
= nfs4_do_create(dir
, dentry
, data
);
2814 nfs4_free_createdata(data
);
2819 static int nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
2820 struct iattr
*sattr
, dev_t rdev
)
2822 struct nfs4_exception exception
= { };
2825 err
= nfs4_handle_exception(NFS_SERVER(dir
),
2826 _nfs4_proc_mknod(dir
, dentry
, sattr
, rdev
),
2828 } while (exception
.retry
);
2832 static int _nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2833 struct nfs_fsstat
*fsstat
)
2835 struct nfs4_statfs_arg args
= {
2837 .bitmask
= server
->attr_bitmask
,
2839 struct nfs4_statfs_res res
= {
2842 struct rpc_message msg
= {
2843 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_STATFS
],
2848 nfs_fattr_init(fsstat
->fattr
);
2849 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2852 static int nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsstat
*fsstat
)
2854 struct nfs4_exception exception
= { };
2857 err
= nfs4_handle_exception(server
,
2858 _nfs4_proc_statfs(server
, fhandle
, fsstat
),
2860 } while (exception
.retry
);
2864 static int _nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2865 struct nfs_fsinfo
*fsinfo
)
2867 struct nfs4_fsinfo_arg args
= {
2869 .bitmask
= server
->attr_bitmask
,
2871 struct nfs4_fsinfo_res res
= {
2874 struct rpc_message msg
= {
2875 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FSINFO
],
2880 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2883 static int nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
2885 struct nfs4_exception exception
= { };
2889 err
= nfs4_handle_exception(server
,
2890 _nfs4_do_fsinfo(server
, fhandle
, fsinfo
),
2892 } while (exception
.retry
);
2896 static int nfs4_proc_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
2898 nfs_fattr_init(fsinfo
->fattr
);
2899 return nfs4_do_fsinfo(server
, fhandle
, fsinfo
);
2902 static int _nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2903 struct nfs_pathconf
*pathconf
)
2905 struct nfs4_pathconf_arg args
= {
2907 .bitmask
= server
->attr_bitmask
,
2909 struct nfs4_pathconf_res res
= {
2910 .pathconf
= pathconf
,
2912 struct rpc_message msg
= {
2913 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_PATHCONF
],
2918 /* None of the pathconf attributes are mandatory to implement */
2919 if ((args
.bitmask
[0] & nfs4_pathconf_bitmap
[0]) == 0) {
2920 memset(pathconf
, 0, sizeof(*pathconf
));
2924 nfs_fattr_init(pathconf
->fattr
);
2925 return nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
2928 static int nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
2929 struct nfs_pathconf
*pathconf
)
2931 struct nfs4_exception exception
= { };
2935 err
= nfs4_handle_exception(server
,
2936 _nfs4_proc_pathconf(server
, fhandle
, pathconf
),
2938 } while (exception
.retry
);
2942 static int nfs4_read_done(struct rpc_task
*task
, struct nfs_read_data
*data
)
2944 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
2946 dprintk("--> %s\n", __func__
);
2948 /* nfs4_sequence_free_slot called in the read rpc_call_done */
2949 nfs4_sequence_done(server
, &data
->res
.seq_res
, task
->tk_status
);
2951 if (nfs4_async_handle_error(task
, server
, data
->args
.context
->state
) == -EAGAIN
) {
2952 nfs4_restart_rpc(task
, server
->nfs_client
);
2956 nfs_invalidate_atime(data
->inode
);
2957 if (task
->tk_status
> 0)
2958 renew_lease(server
, data
->timestamp
);
2962 static void nfs4_proc_read_setup(struct nfs_read_data
*data
, struct rpc_message
*msg
)
2964 data
->timestamp
= jiffies
;
2965 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READ
];
2968 static int nfs4_write_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
2970 struct inode
*inode
= data
->inode
;
2972 /* slot is freed in nfs_writeback_done */
2973 nfs4_sequence_done(NFS_SERVER(inode
), &data
->res
.seq_res
,
2976 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), data
->args
.context
->state
) == -EAGAIN
) {
2977 nfs4_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
2980 if (task
->tk_status
>= 0) {
2981 renew_lease(NFS_SERVER(inode
), data
->timestamp
);
2982 nfs_post_op_update_inode_force_wcc(inode
, data
->res
.fattr
);
2987 static void nfs4_proc_write_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
2989 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
2991 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
2992 data
->res
.server
= server
;
2993 data
->timestamp
= jiffies
;
2995 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_WRITE
];
2998 static int nfs4_commit_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
3000 struct inode
*inode
= data
->inode
;
3002 nfs4_sequence_done(NFS_SERVER(inode
), &data
->res
.seq_res
,
3004 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
), NULL
) == -EAGAIN
) {
3005 nfs4_restart_rpc(task
, NFS_SERVER(inode
)->nfs_client
);
3008 nfs4_sequence_free_slot(NFS_SERVER(inode
)->nfs_client
,
3009 &data
->res
.seq_res
);
3010 nfs_refresh_inode(inode
, data
->res
.fattr
);
3014 static void nfs4_proc_commit_setup(struct nfs_write_data
*data
, struct rpc_message
*msg
)
3016 struct nfs_server
*server
= NFS_SERVER(data
->inode
);
3018 data
->args
.bitmask
= server
->cache_consistency_bitmask
;
3019 data
->res
.server
= server
;
3020 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_COMMIT
];
3024 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
3025 * standalone procedure for queueing an asynchronous RENEW.
3027 static void nfs4_renew_done(struct rpc_task
*task
, void *data
)
3029 struct nfs_client
*clp
= (struct nfs_client
*)task
->tk_msg
.rpc_argp
;
3030 unsigned long timestamp
= (unsigned long)data
;
3032 if (task
->tk_status
< 0) {
3033 /* Unless we're shutting down, schedule state recovery! */
3034 if (test_bit(NFS_CS_RENEWD
, &clp
->cl_res_state
) != 0)
3035 nfs4_schedule_state_recovery(clp
);
3038 spin_lock(&clp
->cl_lock
);
3039 if (time_before(clp
->cl_last_renewal
,timestamp
))
3040 clp
->cl_last_renewal
= timestamp
;
3041 spin_unlock(&clp
->cl_lock
);
3042 dprintk("%s calling put_rpccred on rpc_cred %p\n", __func__
,
3043 task
->tk_msg
.rpc_cred
);
3044 put_rpccred(task
->tk_msg
.rpc_cred
);
3047 static const struct rpc_call_ops nfs4_renew_ops
= {
3048 .rpc_call_done
= nfs4_renew_done
,
3051 int nfs4_proc_async_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3053 struct rpc_message msg
= {
3054 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3059 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
3060 &nfs4_renew_ops
, (void *)jiffies
);
3063 int nfs4_proc_renew(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3065 struct rpc_message msg
= {
3066 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
3070 unsigned long now
= jiffies
;
3073 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3076 spin_lock(&clp
->cl_lock
);
3077 if (time_before(clp
->cl_last_renewal
,now
))
3078 clp
->cl_last_renewal
= now
;
3079 spin_unlock(&clp
->cl_lock
);
3083 static inline int nfs4_server_supports_acls(struct nfs_server
*server
)
3085 return (server
->caps
& NFS_CAP_ACLS
)
3086 && (server
->acl_bitmask
& ACL4_SUPPORT_ALLOW_ACL
)
3087 && (server
->acl_bitmask
& ACL4_SUPPORT_DENY_ACL
);
3090 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
3091 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
3094 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
3096 static void buf_to_pages(const void *buf
, size_t buflen
,
3097 struct page
**pages
, unsigned int *pgbase
)
3099 const void *p
= buf
;
3101 *pgbase
= offset_in_page(buf
);
3103 while (p
< buf
+ buflen
) {
3104 *(pages
++) = virt_to_page(p
);
3105 p
+= PAGE_CACHE_SIZE
;
3109 struct nfs4_cached_acl
{
3115 static void nfs4_set_cached_acl(struct inode
*inode
, struct nfs4_cached_acl
*acl
)
3117 struct nfs_inode
*nfsi
= NFS_I(inode
);
3119 spin_lock(&inode
->i_lock
);
3120 kfree(nfsi
->nfs4_acl
);
3121 nfsi
->nfs4_acl
= acl
;
3122 spin_unlock(&inode
->i_lock
);
3125 static void nfs4_zap_acl_attr(struct inode
*inode
)
3127 nfs4_set_cached_acl(inode
, NULL
);
3130 static inline ssize_t
nfs4_read_cached_acl(struct inode
*inode
, char *buf
, size_t buflen
)
3132 struct nfs_inode
*nfsi
= NFS_I(inode
);
3133 struct nfs4_cached_acl
*acl
;
3136 spin_lock(&inode
->i_lock
);
3137 acl
= nfsi
->nfs4_acl
;
3140 if (buf
== NULL
) /* user is just asking for length */
3142 if (acl
->cached
== 0)
3144 ret
= -ERANGE
; /* see getxattr(2) man page */
3145 if (acl
->len
> buflen
)
3147 memcpy(buf
, acl
->data
, acl
->len
);
3151 spin_unlock(&inode
->i_lock
);
3155 static void nfs4_write_cached_acl(struct inode
*inode
, const char *buf
, size_t acl_len
)
3157 struct nfs4_cached_acl
*acl
;
3159 if (buf
&& acl_len
<= PAGE_SIZE
) {
3160 acl
= kmalloc(sizeof(*acl
) + acl_len
, GFP_KERNEL
);
3164 memcpy(acl
->data
, buf
, acl_len
);
3166 acl
= kmalloc(sizeof(*acl
), GFP_KERNEL
);
3173 nfs4_set_cached_acl(inode
, acl
);
3176 static ssize_t
__nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3178 struct page
*pages
[NFS4ACL_MAXPAGES
];
3179 struct nfs_getaclargs args
= {
3180 .fh
= NFS_FH(inode
),
3184 struct nfs_getaclres res
= {
3188 struct rpc_message msg
= {
3189 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETACL
],
3193 struct page
*localpage
= NULL
;
3196 if (buflen
< PAGE_SIZE
) {
3197 /* As long as we're doing a round trip to the server anyway,
3198 * let's be prepared for a page of acl data. */
3199 localpage
= alloc_page(GFP_KERNEL
);
3200 resp_buf
= page_address(localpage
);
3201 if (localpage
== NULL
)
3203 args
.acl_pages
[0] = localpage
;
3204 args
.acl_pgbase
= 0;
3205 args
.acl_len
= PAGE_SIZE
;
3208 buf_to_pages(buf
, buflen
, args
.acl_pages
, &args
.acl_pgbase
);
3210 ret
= nfs4_call_sync(NFS_SERVER(inode
), &msg
, &args
, &res
, 0);
3213 if (res
.acl_len
> args
.acl_len
)
3214 nfs4_write_cached_acl(inode
, NULL
, res
.acl_len
);
3216 nfs4_write_cached_acl(inode
, resp_buf
, res
.acl_len
);
3219 if (res
.acl_len
> buflen
)
3222 memcpy(buf
, resp_buf
, res
.acl_len
);
3227 __free_page(localpage
);
3231 static ssize_t
nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
3233 struct nfs4_exception exception
= { };
3236 ret
= __nfs4_get_acl_uncached(inode
, buf
, buflen
);
3239 ret
= nfs4_handle_exception(NFS_SERVER(inode
), ret
, &exception
);
3240 } while (exception
.retry
);
3244 static ssize_t
nfs4_proc_get_acl(struct inode
*inode
, void *buf
, size_t buflen
)
3246 struct nfs_server
*server
= NFS_SERVER(inode
);
3249 if (!nfs4_server_supports_acls(server
))
3251 ret
= nfs_revalidate_inode(server
, inode
);
3254 ret
= nfs4_read_cached_acl(inode
, buf
, buflen
);
3257 return nfs4_get_acl_uncached(inode
, buf
, buflen
);
3260 static int __nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3262 struct nfs_server
*server
= NFS_SERVER(inode
);
3263 struct page
*pages
[NFS4ACL_MAXPAGES
];
3264 struct nfs_setaclargs arg
= {
3265 .fh
= NFS_FH(inode
),
3269 struct nfs_setaclres res
;
3270 struct rpc_message msg
= {
3271 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETACL
],
3277 if (!nfs4_server_supports_acls(server
))
3279 nfs_inode_return_delegation(inode
);
3280 buf_to_pages(buf
, buflen
, arg
.acl_pages
, &arg
.acl_pgbase
);
3281 ret
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3282 nfs_access_zap_cache(inode
);
3283 nfs_zap_acl_cache(inode
);
3287 static int nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
3289 struct nfs4_exception exception
= { };
3292 err
= nfs4_handle_exception(NFS_SERVER(inode
),
3293 __nfs4_proc_set_acl(inode
, buf
, buflen
),
3295 } while (exception
.retry
);
3300 _nfs4_async_handle_error(struct rpc_task
*task
, const struct nfs_server
*server
, struct nfs_client
*clp
, struct nfs4_state
*state
)
3302 if (!clp
|| task
->tk_status
>= 0)
3304 switch(task
->tk_status
) {
3305 case -NFS4ERR_ADMIN_REVOKED
:
3306 case -NFS4ERR_BAD_STATEID
:
3307 case -NFS4ERR_OPENMODE
:
3310 nfs4_state_mark_reclaim_nograce(clp
, state
);
3311 case -NFS4ERR_STALE_CLIENTID
:
3312 case -NFS4ERR_STALE_STATEID
:
3313 case -NFS4ERR_EXPIRED
:
3314 rpc_sleep_on(&clp
->cl_rpcwaitq
, task
, NULL
);
3315 nfs4_schedule_state_recovery(clp
);
3316 if (test_bit(NFS4CLNT_MANAGER_RUNNING
, &clp
->cl_state
) == 0)
3317 rpc_wake_up_queued_task(&clp
->cl_rpcwaitq
, task
);
3318 task
->tk_status
= 0;
3320 #if defined(CONFIG_NFS_V4_1)
3321 case -NFS4ERR_BADSESSION
:
3322 case -NFS4ERR_BADSLOT
:
3323 case -NFS4ERR_BAD_HIGH_SLOT
:
3324 case -NFS4ERR_DEADSESSION
:
3325 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION
:
3326 case -NFS4ERR_SEQ_FALSE_RETRY
:
3327 case -NFS4ERR_SEQ_MISORDERED
:
3328 dprintk("%s ERROR %d, Reset session\n", __func__
,
3330 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
3331 task
->tk_status
= 0;
3333 #endif /* CONFIG_NFS_V4_1 */
3334 case -NFS4ERR_DELAY
:
3336 nfs_inc_server_stats(server
, NFSIOS_DELAY
);
3337 case -NFS4ERR_GRACE
:
3338 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
3339 task
->tk_status
= 0;
3341 case -NFS4ERR_OLD_STATEID
:
3342 task
->tk_status
= 0;
3345 task
->tk_status
= nfs4_map_errors(task
->tk_status
);
3350 nfs4_async_handle_error(struct rpc_task
*task
, const struct nfs_server
*server
, struct nfs4_state
*state
)
3352 return _nfs4_async_handle_error(task
, server
, server
->nfs_client
, state
);
3355 int nfs4_proc_setclientid(struct nfs_client
*clp
, u32 program
, unsigned short port
, struct rpc_cred
*cred
)
3357 nfs4_verifier sc_verifier
;
3358 struct nfs4_setclientid setclientid
= {
3359 .sc_verifier
= &sc_verifier
,
3362 struct rpc_message msg
= {
3363 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID
],
3364 .rpc_argp
= &setclientid
,
3372 p
= (__be32
*)sc_verifier
.data
;
3373 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
3374 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
3377 setclientid
.sc_name_len
= scnprintf(setclientid
.sc_name
,
3378 sizeof(setclientid
.sc_name
), "%s/%s %s %s %u",
3380 rpc_peeraddr2str(clp
->cl_rpcclient
,
3382 rpc_peeraddr2str(clp
->cl_rpcclient
,
3384 clp
->cl_rpcclient
->cl_auth
->au_ops
->au_name
,
3385 clp
->cl_id_uniquifier
);
3386 setclientid
.sc_netid_len
= scnprintf(setclientid
.sc_netid
,
3387 sizeof(setclientid
.sc_netid
),
3388 rpc_peeraddr2str(clp
->cl_rpcclient
,
3389 RPC_DISPLAY_NETID
));
3390 setclientid
.sc_uaddr_len
= scnprintf(setclientid
.sc_uaddr
,
3391 sizeof(setclientid
.sc_uaddr
), "%s.%u.%u",
3392 clp
->cl_ipaddr
, port
>> 8, port
& 255);
3394 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3395 if (status
!= -NFS4ERR_CLID_INUSE
)
3400 ssleep(clp
->cl_lease_time
+ 1);
3402 if (++clp
->cl_id_uniquifier
== 0)
3408 static int _nfs4_proc_setclientid_confirm(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3410 struct nfs_fsinfo fsinfo
;
3411 struct rpc_message msg
= {
3412 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID_CONFIRM
],
3414 .rpc_resp
= &fsinfo
,
3421 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
3423 spin_lock(&clp
->cl_lock
);
3424 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
3425 clp
->cl_last_renewal
= now
;
3426 spin_unlock(&clp
->cl_lock
);
3431 int nfs4_proc_setclientid_confirm(struct nfs_client
*clp
, struct rpc_cred
*cred
)
3436 err
= _nfs4_proc_setclientid_confirm(clp
, cred
);
3440 case -NFS4ERR_RESOURCE
:
3441 /* The IBM lawyers misread another document! */
3442 case -NFS4ERR_DELAY
:
3443 err
= nfs4_delay(clp
->cl_rpcclient
, &timeout
);
3449 struct nfs4_delegreturndata
{
3450 struct nfs4_delegreturnargs args
;
3451 struct nfs4_delegreturnres res
;
3453 nfs4_stateid stateid
;
3454 unsigned long timestamp
;
3455 struct nfs_fattr fattr
;
3459 static void nfs4_delegreturn_done(struct rpc_task
*task
, void *calldata
)
3461 struct nfs4_delegreturndata
*data
= calldata
;
3463 nfs4_sequence_done_free_slot(data
->res
.server
, &data
->res
.seq_res
,
3466 data
->rpc_status
= task
->tk_status
;
3467 if (data
->rpc_status
== 0)
3468 renew_lease(data
->res
.server
, data
->timestamp
);
3471 static void nfs4_delegreturn_release(void *calldata
)
3476 #if defined(CONFIG_NFS_V4_1)
3477 static void nfs4_delegreturn_prepare(struct rpc_task
*task
, void *data
)
3479 struct nfs4_delegreturndata
*d_data
;
3481 d_data
= (struct nfs4_delegreturndata
*)data
;
3483 if (nfs4_setup_sequence(d_data
->res
.server
->nfs_client
,
3484 &d_data
->args
.seq_args
,
3485 &d_data
->res
.seq_res
, 1, task
))
3487 rpc_call_start(task
);
3489 #endif /* CONFIG_NFS_V4_1 */
3491 static const struct rpc_call_ops nfs4_delegreturn_ops
= {
3492 #if defined(CONFIG_NFS_V4_1)
3493 .rpc_call_prepare
= nfs4_delegreturn_prepare
,
3494 #endif /* CONFIG_NFS_V4_1 */
3495 .rpc_call_done
= nfs4_delegreturn_done
,
3496 .rpc_release
= nfs4_delegreturn_release
,
3499 static int _nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3501 struct nfs4_delegreturndata
*data
;
3502 struct nfs_server
*server
= NFS_SERVER(inode
);
3503 struct rpc_task
*task
;
3504 struct rpc_message msg
= {
3505 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DELEGRETURN
],
3508 struct rpc_task_setup task_setup_data
= {
3509 .rpc_client
= server
->client
,
3510 .rpc_message
= &msg
,
3511 .callback_ops
= &nfs4_delegreturn_ops
,
3512 .flags
= RPC_TASK_ASYNC
,
3516 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
3519 data
->args
.fhandle
= &data
->fh
;
3520 data
->args
.stateid
= &data
->stateid
;
3521 data
->args
.bitmask
= server
->attr_bitmask
;
3522 nfs_copy_fh(&data
->fh
, NFS_FH(inode
));
3523 memcpy(&data
->stateid
, stateid
, sizeof(data
->stateid
));
3524 data
->res
.fattr
= &data
->fattr
;
3525 data
->res
.server
= server
;
3526 data
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3527 nfs_fattr_init(data
->res
.fattr
);
3528 data
->timestamp
= jiffies
;
3529 data
->rpc_status
= 0;
3531 task_setup_data
.callback_data
= data
;
3532 msg
.rpc_argp
= &data
->args
,
3533 msg
.rpc_resp
= &data
->res
,
3534 task
= rpc_run_task(&task_setup_data
);
3536 return PTR_ERR(task
);
3539 status
= nfs4_wait_for_completion_rpc_task(task
);
3542 status
= data
->rpc_status
;
3545 nfs_refresh_inode(inode
, &data
->fattr
);
3551 int nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
, int issync
)
3553 struct nfs_server
*server
= NFS_SERVER(inode
);
3554 struct nfs4_exception exception
= { };
3557 err
= _nfs4_proc_delegreturn(inode
, cred
, stateid
, issync
);
3559 case -NFS4ERR_STALE_STATEID
:
3560 case -NFS4ERR_EXPIRED
:
3564 err
= nfs4_handle_exception(server
, err
, &exception
);
3565 } while (exception
.retry
);
3569 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
3570 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
3573 * sleep, with exponential backoff, and retry the LOCK operation.
3575 static unsigned long
3576 nfs4_set_lock_task_retry(unsigned long timeout
)
3578 schedule_timeout_killable(timeout
);
3580 if (timeout
> NFS4_LOCK_MAXTIMEOUT
)
3581 return NFS4_LOCK_MAXTIMEOUT
;
3585 static int _nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3587 struct inode
*inode
= state
->inode
;
3588 struct nfs_server
*server
= NFS_SERVER(inode
);
3589 struct nfs_client
*clp
= server
->nfs_client
;
3590 struct nfs_lockt_args arg
= {
3591 .fh
= NFS_FH(inode
),
3594 struct nfs_lockt_res res
= {
3597 struct rpc_message msg
= {
3598 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKT
],
3601 .rpc_cred
= state
->owner
->so_cred
,
3603 struct nfs4_lock_state
*lsp
;
3606 arg
.lock_owner
.clientid
= clp
->cl_clientid
;
3607 status
= nfs4_set_lock_state(state
, request
);
3610 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3611 arg
.lock_owner
.id
= lsp
->ls_id
.id
;
3612 status
= nfs4_call_sync(server
, &msg
, &arg
, &res
, 1);
3615 request
->fl_type
= F_UNLCK
;
3617 case -NFS4ERR_DENIED
:
3620 request
->fl_ops
->fl_release_private(request
);
3625 static int nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3627 struct nfs4_exception exception
= { };
3631 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
3632 _nfs4_proc_getlk(state
, cmd
, request
),
3634 } while (exception
.retry
);
3638 static int do_vfs_lock(struct file
*file
, struct file_lock
*fl
)
3641 switch (fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)) {
3643 res
= posix_lock_file_wait(file
, fl
);
3646 res
= flock_lock_file_wait(file
, fl
);
3654 struct nfs4_unlockdata
{
3655 struct nfs_locku_args arg
;
3656 struct nfs_locku_res res
;
3657 struct nfs4_lock_state
*lsp
;
3658 struct nfs_open_context
*ctx
;
3659 struct file_lock fl
;
3660 const struct nfs_server
*server
;
3661 unsigned long timestamp
;
3664 static struct nfs4_unlockdata
*nfs4_alloc_unlockdata(struct file_lock
*fl
,
3665 struct nfs_open_context
*ctx
,
3666 struct nfs4_lock_state
*lsp
,
3667 struct nfs_seqid
*seqid
)
3669 struct nfs4_unlockdata
*p
;
3670 struct inode
*inode
= lsp
->ls_state
->inode
;
3672 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
3675 p
->arg
.fh
= NFS_FH(inode
);
3677 p
->arg
.seqid
= seqid
;
3678 p
->res
.seqid
= seqid
;
3679 p
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3680 p
->arg
.stateid
= &lsp
->ls_stateid
;
3682 atomic_inc(&lsp
->ls_count
);
3683 /* Ensure we don't close file until we're done freeing locks! */
3684 p
->ctx
= get_nfs_open_context(ctx
);
3685 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
3686 p
->server
= NFS_SERVER(inode
);
3690 static void nfs4_locku_release_calldata(void *data
)
3692 struct nfs4_unlockdata
*calldata
= data
;
3693 nfs_free_seqid(calldata
->arg
.seqid
);
3694 nfs4_put_lock_state(calldata
->lsp
);
3695 put_nfs_open_context(calldata
->ctx
);
3699 static void nfs4_locku_done(struct rpc_task
*task
, void *data
)
3701 struct nfs4_unlockdata
*calldata
= data
;
3703 nfs4_sequence_done(calldata
->server
, &calldata
->res
.seq_res
,
3705 if (RPC_ASSASSINATED(task
))
3707 switch (task
->tk_status
) {
3709 memcpy(calldata
->lsp
->ls_stateid
.data
,
3710 calldata
->res
.stateid
.data
,
3711 sizeof(calldata
->lsp
->ls_stateid
.data
));
3712 renew_lease(calldata
->server
, calldata
->timestamp
);
3714 case -NFS4ERR_BAD_STATEID
:
3715 case -NFS4ERR_OLD_STATEID
:
3716 case -NFS4ERR_STALE_STATEID
:
3717 case -NFS4ERR_EXPIRED
:
3720 if (nfs4_async_handle_error(task
, calldata
->server
, NULL
) == -EAGAIN
)
3721 nfs4_restart_rpc(task
,
3722 calldata
->server
->nfs_client
);
3724 nfs4_sequence_free_slot(calldata
->server
->nfs_client
,
3725 &calldata
->res
.seq_res
);
3728 static void nfs4_locku_prepare(struct rpc_task
*task
, void *data
)
3730 struct nfs4_unlockdata
*calldata
= data
;
3732 if (nfs_wait_on_sequence(calldata
->arg
.seqid
, task
) != 0)
3734 if ((calldata
->lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) == 0) {
3735 /* Note: exit _without_ running nfs4_locku_done */
3736 task
->tk_action
= NULL
;
3739 calldata
->timestamp
= jiffies
;
3740 if (nfs4_setup_sequence(calldata
->server
->nfs_client
,
3741 &calldata
->arg
.seq_args
,
3742 &calldata
->res
.seq_res
, 1, task
))
3744 rpc_call_start(task
);
3747 static const struct rpc_call_ops nfs4_locku_ops
= {
3748 .rpc_call_prepare
= nfs4_locku_prepare
,
3749 .rpc_call_done
= nfs4_locku_done
,
3750 .rpc_release
= nfs4_locku_release_calldata
,
3753 static struct rpc_task
*nfs4_do_unlck(struct file_lock
*fl
,
3754 struct nfs_open_context
*ctx
,
3755 struct nfs4_lock_state
*lsp
,
3756 struct nfs_seqid
*seqid
)
3758 struct nfs4_unlockdata
*data
;
3759 struct rpc_message msg
= {
3760 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKU
],
3761 .rpc_cred
= ctx
->cred
,
3763 struct rpc_task_setup task_setup_data
= {
3764 .rpc_client
= NFS_CLIENT(lsp
->ls_state
->inode
),
3765 .rpc_message
= &msg
,
3766 .callback_ops
= &nfs4_locku_ops
,
3767 .workqueue
= nfsiod_workqueue
,
3768 .flags
= RPC_TASK_ASYNC
,
3771 /* Ensure this is an unlock - when canceling a lock, the
3772 * canceled lock is passed in, and it won't be an unlock.
3774 fl
->fl_type
= F_UNLCK
;
3776 data
= nfs4_alloc_unlockdata(fl
, ctx
, lsp
, seqid
);
3778 nfs_free_seqid(seqid
);
3779 return ERR_PTR(-ENOMEM
);
3782 msg
.rpc_argp
= &data
->arg
,
3783 msg
.rpc_resp
= &data
->res
,
3784 task_setup_data
.callback_data
= data
;
3785 return rpc_run_task(&task_setup_data
);
3788 static int nfs4_proc_unlck(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
3790 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
3791 struct nfs_seqid
*seqid
;
3792 struct nfs4_lock_state
*lsp
;
3793 struct rpc_task
*task
;
3795 unsigned char fl_flags
= request
->fl_flags
;
3797 status
= nfs4_set_lock_state(state
, request
);
3798 /* Unlock _before_ we do the RPC call */
3799 request
->fl_flags
|= FL_EXISTS
;
3800 down_read(&nfsi
->rwsem
);
3801 if (do_vfs_lock(request
->fl_file
, request
) == -ENOENT
) {
3802 up_read(&nfsi
->rwsem
);
3805 up_read(&nfsi
->rwsem
);
3808 /* Is this a delegated lock? */
3809 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
))
3811 lsp
= request
->fl_u
.nfs4_fl
.owner
;
3812 seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
);
3816 task
= nfs4_do_unlck(request
, nfs_file_open_context(request
->fl_file
), lsp
, seqid
);
3817 status
= PTR_ERR(task
);
3820 status
= nfs4_wait_for_completion_rpc_task(task
);
3823 request
->fl_flags
= fl_flags
;
3827 struct nfs4_lockdata
{
3828 struct nfs_lock_args arg
;
3829 struct nfs_lock_res res
;
3830 struct nfs4_lock_state
*lsp
;
3831 struct nfs_open_context
*ctx
;
3832 struct file_lock fl
;
3833 unsigned long timestamp
;
3836 struct nfs_server
*server
;
3839 static struct nfs4_lockdata
*nfs4_alloc_lockdata(struct file_lock
*fl
,
3840 struct nfs_open_context
*ctx
, struct nfs4_lock_state
*lsp
)
3842 struct nfs4_lockdata
*p
;
3843 struct inode
*inode
= lsp
->ls_state
->inode
;
3844 struct nfs_server
*server
= NFS_SERVER(inode
);
3846 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
3850 p
->arg
.fh
= NFS_FH(inode
);
3852 p
->arg
.open_seqid
= nfs_alloc_seqid(&lsp
->ls_state
->owner
->so_seqid
);
3853 if (p
->arg
.open_seqid
== NULL
)
3855 p
->arg
.lock_seqid
= nfs_alloc_seqid(&lsp
->ls_seqid
);
3856 if (p
->arg
.lock_seqid
== NULL
)
3857 goto out_free_seqid
;
3858 p
->arg
.lock_stateid
= &lsp
->ls_stateid
;
3859 p
->arg
.lock_owner
.clientid
= server
->nfs_client
->cl_clientid
;
3860 p
->arg
.lock_owner
.id
= lsp
->ls_id
.id
;
3861 p
->res
.lock_seqid
= p
->arg
.lock_seqid
;
3862 p
->res
.seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
3865 atomic_inc(&lsp
->ls_count
);
3866 p
->ctx
= get_nfs_open_context(ctx
);
3867 memcpy(&p
->fl
, fl
, sizeof(p
->fl
));
3870 nfs_free_seqid(p
->arg
.open_seqid
);
3876 static void nfs4_lock_prepare(struct rpc_task
*task
, void *calldata
)
3878 struct nfs4_lockdata
*data
= calldata
;
3879 struct nfs4_state
*state
= data
->lsp
->ls_state
;
3881 dprintk("%s: begin!\n", __func__
);
3882 if (nfs_wait_on_sequence(data
->arg
.lock_seqid
, task
) != 0)
3884 /* Do we need to do an open_to_lock_owner? */
3885 if (!(data
->arg
.lock_seqid
->sequence
->flags
& NFS_SEQID_CONFIRMED
)) {
3886 if (nfs_wait_on_sequence(data
->arg
.open_seqid
, task
) != 0)
3888 data
->arg
.open_stateid
= &state
->stateid
;
3889 data
->arg
.new_lock_owner
= 1;
3890 data
->res
.open_seqid
= data
->arg
.open_seqid
;
3892 data
->arg
.new_lock_owner
= 0;
3893 data
->timestamp
= jiffies
;
3894 if (nfs4_setup_sequence(data
->server
->nfs_client
, &data
->arg
.seq_args
,
3895 &data
->res
.seq_res
, 1, task
))
3897 rpc_call_start(task
);
3898 dprintk("%s: done!, ret = %d\n", __func__
, data
->rpc_status
);
3901 static void nfs4_lock_done(struct rpc_task
*task
, void *calldata
)
3903 struct nfs4_lockdata
*data
= calldata
;
3905 dprintk("%s: begin!\n", __func__
);
3907 nfs4_sequence_done_free_slot(data
->server
, &data
->res
.seq_res
,
3910 data
->rpc_status
= task
->tk_status
;
3911 if (RPC_ASSASSINATED(task
))
3913 if (data
->arg
.new_lock_owner
!= 0) {
3914 if (data
->rpc_status
== 0)
3915 nfs_confirm_seqid(&data
->lsp
->ls_seqid
, 0);
3919 if (data
->rpc_status
== 0) {
3920 memcpy(data
->lsp
->ls_stateid
.data
, data
->res
.stateid
.data
,
3921 sizeof(data
->lsp
->ls_stateid
.data
));
3922 data
->lsp
->ls_flags
|= NFS_LOCK_INITIALIZED
;
3923 renew_lease(NFS_SERVER(data
->ctx
->path
.dentry
->d_inode
), data
->timestamp
);
3926 dprintk("%s: done, ret = %d!\n", __func__
, data
->rpc_status
);
3929 static void nfs4_lock_release(void *calldata
)
3931 struct nfs4_lockdata
*data
= calldata
;
3933 dprintk("%s: begin!\n", __func__
);
3934 nfs_free_seqid(data
->arg
.open_seqid
);
3935 if (data
->cancelled
!= 0) {
3936 struct rpc_task
*task
;
3937 task
= nfs4_do_unlck(&data
->fl
, data
->ctx
, data
->lsp
,
3938 data
->arg
.lock_seqid
);
3941 dprintk("%s: cancelling lock!\n", __func__
);
3943 nfs_free_seqid(data
->arg
.lock_seqid
);
3944 nfs4_put_lock_state(data
->lsp
);
3945 put_nfs_open_context(data
->ctx
);
3947 dprintk("%s: done!\n", __func__
);
3950 static const struct rpc_call_ops nfs4_lock_ops
= {
3951 .rpc_call_prepare
= nfs4_lock_prepare
,
3952 .rpc_call_done
= nfs4_lock_done
,
3953 .rpc_release
= nfs4_lock_release
,
3956 static int _nfs4_do_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*fl
, int reclaim
)
3958 struct nfs4_lockdata
*data
;
3959 struct rpc_task
*task
;
3960 struct rpc_message msg
= {
3961 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCK
],
3962 .rpc_cred
= state
->owner
->so_cred
,
3964 struct rpc_task_setup task_setup_data
= {
3965 .rpc_client
= NFS_CLIENT(state
->inode
),
3966 .rpc_message
= &msg
,
3967 .callback_ops
= &nfs4_lock_ops
,
3968 .workqueue
= nfsiod_workqueue
,
3969 .flags
= RPC_TASK_ASYNC
,
3973 dprintk("%s: begin!\n", __func__
);
3974 data
= nfs4_alloc_lockdata(fl
, nfs_file_open_context(fl
->fl_file
),
3975 fl
->fl_u
.nfs4_fl
.owner
);
3979 data
->arg
.block
= 1;
3981 data
->arg
.reclaim
= 1;
3982 msg
.rpc_argp
= &data
->arg
,
3983 msg
.rpc_resp
= &data
->res
,
3984 task_setup_data
.callback_data
= data
;
3985 task
= rpc_run_task(&task_setup_data
);
3987 return PTR_ERR(task
);
3988 ret
= nfs4_wait_for_completion_rpc_task(task
);
3990 ret
= data
->rpc_status
;
3992 data
->cancelled
= 1;
3994 dprintk("%s: done, ret = %d!\n", __func__
, ret
);
3998 static int nfs4_lock_reclaim(struct nfs4_state
*state
, struct file_lock
*request
)
4000 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4001 struct nfs4_exception exception
= { };
4005 /* Cache the lock if possible... */
4006 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4008 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 1);
4009 if (err
!= -NFS4ERR_DELAY
)
4011 nfs4_handle_exception(server
, err
, &exception
);
4012 } while (exception
.retry
);
4016 static int nfs4_lock_expired(struct nfs4_state
*state
, struct file_lock
*request
)
4018 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4019 struct nfs4_exception exception
= { };
4022 err
= nfs4_set_lock_state(state
, request
);
4026 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
) != 0)
4028 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 0);
4029 if (err
!= -NFS4ERR_DELAY
)
4031 nfs4_handle_exception(server
, err
, &exception
);
4032 } while (exception
.retry
);
4036 static int _nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4038 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
4039 unsigned char fl_flags
= request
->fl_flags
;
4042 /* Is this a delegated open? */
4043 status
= nfs4_set_lock_state(state
, request
);
4046 request
->fl_flags
|= FL_ACCESS
;
4047 status
= do_vfs_lock(request
->fl_file
, request
);
4050 down_read(&nfsi
->rwsem
);
4051 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
)) {
4052 /* Yes: cache locks! */
4053 /* ...but avoid races with delegation recall... */
4054 request
->fl_flags
= fl_flags
& ~FL_SLEEP
;
4055 status
= do_vfs_lock(request
->fl_file
, request
);
4058 status
= _nfs4_do_setlk(state
, cmd
, request
, 0);
4061 /* Note: we always want to sleep here! */
4062 request
->fl_flags
= fl_flags
| FL_SLEEP
;
4063 if (do_vfs_lock(request
->fl_file
, request
) < 0)
4064 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n", __func__
);
4066 up_read(&nfsi
->rwsem
);
4068 request
->fl_flags
= fl_flags
;
4072 static int nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
4074 struct nfs4_exception exception
= { };
4078 err
= _nfs4_proc_setlk(state
, cmd
, request
);
4079 if (err
== -NFS4ERR_DENIED
)
4081 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
4083 } while (exception
.retry
);
4088 nfs4_proc_lock(struct file
*filp
, int cmd
, struct file_lock
*request
)
4090 struct nfs_open_context
*ctx
;
4091 struct nfs4_state
*state
;
4092 unsigned long timeout
= NFS4_LOCK_MINTIMEOUT
;
4095 /* verify open state */
4096 ctx
= nfs_file_open_context(filp
);
4099 if (request
->fl_start
< 0 || request
->fl_end
< 0)
4102 if (IS_GETLK(cmd
)) {
4104 return nfs4_proc_getlk(state
, F_GETLK
, request
);
4108 if (!(IS_SETLK(cmd
) || IS_SETLKW(cmd
)))
4111 if (request
->fl_type
== F_UNLCK
) {
4113 return nfs4_proc_unlck(state
, cmd
, request
);
4120 status
= nfs4_proc_setlk(state
, cmd
, request
);
4121 if ((status
!= -EAGAIN
) || IS_SETLK(cmd
))
4123 timeout
= nfs4_set_lock_task_retry(timeout
);
4124 status
= -ERESTARTSYS
;
4127 } while(status
< 0);
4131 int nfs4_lock_delegation_recall(struct nfs4_state
*state
, struct file_lock
*fl
)
4133 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
4134 struct nfs4_exception exception
= { };
4137 err
= nfs4_set_lock_state(state
, fl
);
4141 err
= _nfs4_do_setlk(state
, F_SETLK
, fl
, 0);
4144 printk(KERN_ERR
"%s: unhandled error %d.\n",
4149 case -NFS4ERR_EXPIRED
:
4150 case -NFS4ERR_STALE_CLIENTID
:
4151 case -NFS4ERR_STALE_STATEID
:
4152 nfs4_schedule_state_recovery(server
->nfs_client
);
4156 * The show must go on: exit, but mark the
4157 * stateid as needing recovery.
4159 case -NFS4ERR_ADMIN_REVOKED
:
4160 case -NFS4ERR_BAD_STATEID
:
4161 case -NFS4ERR_OPENMODE
:
4162 nfs4_state_mark_reclaim_nograce(server
->nfs_client
, state
);
4166 case -NFS4ERR_DENIED
:
4167 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
4170 case -NFS4ERR_DELAY
:
4173 err
= nfs4_handle_exception(server
, err
, &exception
);
4174 } while (exception
.retry
);
4179 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
4181 int nfs4_setxattr(struct dentry
*dentry
, const char *key
, const void *buf
,
4182 size_t buflen
, int flags
)
4184 struct inode
*inode
= dentry
->d_inode
;
4186 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
4189 return nfs4_proc_set_acl(inode
, buf
, buflen
);
4192 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
4193 * and that's what we'll do for e.g. user attributes that haven't been set.
4194 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
4195 * attributes in kernel-managed attribute namespaces. */
4196 ssize_t
nfs4_getxattr(struct dentry
*dentry
, const char *key
, void *buf
,
4199 struct inode
*inode
= dentry
->d_inode
;
4201 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
4204 return nfs4_proc_get_acl(inode
, buf
, buflen
);
4207 ssize_t
nfs4_listxattr(struct dentry
*dentry
, char *buf
, size_t buflen
)
4209 size_t len
= strlen(XATTR_NAME_NFSV4_ACL
) + 1;
4211 if (!nfs4_server_supports_acls(NFS_SERVER(dentry
->d_inode
)))
4213 if (buf
&& buflen
< len
)
4216 memcpy(buf
, XATTR_NAME_NFSV4_ACL
, len
);
4220 static void nfs_fixup_referral_attributes(struct nfs_fattr
*fattr
)
4222 if (!((fattr
->valid
& NFS_ATTR_FATTR_FILEID
) &&
4223 (fattr
->valid
& NFS_ATTR_FATTR_FSID
) &&
4224 (fattr
->valid
& NFS_ATTR_FATTR_V4_REFERRAL
)))
4227 fattr
->valid
|= NFS_ATTR_FATTR_TYPE
| NFS_ATTR_FATTR_MODE
|
4228 NFS_ATTR_FATTR_NLINK
;
4229 fattr
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
4233 int nfs4_proc_fs_locations(struct inode
*dir
, const struct qstr
*name
,
4234 struct nfs4_fs_locations
*fs_locations
, struct page
*page
)
4236 struct nfs_server
*server
= NFS_SERVER(dir
);
4238 [0] = FATTR4_WORD0_FSID
| FATTR4_WORD0_FS_LOCATIONS
,
4239 [1] = FATTR4_WORD1_MOUNTED_ON_FILEID
,
4241 struct nfs4_fs_locations_arg args
= {
4242 .dir_fh
= NFS_FH(dir
),
4247 struct nfs4_fs_locations_res res
= {
4248 .fs_locations
= fs_locations
,
4250 struct rpc_message msg
= {
4251 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FS_LOCATIONS
],
4257 dprintk("%s: start\n", __func__
);
4258 nfs_fattr_init(&fs_locations
->fattr
);
4259 fs_locations
->server
= server
;
4260 fs_locations
->nlocations
= 0;
4261 status
= nfs4_call_sync(server
, &msg
, &args
, &res
, 0);
4262 nfs_fixup_referral_attributes(&fs_locations
->fattr
);
4263 dprintk("%s: returned status = %d\n", __func__
, status
);
4267 #ifdef CONFIG_NFS_V4_1
4269 * nfs4_proc_exchange_id()
4271 * Since the clientid has expired, all compounds using sessions
4272 * associated with the stale clientid will be returning
4273 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
4274 * be in some phase of session reset.
4276 static int nfs4_proc_exchange_id(struct nfs_client
*clp
, struct rpc_cred
*cred
)
4278 nfs4_verifier verifier
;
4279 struct nfs41_exchange_id_args args
= {
4281 .flags
= clp
->cl_exchange_flags
,
4283 struct nfs41_exchange_id_res res
= {
4287 struct rpc_message msg
= {
4288 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_EXCHANGE_ID
],
4295 dprintk("--> %s\n", __func__
);
4296 BUG_ON(clp
== NULL
);
4298 p
= (u32
*)verifier
.data
;
4299 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
4300 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
4301 args
.verifier
= &verifier
;
4304 args
.id_len
= scnprintf(args
.id
, sizeof(args
.id
),
4307 rpc_peeraddr2str(clp
->cl_rpcclient
,
4309 clp
->cl_id_uniquifier
);
4311 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
4313 if (status
!= NFS4ERR_CLID_INUSE
)
4319 if (++clp
->cl_id_uniquifier
== 0)
4323 dprintk("<-- %s status= %d\n", __func__
, status
);
4327 struct nfs4_get_lease_time_data
{
4328 struct nfs4_get_lease_time_args
*args
;
4329 struct nfs4_get_lease_time_res
*res
;
4330 struct nfs_client
*clp
;
4333 static void nfs4_get_lease_time_prepare(struct rpc_task
*task
,
4337 struct nfs4_get_lease_time_data
*data
=
4338 (struct nfs4_get_lease_time_data
*)calldata
;
4340 dprintk("--> %s\n", __func__
);
4341 /* just setup sequence, do not trigger session recovery
4342 since we're invoked within one */
4343 ret
= nfs41_setup_sequence(data
->clp
->cl_session
,
4344 &data
->args
->la_seq_args
,
4345 &data
->res
->lr_seq_res
, 0, task
);
4347 BUG_ON(ret
== -EAGAIN
);
4348 rpc_call_start(task
);
4349 dprintk("<-- %s\n", __func__
);
4353 * Called from nfs4_state_manager thread for session setup, so don't recover
4354 * from sequence operation or clientid errors.
4356 static void nfs4_get_lease_time_done(struct rpc_task
*task
, void *calldata
)
4358 struct nfs4_get_lease_time_data
*data
=
4359 (struct nfs4_get_lease_time_data
*)calldata
;
4361 dprintk("--> %s\n", __func__
);
4362 nfs41_sequence_done(data
->clp
, &data
->res
->lr_seq_res
, task
->tk_status
);
4363 switch (task
->tk_status
) {
4364 case -NFS4ERR_DELAY
:
4365 case -NFS4ERR_GRACE
:
4366 dprintk("%s Retry: tk_status %d\n", __func__
, task
->tk_status
);
4367 rpc_delay(task
, NFS4_POLL_RETRY_MIN
);
4368 task
->tk_status
= 0;
4369 nfs4_restart_rpc(task
, data
->clp
);
4372 nfs41_sequence_free_slot(data
->clp
, &data
->res
->lr_seq_res
);
4373 dprintk("<-- %s\n", __func__
);
4376 struct rpc_call_ops nfs4_get_lease_time_ops
= {
4377 .rpc_call_prepare
= nfs4_get_lease_time_prepare
,
4378 .rpc_call_done
= nfs4_get_lease_time_done
,
4381 int nfs4_proc_get_lease_time(struct nfs_client
*clp
, struct nfs_fsinfo
*fsinfo
)
4383 struct rpc_task
*task
;
4384 struct nfs4_get_lease_time_args args
;
4385 struct nfs4_get_lease_time_res res
= {
4386 .lr_fsinfo
= fsinfo
,
4388 struct nfs4_get_lease_time_data data
= {
4393 struct rpc_message msg
= {
4394 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GET_LEASE_TIME
],
4398 struct rpc_task_setup task_setup
= {
4399 .rpc_client
= clp
->cl_rpcclient
,
4400 .rpc_message
= &msg
,
4401 .callback_ops
= &nfs4_get_lease_time_ops
,
4402 .callback_data
= &data
4406 res
.lr_seq_res
.sr_slotid
= NFS4_MAX_SLOT_TABLE
;
4407 dprintk("--> %s\n", __func__
);
4408 task
= rpc_run_task(&task_setup
);
4411 status
= PTR_ERR(task
);
4413 status
= task
->tk_status
;
4416 dprintk("<-- %s return %d\n", __func__
, status
);
4422 * Reset a slot table
4424 static int nfs4_reset_slot_table(struct nfs4_slot_table
*tbl
, int max_slots
,
4425 int old_max_slots
, int ivalue
)
4430 dprintk("--> %s: max_reqs=%u, tbl %p\n", __func__
, max_slots
, tbl
);
4433 * Until we have dynamic slot table adjustment, insist
4434 * upon the same slot table size
4436 if (max_slots
!= old_max_slots
) {
4437 dprintk("%s reset slot table does't match old\n",
4439 ret
= -EINVAL
; /*XXX NFS4ERR_REQ_TOO_BIG ? */
4442 spin_lock(&tbl
->slot_tbl_lock
);
4443 for (i
= 0; i
< max_slots
; ++i
)
4444 tbl
->slots
[i
].seq_nr
= ivalue
;
4445 tbl
->highest_used_slotid
= -1;
4446 spin_unlock(&tbl
->slot_tbl_lock
);
4447 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4448 tbl
, tbl
->slots
, tbl
->max_slots
);
4450 dprintk("<-- %s: return %d\n", __func__
, ret
);
4455 * Reset the forechannel and backchannel slot tables
4457 static int nfs4_reset_slot_tables(struct nfs4_session
*session
)
4461 status
= nfs4_reset_slot_table(&session
->fc_slot_table
,
4462 session
->fc_attrs
.max_reqs
,
4463 session
->fc_slot_table
.max_slots
,
4468 status
= nfs4_reset_slot_table(&session
->bc_slot_table
,
4469 session
->bc_attrs
.max_reqs
,
4470 session
->bc_slot_table
.max_slots
,
4475 /* Destroy the slot table */
4476 static void nfs4_destroy_slot_tables(struct nfs4_session
*session
)
4478 if (session
->fc_slot_table
.slots
!= NULL
) {
4479 kfree(session
->fc_slot_table
.slots
);
4480 session
->fc_slot_table
.slots
= NULL
;
4482 if (session
->bc_slot_table
.slots
!= NULL
) {
4483 kfree(session
->bc_slot_table
.slots
);
4484 session
->bc_slot_table
.slots
= NULL
;
4490 * Initialize slot table
4492 static int nfs4_init_slot_table(struct nfs4_slot_table
*tbl
,
4493 int max_slots
, int ivalue
)
4496 struct nfs4_slot
*slot
;
4499 BUG_ON(max_slots
> NFS4_MAX_SLOT_TABLE
);
4501 dprintk("--> %s: max_reqs=%u\n", __func__
, max_slots
);
4503 slot
= kcalloc(max_slots
, sizeof(struct nfs4_slot
), GFP_KERNEL
);
4506 for (i
= 0; i
< max_slots
; ++i
)
4507 slot
[i
].seq_nr
= ivalue
;
4510 spin_lock(&tbl
->slot_tbl_lock
);
4511 if (tbl
->slots
!= NULL
) {
4512 spin_unlock(&tbl
->slot_tbl_lock
);
4513 dprintk("%s: slot table already initialized. tbl=%p slots=%p\n",
4514 __func__
, tbl
, tbl
->slots
);
4518 tbl
->max_slots
= max_slots
;
4520 tbl
->highest_used_slotid
= -1; /* no slot is currently used */
4521 spin_unlock(&tbl
->slot_tbl_lock
);
4522 dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__
,
4523 tbl
, tbl
->slots
, tbl
->max_slots
);
4525 dprintk("<-- %s: return %d\n", __func__
, ret
);
4534 * Initialize the forechannel and backchannel tables
4536 static int nfs4_init_slot_tables(struct nfs4_session
*session
)
4540 status
= nfs4_init_slot_table(&session
->fc_slot_table
,
4541 session
->fc_attrs
.max_reqs
, 1);
4545 status
= nfs4_init_slot_table(&session
->bc_slot_table
,
4546 session
->bc_attrs
.max_reqs
, 0);
4548 nfs4_destroy_slot_tables(session
);
4553 struct nfs4_session
*nfs4_alloc_session(struct nfs_client
*clp
)
4555 struct nfs4_session
*session
;
4556 struct nfs4_slot_table
*tbl
;
4558 session
= kzalloc(sizeof(struct nfs4_session
), GFP_KERNEL
);
4562 set_bit(NFS4CLNT_SESSION_SETUP
, &clp
->cl_state
);
4564 * The create session reply races with the server back
4565 * channel probe. Mark the client NFS_CS_SESSION_INITING
4566 * so that the client back channel can find the
4569 clp
->cl_cons_state
= NFS_CS_SESSION_INITING
;
4571 tbl
= &session
->fc_slot_table
;
4572 spin_lock_init(&tbl
->slot_tbl_lock
);
4573 rpc_init_wait_queue(&tbl
->slot_tbl_waitq
, "ForeChannel Slot table");
4575 tbl
= &session
->bc_slot_table
;
4576 spin_lock_init(&tbl
->slot_tbl_lock
);
4577 rpc_init_wait_queue(&tbl
->slot_tbl_waitq
, "BackChannel Slot table");
4583 void nfs4_destroy_session(struct nfs4_session
*session
)
4585 nfs4_proc_destroy_session(session
);
4586 dprintk("%s Destroy backchannel for xprt %p\n",
4587 __func__
, session
->clp
->cl_rpcclient
->cl_xprt
);
4588 xprt_destroy_backchannel(session
->clp
->cl_rpcclient
->cl_xprt
,
4589 NFS41_BC_MIN_CALLBACKS
);
4590 nfs4_destroy_slot_tables(session
);
4595 * Initialize the values to be used by the client in CREATE_SESSION
4596 * If nfs4_init_session set the fore channel request and response sizes,
4599 * Set the back channel max_resp_sz_cached to zero to force the client to
4600 * always set csa_cachethis to FALSE because the current implementation
4601 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
4603 static void nfs4_init_channel_attrs(struct nfs41_create_session_args
*args
)
4605 struct nfs4_session
*session
= args
->client
->cl_session
;
4606 unsigned int mxrqst_sz
= session
->fc_attrs
.max_rqst_sz
,
4607 mxresp_sz
= session
->fc_attrs
.max_resp_sz
;
4610 mxrqst_sz
= NFS_MAX_FILE_IO_SIZE
;
4612 mxresp_sz
= NFS_MAX_FILE_IO_SIZE
;
4613 /* Fore channel attributes */
4614 args
->fc_attrs
.headerpadsz
= 0;
4615 args
->fc_attrs
.max_rqst_sz
= mxrqst_sz
;
4616 args
->fc_attrs
.max_resp_sz
= mxresp_sz
;
4617 args
->fc_attrs
.max_resp_sz_cached
= mxresp_sz
;
4618 args
->fc_attrs
.max_ops
= NFS4_MAX_OPS
;
4619 args
->fc_attrs
.max_reqs
= session
->clp
->cl_rpcclient
->cl_xprt
->max_reqs
;
4621 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
4622 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4624 args
->fc_attrs
.max_rqst_sz
, args
->fc_attrs
.max_resp_sz
,
4625 args
->fc_attrs
.max_resp_sz_cached
, args
->fc_attrs
.max_ops
,
4626 args
->fc_attrs
.max_reqs
);
4628 /* Back channel attributes */
4629 args
->bc_attrs
.headerpadsz
= 0;
4630 args
->bc_attrs
.max_rqst_sz
= PAGE_SIZE
;
4631 args
->bc_attrs
.max_resp_sz
= PAGE_SIZE
;
4632 args
->bc_attrs
.max_resp_sz_cached
= 0;
4633 args
->bc_attrs
.max_ops
= NFS4_MAX_BACK_CHANNEL_OPS
;
4634 args
->bc_attrs
.max_reqs
= 1;
4636 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
4637 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
4639 args
->bc_attrs
.max_rqst_sz
, args
->bc_attrs
.max_resp_sz
,
4640 args
->bc_attrs
.max_resp_sz_cached
, args
->bc_attrs
.max_ops
,
4641 args
->bc_attrs
.max_reqs
);
4644 static int _verify_channel_attr(char *chan
, char *attr_name
, u32 sent
, u32 rcvd
)
4648 printk(KERN_WARNING
"%s: Session INVALID: %s channel %s increased. "
4649 "sent=%u rcvd=%u\n", __func__
, chan
, attr_name
, sent
, rcvd
);
4653 #define _verify_fore_channel_attr(_name_) \
4654 _verify_channel_attr("fore", #_name_, \
4655 args->fc_attrs._name_, \
4656 session->fc_attrs._name_)
4658 #define _verify_back_channel_attr(_name_) \
4659 _verify_channel_attr("back", #_name_, \
4660 args->bc_attrs._name_, \
4661 session->bc_attrs._name_)
4664 * The server is not allowed to increase the fore channel header pad size,
4665 * maximum response size, or maximum number of operations.
4667 * The back channel attributes are only negotiatied down: We send what the
4668 * (back channel) server insists upon.
4670 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args
*args
,
4671 struct nfs4_session
*session
)
4675 ret
|= _verify_fore_channel_attr(headerpadsz
);
4676 ret
|= _verify_fore_channel_attr(max_resp_sz
);
4677 ret
|= _verify_fore_channel_attr(max_ops
);
4679 ret
|= _verify_back_channel_attr(headerpadsz
);
4680 ret
|= _verify_back_channel_attr(max_rqst_sz
);
4681 ret
|= _verify_back_channel_attr(max_resp_sz
);
4682 ret
|= _verify_back_channel_attr(max_resp_sz_cached
);
4683 ret
|= _verify_back_channel_attr(max_ops
);
4684 ret
|= _verify_back_channel_attr(max_reqs
);
4689 static int _nfs4_proc_create_session(struct nfs_client
*clp
)
4691 struct nfs4_session
*session
= clp
->cl_session
;
4692 struct nfs41_create_session_args args
= {
4694 .cb_program
= NFS4_CALLBACK
,
4696 struct nfs41_create_session_res res
= {
4699 struct rpc_message msg
= {
4700 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE_SESSION
],
4706 nfs4_init_channel_attrs(&args
);
4707 args
.flags
= (SESSION4_PERSIST
| SESSION4_BACK_CHAN
);
4709 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
4712 /* Verify the session's negotiated channel_attrs values */
4713 status
= nfs4_verify_channel_attrs(&args
, session
);
4715 /* Increment the clientid slot sequence id */
4723 * Issues a CREATE_SESSION operation to the server.
4724 * It is the responsibility of the caller to verify the session is
4725 * expired before calling this routine.
4727 int nfs4_proc_create_session(struct nfs_client
*clp
, int reset
)
4731 struct nfs_fsinfo fsinfo
;
4732 struct nfs4_session
*session
= clp
->cl_session
;
4734 dprintk("--> %s clp=%p session=%p\n", __func__
, clp
, session
);
4736 status
= _nfs4_proc_create_session(clp
);
4740 /* Init or reset the fore channel */
4742 status
= nfs4_reset_slot_tables(session
);
4744 status
= nfs4_init_slot_tables(session
);
4745 dprintk("fore channel slot table initialization returned %d\n", status
);
4749 ptr
= (unsigned *)&session
->sess_id
.data
[0];
4750 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__
,
4751 clp
->cl_seqid
, ptr
[0], ptr
[1], ptr
[2], ptr
[3]);
4754 /* Lease time is aleady set */
4757 /* Get the lease time */
4758 status
= nfs4_proc_get_lease_time(clp
, &fsinfo
);
4760 /* Update lease time and schedule renewal */
4761 spin_lock(&clp
->cl_lock
);
4762 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
4763 clp
->cl_last_renewal
= jiffies
;
4764 clear_bit(NFS4CLNT_LEASE_EXPIRED
, &clp
->cl_state
);
4765 spin_unlock(&clp
->cl_lock
);
4767 nfs4_schedule_state_renewal(clp
);
4770 dprintk("<-- %s\n", __func__
);
4775 * Issue the over-the-wire RPC DESTROY_SESSION.
4776 * The caller must serialize access to this routine.
4778 int nfs4_proc_destroy_session(struct nfs4_session
*session
)
4781 struct rpc_message msg
;
4783 dprintk("--> nfs4_proc_destroy_session\n");
4785 /* session is still being setup */
4786 if (session
->clp
->cl_cons_state
!= NFS_CS_READY
)
4789 msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DESTROY_SESSION
];
4790 msg
.rpc_argp
= session
;
4791 msg
.rpc_resp
= NULL
;
4792 msg
.rpc_cred
= NULL
;
4793 status
= rpc_call_sync(session
->clp
->cl_rpcclient
, &msg
, 0);
4797 "Got error %d from the server on DESTROY_SESSION. "
4798 "Session has been destroyed regardless...\n", status
);
4800 dprintk("<-- nfs4_proc_destroy_session\n");
4804 int nfs4_init_session(struct nfs_server
*server
)
4806 struct nfs_client
*clp
= server
->nfs_client
;
4809 if (!nfs4_has_session(clp
))
4812 clp
->cl_session
->fc_attrs
.max_rqst_sz
= server
->wsize
;
4813 clp
->cl_session
->fc_attrs
.max_resp_sz
= server
->rsize
;
4814 ret
= nfs4_recover_expired_lease(server
);
4816 ret
= nfs4_check_client_ready(clp
);
4821 * Renew the cl_session lease.
4823 static int nfs4_proc_sequence(struct nfs_client
*clp
, struct rpc_cred
*cred
)
4825 struct nfs4_sequence_args args
;
4826 struct nfs4_sequence_res res
;
4828 struct rpc_message msg
= {
4829 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SEQUENCE
],
4835 args
.sa_cache_this
= 0;
4837 return nfs4_call_sync_sequence(clp
, clp
->cl_rpcclient
, &msg
, &args
,
4841 void nfs41_sequence_call_done(struct rpc_task
*task
, void *data
)
4843 struct nfs_client
*clp
= (struct nfs_client
*)data
;
4845 nfs41_sequence_done(clp
, task
->tk_msg
.rpc_resp
, task
->tk_status
);
4847 if (task
->tk_status
< 0) {
4848 dprintk("%s ERROR %d\n", __func__
, task
->tk_status
);
4850 if (_nfs4_async_handle_error(task
, NULL
, clp
, NULL
)
4852 nfs4_restart_rpc(task
, clp
);
4856 nfs41_sequence_free_slot(clp
, task
->tk_msg
.rpc_resp
);
4857 dprintk("%s rpc_cred %p\n", __func__
, task
->tk_msg
.rpc_cred
);
4859 put_rpccred(task
->tk_msg
.rpc_cred
);
4860 kfree(task
->tk_msg
.rpc_argp
);
4861 kfree(task
->tk_msg
.rpc_resp
);
4863 dprintk("<-- %s\n", __func__
);
4866 static void nfs41_sequence_prepare(struct rpc_task
*task
, void *data
)
4868 struct nfs_client
*clp
;
4869 struct nfs4_sequence_args
*args
;
4870 struct nfs4_sequence_res
*res
;
4872 clp
= (struct nfs_client
*)data
;
4873 args
= task
->tk_msg
.rpc_argp
;
4874 res
= task
->tk_msg
.rpc_resp
;
4876 if (nfs4_setup_sequence(clp
, args
, res
, 0, task
))
4878 rpc_call_start(task
);
4881 static const struct rpc_call_ops nfs41_sequence_ops
= {
4882 .rpc_call_done
= nfs41_sequence_call_done
,
4883 .rpc_call_prepare
= nfs41_sequence_prepare
,
4886 static int nfs41_proc_async_sequence(struct nfs_client
*clp
,
4887 struct rpc_cred
*cred
)
4889 struct nfs4_sequence_args
*args
;
4890 struct nfs4_sequence_res
*res
;
4891 struct rpc_message msg
= {
4892 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SEQUENCE
],
4896 args
= kzalloc(sizeof(*args
), GFP_KERNEL
);
4899 res
= kzalloc(sizeof(*res
), GFP_KERNEL
);
4904 res
->sr_slotid
= NFS4_MAX_SLOT_TABLE
;
4905 msg
.rpc_argp
= args
;
4908 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
4909 &nfs41_sequence_ops
, (void *)clp
);
4912 #endif /* CONFIG_NFS_V4_1 */
4914 struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops
= {
4915 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
4916 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
4917 .recover_open
= nfs4_open_reclaim
,
4918 .recover_lock
= nfs4_lock_reclaim
,
4919 .establish_clid
= nfs4_init_clientid
,
4920 .get_clid_cred
= nfs4_get_setclientid_cred
,
4923 #if defined(CONFIG_NFS_V4_1)
4924 struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops
= {
4925 .owner_flag_bit
= NFS_OWNER_RECLAIM_REBOOT
,
4926 .state_flag_bit
= NFS_STATE_RECLAIM_REBOOT
,
4927 .recover_open
= nfs4_open_reclaim
,
4928 .recover_lock
= nfs4_lock_reclaim
,
4929 .establish_clid
= nfs4_proc_exchange_id
,
4930 .get_clid_cred
= nfs4_get_exchange_id_cred
,
4932 #endif /* CONFIG_NFS_V4_1 */
4934 struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops
= {
4935 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
4936 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
4937 .recover_open
= nfs4_open_expired
,
4938 .recover_lock
= nfs4_lock_expired
,
4939 .establish_clid
= nfs4_init_clientid
,
4940 .get_clid_cred
= nfs4_get_setclientid_cred
,
4943 #if defined(CONFIG_NFS_V4_1)
4944 struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops
= {
4945 .owner_flag_bit
= NFS_OWNER_RECLAIM_NOGRACE
,
4946 .state_flag_bit
= NFS_STATE_RECLAIM_NOGRACE
,
4947 .recover_open
= nfs4_open_expired
,
4948 .recover_lock
= nfs4_lock_expired
,
4949 .establish_clid
= nfs4_proc_exchange_id
,
4950 .get_clid_cred
= nfs4_get_exchange_id_cred
,
4952 #endif /* CONFIG_NFS_V4_1 */
4954 struct nfs4_state_maintenance_ops nfs40_state_renewal_ops
= {
4955 .sched_state_renewal
= nfs4_proc_async_renew
,
4956 .get_state_renewal_cred_locked
= nfs4_get_renew_cred_locked
,
4957 .renew_lease
= nfs4_proc_renew
,
4960 #if defined(CONFIG_NFS_V4_1)
4961 struct nfs4_state_maintenance_ops nfs41_state_renewal_ops
= {
4962 .sched_state_renewal
= nfs41_proc_async_sequence
,
4963 .get_state_renewal_cred_locked
= nfs4_get_machine_cred_locked
,
4964 .renew_lease
= nfs4_proc_sequence
,
4969 * Per minor version reboot and network partition recovery ops
4972 struct nfs4_state_recovery_ops
*nfs4_reboot_recovery_ops
[] = {
4973 &nfs40_reboot_recovery_ops
,
4974 #if defined(CONFIG_NFS_V4_1)
4975 &nfs41_reboot_recovery_ops
,
4979 struct nfs4_state_recovery_ops
*nfs4_nograce_recovery_ops
[] = {
4980 &nfs40_nograce_recovery_ops
,
4981 #if defined(CONFIG_NFS_V4_1)
4982 &nfs41_nograce_recovery_ops
,
4986 struct nfs4_state_maintenance_ops
*nfs4_state_renewal_ops
[] = {
4987 &nfs40_state_renewal_ops
,
4988 #if defined(CONFIG_NFS_V4_1)
4989 &nfs41_state_renewal_ops
,
4993 static const struct inode_operations nfs4_file_inode_operations
= {
4994 .permission
= nfs_permission
,
4995 .getattr
= nfs_getattr
,
4996 .setattr
= nfs_setattr
,
4997 .getxattr
= nfs4_getxattr
,
4998 .setxattr
= nfs4_setxattr
,
4999 .listxattr
= nfs4_listxattr
,
5002 const struct nfs_rpc_ops nfs_v4_clientops
= {
5003 .version
= 4, /* protocol version */
5004 .dentry_ops
= &nfs4_dentry_operations
,
5005 .dir_inode_ops
= &nfs4_dir_inode_operations
,
5006 .file_inode_ops
= &nfs4_file_inode_operations
,
5007 .getroot
= nfs4_proc_get_root
,
5008 .getattr
= nfs4_proc_getattr
,
5009 .setattr
= nfs4_proc_setattr
,
5010 .lookupfh
= nfs4_proc_lookupfh
,
5011 .lookup
= nfs4_proc_lookup
,
5012 .access
= nfs4_proc_access
,
5013 .readlink
= nfs4_proc_readlink
,
5014 .create
= nfs4_proc_create
,
5015 .remove
= nfs4_proc_remove
,
5016 .unlink_setup
= nfs4_proc_unlink_setup
,
5017 .unlink_done
= nfs4_proc_unlink_done
,
5018 .rename
= nfs4_proc_rename
,
5019 .link
= nfs4_proc_link
,
5020 .symlink
= nfs4_proc_symlink
,
5021 .mkdir
= nfs4_proc_mkdir
,
5022 .rmdir
= nfs4_proc_remove
,
5023 .readdir
= nfs4_proc_readdir
,
5024 .mknod
= nfs4_proc_mknod
,
5025 .statfs
= nfs4_proc_statfs
,
5026 .fsinfo
= nfs4_proc_fsinfo
,
5027 .pathconf
= nfs4_proc_pathconf
,
5028 .set_capabilities
= nfs4_server_capabilities
,
5029 .decode_dirent
= nfs4_decode_dirent
,
5030 .read_setup
= nfs4_proc_read_setup
,
5031 .read_done
= nfs4_read_done
,
5032 .write_setup
= nfs4_proc_write_setup
,
5033 .write_done
= nfs4_write_done
,
5034 .commit_setup
= nfs4_proc_commit_setup
,
5035 .commit_done
= nfs4_commit_done
,
5036 .lock
= nfs4_proc_lock
,
5037 .clear_acl_cache
= nfs4_zap_acl_attr
,
5038 .close_context
= nfs4_close_context
,