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/smp_lock.h>
49 #include <linux/namei.h>
52 #include "delegation.h"
54 #define NFSDBG_FACILITY NFSDBG_PROC
56 #define NFS4_POLL_RETRY_MIN (1*HZ)
57 #define NFS4_POLL_RETRY_MAX (15*HZ)
59 static int nfs4_do_fsinfo(struct nfs_server
*, struct nfs_fh
*, struct nfs_fsinfo
*);
60 static int nfs4_async_handle_error(struct rpc_task
*, struct nfs_server
*);
61 static int _nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
);
62 static int nfs4_handle_exception(struct nfs_server
*server
, int errorcode
, struct nfs4_exception
*exception
);
63 extern u32
*nfs4_decode_dirent(u32
*p
, struct nfs_entry
*entry
, int plus
);
64 extern struct rpc_procinfo nfs4_procedures
[];
66 /* Prevent leaks of NFSv4 errors into userland */
67 int nfs4_map_errors(int err
)
70 dprintk("%s could not handle NFSv4 error %d\n",
78 * This is our standard bitmap for GETATTR requests.
80 const u32 nfs4_fattr_bitmap
[2] = {
85 | FATTR4_WORD0_FILEID
,
87 | FATTR4_WORD1_NUMLINKS
89 | FATTR4_WORD1_OWNER_GROUP
91 | FATTR4_WORD1_SPACE_USED
92 | FATTR4_WORD1_TIME_ACCESS
93 | FATTR4_WORD1_TIME_METADATA
94 | FATTR4_WORD1_TIME_MODIFY
97 const u32 nfs4_statfs_bitmap
[2] = {
98 FATTR4_WORD0_FILES_AVAIL
99 | FATTR4_WORD0_FILES_FREE
100 | FATTR4_WORD0_FILES_TOTAL
,
101 FATTR4_WORD1_SPACE_AVAIL
102 | FATTR4_WORD1_SPACE_FREE
103 | FATTR4_WORD1_SPACE_TOTAL
106 const u32 nfs4_pathconf_bitmap
[2] = {
108 | FATTR4_WORD0_MAXNAME
,
112 const u32 nfs4_fsinfo_bitmap
[2] = { FATTR4_WORD0_MAXFILESIZE
113 | FATTR4_WORD0_MAXREAD
114 | FATTR4_WORD0_MAXWRITE
115 | FATTR4_WORD0_LEASE_TIME
,
119 static void nfs4_setup_readdir(u64 cookie
, u32
*verifier
, struct dentry
*dentry
,
120 struct nfs4_readdir_arg
*readdir
)
124 BUG_ON(readdir
->count
< 80);
126 readdir
->cookie
= cookie
;
127 memcpy(&readdir
->verifier
, verifier
, sizeof(readdir
->verifier
));
132 memset(&readdir
->verifier
, 0, sizeof(readdir
->verifier
));
137 * NFSv4 servers do not return entries for '.' and '..'
138 * Therefore, we fake these entries here. We let '.'
139 * have cookie 0 and '..' have cookie 1. Note that
140 * when talking to the server, we always send cookie 0
143 start
= p
= (u32
*)kmap_atomic(*readdir
->pages
, KM_USER0
);
146 *p
++ = xdr_one
; /* next */
147 *p
++ = xdr_zero
; /* cookie, first word */
148 *p
++ = xdr_one
; /* cookie, second word */
149 *p
++ = xdr_one
; /* entry len */
150 memcpy(p
, ".\0\0\0", 4); /* entry */
152 *p
++ = xdr_one
; /* bitmap length */
153 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
154 *p
++ = htonl(8); /* attribute buffer length */
155 p
= xdr_encode_hyper(p
, dentry
->d_inode
->i_ino
);
158 *p
++ = xdr_one
; /* next */
159 *p
++ = xdr_zero
; /* cookie, first word */
160 *p
++ = xdr_two
; /* cookie, second word */
161 *p
++ = xdr_two
; /* entry len */
162 memcpy(p
, "..\0\0", 4); /* entry */
164 *p
++ = xdr_one
; /* bitmap length */
165 *p
++ = htonl(FATTR4_WORD0_FILEID
); /* bitmap */
166 *p
++ = htonl(8); /* attribute buffer length */
167 p
= xdr_encode_hyper(p
, dentry
->d_parent
->d_inode
->i_ino
);
169 readdir
->pgbase
= (char *)p
- (char *)start
;
170 readdir
->count
-= readdir
->pgbase
;
171 kunmap_atomic(start
, KM_USER0
);
175 renew_lease(struct nfs_server
*server
, unsigned long timestamp
)
177 struct nfs4_client
*clp
= server
->nfs4_state
;
178 spin_lock(&clp
->cl_lock
);
179 if (time_before(clp
->cl_last_renewal
,timestamp
))
180 clp
->cl_last_renewal
= timestamp
;
181 spin_unlock(&clp
->cl_lock
);
184 static void update_changeattr(struct inode
*inode
, struct nfs4_change_info
*cinfo
)
186 struct nfs_inode
*nfsi
= NFS_I(inode
);
188 if (cinfo
->before
== nfsi
->change_attr
&& cinfo
->atomic
)
189 nfsi
->change_attr
= cinfo
->after
;
192 static void update_open_stateid(struct nfs4_state
*state
, nfs4_stateid
*stateid
, int open_flags
)
194 struct inode
*inode
= state
->inode
;
196 open_flags
&= (FMODE_READ
|FMODE_WRITE
);
197 /* Protect against nfs4_find_state() */
198 spin_lock(&inode
->i_lock
);
199 state
->state
|= open_flags
;
200 /* NB! List reordering - see the reclaim code for why. */
201 if ((open_flags
& FMODE_WRITE
) && 0 == state
->nwriters
++)
202 list_move(&state
->open_states
, &state
->owner
->so_states
);
203 if (open_flags
& FMODE_READ
)
205 memcpy(&state
->stateid
, stateid
, sizeof(state
->stateid
));
206 spin_unlock(&inode
->i_lock
);
211 * reclaim state on the server after a reboot.
212 * Assumes caller is holding the sp->so_sem
214 static int _nfs4_open_reclaim(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
216 struct inode
*inode
= state
->inode
;
217 struct nfs_server
*server
= NFS_SERVER(inode
);
218 struct nfs_delegation
*delegation
= NFS_I(inode
)->delegation
;
219 struct nfs_openargs o_arg
= {
221 .seqid
= sp
->so_seqid
,
223 .open_flags
= state
->state
,
224 .clientid
= server
->nfs4_state
->cl_clientid
,
225 .claim
= NFS4_OPEN_CLAIM_PREVIOUS
,
226 .bitmask
= server
->attr_bitmask
,
228 struct nfs_openres o_res
= {
229 .server
= server
, /* Grrr */
231 struct rpc_message msg
= {
232 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_NOATTR
],
235 .rpc_cred
= sp
->so_cred
,
239 if (delegation
!= NULL
) {
240 if (!(delegation
->flags
& NFS_DELEGATION_NEED_RECLAIM
)) {
241 memcpy(&state
->stateid
, &delegation
->stateid
,
242 sizeof(state
->stateid
));
243 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
246 o_arg
.u
.delegation_type
= delegation
->type
;
248 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
249 nfs4_increment_seqid(status
, sp
);
251 memcpy(&state
->stateid
, &o_res
.stateid
, sizeof(state
->stateid
));
252 if (o_res
.delegation_type
!= 0) {
253 nfs_inode_reclaim_delegation(inode
, sp
->so_cred
, &o_res
);
254 /* Did the server issue an immediate delegation recall? */
256 nfs_async_inode_return_delegation(inode
, &o_res
.stateid
);
259 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
260 /* Ensure we update the inode attributes */
265 static int nfs4_open_reclaim(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
267 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
268 struct nfs4_exception exception
= { };
271 err
= _nfs4_open_reclaim(sp
, state
);
272 if (err
!= -NFS4ERR_DELAY
)
274 nfs4_handle_exception(server
, err
, &exception
);
275 } while (exception
.retry
);
279 static int _nfs4_open_delegation_recall(struct dentry
*dentry
, struct nfs4_state
*state
)
281 struct nfs4_state_owner
*sp
= state
->owner
;
282 struct inode
*inode
= dentry
->d_inode
;
283 struct nfs_server
*server
= NFS_SERVER(inode
);
284 struct dentry
*parent
= dget_parent(dentry
);
285 struct nfs_openargs arg
= {
286 .fh
= NFS_FH(parent
->d_inode
),
287 .clientid
= server
->nfs4_state
->cl_clientid
,
288 .name
= &dentry
->d_name
,
291 .bitmask
= server
->attr_bitmask
,
292 .claim
= NFS4_OPEN_CLAIM_DELEGATE_CUR
,
294 struct nfs_openres res
= {
297 struct rpc_message msg
= {
298 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_NOATTR
],
301 .rpc_cred
= sp
->so_cred
,
306 if (!test_bit(NFS_DELEGATED_STATE
, &state
->flags
))
308 if (state
->state
== 0)
310 arg
.seqid
= sp
->so_seqid
;
311 arg
.open_flags
= state
->state
;
312 memcpy(arg
.u
.delegation
.data
, state
->stateid
.data
, sizeof(arg
.u
.delegation
.data
));
313 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
314 nfs4_increment_seqid(status
, sp
);
316 memcpy(state
->stateid
.data
, res
.stateid
.data
,
317 sizeof(state
->stateid
.data
));
318 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
326 int nfs4_open_delegation_recall(struct dentry
*dentry
, struct nfs4_state
*state
)
328 struct nfs4_exception exception
= { };
329 struct nfs_server
*server
= NFS_SERVER(dentry
->d_inode
);
332 err
= _nfs4_open_delegation_recall(dentry
, state
);
336 case -NFS4ERR_STALE_CLIENTID
:
337 case -NFS4ERR_STALE_STATEID
:
338 case -NFS4ERR_EXPIRED
:
339 /* Don't recall a delegation if it was lost */
340 nfs4_schedule_state_recovery(server
->nfs4_state
);
343 err
= nfs4_handle_exception(server
, err
, &exception
);
344 } while (exception
.retry
);
348 static inline int _nfs4_proc_open_confirm(struct rpc_clnt
*clnt
, const struct nfs_fh
*fh
, struct nfs4_state_owner
*sp
, nfs4_stateid
*stateid
)
350 struct nfs_open_confirmargs arg
= {
352 .seqid
= sp
->so_seqid
,
355 struct nfs_open_confirmres res
;
356 struct rpc_message msg
= {
357 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_CONFIRM
],
360 .rpc_cred
= sp
->so_cred
,
364 status
= rpc_call_sync(clnt
, &msg
, RPC_TASK_NOINTR
);
365 nfs4_increment_seqid(status
, sp
);
367 memcpy(stateid
, &res
.stateid
, sizeof(*stateid
));
371 static int _nfs4_proc_open(struct inode
*dir
, struct nfs4_state_owner
*sp
, struct nfs_openargs
*o_arg
, struct nfs_openres
*o_res
)
373 struct nfs_server
*server
= NFS_SERVER(dir
);
374 struct rpc_message msg
= {
375 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN
],
378 .rpc_cred
= sp
->so_cred
,
382 /* Update sequence id. The caller must serialize! */
383 o_arg
->seqid
= sp
->so_seqid
;
384 o_arg
->id
= sp
->so_id
;
385 o_arg
->clientid
= sp
->so_client
->cl_clientid
;
387 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
388 nfs4_increment_seqid(status
, sp
);
391 update_changeattr(dir
, &o_res
->cinfo
);
392 if(o_res
->rflags
& NFS4_OPEN_RESULT_CONFIRM
) {
393 status
= _nfs4_proc_open_confirm(server
->client
, &o_res
->fh
,
394 sp
, &o_res
->stateid
);
398 if (!(o_res
->f_attr
->valid
& NFS_ATTR_FATTR
))
399 status
= server
->rpc_ops
->getattr(server
, &o_res
->fh
, o_res
->f_attr
);
404 static int _nfs4_do_access(struct inode
*inode
, struct rpc_cred
*cred
, int openflags
)
406 struct nfs_access_entry cache
;
410 if (openflags
& FMODE_READ
)
412 if (openflags
& FMODE_WRITE
)
414 status
= nfs_access_get_cached(inode
, cred
, &cache
);
418 /* Be clever: ask server to check for all possible rights */
419 cache
.mask
= MAY_EXEC
| MAY_WRITE
| MAY_READ
;
421 cache
.jiffies
= jiffies
;
422 status
= _nfs4_proc_access(inode
, &cache
);
425 nfs_access_add_cache(inode
, &cache
);
427 if ((cache
.mask
& mask
) == mask
)
434 * reclaim state on the server after a network partition.
435 * Assumes caller holds the appropriate lock
437 static int _nfs4_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
, struct dentry
*dentry
)
439 struct dentry
*parent
= dget_parent(dentry
);
440 struct inode
*dir
= parent
->d_inode
;
441 struct inode
*inode
= state
->inode
;
442 struct nfs_server
*server
= NFS_SERVER(dir
);
443 struct nfs_delegation
*delegation
= NFS_I(inode
)->delegation
;
444 struct nfs_fattr f_attr
= {
447 struct nfs_openargs o_arg
= {
449 .open_flags
= state
->state
,
450 .name
= &dentry
->d_name
,
451 .bitmask
= server
->attr_bitmask
,
452 .claim
= NFS4_OPEN_CLAIM_NULL
,
454 struct nfs_openres o_res
= {
460 if (delegation
!= NULL
&& !(delegation
->flags
& NFS_DELEGATION_NEED_RECLAIM
)) {
461 status
= _nfs4_do_access(inode
, sp
->so_cred
, state
->state
);
464 memcpy(&state
->stateid
, &delegation
->stateid
, sizeof(state
->stateid
));
465 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
468 status
= _nfs4_proc_open(dir
, sp
, &o_arg
, &o_res
);
471 /* Check if files differ */
472 if ((f_attr
.mode
& S_IFMT
) != (inode
->i_mode
& S_IFMT
))
474 /* Has the file handle changed? */
475 if (nfs_compare_fh(&o_res
.fh
, NFS_FH(inode
)) != 0) {
476 /* Verify if the change attributes are the same */
477 if (f_attr
.change_attr
!= NFS_I(inode
)->change_attr
)
479 if (nfs_size_to_loff_t(f_attr
.size
) != inode
->i_size
)
481 /* Lets just pretend that this is the same file */
482 nfs_copy_fh(NFS_FH(inode
), &o_res
.fh
);
483 NFS_I(inode
)->fileid
= f_attr
.fileid
;
485 memcpy(&state
->stateid
, &o_res
.stateid
, sizeof(state
->stateid
));
486 if (o_res
.delegation_type
!= 0) {
487 if (!(delegation
->flags
& NFS_DELEGATION_NEED_RECLAIM
))
488 nfs_inode_set_delegation(inode
, sp
->so_cred
, &o_res
);
490 nfs_inode_reclaim_delegation(inode
, sp
->so_cred
, &o_res
);
493 clear_bit(NFS_DELEGATED_STATE
, &state
->flags
);
499 /* Invalidate the state owner so we don't ever use it again */
500 nfs4_drop_state_owner(sp
);
502 /* Should we be trying to close that stateid? */
506 static inline int nfs4_do_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
, struct dentry
*dentry
)
508 struct nfs_server
*server
= NFS_SERVER(dentry
->d_inode
);
509 struct nfs4_exception exception
= { };
513 err
= _nfs4_open_expired(sp
, state
, dentry
);
514 if (err
== -NFS4ERR_DELAY
)
515 nfs4_handle_exception(server
, err
, &exception
);
516 } while (exception
.retry
);
520 static int nfs4_open_expired(struct nfs4_state_owner
*sp
, struct nfs4_state
*state
)
522 struct nfs_inode
*nfsi
= NFS_I(state
->inode
);
523 struct nfs_open_context
*ctx
;
526 spin_lock(&state
->inode
->i_lock
);
527 list_for_each_entry(ctx
, &nfsi
->open_files
, list
) {
528 if (ctx
->state
!= state
)
530 get_nfs_open_context(ctx
);
531 spin_unlock(&state
->inode
->i_lock
);
532 status
= nfs4_do_open_expired(sp
, state
, ctx
->dentry
);
533 put_nfs_open_context(ctx
);
536 spin_unlock(&state
->inode
->i_lock
);
541 * Returns an nfs4_state + an extra reference to the inode
543 static int _nfs4_open_delegated(struct inode
*inode
, int flags
, struct rpc_cred
*cred
, struct nfs4_state
**res
)
545 struct nfs_delegation
*delegation
;
546 struct nfs_server
*server
= NFS_SERVER(inode
);
547 struct nfs4_client
*clp
= server
->nfs4_state
;
548 struct nfs_inode
*nfsi
= NFS_I(inode
);
549 struct nfs4_state_owner
*sp
= NULL
;
550 struct nfs4_state
*state
= NULL
;
551 int open_flags
= flags
& (FMODE_READ
|FMODE_WRITE
);
554 /* Protect against reboot recovery - NOTE ORDER! */
555 down_read(&clp
->cl_sem
);
556 /* Protect against delegation recall */
557 down_read(&nfsi
->rwsem
);
558 delegation
= NFS_I(inode
)->delegation
;
560 if (delegation
== NULL
|| (delegation
->type
& open_flags
) != open_flags
)
563 if (!(sp
= nfs4_get_state_owner(server
, cred
))) {
564 dprintk("%s: nfs4_get_state_owner failed!\n", __FUNCTION__
);
568 state
= nfs4_get_open_state(inode
, sp
);
573 if ((state
->state
& open_flags
) == open_flags
) {
574 spin_lock(&inode
->i_lock
);
575 if (open_flags
& FMODE_READ
)
577 if (open_flags
& FMODE_WRITE
)
579 spin_unlock(&inode
->i_lock
);
581 } else if (state
->state
!= 0)
585 err
= _nfs4_do_access(inode
, cred
, open_flags
);
589 set_bit(NFS_DELEGATED_STATE
, &state
->flags
);
590 update_open_stateid(state
, &delegation
->stateid
, open_flags
);
593 nfs4_put_state_owner(sp
);
594 up_read(&nfsi
->rwsem
);
595 up_read(&clp
->cl_sem
);
602 nfs4_put_open_state(state
);
604 nfs4_put_state_owner(sp
);
606 up_read(&nfsi
->rwsem
);
607 up_read(&clp
->cl_sem
);
611 static struct nfs4_state
*nfs4_open_delegated(struct inode
*inode
, int flags
, struct rpc_cred
*cred
)
613 struct nfs4_exception exception
= { };
614 struct nfs4_state
*res
;
618 err
= _nfs4_open_delegated(inode
, flags
, cred
, &res
);
621 res
= ERR_PTR(nfs4_handle_exception(NFS_SERVER(inode
),
623 } while (exception
.retry
);
628 * Returns an nfs4_state + an referenced inode
630 static int _nfs4_do_open(struct inode
*dir
, struct dentry
*dentry
, int flags
, struct iattr
*sattr
, struct rpc_cred
*cred
, struct nfs4_state
**res
)
632 struct nfs4_state_owner
*sp
;
633 struct nfs4_state
*state
= NULL
;
634 struct nfs_server
*server
= NFS_SERVER(dir
);
635 struct nfs4_client
*clp
= server
->nfs4_state
;
636 struct inode
*inode
= NULL
;
638 struct nfs_fattr f_attr
= {
641 struct nfs_openargs o_arg
= {
644 .name
= &dentry
->d_name
,
646 .bitmask
= server
->attr_bitmask
,
647 .claim
= NFS4_OPEN_CLAIM_NULL
,
649 struct nfs_openres o_res
= {
654 /* Protect against reboot recovery conflicts */
655 down_read(&clp
->cl_sem
);
657 if (!(sp
= nfs4_get_state_owner(server
, cred
))) {
658 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
661 if (flags
& O_EXCL
) {
662 u32
*p
= (u32
*) o_arg
.u
.verifier
.data
;
666 o_arg
.u
.attrs
= sattr
;
667 /* Serialization for the sequence id */
670 status
= _nfs4_proc_open(dir
, sp
, &o_arg
, &o_res
);
675 inode
= nfs_fhget(dir
->i_sb
, &o_res
.fh
, &f_attr
);
678 state
= nfs4_get_open_state(inode
, sp
);
681 update_open_stateid(state
, &o_res
.stateid
, flags
);
682 if (o_res
.delegation_type
!= 0)
683 nfs_inode_set_delegation(inode
, cred
, &o_res
);
685 nfs4_put_state_owner(sp
);
686 up_read(&clp
->cl_sem
);
692 nfs4_put_open_state(state
);
694 nfs4_put_state_owner(sp
);
696 /* Note: clp->cl_sem must be released before nfs4_put_open_state()! */
697 up_read(&clp
->cl_sem
);
705 static struct nfs4_state
*nfs4_do_open(struct inode
*dir
, struct dentry
*dentry
, int flags
, struct iattr
*sattr
, struct rpc_cred
*cred
)
707 struct nfs4_exception exception
= { };
708 struct nfs4_state
*res
;
712 status
= _nfs4_do_open(dir
, dentry
, flags
, sattr
, cred
, &res
);
715 /* NOTE: BAD_SEQID means the server and client disagree about the
716 * book-keeping w.r.t. state-changing operations
717 * (OPEN/CLOSE/LOCK/LOCKU...)
718 * It is actually a sign of a bug on the client or on the server.
720 * If we receive a BAD_SEQID error in the particular case of
721 * doing an OPEN, we assume that nfs4_increment_seqid() will
722 * have unhashed the old state_owner for us, and that we can
723 * therefore safely retry using a new one. We should still warn
726 if (status
== -NFS4ERR_BAD_SEQID
) {
727 printk(KERN_WARNING
"NFS: v4 server returned a bad sequence-id error!\n");
731 res
= ERR_PTR(nfs4_handle_exception(NFS_SERVER(dir
),
732 status
, &exception
));
733 } while (exception
.retry
);
737 static int _nfs4_do_setattr(struct nfs_server
*server
, struct nfs_fattr
*fattr
,
738 struct nfs_fh
*fhandle
, struct iattr
*sattr
,
739 struct nfs4_state
*state
)
741 struct nfs_setattrargs arg
= {
745 .bitmask
= server
->attr_bitmask
,
747 struct nfs_setattrres res
= {
751 struct rpc_message msg
= {
752 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETATTR
],
761 msg
.rpc_cred
= state
->owner
->so_cred
;
762 nfs4_copy_stateid(&arg
.stateid
, state
, current
->files
);
764 memcpy(&arg
.stateid
, &zero_stateid
, sizeof(arg
.stateid
));
766 status
= rpc_call_sync(server
->client
, &msg
, 0);
770 static int nfs4_do_setattr(struct nfs_server
*server
, struct nfs_fattr
*fattr
,
771 struct nfs_fh
*fhandle
, struct iattr
*sattr
,
772 struct nfs4_state
*state
)
774 struct nfs4_exception exception
= { };
777 err
= nfs4_handle_exception(server
,
778 _nfs4_do_setattr(server
, fattr
, fhandle
, sattr
,
781 } while (exception
.retry
);
785 struct nfs4_closedata
{
787 struct nfs4_state
*state
;
788 struct nfs_closeargs arg
;
789 struct nfs_closeres res
;
792 static void nfs4_close_done(struct rpc_task
*task
)
794 struct nfs4_closedata
*calldata
= (struct nfs4_closedata
*)task
->tk_calldata
;
795 struct nfs4_state
*state
= calldata
->state
;
796 struct nfs4_state_owner
*sp
= state
->owner
;
797 struct nfs_server
*server
= NFS_SERVER(calldata
->inode
);
799 /* hmm. we are done with the inode, and in the process of freeing
800 * the state_owner. we keep this around to process errors
802 nfs4_increment_seqid(task
->tk_status
, sp
);
803 switch (task
->tk_status
) {
805 memcpy(&state
->stateid
, &calldata
->res
.stateid
,
806 sizeof(state
->stateid
));
808 case -NFS4ERR_STALE_STATEID
:
809 case -NFS4ERR_EXPIRED
:
810 state
->state
= calldata
->arg
.open_flags
;
811 nfs4_schedule_state_recovery(server
->nfs4_state
);
814 if (nfs4_async_handle_error(task
, server
) == -EAGAIN
) {
815 rpc_restart_call(task
);
819 state
->state
= calldata
->arg
.open_flags
;
820 nfs4_put_open_state(state
);
822 nfs4_put_state_owner(sp
);
823 up_read(&server
->nfs4_state
->cl_sem
);
827 static inline int nfs4_close_call(struct rpc_clnt
*clnt
, struct nfs4_closedata
*calldata
)
829 struct rpc_message msg
= {
830 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CLOSE
],
831 .rpc_argp
= &calldata
->arg
,
832 .rpc_resp
= &calldata
->res
,
833 .rpc_cred
= calldata
->state
->owner
->so_cred
,
835 if (calldata
->arg
.open_flags
!= 0)
836 msg
.rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_OPEN_DOWNGRADE
];
837 return rpc_call_async(clnt
, &msg
, 0, nfs4_close_done
, calldata
);
841 * It is possible for data to be read/written from a mem-mapped file
842 * after the sys_close call (which hits the vfs layer as a flush).
843 * This means that we can't safely call nfsv4 close on a file until
844 * the inode is cleared. This in turn means that we are not good
845 * NFSv4 citizens - we do not indicate to the server to update the file's
846 * share state even when we are done with one of the three share
847 * stateid's in the inode.
849 * NOTE: Caller must be holding the sp->so_owner semaphore!
851 int nfs4_do_close(struct inode
*inode
, struct nfs4_state
*state
, mode_t mode
)
853 struct nfs4_closedata
*calldata
;
856 /* Tell caller we're done */
857 if (test_bit(NFS_DELEGATED_STATE
, &state
->flags
)) {
861 calldata
= (struct nfs4_closedata
*)kmalloc(sizeof(*calldata
), GFP_KERNEL
);
862 if (calldata
== NULL
)
864 calldata
->inode
= inode
;
865 calldata
->state
= state
;
866 calldata
->arg
.fh
= NFS_FH(inode
);
867 /* Serialization for the sequence id */
868 calldata
->arg
.seqid
= state
->owner
->so_seqid
;
869 calldata
->arg
.open_flags
= mode
;
870 memcpy(&calldata
->arg
.stateid
, &state
->stateid
,
871 sizeof(calldata
->arg
.stateid
));
872 status
= nfs4_close_call(NFS_SERVER(inode
)->client
, calldata
);
874 * Return -EINPROGRESS on success in order to indicate to the
875 * caller that an asynchronous RPC call has been launched, and
876 * that it will release the semaphores on completion.
878 return (status
== 0) ? -EINPROGRESS
: status
;
882 nfs4_atomic_open(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
885 struct rpc_cred
*cred
;
886 struct nfs4_state
*state
;
888 if (nd
->flags
& LOOKUP_CREATE
) {
889 attr
.ia_mode
= nd
->intent
.open
.create_mode
;
890 attr
.ia_valid
= ATTR_MODE
;
891 if (!IS_POSIXACL(dir
))
892 attr
.ia_mode
&= ~current
->fs
->umask
;
895 BUG_ON(nd
->intent
.open
.flags
& O_CREAT
);
898 cred
= rpcauth_lookupcred(NFS_SERVER(dir
)->client
->cl_auth
, 0);
900 return (struct inode
*)cred
;
901 state
= nfs4_do_open(dir
, dentry
, nd
->intent
.open
.flags
, &attr
, cred
);
904 return (struct inode
*)state
;
909 nfs4_open_revalidate(struct inode
*dir
, struct dentry
*dentry
, int openflags
)
911 struct rpc_cred
*cred
;
912 struct nfs4_state
*state
;
915 cred
= rpcauth_lookupcred(NFS_SERVER(dir
)->client
->cl_auth
, 0);
917 return PTR_ERR(cred
);
918 state
= nfs4_open_delegated(dentry
->d_inode
, openflags
, cred
);
920 state
= nfs4_do_open(dir
, dentry
, openflags
, NULL
, cred
);
922 if (state
== ERR_PTR(-ENOENT
) && dentry
->d_inode
== 0)
926 inode
= state
->inode
;
927 if (inode
== dentry
->d_inode
) {
932 nfs4_close_state(state
, openflags
);
938 static int _nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
940 struct nfs4_server_caps_res res
= {};
941 struct rpc_message msg
= {
942 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SERVER_CAPS
],
948 status
= rpc_call_sync(server
->client
, &msg
, 0);
950 memcpy(server
->attr_bitmask
, res
.attr_bitmask
, sizeof(server
->attr_bitmask
));
951 if (res
.attr_bitmask
[0] & FATTR4_WORD0_ACL
)
952 server
->caps
|= NFS_CAP_ACLS
;
953 if (res
.has_links
!= 0)
954 server
->caps
|= NFS_CAP_HARDLINKS
;
955 if (res
.has_symlinks
!= 0)
956 server
->caps
|= NFS_CAP_SYMLINKS
;
957 server
->acl_bitmask
= res
.acl_bitmask
;
962 static int nfs4_server_capabilities(struct nfs_server
*server
, struct nfs_fh
*fhandle
)
964 struct nfs4_exception exception
= { };
967 err
= nfs4_handle_exception(server
,
968 _nfs4_server_capabilities(server
, fhandle
),
970 } while (exception
.retry
);
974 static int _nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
975 struct nfs_fsinfo
*info
)
977 struct nfs_fattr
* fattr
= info
->fattr
;
978 struct nfs4_lookup_root_arg args
= {
979 .bitmask
= nfs4_fattr_bitmap
,
981 struct nfs4_lookup_res res
= {
986 struct rpc_message msg
= {
987 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP_ROOT
],
992 return rpc_call_sync(server
->client
, &msg
, 0);
995 static int nfs4_lookup_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
996 struct nfs_fsinfo
*info
)
998 struct nfs4_exception exception
= { };
1001 err
= nfs4_handle_exception(server
,
1002 _nfs4_lookup_root(server
, fhandle
, info
),
1004 } while (exception
.retry
);
1008 static int nfs4_proc_get_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
1009 struct nfs_fsinfo
*info
)
1011 struct nfs_fattr
* fattr
= info
->fattr
;
1014 struct nfs4_lookup_arg args
= {
1017 .bitmask
= nfs4_fattr_bitmap
,
1019 struct nfs4_lookup_res res
= {
1024 struct rpc_message msg
= {
1025 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP
],
1032 * Now we do a separate LOOKUP for each component of the mount path.
1033 * The LOOKUPs are done separately so that we can conveniently
1034 * catch an ERR_WRONGSEC if it occurs along the way...
1036 status
= nfs4_lookup_root(server
, fhandle
, info
);
1040 p
= server
->mnt_path
;
1042 struct nfs4_exception exception
= { };
1049 while (*p
&& (*p
!= '/'))
1055 status
= nfs4_handle_exception(server
,
1056 rpc_call_sync(server
->client
, &msg
, 0),
1058 } while (exception
.retry
);
1061 if (status
== -ENOENT
) {
1062 printk(KERN_NOTICE
"NFS: mount path %s does not exist!\n", server
->mnt_path
);
1063 printk(KERN_NOTICE
"NFS: suggestion: try mounting '/' instead.\n");
1068 status
= nfs4_server_capabilities(server
, fhandle
);
1070 status
= nfs4_do_fsinfo(server
, fhandle
, info
);
1075 static int _nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
1077 struct nfs4_getattr_arg args
= {
1079 .bitmask
= server
->attr_bitmask
,
1081 struct nfs4_getattr_res res
= {
1085 struct rpc_message msg
= {
1086 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETATTR
],
1092 return rpc_call_sync(server
->client
, &msg
, 0);
1095 static int nfs4_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
1097 struct nfs4_exception exception
= { };
1100 err
= nfs4_handle_exception(server
,
1101 _nfs4_proc_getattr(server
, fhandle
, fattr
),
1103 } while (exception
.retry
);
1108 * The file is not closed if it is opened due to the a request to change
1109 * the size of the file. The open call will not be needed once the
1110 * VFS layer lookup-intents are implemented.
1112 * Close is called when the inode is destroyed.
1113 * If we haven't opened the file for O_WRONLY, we
1114 * need to in the size_change case to obtain a stateid.
1117 * Because OPEN is always done by name in nfsv4, it is
1118 * possible that we opened a different file by the same
1119 * name. We can recognize this race condition, but we
1120 * can't do anything about it besides returning an error.
1122 * This will be fixed with VFS changes (lookup-intent).
1125 nfs4_proc_setattr(struct dentry
*dentry
, struct nfs_fattr
*fattr
,
1126 struct iattr
*sattr
)
1128 struct rpc_cred
*cred
;
1129 struct inode
*inode
= dentry
->d_inode
;
1130 struct nfs4_state
*state
;
1135 cred
= rpcauth_lookupcred(NFS_SERVER(inode
)->client
->cl_auth
, 0);
1137 return PTR_ERR(cred
);
1138 /* Search for an existing WRITE delegation first */
1139 state
= nfs4_open_delegated(inode
, FMODE_WRITE
, cred
);
1140 if (!IS_ERR(state
)) {
1141 /* NB: nfs4_open_delegated() bumps the inode->i_count */
1144 /* Search for an existing open(O_WRITE) stateid */
1145 state
= nfs4_find_state(inode
, cred
, FMODE_WRITE
);
1148 status
= nfs4_do_setattr(NFS_SERVER(inode
), fattr
,
1149 NFS_FH(inode
), sattr
, state
);
1151 nfs_setattr_update_inode(inode
, sattr
);
1153 nfs4_close_state(state
, FMODE_WRITE
);
1158 static int _nfs4_proc_lookup(struct inode
*dir
, struct qstr
*name
,
1159 struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
1162 struct nfs_server
*server
= NFS_SERVER(dir
);
1163 struct nfs4_lookup_arg args
= {
1164 .bitmask
= server
->attr_bitmask
,
1165 .dir_fh
= NFS_FH(dir
),
1168 struct nfs4_lookup_res res
= {
1173 struct rpc_message msg
= {
1174 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOOKUP
],
1181 dprintk("NFS call lookup %s\n", name
->name
);
1182 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1183 dprintk("NFS reply lookup: %d\n", status
);
1187 static int nfs4_proc_lookup(struct inode
*dir
, struct qstr
*name
, struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
1189 struct nfs4_exception exception
= { };
1192 err
= nfs4_handle_exception(NFS_SERVER(dir
),
1193 _nfs4_proc_lookup(dir
, name
, fhandle
, fattr
),
1195 } while (exception
.retry
);
1199 static int _nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
1201 struct nfs4_accessargs args
= {
1202 .fh
= NFS_FH(inode
),
1204 struct nfs4_accessres res
= { 0 };
1205 struct rpc_message msg
= {
1206 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_ACCESS
],
1209 .rpc_cred
= entry
->cred
,
1211 int mode
= entry
->mask
;
1215 * Determine which access bits we want to ask for...
1217 if (mode
& MAY_READ
)
1218 args
.access
|= NFS4_ACCESS_READ
;
1219 if (S_ISDIR(inode
->i_mode
)) {
1220 if (mode
& MAY_WRITE
)
1221 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
;
1222 if (mode
& MAY_EXEC
)
1223 args
.access
|= NFS4_ACCESS_LOOKUP
;
1225 if (mode
& MAY_WRITE
)
1226 args
.access
|= NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
;
1227 if (mode
& MAY_EXEC
)
1228 args
.access
|= NFS4_ACCESS_EXECUTE
;
1230 status
= rpc_call_sync(NFS_CLIENT(inode
), &msg
, 0);
1233 if (res
.access
& NFS4_ACCESS_READ
)
1234 entry
->mask
|= MAY_READ
;
1235 if (res
.access
& (NFS4_ACCESS_MODIFY
| NFS4_ACCESS_EXTEND
| NFS4_ACCESS_DELETE
))
1236 entry
->mask
|= MAY_WRITE
;
1237 if (res
.access
& (NFS4_ACCESS_LOOKUP
|NFS4_ACCESS_EXECUTE
))
1238 entry
->mask
|= MAY_EXEC
;
1243 static int nfs4_proc_access(struct inode
*inode
, struct nfs_access_entry
*entry
)
1245 struct nfs4_exception exception
= { };
1248 err
= nfs4_handle_exception(NFS_SERVER(inode
),
1249 _nfs4_proc_access(inode
, entry
),
1251 } while (exception
.retry
);
1256 * TODO: For the time being, we don't try to get any attributes
1257 * along with any of the zero-copy operations READ, READDIR,
1260 * In the case of the first three, we want to put the GETATTR
1261 * after the read-type operation -- this is because it is hard
1262 * to predict the length of a GETATTR response in v4, and thus
1263 * align the READ data correctly. This means that the GETATTR
1264 * may end up partially falling into the page cache, and we should
1265 * shift it into the 'tail' of the xdr_buf before processing.
1266 * To do this efficiently, we need to know the total length
1267 * of data received, which doesn't seem to be available outside
1270 * In the case of WRITE, we also want to put the GETATTR after
1271 * the operation -- in this case because we want to make sure
1272 * we get the post-operation mtime and size. This means that
1273 * we can't use xdr_encode_pages() as written: we need a variant
1274 * of it which would leave room in the 'tail' iovec.
1276 * Both of these changes to the XDR layer would in fact be quite
1277 * minor, but I decided to leave them for a subsequent patch.
1279 static int _nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
1280 unsigned int pgbase
, unsigned int pglen
)
1282 struct nfs4_readlink args
= {
1283 .fh
= NFS_FH(inode
),
1288 struct rpc_message msg
= {
1289 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READLINK
],
1294 return rpc_call_sync(NFS_CLIENT(inode
), &msg
, 0);
1297 static int nfs4_proc_readlink(struct inode
*inode
, struct page
*page
,
1298 unsigned int pgbase
, unsigned int pglen
)
1300 struct nfs4_exception exception
= { };
1303 err
= nfs4_handle_exception(NFS_SERVER(inode
),
1304 _nfs4_proc_readlink(inode
, page
, pgbase
, pglen
),
1306 } while (exception
.retry
);
1310 static int _nfs4_proc_read(struct nfs_read_data
*rdata
)
1312 int flags
= rdata
->flags
;
1313 struct inode
*inode
= rdata
->inode
;
1314 struct nfs_fattr
*fattr
= rdata
->res
.fattr
;
1315 struct nfs_server
*server
= NFS_SERVER(inode
);
1316 struct rpc_message msg
= {
1317 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READ
],
1318 .rpc_argp
= &rdata
->args
,
1319 .rpc_resp
= &rdata
->res
,
1320 .rpc_cred
= rdata
->cred
,
1322 unsigned long timestamp
= jiffies
;
1325 dprintk("NFS call read %d @ %Ld\n", rdata
->args
.count
,
1326 (long long) rdata
->args
.offset
);
1329 status
= rpc_call_sync(server
->client
, &msg
, flags
);
1331 renew_lease(server
, timestamp
);
1332 dprintk("NFS reply read: %d\n", status
);
1336 static int nfs4_proc_read(struct nfs_read_data
*rdata
)
1338 struct nfs4_exception exception
= { };
1341 err
= nfs4_handle_exception(NFS_SERVER(rdata
->inode
),
1342 _nfs4_proc_read(rdata
),
1344 } while (exception
.retry
);
1348 static int _nfs4_proc_write(struct nfs_write_data
*wdata
)
1350 int rpcflags
= wdata
->flags
;
1351 struct inode
*inode
= wdata
->inode
;
1352 struct nfs_fattr
*fattr
= wdata
->res
.fattr
;
1353 struct nfs_server
*server
= NFS_SERVER(inode
);
1354 struct rpc_message msg
= {
1355 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_WRITE
],
1356 .rpc_argp
= &wdata
->args
,
1357 .rpc_resp
= &wdata
->res
,
1358 .rpc_cred
= wdata
->cred
,
1362 dprintk("NFS call write %d @ %Ld\n", wdata
->args
.count
,
1363 (long long) wdata
->args
.offset
);
1366 status
= rpc_call_sync(server
->client
, &msg
, rpcflags
);
1367 dprintk("NFS reply write: %d\n", status
);
1371 static int nfs4_proc_write(struct nfs_write_data
*wdata
)
1373 struct nfs4_exception exception
= { };
1376 err
= nfs4_handle_exception(NFS_SERVER(wdata
->inode
),
1377 _nfs4_proc_write(wdata
),
1379 } while (exception
.retry
);
1383 static int _nfs4_proc_commit(struct nfs_write_data
*cdata
)
1385 struct inode
*inode
= cdata
->inode
;
1386 struct nfs_fattr
*fattr
= cdata
->res
.fattr
;
1387 struct nfs_server
*server
= NFS_SERVER(inode
);
1388 struct rpc_message msg
= {
1389 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_COMMIT
],
1390 .rpc_argp
= &cdata
->args
,
1391 .rpc_resp
= &cdata
->res
,
1392 .rpc_cred
= cdata
->cred
,
1396 dprintk("NFS call commit %d @ %Ld\n", cdata
->args
.count
,
1397 (long long) cdata
->args
.offset
);
1400 status
= rpc_call_sync(server
->client
, &msg
, 0);
1401 dprintk("NFS reply commit: %d\n", status
);
1405 static int nfs4_proc_commit(struct nfs_write_data
*cdata
)
1407 struct nfs4_exception exception
= { };
1410 err
= nfs4_handle_exception(NFS_SERVER(cdata
->inode
),
1411 _nfs4_proc_commit(cdata
),
1413 } while (exception
.retry
);
1419 * We will need to arrange for the VFS layer to provide an atomic open.
1420 * Until then, this create/open method is prone to inefficiency and race
1421 * conditions due to the lookup, create, and open VFS calls from sys_open()
1422 * placed on the wire.
1424 * Given the above sorry state of affairs, I'm simply sending an OPEN.
1425 * The file will be opened again in the subsequent VFS open call
1426 * (nfs4_proc_file_open).
1428 * The open for read will just hang around to be used by any process that
1429 * opens the file O_RDONLY. This will all be resolved with the VFS changes.
1433 nfs4_proc_create(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
1436 struct nfs4_state
*state
;
1437 struct rpc_cred
*cred
;
1440 cred
= rpcauth_lookupcred(NFS_SERVER(dir
)->client
->cl_auth
, 0);
1442 status
= PTR_ERR(cred
);
1445 state
= nfs4_do_open(dir
, dentry
, flags
, sattr
, cred
);
1447 if (IS_ERR(state
)) {
1448 status
= PTR_ERR(state
);
1451 d_instantiate(dentry
, state
->inode
);
1452 if (flags
& O_EXCL
) {
1453 struct nfs_fattr fattr
;
1454 status
= nfs4_do_setattr(NFS_SERVER(dir
), &fattr
,
1455 NFS_FH(state
->inode
), sattr
, state
);
1457 nfs_setattr_update_inode(state
->inode
, sattr
);
1460 } else if (flags
!= 0)
1462 nfs4_close_state(state
, flags
);
1467 static int _nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
1469 struct nfs4_remove_arg args
= {
1473 struct nfs4_change_info res
;
1474 struct rpc_message msg
= {
1475 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
],
1481 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1483 update_changeattr(dir
, &res
);
1487 static int nfs4_proc_remove(struct inode
*dir
, struct qstr
*name
)
1489 struct nfs4_exception exception
= { };
1492 err
= nfs4_handle_exception(NFS_SERVER(dir
),
1493 _nfs4_proc_remove(dir
, name
),
1495 } while (exception
.retry
);
1499 struct unlink_desc
{
1500 struct nfs4_remove_arg args
;
1501 struct nfs4_change_info res
;
1504 static int nfs4_proc_unlink_setup(struct rpc_message
*msg
, struct dentry
*dir
,
1507 struct unlink_desc
*up
;
1509 up
= (struct unlink_desc
*) kmalloc(sizeof(*up
), GFP_KERNEL
);
1513 up
->args
.fh
= NFS_FH(dir
->d_inode
);
1514 up
->args
.name
= name
;
1516 msg
->rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_REMOVE
];
1517 msg
->rpc_argp
= &up
->args
;
1518 msg
->rpc_resp
= &up
->res
;
1522 static int nfs4_proc_unlink_done(struct dentry
*dir
, struct rpc_task
*task
)
1524 struct rpc_message
*msg
= &task
->tk_msg
;
1525 struct unlink_desc
*up
;
1527 if (msg
->rpc_resp
!= NULL
) {
1528 up
= container_of(msg
->rpc_resp
, struct unlink_desc
, res
);
1529 update_changeattr(dir
->d_inode
, &up
->res
);
1531 msg
->rpc_resp
= NULL
;
1532 msg
->rpc_argp
= NULL
;
1537 static int _nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
1538 struct inode
*new_dir
, struct qstr
*new_name
)
1540 struct nfs4_rename_arg arg
= {
1541 .old_dir
= NFS_FH(old_dir
),
1542 .new_dir
= NFS_FH(new_dir
),
1543 .old_name
= old_name
,
1544 .new_name
= new_name
,
1546 struct nfs4_rename_res res
= { };
1547 struct rpc_message msg
= {
1548 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENAME
],
1554 status
= rpc_call_sync(NFS_CLIENT(old_dir
), &msg
, 0);
1557 update_changeattr(old_dir
, &res
.old_cinfo
);
1558 update_changeattr(new_dir
, &res
.new_cinfo
);
1563 static int nfs4_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
1564 struct inode
*new_dir
, struct qstr
*new_name
)
1566 struct nfs4_exception exception
= { };
1569 err
= nfs4_handle_exception(NFS_SERVER(old_dir
),
1570 _nfs4_proc_rename(old_dir
, old_name
,
1573 } while (exception
.retry
);
1577 static int _nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
1579 struct nfs4_link_arg arg
= {
1580 .fh
= NFS_FH(inode
),
1581 .dir_fh
= NFS_FH(dir
),
1584 struct nfs4_change_info cinfo
= { };
1585 struct rpc_message msg
= {
1586 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LINK
],
1592 status
= rpc_call_sync(NFS_CLIENT(inode
), &msg
, 0);
1594 update_changeattr(dir
, &cinfo
);
1599 static int nfs4_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
1601 struct nfs4_exception exception
= { };
1604 err
= nfs4_handle_exception(NFS_SERVER(inode
),
1605 _nfs4_proc_link(inode
, dir
, name
),
1607 } while (exception
.retry
);
1611 static int _nfs4_proc_symlink(struct inode
*dir
, struct qstr
*name
,
1612 struct qstr
*path
, struct iattr
*sattr
, struct nfs_fh
*fhandle
,
1613 struct nfs_fattr
*fattr
)
1615 struct nfs_server
*server
= NFS_SERVER(dir
);
1616 struct nfs4_create_arg arg
= {
1617 .dir_fh
= NFS_FH(dir
),
1622 .bitmask
= server
->attr_bitmask
,
1624 struct nfs4_create_res res
= {
1629 struct rpc_message msg
= {
1630 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SYMLINK
],
1636 if (path
->len
> NFS4_MAXPATHLEN
)
1637 return -ENAMETOOLONG
;
1638 arg
.u
.symlink
= path
;
1641 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1643 update_changeattr(dir
, &res
.dir_cinfo
);
1647 static int nfs4_proc_symlink(struct inode
*dir
, struct qstr
*name
,
1648 struct qstr
*path
, struct iattr
*sattr
, struct nfs_fh
*fhandle
,
1649 struct nfs_fattr
*fattr
)
1651 struct nfs4_exception exception
= { };
1654 err
= nfs4_handle_exception(NFS_SERVER(dir
),
1655 _nfs4_proc_symlink(dir
, name
, path
, sattr
,
1658 } while (exception
.retry
);
1662 static int _nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
1663 struct iattr
*sattr
)
1665 struct nfs_server
*server
= NFS_SERVER(dir
);
1666 struct nfs_fh fhandle
;
1667 struct nfs_fattr fattr
;
1668 struct nfs4_create_arg arg
= {
1669 .dir_fh
= NFS_FH(dir
),
1671 .name
= &dentry
->d_name
,
1674 .bitmask
= server
->attr_bitmask
,
1676 struct nfs4_create_res res
= {
1681 struct rpc_message msg
= {
1682 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE
],
1690 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1692 update_changeattr(dir
, &res
.dir_cinfo
);
1693 status
= nfs_instantiate(dentry
, &fhandle
, &fattr
);
1698 static int nfs4_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
,
1699 struct iattr
*sattr
)
1701 struct nfs4_exception exception
= { };
1704 err
= nfs4_handle_exception(NFS_SERVER(dir
),
1705 _nfs4_proc_mkdir(dir
, dentry
, sattr
),
1707 } while (exception
.retry
);
1711 static int _nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
1712 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
1714 struct inode
*dir
= dentry
->d_inode
;
1715 struct nfs4_readdir_arg args
= {
1720 .bitmask
= NFS_SERVER(dentry
->d_inode
)->attr_bitmask
,
1722 struct nfs4_readdir_res res
;
1723 struct rpc_message msg
= {
1724 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READDIR
],
1731 dprintk("%s: dentry = %s/%s, cookie = %Lu\n", __FUNCTION__
,
1732 dentry
->d_parent
->d_name
.name
,
1733 dentry
->d_name
.name
,
1734 (unsigned long long)cookie
);
1736 nfs4_setup_readdir(cookie
, NFS_COOKIEVERF(dir
), dentry
, &args
);
1737 res
.pgbase
= args
.pgbase
;
1738 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1740 memcpy(NFS_COOKIEVERF(dir
), res
.verifier
.data
, NFS4_VERIFIER_SIZE
);
1742 dprintk("%s: returns %d\n", __FUNCTION__
, status
);
1746 static int nfs4_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
1747 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
1749 struct nfs4_exception exception
= { };
1752 err
= nfs4_handle_exception(NFS_SERVER(dentry
->d_inode
),
1753 _nfs4_proc_readdir(dentry
, cred
, cookie
,
1756 } while (exception
.retry
);
1760 static int _nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
1761 struct iattr
*sattr
, dev_t rdev
)
1763 struct nfs_server
*server
= NFS_SERVER(dir
);
1765 struct nfs_fattr fattr
;
1766 struct nfs4_create_arg arg
= {
1767 .dir_fh
= NFS_FH(dir
),
1769 .name
= &dentry
->d_name
,
1771 .bitmask
= server
->attr_bitmask
,
1773 struct nfs4_create_res res
= {
1778 struct rpc_message msg
= {
1779 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_CREATE
],
1784 int mode
= sattr
->ia_mode
;
1788 BUG_ON(!(sattr
->ia_valid
& ATTR_MODE
));
1789 BUG_ON(!S_ISFIFO(mode
) && !S_ISBLK(mode
) && !S_ISCHR(mode
) && !S_ISSOCK(mode
));
1791 arg
.ftype
= NF4FIFO
;
1792 else if (S_ISBLK(mode
)) {
1794 arg
.u
.device
.specdata1
= MAJOR(rdev
);
1795 arg
.u
.device
.specdata2
= MINOR(rdev
);
1797 else if (S_ISCHR(mode
)) {
1799 arg
.u
.device
.specdata1
= MAJOR(rdev
);
1800 arg
.u
.device
.specdata2
= MINOR(rdev
);
1803 arg
.ftype
= NF4SOCK
;
1805 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
1807 update_changeattr(dir
, &res
.dir_cinfo
);
1808 status
= nfs_instantiate(dentry
, &fh
, &fattr
);
1813 static int nfs4_proc_mknod(struct inode
*dir
, struct dentry
*dentry
,
1814 struct iattr
*sattr
, dev_t rdev
)
1816 struct nfs4_exception exception
= { };
1819 err
= nfs4_handle_exception(NFS_SERVER(dir
),
1820 _nfs4_proc_mknod(dir
, dentry
, sattr
, rdev
),
1822 } while (exception
.retry
);
1826 static int _nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
1827 struct nfs_fsstat
*fsstat
)
1829 struct nfs4_statfs_arg args
= {
1831 .bitmask
= server
->attr_bitmask
,
1833 struct rpc_message msg
= {
1834 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_STATFS
],
1839 fsstat
->fattr
->valid
= 0;
1840 return rpc_call_sync(server
->client
, &msg
, 0);
1843 static int nfs4_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsstat
*fsstat
)
1845 struct nfs4_exception exception
= { };
1848 err
= nfs4_handle_exception(server
,
1849 _nfs4_proc_statfs(server
, fhandle
, fsstat
),
1851 } while (exception
.retry
);
1855 static int _nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
1856 struct nfs_fsinfo
*fsinfo
)
1858 struct nfs4_fsinfo_arg args
= {
1860 .bitmask
= server
->attr_bitmask
,
1862 struct rpc_message msg
= {
1863 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_FSINFO
],
1868 return rpc_call_sync(server
->client
, &msg
, 0);
1871 static int nfs4_do_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
1873 struct nfs4_exception exception
= { };
1877 err
= nfs4_handle_exception(server
,
1878 _nfs4_do_fsinfo(server
, fhandle
, fsinfo
),
1880 } while (exception
.retry
);
1884 static int nfs4_proc_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
, struct nfs_fsinfo
*fsinfo
)
1886 fsinfo
->fattr
->valid
= 0;
1887 return nfs4_do_fsinfo(server
, fhandle
, fsinfo
);
1890 static int _nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
1891 struct nfs_pathconf
*pathconf
)
1893 struct nfs4_pathconf_arg args
= {
1895 .bitmask
= server
->attr_bitmask
,
1897 struct rpc_message msg
= {
1898 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_PATHCONF
],
1900 .rpc_resp
= pathconf
,
1903 /* None of the pathconf attributes are mandatory to implement */
1904 if ((args
.bitmask
[0] & nfs4_pathconf_bitmap
[0]) == 0) {
1905 memset(pathconf
, 0, sizeof(*pathconf
));
1909 pathconf
->fattr
->valid
= 0;
1910 return rpc_call_sync(server
->client
, &msg
, 0);
1913 static int nfs4_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
1914 struct nfs_pathconf
*pathconf
)
1916 struct nfs4_exception exception
= { };
1920 err
= nfs4_handle_exception(server
,
1921 _nfs4_proc_pathconf(server
, fhandle
, pathconf
),
1923 } while (exception
.retry
);
1928 nfs4_read_done(struct rpc_task
*task
)
1930 struct nfs_read_data
*data
= (struct nfs_read_data
*) task
->tk_calldata
;
1931 struct inode
*inode
= data
->inode
;
1933 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
)) == -EAGAIN
) {
1934 rpc_restart_call(task
);
1937 if (task
->tk_status
> 0)
1938 renew_lease(NFS_SERVER(inode
), data
->timestamp
);
1939 /* Call back common NFS readpage processing */
1940 nfs_readpage_result(task
);
1944 nfs4_proc_read_setup(struct nfs_read_data
*data
)
1946 struct rpc_task
*task
= &data
->task
;
1947 struct rpc_message msg
= {
1948 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_READ
],
1949 .rpc_argp
= &data
->args
,
1950 .rpc_resp
= &data
->res
,
1951 .rpc_cred
= data
->cred
,
1953 struct inode
*inode
= data
->inode
;
1956 data
->timestamp
= jiffies
;
1958 /* N.B. Do we need to test? Never called for swapfile inode */
1959 flags
= RPC_TASK_ASYNC
| (IS_SWAPFILE(inode
)? NFS_RPC_SWAPFLAGS
: 0);
1961 /* Finalize the task. */
1962 rpc_init_task(task
, NFS_CLIENT(inode
), nfs4_read_done
, flags
);
1963 rpc_call_setup(task
, &msg
, 0);
1967 nfs4_write_done(struct rpc_task
*task
)
1969 struct nfs_write_data
*data
= (struct nfs_write_data
*) task
->tk_calldata
;
1970 struct inode
*inode
= data
->inode
;
1972 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
)) == -EAGAIN
) {
1973 rpc_restart_call(task
);
1976 if (task
->tk_status
>= 0)
1977 renew_lease(NFS_SERVER(inode
), data
->timestamp
);
1978 /* Call back common NFS writeback processing */
1979 nfs_writeback_done(task
);
1983 nfs4_proc_write_setup(struct nfs_write_data
*data
, int how
)
1985 struct rpc_task
*task
= &data
->task
;
1986 struct rpc_message msg
= {
1987 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_WRITE
],
1988 .rpc_argp
= &data
->args
,
1989 .rpc_resp
= &data
->res
,
1990 .rpc_cred
= data
->cred
,
1992 struct inode
*inode
= data
->inode
;
1996 if (how
& FLUSH_STABLE
) {
1997 if (!NFS_I(inode
)->ncommit
)
1998 stable
= NFS_FILE_SYNC
;
2000 stable
= NFS_DATA_SYNC
;
2002 stable
= NFS_UNSTABLE
;
2003 data
->args
.stable
= stable
;
2005 data
->timestamp
= jiffies
;
2007 /* Set the initial flags for the task. */
2008 flags
= (how
& FLUSH_SYNC
) ? 0 : RPC_TASK_ASYNC
;
2010 /* Finalize the task. */
2011 rpc_init_task(task
, NFS_CLIENT(inode
), nfs4_write_done
, flags
);
2012 rpc_call_setup(task
, &msg
, 0);
2016 nfs4_commit_done(struct rpc_task
*task
)
2018 struct nfs_write_data
*data
= (struct nfs_write_data
*) task
->tk_calldata
;
2019 struct inode
*inode
= data
->inode
;
2021 if (nfs4_async_handle_error(task
, NFS_SERVER(inode
)) == -EAGAIN
) {
2022 rpc_restart_call(task
);
2025 /* Call back common NFS writeback processing */
2026 nfs_commit_done(task
);
2030 nfs4_proc_commit_setup(struct nfs_write_data
*data
, int how
)
2032 struct rpc_task
*task
= &data
->task
;
2033 struct rpc_message msg
= {
2034 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_COMMIT
],
2035 .rpc_argp
= &data
->args
,
2036 .rpc_resp
= &data
->res
,
2037 .rpc_cred
= data
->cred
,
2039 struct inode
*inode
= data
->inode
;
2042 /* Set the initial flags for the task. */
2043 flags
= (how
& FLUSH_SYNC
) ? 0 : RPC_TASK_ASYNC
;
2045 /* Finalize the task. */
2046 rpc_init_task(task
, NFS_CLIENT(inode
), nfs4_commit_done
, flags
);
2047 rpc_call_setup(task
, &msg
, 0);
2051 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
2052 * standalone procedure for queueing an asynchronous RENEW.
2055 renew_done(struct rpc_task
*task
)
2057 struct nfs4_client
*clp
= (struct nfs4_client
*)task
->tk_msg
.rpc_argp
;
2058 unsigned long timestamp
= (unsigned long)task
->tk_calldata
;
2060 if (task
->tk_status
< 0) {
2061 switch (task
->tk_status
) {
2062 case -NFS4ERR_STALE_CLIENTID
:
2063 case -NFS4ERR_EXPIRED
:
2064 case -NFS4ERR_CB_PATH_DOWN
:
2065 nfs4_schedule_state_recovery(clp
);
2069 spin_lock(&clp
->cl_lock
);
2070 if (time_before(clp
->cl_last_renewal
,timestamp
))
2071 clp
->cl_last_renewal
= timestamp
;
2072 spin_unlock(&clp
->cl_lock
);
2076 nfs4_proc_async_renew(struct nfs4_client
*clp
)
2078 struct rpc_message msg
= {
2079 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
2081 .rpc_cred
= clp
->cl_cred
,
2084 return rpc_call_async(clp
->cl_rpcclient
, &msg
, RPC_TASK_SOFT
,
2085 renew_done
, (void *)jiffies
);
2089 nfs4_proc_renew(struct nfs4_client
*clp
)
2091 struct rpc_message msg
= {
2092 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_RENEW
],
2094 .rpc_cred
= clp
->cl_cred
,
2096 unsigned long now
= jiffies
;
2099 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
2102 spin_lock(&clp
->cl_lock
);
2103 if (time_before(clp
->cl_last_renewal
,now
))
2104 clp
->cl_last_renewal
= now
;
2105 spin_unlock(&clp
->cl_lock
);
2110 * We will need to arrange for the VFS layer to provide an atomic open.
2111 * Until then, this open method is prone to inefficiency and race conditions
2112 * due to the lookup, potential create, and open VFS calls from sys_open()
2113 * placed on the wire.
2116 nfs4_proc_file_open(struct inode
*inode
, struct file
*filp
)
2118 struct dentry
*dentry
= filp
->f_dentry
;
2119 struct nfs_open_context
*ctx
;
2120 struct nfs4_state
*state
= NULL
;
2121 struct rpc_cred
*cred
;
2122 int status
= -ENOMEM
;
2124 dprintk("nfs4_proc_file_open: starting on (%.*s/%.*s)\n",
2125 (int)dentry
->d_parent
->d_name
.len
,
2126 dentry
->d_parent
->d_name
.name
,
2127 (int)dentry
->d_name
.len
, dentry
->d_name
.name
);
2130 /* Find our open stateid */
2131 cred
= rpcauth_lookupcred(NFS_SERVER(inode
)->client
->cl_auth
, 0);
2133 return PTR_ERR(cred
);
2134 ctx
= alloc_nfs_open_context(dentry
, cred
);
2136 if (unlikely(ctx
== NULL
))
2138 status
= -EIO
; /* ERACE actually */
2139 state
= nfs4_find_state(inode
, cred
, filp
->f_mode
);
2140 if (unlikely(state
== NULL
))
2143 nfs4_close_state(state
, filp
->f_mode
);
2144 ctx
->mode
= filp
->f_mode
;
2145 nfs_file_set_open_context(filp
, ctx
);
2146 put_nfs_open_context(ctx
);
2147 if (filp
->f_mode
& FMODE_WRITE
)
2148 nfs_begin_data_update(inode
);
2151 printk(KERN_WARNING
"NFS: v4 raced in function %s\n", __FUNCTION__
);
2152 put_nfs_open_context(ctx
);
2160 nfs4_proc_file_release(struct inode
*inode
, struct file
*filp
)
2162 if (filp
->f_mode
& FMODE_WRITE
)
2163 nfs_end_data_update(inode
);
2164 nfs_file_clear_open_context(filp
);
2168 static inline int nfs4_server_supports_acls(struct nfs_server
*server
)
2170 return (server
->caps
& NFS_CAP_ACLS
)
2171 && (server
->acl_bitmask
& ACL4_SUPPORT_ALLOW_ACL
)
2172 && (server
->acl_bitmask
& ACL4_SUPPORT_DENY_ACL
);
2175 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_CACHE_SIZE, and that
2176 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_CACHE_SIZE) bytes on
2179 #define NFS4ACL_MAXPAGES (XATTR_SIZE_MAX >> PAGE_CACHE_SHIFT)
2181 static void buf_to_pages(const void *buf
, size_t buflen
,
2182 struct page
**pages
, unsigned int *pgbase
)
2184 const void *p
= buf
;
2186 *pgbase
= offset_in_page(buf
);
2188 while (p
< buf
+ buflen
) {
2189 *(pages
++) = virt_to_page(p
);
2190 p
+= PAGE_CACHE_SIZE
;
2194 struct nfs4_cached_acl
{
2200 static void nfs4_set_cached_acl(struct inode
*inode
, struct nfs4_cached_acl
*acl
)
2202 struct nfs_inode
*nfsi
= NFS_I(inode
);
2204 spin_lock(&inode
->i_lock
);
2205 kfree(nfsi
->nfs4_acl
);
2206 nfsi
->nfs4_acl
= acl
;
2207 spin_unlock(&inode
->i_lock
);
2210 static void nfs4_zap_acl_attr(struct inode
*inode
)
2212 nfs4_set_cached_acl(inode
, NULL
);
2215 static inline ssize_t
nfs4_read_cached_acl(struct inode
*inode
, char *buf
, size_t buflen
)
2217 struct nfs_inode
*nfsi
= NFS_I(inode
);
2218 struct nfs4_cached_acl
*acl
;
2221 spin_lock(&inode
->i_lock
);
2222 acl
= nfsi
->nfs4_acl
;
2225 if (buf
== NULL
) /* user is just asking for length */
2227 if (acl
->cached
== 0)
2229 ret
= -ERANGE
; /* see getxattr(2) man page */
2230 if (acl
->len
> buflen
)
2232 memcpy(buf
, acl
->data
, acl
->len
);
2236 spin_unlock(&inode
->i_lock
);
2240 static void nfs4_write_cached_acl(struct inode
*inode
, const char *buf
, size_t acl_len
)
2242 struct nfs4_cached_acl
*acl
;
2244 if (buf
&& acl_len
<= PAGE_SIZE
) {
2245 acl
= kmalloc(sizeof(*acl
) + acl_len
, GFP_KERNEL
);
2249 memcpy(acl
->data
, buf
, acl_len
);
2251 acl
= kmalloc(sizeof(*acl
), GFP_KERNEL
);
2258 nfs4_set_cached_acl(inode
, acl
);
2261 static inline ssize_t
nfs4_get_acl_uncached(struct inode
*inode
, void *buf
, size_t buflen
)
2263 struct page
*pages
[NFS4ACL_MAXPAGES
];
2264 struct nfs_getaclargs args
= {
2265 .fh
= NFS_FH(inode
),
2269 size_t resp_len
= buflen
;
2271 struct rpc_message msg
= {
2272 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_GETACL
],
2274 .rpc_resp
= &resp_len
,
2276 struct page
*localpage
= NULL
;
2279 if (buflen
< PAGE_SIZE
) {
2280 /* As long as we're doing a round trip to the server anyway,
2281 * let's be prepared for a page of acl data. */
2282 localpage
= alloc_page(GFP_KERNEL
);
2283 resp_buf
= page_address(localpage
);
2284 if (localpage
== NULL
)
2286 args
.acl_pages
[0] = localpage
;
2287 args
.acl_pgbase
= 0;
2288 args
.acl_len
= PAGE_SIZE
;
2291 buf_to_pages(buf
, buflen
, args
.acl_pages
, &args
.acl_pgbase
);
2293 ret
= rpc_call_sync(NFS_CLIENT(inode
), &msg
, 0);
2296 if (resp_len
> args
.acl_len
)
2297 nfs4_write_cached_acl(inode
, NULL
, resp_len
);
2299 nfs4_write_cached_acl(inode
, resp_buf
, resp_len
);
2302 if (resp_len
> buflen
)
2305 memcpy(buf
, resp_buf
, resp_len
);
2310 __free_page(localpage
);
2314 static ssize_t
nfs4_proc_get_acl(struct inode
*inode
, void *buf
, size_t buflen
)
2316 struct nfs_server
*server
= NFS_SERVER(inode
);
2319 if (!nfs4_server_supports_acls(server
))
2321 ret
= nfs_revalidate_inode(server
, inode
);
2324 ret
= nfs4_read_cached_acl(inode
, buf
, buflen
);
2327 return nfs4_get_acl_uncached(inode
, buf
, buflen
);
2330 static int nfs4_proc_set_acl(struct inode
*inode
, const void *buf
, size_t buflen
)
2332 struct nfs_server
*server
= NFS_SERVER(inode
);
2333 struct page
*pages
[NFS4ACL_MAXPAGES
];
2334 struct nfs_setaclargs arg
= {
2335 .fh
= NFS_FH(inode
),
2339 struct rpc_message msg
= {
2340 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETACL
],
2346 if (!nfs4_server_supports_acls(server
))
2348 buf_to_pages(buf
, buflen
, arg
.acl_pages
, &arg
.acl_pgbase
);
2349 ret
= rpc_call_sync(NFS_SERVER(inode
)->client
, &msg
, 0);
2351 nfs4_write_cached_acl(inode
, buf
, buflen
);
2356 nfs4_async_handle_error(struct rpc_task
*task
, struct nfs_server
*server
)
2358 struct nfs4_client
*clp
= server
->nfs4_state
;
2360 if (!clp
|| task
->tk_status
>= 0)
2362 switch(task
->tk_status
) {
2363 case -NFS4ERR_STALE_CLIENTID
:
2364 case -NFS4ERR_STALE_STATEID
:
2365 case -NFS4ERR_EXPIRED
:
2366 rpc_sleep_on(&clp
->cl_rpcwaitq
, task
, NULL
, NULL
);
2367 nfs4_schedule_state_recovery(clp
);
2368 if (test_bit(NFS4CLNT_OK
, &clp
->cl_state
))
2369 rpc_wake_up_task(task
);
2370 task
->tk_status
= 0;
2372 case -NFS4ERR_GRACE
:
2373 case -NFS4ERR_DELAY
:
2374 rpc_delay(task
, NFS4_POLL_RETRY_MAX
);
2375 task
->tk_status
= 0;
2377 case -NFS4ERR_OLD_STATEID
:
2378 task
->tk_status
= 0;
2381 task
->tk_status
= nfs4_map_errors(task
->tk_status
);
2385 static int nfs4_wait_clnt_recover(struct rpc_clnt
*clnt
, struct nfs4_client
*clp
)
2389 int interruptible
, res
= 0;
2393 rpc_clnt_sigmask(clnt
, &oldset
);
2394 interruptible
= TASK_UNINTERRUPTIBLE
;
2396 interruptible
= TASK_INTERRUPTIBLE
;
2397 prepare_to_wait(&clp
->cl_waitq
, &wait
, interruptible
);
2398 nfs4_schedule_state_recovery(clp
);
2399 if (clnt
->cl_intr
&& signalled())
2401 else if (!test_bit(NFS4CLNT_OK
, &clp
->cl_state
))
2403 finish_wait(&clp
->cl_waitq
, &wait
);
2404 rpc_clnt_sigunmask(clnt
, &oldset
);
2408 static int nfs4_delay(struct rpc_clnt
*clnt
, long *timeout
)
2416 *timeout
= NFS4_POLL_RETRY_MIN
;
2417 if (*timeout
> NFS4_POLL_RETRY_MAX
)
2418 *timeout
= NFS4_POLL_RETRY_MAX
;
2419 rpc_clnt_sigmask(clnt
, &oldset
);
2420 if (clnt
->cl_intr
) {
2421 set_current_state(TASK_INTERRUPTIBLE
);
2422 schedule_timeout(*timeout
);
2426 set_current_state(TASK_UNINTERRUPTIBLE
);
2427 schedule_timeout(*timeout
);
2429 rpc_clnt_sigunmask(clnt
, &oldset
);
2434 /* This is the error handling routine for processes that are allowed
2437 int nfs4_handle_exception(struct nfs_server
*server
, int errorcode
, struct nfs4_exception
*exception
)
2439 struct nfs4_client
*clp
= server
->nfs4_state
;
2440 int ret
= errorcode
;
2442 exception
->retry
= 0;
2446 case -NFS4ERR_STALE_CLIENTID
:
2447 case -NFS4ERR_STALE_STATEID
:
2448 case -NFS4ERR_EXPIRED
:
2449 ret
= nfs4_wait_clnt_recover(server
->client
, clp
);
2451 exception
->retry
= 1;
2453 case -NFS4ERR_GRACE
:
2454 case -NFS4ERR_DELAY
:
2455 ret
= nfs4_delay(server
->client
, &exception
->timeout
);
2457 exception
->retry
= 1;
2459 case -NFS4ERR_OLD_STATEID
:
2461 exception
->retry
= 1;
2463 /* We failed to handle the error */
2464 return nfs4_map_errors(ret
);
2467 int nfs4_proc_setclientid(struct nfs4_client
*clp
, u32 program
, unsigned short port
)
2469 nfs4_verifier sc_verifier
;
2470 struct nfs4_setclientid setclientid
= {
2471 .sc_verifier
= &sc_verifier
,
2474 struct rpc_message msg
= {
2475 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID
],
2476 .rpc_argp
= &setclientid
,
2478 .rpc_cred
= clp
->cl_cred
,
2484 p
= (u32
*)sc_verifier
.data
;
2485 *p
++ = htonl((u32
)clp
->cl_boot_time
.tv_sec
);
2486 *p
= htonl((u32
)clp
->cl_boot_time
.tv_nsec
);
2489 setclientid
.sc_name_len
= scnprintf(setclientid
.sc_name
,
2490 sizeof(setclientid
.sc_name
), "%s/%u.%u.%u.%u %s %u",
2491 clp
->cl_ipaddr
, NIPQUAD(clp
->cl_addr
.s_addr
),
2492 clp
->cl_cred
->cr_ops
->cr_name
,
2493 clp
->cl_id_uniquifier
);
2494 setclientid
.sc_netid_len
= scnprintf(setclientid
.sc_netid
,
2495 sizeof(setclientid
.sc_netid
), "tcp");
2496 setclientid
.sc_uaddr_len
= scnprintf(setclientid
.sc_uaddr
,
2497 sizeof(setclientid
.sc_uaddr
), "%s.%d.%d",
2498 clp
->cl_ipaddr
, port
>> 8, port
& 255);
2500 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
2501 if (status
!= -NFS4ERR_CLID_INUSE
)
2506 ssleep(clp
->cl_lease_time
+ 1);
2508 if (++clp
->cl_id_uniquifier
== 0)
2515 nfs4_proc_setclientid_confirm(struct nfs4_client
*clp
)
2517 struct nfs_fsinfo fsinfo
;
2518 struct rpc_message msg
= {
2519 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_SETCLIENTID_CONFIRM
],
2521 .rpc_resp
= &fsinfo
,
2522 .rpc_cred
= clp
->cl_cred
,
2528 status
= rpc_call_sync(clp
->cl_rpcclient
, &msg
, 0);
2530 spin_lock(&clp
->cl_lock
);
2531 clp
->cl_lease_time
= fsinfo
.lease_time
* HZ
;
2532 clp
->cl_last_renewal
= now
;
2533 spin_unlock(&clp
->cl_lock
);
2538 static int _nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
)
2540 struct nfs4_delegreturnargs args
= {
2541 .fhandle
= NFS_FH(inode
),
2544 struct rpc_message msg
= {
2545 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_DELEGRETURN
],
2550 return rpc_call_sync(NFS_CLIENT(inode
), &msg
, 0);
2553 int nfs4_proc_delegreturn(struct inode
*inode
, struct rpc_cred
*cred
, const nfs4_stateid
*stateid
)
2555 struct nfs_server
*server
= NFS_SERVER(inode
);
2556 struct nfs4_exception exception
= { };
2559 err
= _nfs4_proc_delegreturn(inode
, cred
, stateid
);
2561 case -NFS4ERR_STALE_STATEID
:
2562 case -NFS4ERR_EXPIRED
:
2563 nfs4_schedule_state_recovery(server
->nfs4_state
);
2567 err
= nfs4_handle_exception(server
, err
, &exception
);
2568 } while (exception
.retry
);
2572 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
2573 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
2576 * sleep, with exponential backoff, and retry the LOCK operation.
2578 static unsigned long
2579 nfs4_set_lock_task_retry(unsigned long timeout
)
2581 current
->state
= TASK_INTERRUPTIBLE
;
2582 schedule_timeout(timeout
);
2584 if (timeout
> NFS4_LOCK_MAXTIMEOUT
)
2585 return NFS4_LOCK_MAXTIMEOUT
;
2590 nfs4_lck_type(int cmd
, struct file_lock
*request
)
2593 switch (request
->fl_type
) {
2595 return IS_SETLKW(cmd
) ? NFS4_READW_LT
: NFS4_READ_LT
;
2597 return IS_SETLKW(cmd
) ? NFS4_WRITEW_LT
: NFS4_WRITE_LT
;
2599 return NFS4_WRITE_LT
;
2605 static inline uint64_t
2606 nfs4_lck_length(struct file_lock
*request
)
2608 if (request
->fl_end
== OFFSET_MAX
)
2609 return ~(uint64_t)0;
2610 return request
->fl_end
- request
->fl_start
+ 1;
2613 static int _nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2615 struct inode
*inode
= state
->inode
;
2616 struct nfs_server
*server
= NFS_SERVER(inode
);
2617 struct nfs4_client
*clp
= server
->nfs4_state
;
2618 struct nfs_lockargs arg
= {
2619 .fh
= NFS_FH(inode
),
2620 .type
= nfs4_lck_type(cmd
, request
),
2621 .offset
= request
->fl_start
,
2622 .length
= nfs4_lck_length(request
),
2624 struct nfs_lockres res
= {
2627 struct rpc_message msg
= {
2628 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKT
],
2631 .rpc_cred
= state
->owner
->so_cred
,
2633 struct nfs_lowner nlo
;
2634 struct nfs4_lock_state
*lsp
;
2637 down_read(&clp
->cl_sem
);
2638 nlo
.clientid
= clp
->cl_clientid
;
2639 down(&state
->lock_sema
);
2640 status
= nfs4_set_lock_state(state
, request
);
2643 lsp
= request
->fl_u
.nfs4_fl
.owner
;
2644 nlo
.id
= lsp
->ls_id
;
2646 status
= rpc_call_sync(server
->client
, &msg
, 0);
2648 request
->fl_type
= F_UNLCK
;
2649 } else if (status
== -NFS4ERR_DENIED
) {
2650 int64_t len
, start
, end
;
2651 start
= res
.u
.denied
.offset
;
2652 len
= res
.u
.denied
.length
;
2653 end
= start
+ len
- 1;
2654 if (end
< 0 || len
== 0)
2655 request
->fl_end
= OFFSET_MAX
;
2657 request
->fl_end
= (loff_t
)end
;
2658 request
->fl_start
= (loff_t
)start
;
2659 request
->fl_type
= F_WRLCK
;
2660 if (res
.u
.denied
.type
& 1)
2661 request
->fl_type
= F_RDLCK
;
2662 request
->fl_pid
= 0;
2666 up(&state
->lock_sema
);
2667 up_read(&clp
->cl_sem
);
2671 static int nfs4_proc_getlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2673 struct nfs4_exception exception
= { };
2677 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
2678 _nfs4_proc_getlk(state
, cmd
, request
),
2680 } while (exception
.retry
);
2684 static int do_vfs_lock(struct file
*file
, struct file_lock
*fl
)
2687 switch (fl
->fl_flags
& (FL_POSIX
|FL_FLOCK
)) {
2689 res
= posix_lock_file_wait(file
, fl
);
2692 res
= flock_lock_file_wait(file
, fl
);
2698 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n",
2703 static int _nfs4_proc_unlck(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2705 struct inode
*inode
= state
->inode
;
2706 struct nfs_server
*server
= NFS_SERVER(inode
);
2707 struct nfs4_client
*clp
= server
->nfs4_state
;
2708 struct nfs_lockargs arg
= {
2709 .fh
= NFS_FH(inode
),
2710 .type
= nfs4_lck_type(cmd
, request
),
2711 .offset
= request
->fl_start
,
2712 .length
= nfs4_lck_length(request
),
2714 struct nfs_lockres res
= {
2717 struct rpc_message msg
= {
2718 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCKU
],
2721 .rpc_cred
= state
->owner
->so_cred
,
2723 struct nfs4_lock_state
*lsp
;
2724 struct nfs_locku_opargs luargs
;
2727 down_read(&clp
->cl_sem
);
2728 down(&state
->lock_sema
);
2729 status
= nfs4_set_lock_state(state
, request
);
2732 lsp
= request
->fl_u
.nfs4_fl
.owner
;
2733 /* We might have lost the locks! */
2734 if ((lsp
->ls_flags
& NFS_LOCK_INITIALIZED
) == 0)
2736 luargs
.seqid
= lsp
->ls_seqid
;
2737 memcpy(&luargs
.stateid
, &lsp
->ls_stateid
, sizeof(luargs
.stateid
));
2738 arg
.u
.locku
= &luargs
;
2739 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
2740 nfs4_increment_lock_seqid(status
, lsp
);
2743 memcpy(&lsp
->ls_stateid
, &res
.u
.stateid
,
2744 sizeof(lsp
->ls_stateid
));
2746 up(&state
->lock_sema
);
2748 do_vfs_lock(request
->fl_file
, request
);
2749 up_read(&clp
->cl_sem
);
2753 static int nfs4_proc_unlck(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2755 struct nfs4_exception exception
= { };
2759 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
2760 _nfs4_proc_unlck(state
, cmd
, request
),
2762 } while (exception
.retry
);
2766 static int _nfs4_do_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
, int reclaim
)
2768 struct inode
*inode
= state
->inode
;
2769 struct nfs_server
*server
= NFS_SERVER(inode
);
2770 struct nfs4_lock_state
*lsp
= request
->fl_u
.nfs4_fl
.owner
;
2771 struct nfs_lockargs arg
= {
2772 .fh
= NFS_FH(inode
),
2773 .type
= nfs4_lck_type(cmd
, request
),
2774 .offset
= request
->fl_start
,
2775 .length
= nfs4_lck_length(request
),
2777 struct nfs_lockres res
= {
2780 struct rpc_message msg
= {
2781 .rpc_proc
= &nfs4_procedures
[NFSPROC4_CLNT_LOCK
],
2784 .rpc_cred
= state
->owner
->so_cred
,
2786 struct nfs_lock_opargs largs
= {
2788 .new_lock_owner
= 0,
2792 if (!(lsp
->ls_flags
& NFS_LOCK_INITIALIZED
)) {
2793 struct nfs4_state_owner
*owner
= state
->owner
;
2794 struct nfs_open_to_lock otl
= {
2796 .clientid
= server
->nfs4_state
->cl_clientid
,
2800 otl
.lock_seqid
= lsp
->ls_seqid
;
2801 otl
.lock_owner
.id
= lsp
->ls_id
;
2802 memcpy(&otl
.open_stateid
, &state
->stateid
, sizeof(otl
.open_stateid
));
2803 largs
.u
.open_lock
= &otl
;
2804 largs
.new_lock_owner
= 1;
2805 arg
.u
.lock
= &largs
;
2806 down(&owner
->so_sema
);
2807 otl
.open_seqid
= owner
->so_seqid
;
2808 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
2809 /* increment open_owner seqid on success, and
2810 * seqid mutating errors */
2811 nfs4_increment_seqid(status
, owner
);
2812 up(&owner
->so_sema
);
2814 lsp
->ls_flags
|= NFS_LOCK_INITIALIZED
;
2818 struct nfs_exist_lock el
= {
2819 .seqid
= lsp
->ls_seqid
,
2821 memcpy(&el
.stateid
, &lsp
->ls_stateid
, sizeof(el
.stateid
));
2822 largs
.u
.exist_lock
= &el
;
2823 arg
.u
.lock
= &largs
;
2824 status
= rpc_call_sync(server
->client
, &msg
, RPC_TASK_NOINTR
);
2825 /* increment seqid on success, and * seqid mutating errors*/
2826 nfs4_increment_lock_seqid(status
, lsp
);
2828 /* save the returned stateid. */
2830 memcpy(&lsp
->ls_stateid
, &res
.u
.stateid
, sizeof(nfs4_stateid
));
2831 else if (status
== -NFS4ERR_DENIED
)
2836 static int nfs4_lock_reclaim(struct nfs4_state
*state
, struct file_lock
*request
)
2838 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
2839 struct nfs4_exception exception
= { };
2843 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 1);
2844 if (err
!= -NFS4ERR_DELAY
)
2846 nfs4_handle_exception(server
, err
, &exception
);
2847 } while (exception
.retry
);
2851 static int nfs4_lock_expired(struct nfs4_state
*state
, struct file_lock
*request
)
2853 struct nfs_server
*server
= NFS_SERVER(state
->inode
);
2854 struct nfs4_exception exception
= { };
2858 err
= _nfs4_do_setlk(state
, F_SETLK
, request
, 0);
2859 if (err
!= -NFS4ERR_DELAY
)
2861 nfs4_handle_exception(server
, err
, &exception
);
2862 } while (exception
.retry
);
2866 static int _nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2868 struct nfs4_client
*clp
= state
->owner
->so_client
;
2871 down_read(&clp
->cl_sem
);
2872 down(&state
->lock_sema
);
2873 status
= nfs4_set_lock_state(state
, request
);
2875 status
= _nfs4_do_setlk(state
, cmd
, request
, 0);
2876 up(&state
->lock_sema
);
2878 /* Note: we always want to sleep here! */
2879 request
->fl_flags
|= FL_SLEEP
;
2880 if (do_vfs_lock(request
->fl_file
, request
) < 0)
2881 printk(KERN_WARNING
"%s: VFS is out of sync with lock manager!\n", __FUNCTION__
);
2883 up_read(&clp
->cl_sem
);
2887 static int nfs4_proc_setlk(struct nfs4_state
*state
, int cmd
, struct file_lock
*request
)
2889 struct nfs4_exception exception
= { };
2893 err
= nfs4_handle_exception(NFS_SERVER(state
->inode
),
2894 _nfs4_proc_setlk(state
, cmd
, request
),
2896 } while (exception
.retry
);
2901 nfs4_proc_lock(struct file
*filp
, int cmd
, struct file_lock
*request
)
2903 struct nfs_open_context
*ctx
;
2904 struct nfs4_state
*state
;
2905 unsigned long timeout
= NFS4_LOCK_MINTIMEOUT
;
2908 /* verify open state */
2909 ctx
= (struct nfs_open_context
*)filp
->private_data
;
2912 if (request
->fl_start
< 0 || request
->fl_end
< 0)
2916 return nfs4_proc_getlk(state
, F_GETLK
, request
);
2918 if (!(IS_SETLK(cmd
) || IS_SETLKW(cmd
)))
2921 if (request
->fl_type
== F_UNLCK
)
2922 return nfs4_proc_unlck(state
, cmd
, request
);
2925 status
= nfs4_proc_setlk(state
, cmd
, request
);
2926 if ((status
!= -EAGAIN
) || IS_SETLK(cmd
))
2928 timeout
= nfs4_set_lock_task_retry(timeout
);
2929 status
= -ERESTARTSYS
;
2932 } while(status
< 0);
2937 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
2939 int nfs4_setxattr(struct dentry
*dentry
, const char *key
, const void *buf
,
2940 size_t buflen
, int flags
)
2942 struct inode
*inode
= dentry
->d_inode
;
2944 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
2947 if (!S_ISREG(inode
->i_mode
) &&
2948 (!S_ISDIR(inode
->i_mode
) || inode
->i_mode
& S_ISVTX
))
2951 return nfs4_proc_set_acl(inode
, buf
, buflen
);
2954 /* The getxattr man page suggests returning -ENODATA for unknown attributes,
2955 * and that's what we'll do for e.g. user attributes that haven't been set.
2956 * But we'll follow ext2/ext3's lead by returning -EOPNOTSUPP for unsupported
2957 * attributes in kernel-managed attribute namespaces. */
2958 ssize_t
nfs4_getxattr(struct dentry
*dentry
, const char *key
, void *buf
,
2961 struct inode
*inode
= dentry
->d_inode
;
2963 if (strcmp(key
, XATTR_NAME_NFSV4_ACL
) != 0)
2966 return nfs4_proc_get_acl(inode
, buf
, buflen
);
2969 ssize_t
nfs4_listxattr(struct dentry
*dentry
, char *buf
, size_t buflen
)
2971 size_t len
= strlen(XATTR_NAME_NFSV4_ACL
) + 1;
2973 if (buf
&& buflen
< len
)
2976 memcpy(buf
, XATTR_NAME_NFSV4_ACL
, len
);
2980 struct nfs4_state_recovery_ops nfs4_reboot_recovery_ops
= {
2981 .recover_open
= nfs4_open_reclaim
,
2982 .recover_lock
= nfs4_lock_reclaim
,
2985 struct nfs4_state_recovery_ops nfs4_network_partition_recovery_ops
= {
2986 .recover_open
= nfs4_open_expired
,
2987 .recover_lock
= nfs4_lock_expired
,
2990 static struct inode_operations nfs4_file_inode_operations
= {
2991 .permission
= nfs_permission
,
2992 .getattr
= nfs_getattr
,
2993 .setattr
= nfs_setattr
,
2994 .getxattr
= nfs4_getxattr
,
2995 .setxattr
= nfs4_setxattr
,
2996 .listxattr
= nfs4_listxattr
,
2999 struct nfs_rpc_ops nfs_v4_clientops
= {
3000 .version
= 4, /* protocol version */
3001 .dentry_ops
= &nfs4_dentry_operations
,
3002 .dir_inode_ops
= &nfs4_dir_inode_operations
,
3003 .file_inode_ops
= &nfs4_file_inode_operations
,
3004 .getroot
= nfs4_proc_get_root
,
3005 .getattr
= nfs4_proc_getattr
,
3006 .setattr
= nfs4_proc_setattr
,
3007 .lookup
= nfs4_proc_lookup
,
3008 .access
= nfs4_proc_access
,
3009 .readlink
= nfs4_proc_readlink
,
3010 .read
= nfs4_proc_read
,
3011 .write
= nfs4_proc_write
,
3012 .commit
= nfs4_proc_commit
,
3013 .create
= nfs4_proc_create
,
3014 .remove
= nfs4_proc_remove
,
3015 .unlink_setup
= nfs4_proc_unlink_setup
,
3016 .unlink_done
= nfs4_proc_unlink_done
,
3017 .rename
= nfs4_proc_rename
,
3018 .link
= nfs4_proc_link
,
3019 .symlink
= nfs4_proc_symlink
,
3020 .mkdir
= nfs4_proc_mkdir
,
3021 .rmdir
= nfs4_proc_remove
,
3022 .readdir
= nfs4_proc_readdir
,
3023 .mknod
= nfs4_proc_mknod
,
3024 .statfs
= nfs4_proc_statfs
,
3025 .fsinfo
= nfs4_proc_fsinfo
,
3026 .pathconf
= nfs4_proc_pathconf
,
3027 .decode_dirent
= nfs4_decode_dirent
,
3028 .read_setup
= nfs4_proc_read_setup
,
3029 .write_setup
= nfs4_proc_write_setup
,
3030 .commit_setup
= nfs4_proc_commit_setup
,
3031 .file_open
= nfs4_proc_file_open
,
3032 .file_release
= nfs4_proc_file_release
,
3033 .lock
= nfs4_proc_lock
,
3034 .clear_acl_cache
= nfs4_zap_acl_attr
,