]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - fs/nfs/nfs4proc.c
031b867aaefa878201f3ce96bfe5ac13c3359dea
[mirror_ubuntu-artful-kernel.git] / fs / nfs / nfs4proc.c
1 /*
2 * fs/nfs/nfs4proc.c
3 *
4 * Client-side procedure declarations for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
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.
24 *
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.
36 */
37
38 #include <linux/mm.h>
39 #include <linux/delay.h>
40 #include <linux/errno.h>
41 #include <linux/string.h>
42 #include <linux/ratelimit.h>
43 #include <linux/printk.h>
44 #include <linux/slab.h>
45 #include <linux/sunrpc/clnt.h>
46 #include <linux/nfs.h>
47 #include <linux/nfs4.h>
48 #include <linux/nfs_fs.h>
49 #include <linux/nfs_page.h>
50 #include <linux/nfs_mount.h>
51 #include <linux/namei.h>
52 #include <linux/mount.h>
53 #include <linux/module.h>
54 #include <linux/xattr.h>
55 #include <linux/utsname.h>
56 #include <linux/freezer.h>
57
58 #include "nfs4_fs.h"
59 #include "delegation.h"
60 #include "internal.h"
61 #include "iostat.h"
62 #include "callback.h"
63 #include "pnfs.h"
64 #include "netns.h"
65 #include "nfs4idmap.h"
66 #include "nfs4session.h"
67 #include "fscache.h"
68
69 #include "nfs4trace.h"
70
71 #define NFSDBG_FACILITY NFSDBG_PROC
72
73 #define NFS4_POLL_RETRY_MIN (HZ/10)
74 #define NFS4_POLL_RETRY_MAX (15*HZ)
75
76 /* file attributes which can be mapped to nfs attributes */
77 #define NFS4_VALID_ATTRS (ATTR_MODE \
78 | ATTR_UID \
79 | ATTR_GID \
80 | ATTR_SIZE \
81 | ATTR_ATIME \
82 | ATTR_MTIME \
83 | ATTR_CTIME \
84 | ATTR_ATIME_SET \
85 | ATTR_MTIME_SET)
86
87 struct nfs4_opendata;
88 static int _nfs4_proc_open(struct nfs4_opendata *data);
89 static int _nfs4_recover_proc_open(struct nfs4_opendata *data);
90 static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
91 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr);
92 static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label);
93 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label);
94 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
95 struct nfs_fattr *fattr, struct iattr *sattr,
96 struct nfs_open_context *ctx, struct nfs4_label *ilabel,
97 struct nfs4_label *olabel);
98 #ifdef CONFIG_NFS_V4_1
99 static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *,
100 struct rpc_cred *);
101 static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *,
102 struct rpc_cred *, bool);
103 #endif
104
105 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
106 static inline struct nfs4_label *
107 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
108 struct iattr *sattr, struct nfs4_label *label)
109 {
110 int err;
111
112 if (label == NULL)
113 return NULL;
114
115 if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0)
116 return NULL;
117
118 err = security_dentry_init_security(dentry, sattr->ia_mode,
119 &dentry->d_name, (void **)&label->label, &label->len);
120 if (err == 0)
121 return label;
122
123 return NULL;
124 }
125 static inline void
126 nfs4_label_release_security(struct nfs4_label *label)
127 {
128 if (label)
129 security_release_secctx(label->label, label->len);
130 }
131 static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
132 {
133 if (label)
134 return server->attr_bitmask;
135
136 return server->attr_bitmask_nl;
137 }
138 #else
139 static inline struct nfs4_label *
140 nfs4_label_init_security(struct inode *dir, struct dentry *dentry,
141 struct iattr *sattr, struct nfs4_label *l)
142 { return NULL; }
143 static inline void
144 nfs4_label_release_security(struct nfs4_label *label)
145 { return; }
146 static inline u32 *
147 nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label)
148 { return server->attr_bitmask; }
149 #endif
150
151 /* Prevent leaks of NFSv4 errors into userland */
152 static int nfs4_map_errors(int err)
153 {
154 if (err >= -1000)
155 return err;
156 switch (err) {
157 case -NFS4ERR_RESOURCE:
158 case -NFS4ERR_LAYOUTTRYLATER:
159 case -NFS4ERR_RECALLCONFLICT:
160 return -EREMOTEIO;
161 case -NFS4ERR_WRONGSEC:
162 case -NFS4ERR_WRONG_CRED:
163 return -EPERM;
164 case -NFS4ERR_BADOWNER:
165 case -NFS4ERR_BADNAME:
166 return -EINVAL;
167 case -NFS4ERR_SHARE_DENIED:
168 return -EACCES;
169 case -NFS4ERR_MINOR_VERS_MISMATCH:
170 return -EPROTONOSUPPORT;
171 case -NFS4ERR_FILE_OPEN:
172 return -EBUSY;
173 default:
174 dprintk("%s could not handle NFSv4 error %d\n",
175 __func__, -err);
176 break;
177 }
178 return -EIO;
179 }
180
181 /*
182 * This is our standard bitmap for GETATTR requests.
183 */
184 const u32 nfs4_fattr_bitmap[3] = {
185 FATTR4_WORD0_TYPE
186 | FATTR4_WORD0_CHANGE
187 | FATTR4_WORD0_SIZE
188 | FATTR4_WORD0_FSID
189 | FATTR4_WORD0_FILEID,
190 FATTR4_WORD1_MODE
191 | FATTR4_WORD1_NUMLINKS
192 | FATTR4_WORD1_OWNER
193 | FATTR4_WORD1_OWNER_GROUP
194 | FATTR4_WORD1_RAWDEV
195 | FATTR4_WORD1_SPACE_USED
196 | FATTR4_WORD1_TIME_ACCESS
197 | FATTR4_WORD1_TIME_METADATA
198 | FATTR4_WORD1_TIME_MODIFY
199 | FATTR4_WORD1_MOUNTED_ON_FILEID,
200 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
201 FATTR4_WORD2_SECURITY_LABEL
202 #endif
203 };
204
205 static const u32 nfs4_pnfs_open_bitmap[3] = {
206 FATTR4_WORD0_TYPE
207 | FATTR4_WORD0_CHANGE
208 | FATTR4_WORD0_SIZE
209 | FATTR4_WORD0_FSID
210 | FATTR4_WORD0_FILEID,
211 FATTR4_WORD1_MODE
212 | FATTR4_WORD1_NUMLINKS
213 | FATTR4_WORD1_OWNER
214 | FATTR4_WORD1_OWNER_GROUP
215 | FATTR4_WORD1_RAWDEV
216 | FATTR4_WORD1_SPACE_USED
217 | FATTR4_WORD1_TIME_ACCESS
218 | FATTR4_WORD1_TIME_METADATA
219 | FATTR4_WORD1_TIME_MODIFY,
220 FATTR4_WORD2_MDSTHRESHOLD
221 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
222 | FATTR4_WORD2_SECURITY_LABEL
223 #endif
224 };
225
226 static const u32 nfs4_open_noattr_bitmap[3] = {
227 FATTR4_WORD0_TYPE
228 | FATTR4_WORD0_FILEID,
229 };
230
231 const u32 nfs4_statfs_bitmap[3] = {
232 FATTR4_WORD0_FILES_AVAIL
233 | FATTR4_WORD0_FILES_FREE
234 | FATTR4_WORD0_FILES_TOTAL,
235 FATTR4_WORD1_SPACE_AVAIL
236 | FATTR4_WORD1_SPACE_FREE
237 | FATTR4_WORD1_SPACE_TOTAL
238 };
239
240 const u32 nfs4_pathconf_bitmap[3] = {
241 FATTR4_WORD0_MAXLINK
242 | FATTR4_WORD0_MAXNAME,
243 0
244 };
245
246 const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE
247 | FATTR4_WORD0_MAXREAD
248 | FATTR4_WORD0_MAXWRITE
249 | FATTR4_WORD0_LEASE_TIME,
250 FATTR4_WORD1_TIME_DELTA
251 | FATTR4_WORD1_FS_LAYOUT_TYPES,
252 FATTR4_WORD2_LAYOUT_BLKSIZE
253 | FATTR4_WORD2_CLONE_BLKSIZE
254 };
255
256 const u32 nfs4_fs_locations_bitmap[3] = {
257 FATTR4_WORD0_TYPE
258 | FATTR4_WORD0_CHANGE
259 | FATTR4_WORD0_SIZE
260 | FATTR4_WORD0_FSID
261 | FATTR4_WORD0_FILEID
262 | FATTR4_WORD0_FS_LOCATIONS,
263 FATTR4_WORD1_MODE
264 | FATTR4_WORD1_NUMLINKS
265 | FATTR4_WORD1_OWNER
266 | FATTR4_WORD1_OWNER_GROUP
267 | FATTR4_WORD1_RAWDEV
268 | FATTR4_WORD1_SPACE_USED
269 | FATTR4_WORD1_TIME_ACCESS
270 | FATTR4_WORD1_TIME_METADATA
271 | FATTR4_WORD1_TIME_MODIFY
272 | FATTR4_WORD1_MOUNTED_ON_FILEID,
273 };
274
275 static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry,
276 struct nfs4_readdir_arg *readdir)
277 {
278 __be32 *start, *p;
279
280 if (cookie > 2) {
281 readdir->cookie = cookie;
282 memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier));
283 return;
284 }
285
286 readdir->cookie = 0;
287 memset(&readdir->verifier, 0, sizeof(readdir->verifier));
288 if (cookie == 2)
289 return;
290
291 /*
292 * NFSv4 servers do not return entries for '.' and '..'
293 * Therefore, we fake these entries here. We let '.'
294 * have cookie 0 and '..' have cookie 1. Note that
295 * when talking to the server, we always send cookie 0
296 * instead of 1 or 2.
297 */
298 start = p = kmap_atomic(*readdir->pages);
299
300 if (cookie == 0) {
301 *p++ = xdr_one; /* next */
302 *p++ = xdr_zero; /* cookie, first word */
303 *p++ = xdr_one; /* cookie, second word */
304 *p++ = xdr_one; /* entry len */
305 memcpy(p, ".\0\0\0", 4); /* entry */
306 p++;
307 *p++ = xdr_one; /* bitmap length */
308 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
309 *p++ = htonl(8); /* attribute buffer length */
310 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry)));
311 }
312
313 *p++ = xdr_one; /* next */
314 *p++ = xdr_zero; /* cookie, first word */
315 *p++ = xdr_two; /* cookie, second word */
316 *p++ = xdr_two; /* entry len */
317 memcpy(p, "..\0\0", 4); /* entry */
318 p++;
319 *p++ = xdr_one; /* bitmap length */
320 *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */
321 *p++ = htonl(8); /* attribute buffer length */
322 p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent)));
323
324 readdir->pgbase = (char *)p - (char *)start;
325 readdir->count -= readdir->pgbase;
326 kunmap_atomic(start);
327 }
328
329 static void nfs4_test_and_free_stateid(struct nfs_server *server,
330 nfs4_stateid *stateid,
331 struct rpc_cred *cred)
332 {
333 const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops;
334
335 ops->test_and_free_expired(server, stateid, cred);
336 }
337
338 static void __nfs4_free_revoked_stateid(struct nfs_server *server,
339 nfs4_stateid *stateid,
340 struct rpc_cred *cred)
341 {
342 stateid->type = NFS4_REVOKED_STATEID_TYPE;
343 nfs4_test_and_free_stateid(server, stateid, cred);
344 }
345
346 static void nfs4_free_revoked_stateid(struct nfs_server *server,
347 const nfs4_stateid *stateid,
348 struct rpc_cred *cred)
349 {
350 nfs4_stateid tmp;
351
352 nfs4_stateid_copy(&tmp, stateid);
353 __nfs4_free_revoked_stateid(server, &tmp, cred);
354 }
355
356 static long nfs4_update_delay(long *timeout)
357 {
358 long ret;
359 if (!timeout)
360 return NFS4_POLL_RETRY_MAX;
361 if (*timeout <= 0)
362 *timeout = NFS4_POLL_RETRY_MIN;
363 if (*timeout > NFS4_POLL_RETRY_MAX)
364 *timeout = NFS4_POLL_RETRY_MAX;
365 ret = *timeout;
366 *timeout <<= 1;
367 return ret;
368 }
369
370 static int nfs4_delay(struct rpc_clnt *clnt, long *timeout)
371 {
372 int res = 0;
373
374 might_sleep();
375
376 freezable_schedule_timeout_killable_unsafe(
377 nfs4_update_delay(timeout));
378 if (fatal_signal_pending(current))
379 res = -ERESTARTSYS;
380 return res;
381 }
382
383 /* This is the error handling routine for processes that are allowed
384 * to sleep.
385 */
386 static int nfs4_do_handle_exception(struct nfs_server *server,
387 int errorcode, struct nfs4_exception *exception)
388 {
389 struct nfs_client *clp = server->nfs_client;
390 struct nfs4_state *state = exception->state;
391 const nfs4_stateid *stateid = exception->stateid;
392 struct inode *inode = exception->inode;
393 int ret = errorcode;
394
395 exception->delay = 0;
396 exception->recovering = 0;
397 exception->retry = 0;
398
399 if (stateid == NULL && state != NULL)
400 stateid = &state->stateid;
401
402 switch(errorcode) {
403 case 0:
404 return 0;
405 case -NFS4ERR_DELEG_REVOKED:
406 case -NFS4ERR_ADMIN_REVOKED:
407 case -NFS4ERR_EXPIRED:
408 case -NFS4ERR_BAD_STATEID:
409 if (inode != NULL && stateid != NULL) {
410 nfs_inode_find_state_and_recover(inode,
411 stateid);
412 goto wait_on_recovery;
413 }
414 case -NFS4ERR_OPENMODE:
415 if (inode) {
416 int err;
417
418 err = nfs_async_inode_return_delegation(inode,
419 stateid);
420 if (err == 0)
421 goto wait_on_recovery;
422 if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) {
423 exception->retry = 1;
424 break;
425 }
426 }
427 if (state == NULL)
428 break;
429 ret = nfs4_schedule_stateid_recovery(server, state);
430 if (ret < 0)
431 break;
432 goto wait_on_recovery;
433 case -NFS4ERR_STALE_STATEID:
434 case -NFS4ERR_STALE_CLIENTID:
435 nfs4_schedule_lease_recovery(clp);
436 goto wait_on_recovery;
437 case -NFS4ERR_MOVED:
438 ret = nfs4_schedule_migration_recovery(server);
439 if (ret < 0)
440 break;
441 goto wait_on_recovery;
442 case -NFS4ERR_LEASE_MOVED:
443 nfs4_schedule_lease_moved_recovery(clp);
444 goto wait_on_recovery;
445 #if defined(CONFIG_NFS_V4_1)
446 case -NFS4ERR_BADSESSION:
447 case -NFS4ERR_BADSLOT:
448 case -NFS4ERR_BAD_HIGH_SLOT:
449 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
450 case -NFS4ERR_DEADSESSION:
451 case -NFS4ERR_SEQ_FALSE_RETRY:
452 case -NFS4ERR_SEQ_MISORDERED:
453 dprintk("%s ERROR: %d Reset session\n", __func__,
454 errorcode);
455 nfs4_schedule_session_recovery(clp->cl_session, errorcode);
456 goto wait_on_recovery;
457 #endif /* defined(CONFIG_NFS_V4_1) */
458 case -NFS4ERR_FILE_OPEN:
459 if (exception->timeout > HZ) {
460 /* We have retried a decent amount, time to
461 * fail
462 */
463 ret = -EBUSY;
464 break;
465 }
466 case -NFS4ERR_DELAY:
467 nfs_inc_server_stats(server, NFSIOS_DELAY);
468 case -NFS4ERR_GRACE:
469 case -NFS4ERR_LAYOUTTRYLATER:
470 case -NFS4ERR_RECALLCONFLICT:
471 exception->delay = 1;
472 return 0;
473
474 case -NFS4ERR_RETRY_UNCACHED_REP:
475 case -NFS4ERR_OLD_STATEID:
476 exception->retry = 1;
477 break;
478 case -NFS4ERR_BADOWNER:
479 /* The following works around a Linux server bug! */
480 case -NFS4ERR_BADNAME:
481 if (server->caps & NFS_CAP_UIDGID_NOMAP) {
482 server->caps &= ~NFS_CAP_UIDGID_NOMAP;
483 exception->retry = 1;
484 printk(KERN_WARNING "NFS: v4 server %s "
485 "does not accept raw "
486 "uid/gids. "
487 "Reenabling the idmapper.\n",
488 server->nfs_client->cl_hostname);
489 }
490 }
491 /* We failed to handle the error */
492 return nfs4_map_errors(ret);
493 wait_on_recovery:
494 exception->recovering = 1;
495 return 0;
496 }
497
498 /* This is the error handling routine for processes that are allowed
499 * to sleep.
500 */
501 int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception)
502 {
503 struct nfs_client *clp = server->nfs_client;
504 int ret;
505
506 ret = nfs4_do_handle_exception(server, errorcode, exception);
507 if (exception->delay) {
508 ret = nfs4_delay(server->client, &exception->timeout);
509 goto out_retry;
510 }
511 if (exception->recovering) {
512 ret = nfs4_wait_clnt_recover(clp);
513 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
514 return -EIO;
515 goto out_retry;
516 }
517 return ret;
518 out_retry:
519 if (ret == 0)
520 exception->retry = 1;
521 return ret;
522 }
523
524 static int
525 nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server,
526 int errorcode, struct nfs4_exception *exception)
527 {
528 struct nfs_client *clp = server->nfs_client;
529 int ret;
530
531 ret = nfs4_do_handle_exception(server, errorcode, exception);
532 if (exception->delay) {
533 rpc_delay(task, nfs4_update_delay(&exception->timeout));
534 goto out_retry;
535 }
536 if (exception->recovering) {
537 rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL);
538 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0)
539 rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task);
540 goto out_retry;
541 }
542 if (test_bit(NFS_MIG_FAILED, &server->mig_status))
543 ret = -EIO;
544 return ret;
545 out_retry:
546 if (ret == 0)
547 exception->retry = 1;
548 return ret;
549 }
550
551 static int
552 nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server,
553 struct nfs4_state *state, long *timeout)
554 {
555 struct nfs4_exception exception = {
556 .state = state,
557 };
558
559 if (task->tk_status >= 0)
560 return 0;
561 if (timeout)
562 exception.timeout = *timeout;
563 task->tk_status = nfs4_async_handle_exception(task, server,
564 task->tk_status,
565 &exception);
566 if (exception.delay && timeout)
567 *timeout = exception.timeout;
568 if (exception.retry)
569 return -EAGAIN;
570 return 0;
571 }
572
573 /*
574 * Return 'true' if 'clp' is using an rpc_client that is integrity protected
575 * or 'false' otherwise.
576 */
577 static bool _nfs4_is_integrity_protected(struct nfs_client *clp)
578 {
579 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor;
580 return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P);
581 }
582
583 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp)
584 {
585 spin_lock(&clp->cl_lock);
586 if (time_before(clp->cl_last_renewal,timestamp))
587 clp->cl_last_renewal = timestamp;
588 spin_unlock(&clp->cl_lock);
589 }
590
591 static void renew_lease(const struct nfs_server *server, unsigned long timestamp)
592 {
593 struct nfs_client *clp = server->nfs_client;
594
595 if (!nfs4_has_session(clp))
596 do_renew_lease(clp, timestamp);
597 }
598
599 struct nfs4_call_sync_data {
600 const struct nfs_server *seq_server;
601 struct nfs4_sequence_args *seq_args;
602 struct nfs4_sequence_res *seq_res;
603 };
604
605 void nfs4_init_sequence(struct nfs4_sequence_args *args,
606 struct nfs4_sequence_res *res, int cache_reply)
607 {
608 args->sa_slot = NULL;
609 args->sa_cache_this = cache_reply;
610 args->sa_privileged = 0;
611
612 res->sr_slot = NULL;
613 }
614
615 static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args)
616 {
617 args->sa_privileged = 1;
618 }
619
620 static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res)
621 {
622 struct nfs4_slot *slot = res->sr_slot;
623 struct nfs4_slot_table *tbl;
624
625 tbl = slot->table;
626 spin_lock(&tbl->slot_tbl_lock);
627 if (!nfs41_wake_and_assign_slot(tbl, slot))
628 nfs4_free_slot(tbl, slot);
629 spin_unlock(&tbl->slot_tbl_lock);
630
631 res->sr_slot = NULL;
632 }
633
634 static int nfs40_sequence_done(struct rpc_task *task,
635 struct nfs4_sequence_res *res)
636 {
637 if (res->sr_slot != NULL)
638 nfs40_sequence_free_slot(res);
639 return 1;
640 }
641
642 #if defined(CONFIG_NFS_V4_1)
643
644 static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res)
645 {
646 struct nfs4_session *session;
647 struct nfs4_slot_table *tbl;
648 struct nfs4_slot *slot = res->sr_slot;
649 bool send_new_highest_used_slotid = false;
650
651 tbl = slot->table;
652 session = tbl->session;
653
654 /* Bump the slot sequence number */
655 if (slot->seq_done)
656 slot->seq_nr++;
657 slot->seq_done = 0;
658
659 spin_lock(&tbl->slot_tbl_lock);
660 /* Be nice to the server: try to ensure that the last transmitted
661 * value for highest_user_slotid <= target_highest_slotid
662 */
663 if (tbl->highest_used_slotid > tbl->target_highest_slotid)
664 send_new_highest_used_slotid = true;
665
666 if (nfs41_wake_and_assign_slot(tbl, slot)) {
667 send_new_highest_used_slotid = false;
668 goto out_unlock;
669 }
670 nfs4_free_slot(tbl, slot);
671
672 if (tbl->highest_used_slotid != NFS4_NO_SLOT)
673 send_new_highest_used_slotid = false;
674 out_unlock:
675 spin_unlock(&tbl->slot_tbl_lock);
676 res->sr_slot = NULL;
677 if (send_new_highest_used_slotid)
678 nfs41_notify_server(session->clp);
679 if (waitqueue_active(&tbl->slot_waitq))
680 wake_up_all(&tbl->slot_waitq);
681 }
682
683 static int nfs41_sequence_process(struct rpc_task *task,
684 struct nfs4_sequence_res *res)
685 {
686 struct nfs4_session *session;
687 struct nfs4_slot *slot = res->sr_slot;
688 struct nfs_client *clp;
689 bool interrupted = false;
690 int ret = 1;
691
692 if (slot == NULL)
693 goto out_noaction;
694 /* don't increment the sequence number if the task wasn't sent */
695 if (!RPC_WAS_SENT(task))
696 goto out;
697
698 session = slot->table->session;
699
700 if (slot->interrupted) {
701 slot->interrupted = 0;
702 interrupted = true;
703 }
704
705 trace_nfs4_sequence_done(session, res);
706 /* Check the SEQUENCE operation status */
707 switch (res->sr_status) {
708 case 0:
709 /* If previous op on slot was interrupted and we reused
710 * the seq# and got a reply from the cache, then retry
711 */
712 if (task->tk_status == -EREMOTEIO && interrupted) {
713 ++slot->seq_nr;
714 goto retry_nowait;
715 }
716 /* Update the slot's sequence and clientid lease timer */
717 slot->seq_done = 1;
718 clp = session->clp;
719 do_renew_lease(clp, res->sr_timestamp);
720 /* Check sequence flags */
721 nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags,
722 !!slot->privileged);
723 nfs41_update_target_slotid(slot->table, slot, res);
724 break;
725 case 1:
726 /*
727 * sr_status remains 1 if an RPC level error occurred.
728 * The server may or may not have processed the sequence
729 * operation..
730 * Mark the slot as having hosted an interrupted RPC call.
731 */
732 slot->interrupted = 1;
733 goto out;
734 case -NFS4ERR_DELAY:
735 /* The server detected a resend of the RPC call and
736 * returned NFS4ERR_DELAY as per Section 2.10.6.2
737 * of RFC5661.
738 */
739 dprintk("%s: slot=%u seq=%u: Operation in progress\n",
740 __func__,
741 slot->slot_nr,
742 slot->seq_nr);
743 goto out_retry;
744 case -NFS4ERR_BADSLOT:
745 /*
746 * The slot id we used was probably retired. Try again
747 * using a different slot id.
748 */
749 goto retry_nowait;
750 case -NFS4ERR_SEQ_MISORDERED:
751 /*
752 * Was the last operation on this sequence interrupted?
753 * If so, retry after bumping the sequence number.
754 */
755 if (interrupted) {
756 ++slot->seq_nr;
757 goto retry_nowait;
758 }
759 /*
760 * Could this slot have been previously retired?
761 * If so, then the server may be expecting seq_nr = 1!
762 */
763 if (slot->seq_nr != 1) {
764 slot->seq_nr = 1;
765 goto retry_nowait;
766 }
767 break;
768 case -NFS4ERR_SEQ_FALSE_RETRY:
769 ++slot->seq_nr;
770 goto retry_nowait;
771 case -NFS4ERR_DEADSESSION:
772 case -NFS4ERR_BADSESSION:
773 nfs4_schedule_session_recovery(session, res->sr_status);
774 goto retry_nowait;
775 default:
776 /* Just update the slot sequence no. */
777 slot->seq_done = 1;
778 }
779 out:
780 /* The session may be reset by one of the error handlers. */
781 dprintk("%s: Error %d free the slot \n", __func__, res->sr_status);
782 out_noaction:
783 return ret;
784 retry_nowait:
785 if (rpc_restart_call_prepare(task)) {
786 nfs41_sequence_free_slot(res);
787 task->tk_status = 0;
788 ret = 0;
789 }
790 goto out;
791 out_retry:
792 if (!rpc_restart_call(task))
793 goto out;
794 rpc_delay(task, NFS4_POLL_RETRY_MAX);
795 return 0;
796 }
797
798 int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
799 {
800 if (!nfs41_sequence_process(task, res))
801 return 0;
802 if (res->sr_slot != NULL)
803 nfs41_sequence_free_slot(res);
804 return 1;
805
806 }
807 EXPORT_SYMBOL_GPL(nfs41_sequence_done);
808
809 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
810 {
811 if (res->sr_slot == NULL)
812 return 1;
813 if (res->sr_slot->table->session != NULL)
814 return nfs41_sequence_process(task, res);
815 return nfs40_sequence_done(task, res);
816 }
817
818 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
819 {
820 if (res->sr_slot != NULL) {
821 if (res->sr_slot->table->session != NULL)
822 nfs41_sequence_free_slot(res);
823 else
824 nfs40_sequence_free_slot(res);
825 }
826 }
827
828 int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res)
829 {
830 if (res->sr_slot == NULL)
831 return 1;
832 if (!res->sr_slot->table->session)
833 return nfs40_sequence_done(task, res);
834 return nfs41_sequence_done(task, res);
835 }
836 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
837
838 static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata)
839 {
840 struct nfs4_call_sync_data *data = calldata;
841
842 dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server);
843
844 nfs4_setup_sequence(data->seq_server->nfs_client,
845 data->seq_args, data->seq_res, task);
846 }
847
848 static void nfs41_call_sync_done(struct rpc_task *task, void *calldata)
849 {
850 struct nfs4_call_sync_data *data = calldata;
851
852 nfs41_sequence_done(task, data->seq_res);
853 }
854
855 static const struct rpc_call_ops nfs41_call_sync_ops = {
856 .rpc_call_prepare = nfs41_call_sync_prepare,
857 .rpc_call_done = nfs41_call_sync_done,
858 };
859
860 #else /* !CONFIG_NFS_V4_1 */
861
862 static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res)
863 {
864 return nfs40_sequence_done(task, res);
865 }
866
867 static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res)
868 {
869 if (res->sr_slot != NULL)
870 nfs40_sequence_free_slot(res);
871 }
872
873 int nfs4_sequence_done(struct rpc_task *task,
874 struct nfs4_sequence_res *res)
875 {
876 return nfs40_sequence_done(task, res);
877 }
878 EXPORT_SYMBOL_GPL(nfs4_sequence_done);
879
880 #endif /* !CONFIG_NFS_V4_1 */
881
882 int nfs4_setup_sequence(const struct nfs_client *client,
883 struct nfs4_sequence_args *args,
884 struct nfs4_sequence_res *res,
885 struct rpc_task *task)
886 {
887 struct nfs4_session *session = nfs4_get_session(client);
888 struct nfs4_slot_table *tbl = client->cl_slot_tbl;
889 struct nfs4_slot *slot;
890
891 /* slot already allocated? */
892 if (res->sr_slot != NULL)
893 goto out_start;
894
895 if (session) {
896 tbl = &session->fc_slot_table;
897 task->tk_timeout = 0;
898 }
899
900 spin_lock(&tbl->slot_tbl_lock);
901 /* The state manager will wait until the slot table is empty */
902 if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged)
903 goto out_sleep;
904
905 slot = nfs4_alloc_slot(tbl);
906 if (IS_ERR(slot)) {
907 /* Try again in 1/4 second */
908 if (slot == ERR_PTR(-ENOMEM))
909 task->tk_timeout = HZ >> 2;
910 goto out_sleep;
911 }
912 spin_unlock(&tbl->slot_tbl_lock);
913
914 slot->privileged = args->sa_privileged ? 1 : 0;
915 args->sa_slot = slot;
916
917 res->sr_slot = slot;
918 if (session) {
919 res->sr_timestamp = jiffies;
920 res->sr_status_flags = 0;
921 res->sr_status = 1;
922 }
923
924 trace_nfs4_setup_sequence(session, args);
925 out_start:
926 rpc_call_start(task);
927 return 0;
928
929 out_sleep:
930 if (args->sa_privileged)
931 rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task,
932 NULL, RPC_PRIORITY_PRIVILEGED);
933 else
934 rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL);
935 spin_unlock(&tbl->slot_tbl_lock);
936 return -EAGAIN;
937 }
938 EXPORT_SYMBOL_GPL(nfs4_setup_sequence);
939
940 static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata)
941 {
942 struct nfs4_call_sync_data *data = calldata;
943 nfs4_setup_sequence(data->seq_server->nfs_client,
944 data->seq_args, data->seq_res, task);
945 }
946
947 static void nfs40_call_sync_done(struct rpc_task *task, void *calldata)
948 {
949 struct nfs4_call_sync_data *data = calldata;
950 nfs4_sequence_done(task, data->seq_res);
951 }
952
953 static const struct rpc_call_ops nfs40_call_sync_ops = {
954 .rpc_call_prepare = nfs40_call_sync_prepare,
955 .rpc_call_done = nfs40_call_sync_done,
956 };
957
958 static int nfs4_call_sync_sequence(struct rpc_clnt *clnt,
959 struct nfs_server *server,
960 struct rpc_message *msg,
961 struct nfs4_sequence_args *args,
962 struct nfs4_sequence_res *res)
963 {
964 int ret;
965 struct rpc_task *task;
966 struct nfs_client *clp = server->nfs_client;
967 struct nfs4_call_sync_data data = {
968 .seq_server = server,
969 .seq_args = args,
970 .seq_res = res,
971 };
972 struct rpc_task_setup task_setup = {
973 .rpc_client = clnt,
974 .rpc_message = msg,
975 .callback_ops = clp->cl_mvops->call_sync_ops,
976 .callback_data = &data
977 };
978
979 task = rpc_run_task(&task_setup);
980 if (IS_ERR(task))
981 ret = PTR_ERR(task);
982 else {
983 ret = task->tk_status;
984 rpc_put_task(task);
985 }
986 return ret;
987 }
988
989 int nfs4_call_sync(struct rpc_clnt *clnt,
990 struct nfs_server *server,
991 struct rpc_message *msg,
992 struct nfs4_sequence_args *args,
993 struct nfs4_sequence_res *res,
994 int cache_reply)
995 {
996 nfs4_init_sequence(args, res, cache_reply);
997 return nfs4_call_sync_sequence(clnt, server, msg, args, res);
998 }
999
1000 static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo,
1001 unsigned long timestamp)
1002 {
1003 struct nfs_inode *nfsi = NFS_I(dir);
1004
1005 spin_lock(&dir->i_lock);
1006 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1007 if (cinfo->atomic && cinfo->before == dir->i_version) {
1008 nfsi->cache_validity &= ~NFS_INO_REVAL_PAGECACHE;
1009 nfsi->attrtimeo_timestamp = jiffies;
1010 } else {
1011 nfs_force_lookup_revalidate(dir);
1012 if (cinfo->before != dir->i_version)
1013 nfsi->cache_validity |= NFS_INO_INVALID_ACCESS |
1014 NFS_INO_INVALID_ACL;
1015 }
1016 dir->i_version = cinfo->after;
1017 nfsi->read_cache_jiffies = timestamp;
1018 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
1019 nfs_fscache_invalidate(dir);
1020 spin_unlock(&dir->i_lock);
1021 }
1022
1023 struct nfs4_opendata {
1024 struct kref kref;
1025 struct nfs_openargs o_arg;
1026 struct nfs_openres o_res;
1027 struct nfs_open_confirmargs c_arg;
1028 struct nfs_open_confirmres c_res;
1029 struct nfs4_string owner_name;
1030 struct nfs4_string group_name;
1031 struct nfs4_label *a_label;
1032 struct nfs_fattr f_attr;
1033 struct nfs4_label *f_label;
1034 struct dentry *dir;
1035 struct dentry *dentry;
1036 struct nfs4_state_owner *owner;
1037 struct nfs4_state *state;
1038 struct iattr attrs;
1039 unsigned long timestamp;
1040 unsigned int rpc_done : 1;
1041 unsigned int file_created : 1;
1042 unsigned int is_recover : 1;
1043 int rpc_status;
1044 int cancelled;
1045 };
1046
1047 static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server,
1048 int err, struct nfs4_exception *exception)
1049 {
1050 if (err != -EINVAL)
1051 return false;
1052 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1053 return false;
1054 server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1;
1055 exception->retry = 1;
1056 return true;
1057 }
1058
1059 static u32
1060 nfs4_map_atomic_open_share(struct nfs_server *server,
1061 fmode_t fmode, int openflags)
1062 {
1063 u32 res = 0;
1064
1065 switch (fmode & (FMODE_READ | FMODE_WRITE)) {
1066 case FMODE_READ:
1067 res = NFS4_SHARE_ACCESS_READ;
1068 break;
1069 case FMODE_WRITE:
1070 res = NFS4_SHARE_ACCESS_WRITE;
1071 break;
1072 case FMODE_READ|FMODE_WRITE:
1073 res = NFS4_SHARE_ACCESS_BOTH;
1074 }
1075 if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1))
1076 goto out;
1077 /* Want no delegation if we're using O_DIRECT */
1078 if (openflags & O_DIRECT)
1079 res |= NFS4_SHARE_WANT_NO_DELEG;
1080 out:
1081 return res;
1082 }
1083
1084 static enum open_claim_type4
1085 nfs4_map_atomic_open_claim(struct nfs_server *server,
1086 enum open_claim_type4 claim)
1087 {
1088 if (server->caps & NFS_CAP_ATOMIC_OPEN_V1)
1089 return claim;
1090 switch (claim) {
1091 default:
1092 return claim;
1093 case NFS4_OPEN_CLAIM_FH:
1094 return NFS4_OPEN_CLAIM_NULL;
1095 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1096 return NFS4_OPEN_CLAIM_DELEGATE_CUR;
1097 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1098 return NFS4_OPEN_CLAIM_DELEGATE_PREV;
1099 }
1100 }
1101
1102 static void nfs4_init_opendata_res(struct nfs4_opendata *p)
1103 {
1104 p->o_res.f_attr = &p->f_attr;
1105 p->o_res.f_label = p->f_label;
1106 p->o_res.seqid = p->o_arg.seqid;
1107 p->c_res.seqid = p->c_arg.seqid;
1108 p->o_res.server = p->o_arg.server;
1109 p->o_res.access_request = p->o_arg.access;
1110 nfs_fattr_init(&p->f_attr);
1111 nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name);
1112 }
1113
1114 static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry,
1115 struct nfs4_state_owner *sp, fmode_t fmode, int flags,
1116 const struct iattr *attrs,
1117 struct nfs4_label *label,
1118 enum open_claim_type4 claim,
1119 gfp_t gfp_mask)
1120 {
1121 struct dentry *parent = dget_parent(dentry);
1122 struct inode *dir = d_inode(parent);
1123 struct nfs_server *server = NFS_SERVER(dir);
1124 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
1125 struct nfs4_opendata *p;
1126
1127 p = kzalloc(sizeof(*p), gfp_mask);
1128 if (p == NULL)
1129 goto err;
1130
1131 p->f_label = nfs4_label_alloc(server, gfp_mask);
1132 if (IS_ERR(p->f_label))
1133 goto err_free_p;
1134
1135 p->a_label = nfs4_label_alloc(server, gfp_mask);
1136 if (IS_ERR(p->a_label))
1137 goto err_free_f;
1138
1139 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
1140 p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask);
1141 if (IS_ERR(p->o_arg.seqid))
1142 goto err_free_label;
1143 nfs_sb_active(dentry->d_sb);
1144 p->dentry = dget(dentry);
1145 p->dir = parent;
1146 p->owner = sp;
1147 atomic_inc(&sp->so_count);
1148 p->o_arg.open_flags = flags;
1149 p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE);
1150 p->o_arg.umask = current_umask();
1151 p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim);
1152 p->o_arg.share_access = nfs4_map_atomic_open_share(server,
1153 fmode, flags);
1154 /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS
1155 * will return permission denied for all bits until close */
1156 if (!(flags & O_EXCL)) {
1157 /* ask server to check for all possible rights as results
1158 * are cached */
1159 switch (p->o_arg.claim) {
1160 default:
1161 break;
1162 case NFS4_OPEN_CLAIM_NULL:
1163 case NFS4_OPEN_CLAIM_FH:
1164 p->o_arg.access = NFS4_ACCESS_READ |
1165 NFS4_ACCESS_MODIFY |
1166 NFS4_ACCESS_EXTEND |
1167 NFS4_ACCESS_EXECUTE;
1168 }
1169 }
1170 p->o_arg.clientid = server->nfs_client->cl_clientid;
1171 p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time);
1172 p->o_arg.id.uniquifier = sp->so_seqid.owner_id;
1173 p->o_arg.name = &dentry->d_name;
1174 p->o_arg.server = server;
1175 p->o_arg.bitmask = nfs4_bitmask(server, label);
1176 p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0];
1177 p->o_arg.label = nfs4_label_copy(p->a_label, label);
1178 switch (p->o_arg.claim) {
1179 case NFS4_OPEN_CLAIM_NULL:
1180 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1181 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
1182 p->o_arg.fh = NFS_FH(dir);
1183 break;
1184 case NFS4_OPEN_CLAIM_PREVIOUS:
1185 case NFS4_OPEN_CLAIM_FH:
1186 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1187 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
1188 p->o_arg.fh = NFS_FH(d_inode(dentry));
1189 }
1190 if (attrs != NULL && attrs->ia_valid != 0) {
1191 __u32 verf[2];
1192
1193 p->o_arg.u.attrs = &p->attrs;
1194 memcpy(&p->attrs, attrs, sizeof(p->attrs));
1195
1196 verf[0] = jiffies;
1197 verf[1] = current->pid;
1198 memcpy(p->o_arg.u.verifier.data, verf,
1199 sizeof(p->o_arg.u.verifier.data));
1200 }
1201 p->c_arg.fh = &p->o_res.fh;
1202 p->c_arg.stateid = &p->o_res.stateid;
1203 p->c_arg.seqid = p->o_arg.seqid;
1204 nfs4_init_opendata_res(p);
1205 kref_init(&p->kref);
1206 return p;
1207
1208 err_free_label:
1209 nfs4_label_free(p->a_label);
1210 err_free_f:
1211 nfs4_label_free(p->f_label);
1212 err_free_p:
1213 kfree(p);
1214 err:
1215 dput(parent);
1216 return NULL;
1217 }
1218
1219 static void nfs4_opendata_free(struct kref *kref)
1220 {
1221 struct nfs4_opendata *p = container_of(kref,
1222 struct nfs4_opendata, kref);
1223 struct super_block *sb = p->dentry->d_sb;
1224
1225 nfs_free_seqid(p->o_arg.seqid);
1226 nfs4_sequence_free_slot(&p->o_res.seq_res);
1227 if (p->state != NULL)
1228 nfs4_put_open_state(p->state);
1229 nfs4_put_state_owner(p->owner);
1230
1231 nfs4_label_free(p->a_label);
1232 nfs4_label_free(p->f_label);
1233
1234 dput(p->dir);
1235 dput(p->dentry);
1236 nfs_sb_deactive(sb);
1237 nfs_fattr_free_names(&p->f_attr);
1238 kfree(p->f_attr.mdsthreshold);
1239 kfree(p);
1240 }
1241
1242 static void nfs4_opendata_put(struct nfs4_opendata *p)
1243 {
1244 if (p != NULL)
1245 kref_put(&p->kref, nfs4_opendata_free);
1246 }
1247
1248 static bool nfs4_mode_match_open_stateid(struct nfs4_state *state,
1249 fmode_t fmode)
1250 {
1251 switch(fmode & (FMODE_READ|FMODE_WRITE)) {
1252 case FMODE_READ|FMODE_WRITE:
1253 return state->n_rdwr != 0;
1254 case FMODE_WRITE:
1255 return state->n_wronly != 0;
1256 case FMODE_READ:
1257 return state->n_rdonly != 0;
1258 }
1259 WARN_ON_ONCE(1);
1260 return false;
1261 }
1262
1263 static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode)
1264 {
1265 int ret = 0;
1266
1267 if (open_mode & (O_EXCL|O_TRUNC))
1268 goto out;
1269 switch (mode & (FMODE_READ|FMODE_WRITE)) {
1270 case FMODE_READ:
1271 ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0
1272 && state->n_rdonly != 0;
1273 break;
1274 case FMODE_WRITE:
1275 ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0
1276 && state->n_wronly != 0;
1277 break;
1278 case FMODE_READ|FMODE_WRITE:
1279 ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0
1280 && state->n_rdwr != 0;
1281 }
1282 out:
1283 return ret;
1284 }
1285
1286 static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode,
1287 enum open_claim_type4 claim)
1288 {
1289 if (delegation == NULL)
1290 return 0;
1291 if ((delegation->type & fmode) != fmode)
1292 return 0;
1293 if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags))
1294 return 0;
1295 switch (claim) {
1296 case NFS4_OPEN_CLAIM_NULL:
1297 case NFS4_OPEN_CLAIM_FH:
1298 break;
1299 case NFS4_OPEN_CLAIM_PREVIOUS:
1300 if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags))
1301 break;
1302 default:
1303 return 0;
1304 }
1305 nfs_mark_delegation_referenced(delegation);
1306 return 1;
1307 }
1308
1309 static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode)
1310 {
1311 switch (fmode) {
1312 case FMODE_WRITE:
1313 state->n_wronly++;
1314 break;
1315 case FMODE_READ:
1316 state->n_rdonly++;
1317 break;
1318 case FMODE_READ|FMODE_WRITE:
1319 state->n_rdwr++;
1320 }
1321 nfs4_state_set_mode_locked(state, state->state | fmode);
1322 }
1323
1324 #ifdef CONFIG_NFS_V4_1
1325 static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state)
1326 {
1327 if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags))
1328 return true;
1329 if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags))
1330 return true;
1331 if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags))
1332 return true;
1333 return false;
1334 }
1335 #endif /* CONFIG_NFS_V4_1 */
1336
1337 static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state)
1338 {
1339 struct nfs_client *clp = state->owner->so_server->nfs_client;
1340 bool need_recover = false;
1341
1342 if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly)
1343 need_recover = true;
1344 if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly)
1345 need_recover = true;
1346 if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr)
1347 need_recover = true;
1348 if (need_recover)
1349 nfs4_state_mark_reclaim_nograce(clp, state);
1350 }
1351
1352 static bool nfs_need_update_open_stateid(struct nfs4_state *state,
1353 const nfs4_stateid *stateid, nfs4_stateid *freeme)
1354 {
1355 if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0)
1356 return true;
1357 if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) {
1358 nfs4_stateid_copy(freeme, &state->open_stateid);
1359 nfs_test_and_clear_all_open_stateid(state);
1360 return true;
1361 }
1362 if (nfs4_stateid_is_newer(stateid, &state->open_stateid))
1363 return true;
1364 return false;
1365 }
1366
1367 static void nfs_resync_open_stateid_locked(struct nfs4_state *state)
1368 {
1369 if (!(state->n_wronly || state->n_rdonly || state->n_rdwr))
1370 return;
1371 if (state->n_wronly)
1372 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1373 if (state->n_rdonly)
1374 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1375 if (state->n_rdwr)
1376 set_bit(NFS_O_RDWR_STATE, &state->flags);
1377 set_bit(NFS_OPEN_STATE, &state->flags);
1378 }
1379
1380 static void nfs_clear_open_stateid_locked(struct nfs4_state *state,
1381 nfs4_stateid *stateid, fmode_t fmode)
1382 {
1383 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1384 switch (fmode & (FMODE_READ|FMODE_WRITE)) {
1385 case FMODE_WRITE:
1386 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1387 break;
1388 case FMODE_READ:
1389 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1390 break;
1391 case 0:
1392 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1393 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1394 clear_bit(NFS_OPEN_STATE, &state->flags);
1395 }
1396 if (stateid == NULL)
1397 return;
1398 /* Handle OPEN+OPEN_DOWNGRADE races */
1399 if (nfs4_stateid_match_other(stateid, &state->open_stateid) &&
1400 !nfs4_stateid_is_newer(stateid, &state->open_stateid)) {
1401 nfs_resync_open_stateid_locked(state);
1402 return;
1403 }
1404 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1405 nfs4_stateid_copy(&state->stateid, stateid);
1406 nfs4_stateid_copy(&state->open_stateid, stateid);
1407 }
1408
1409 static void nfs_clear_open_stateid(struct nfs4_state *state,
1410 nfs4_stateid *arg_stateid,
1411 nfs4_stateid *stateid, fmode_t fmode)
1412 {
1413 write_seqlock(&state->seqlock);
1414 /* Ignore, if the CLOSE argment doesn't match the current stateid */
1415 if (nfs4_state_match_open_stateid_other(state, arg_stateid))
1416 nfs_clear_open_stateid_locked(state, stateid, fmode);
1417 write_sequnlock(&state->seqlock);
1418 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1419 nfs4_schedule_state_manager(state->owner->so_server->nfs_client);
1420 }
1421
1422 static void nfs_set_open_stateid_locked(struct nfs4_state *state,
1423 const nfs4_stateid *stateid, fmode_t fmode,
1424 nfs4_stateid *freeme)
1425 {
1426 switch (fmode) {
1427 case FMODE_READ:
1428 set_bit(NFS_O_RDONLY_STATE, &state->flags);
1429 break;
1430 case FMODE_WRITE:
1431 set_bit(NFS_O_WRONLY_STATE, &state->flags);
1432 break;
1433 case FMODE_READ|FMODE_WRITE:
1434 set_bit(NFS_O_RDWR_STATE, &state->flags);
1435 }
1436 if (!nfs_need_update_open_stateid(state, stateid, freeme))
1437 return;
1438 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1439 nfs4_stateid_copy(&state->stateid, stateid);
1440 nfs4_stateid_copy(&state->open_stateid, stateid);
1441 }
1442
1443 static void __update_open_stateid(struct nfs4_state *state,
1444 const nfs4_stateid *open_stateid,
1445 const nfs4_stateid *deleg_stateid,
1446 fmode_t fmode,
1447 nfs4_stateid *freeme)
1448 {
1449 /*
1450 * Protect the call to nfs4_state_set_mode_locked and
1451 * serialise the stateid update
1452 */
1453 spin_lock(&state->owner->so_lock);
1454 write_seqlock(&state->seqlock);
1455 if (deleg_stateid != NULL) {
1456 nfs4_stateid_copy(&state->stateid, deleg_stateid);
1457 set_bit(NFS_DELEGATED_STATE, &state->flags);
1458 }
1459 if (open_stateid != NULL)
1460 nfs_set_open_stateid_locked(state, open_stateid, fmode, freeme);
1461 write_sequnlock(&state->seqlock);
1462 update_open_stateflags(state, fmode);
1463 spin_unlock(&state->owner->so_lock);
1464 }
1465
1466 static int update_open_stateid(struct nfs4_state *state,
1467 const nfs4_stateid *open_stateid,
1468 const nfs4_stateid *delegation,
1469 fmode_t fmode)
1470 {
1471 struct nfs_server *server = NFS_SERVER(state->inode);
1472 struct nfs_client *clp = server->nfs_client;
1473 struct nfs_inode *nfsi = NFS_I(state->inode);
1474 struct nfs_delegation *deleg_cur;
1475 nfs4_stateid freeme = { };
1476 int ret = 0;
1477
1478 fmode &= (FMODE_READ|FMODE_WRITE);
1479
1480 rcu_read_lock();
1481 deleg_cur = rcu_dereference(nfsi->delegation);
1482 if (deleg_cur == NULL)
1483 goto no_delegation;
1484
1485 spin_lock(&deleg_cur->lock);
1486 if (rcu_dereference(nfsi->delegation) != deleg_cur ||
1487 test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) ||
1488 (deleg_cur->type & fmode) != fmode)
1489 goto no_delegation_unlock;
1490
1491 if (delegation == NULL)
1492 delegation = &deleg_cur->stateid;
1493 else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation))
1494 goto no_delegation_unlock;
1495
1496 nfs_mark_delegation_referenced(deleg_cur);
1497 __update_open_stateid(state, open_stateid, &deleg_cur->stateid,
1498 fmode, &freeme);
1499 ret = 1;
1500 no_delegation_unlock:
1501 spin_unlock(&deleg_cur->lock);
1502 no_delegation:
1503 rcu_read_unlock();
1504
1505 if (!ret && open_stateid != NULL) {
1506 __update_open_stateid(state, open_stateid, NULL, fmode, &freeme);
1507 ret = 1;
1508 }
1509 if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags))
1510 nfs4_schedule_state_manager(clp);
1511 if (freeme.type != 0)
1512 nfs4_test_and_free_stateid(server, &freeme,
1513 state->owner->so_cred);
1514
1515 return ret;
1516 }
1517
1518 static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp,
1519 const nfs4_stateid *stateid)
1520 {
1521 struct nfs4_state *state = lsp->ls_state;
1522 bool ret = false;
1523
1524 spin_lock(&state->state_lock);
1525 if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid))
1526 goto out_noupdate;
1527 if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid))
1528 goto out_noupdate;
1529 nfs4_stateid_copy(&lsp->ls_stateid, stateid);
1530 ret = true;
1531 out_noupdate:
1532 spin_unlock(&state->state_lock);
1533 return ret;
1534 }
1535
1536 static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode)
1537 {
1538 struct nfs_delegation *delegation;
1539
1540 rcu_read_lock();
1541 delegation = rcu_dereference(NFS_I(inode)->delegation);
1542 if (delegation == NULL || (delegation->type & fmode) == fmode) {
1543 rcu_read_unlock();
1544 return;
1545 }
1546 rcu_read_unlock();
1547 nfs4_inode_return_delegation(inode);
1548 }
1549
1550 static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata)
1551 {
1552 struct nfs4_state *state = opendata->state;
1553 struct nfs_inode *nfsi = NFS_I(state->inode);
1554 struct nfs_delegation *delegation;
1555 int open_mode = opendata->o_arg.open_flags;
1556 fmode_t fmode = opendata->o_arg.fmode;
1557 enum open_claim_type4 claim = opendata->o_arg.claim;
1558 nfs4_stateid stateid;
1559 int ret = -EAGAIN;
1560
1561 for (;;) {
1562 spin_lock(&state->owner->so_lock);
1563 if (can_open_cached(state, fmode, open_mode)) {
1564 update_open_stateflags(state, fmode);
1565 spin_unlock(&state->owner->so_lock);
1566 goto out_return_state;
1567 }
1568 spin_unlock(&state->owner->so_lock);
1569 rcu_read_lock();
1570 delegation = rcu_dereference(nfsi->delegation);
1571 if (!can_open_delegated(delegation, fmode, claim)) {
1572 rcu_read_unlock();
1573 break;
1574 }
1575 /* Save the delegation */
1576 nfs4_stateid_copy(&stateid, &delegation->stateid);
1577 rcu_read_unlock();
1578 nfs_release_seqid(opendata->o_arg.seqid);
1579 if (!opendata->is_recover) {
1580 ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode);
1581 if (ret != 0)
1582 goto out;
1583 }
1584 ret = -EAGAIN;
1585
1586 /* Try to update the stateid using the delegation */
1587 if (update_open_stateid(state, NULL, &stateid, fmode))
1588 goto out_return_state;
1589 }
1590 out:
1591 return ERR_PTR(ret);
1592 out_return_state:
1593 atomic_inc(&state->count);
1594 return state;
1595 }
1596
1597 static void
1598 nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state)
1599 {
1600 struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client;
1601 struct nfs_delegation *delegation;
1602 int delegation_flags = 0;
1603
1604 rcu_read_lock();
1605 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1606 if (delegation)
1607 delegation_flags = delegation->flags;
1608 rcu_read_unlock();
1609 switch (data->o_arg.claim) {
1610 default:
1611 break;
1612 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
1613 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
1614 pr_err_ratelimited("NFS: Broken NFSv4 server %s is "
1615 "returning a delegation for "
1616 "OPEN(CLAIM_DELEGATE_CUR)\n",
1617 clp->cl_hostname);
1618 return;
1619 }
1620 if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0)
1621 nfs_inode_set_delegation(state->inode,
1622 data->owner->so_cred,
1623 &data->o_res);
1624 else
1625 nfs_inode_reclaim_delegation(state->inode,
1626 data->owner->so_cred,
1627 &data->o_res);
1628 }
1629
1630 /*
1631 * Check the inode attributes against the CLAIM_PREVIOUS returned attributes
1632 * and update the nfs4_state.
1633 */
1634 static struct nfs4_state *
1635 _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
1636 {
1637 struct inode *inode = data->state->inode;
1638 struct nfs4_state *state = data->state;
1639 int ret;
1640
1641 if (!data->rpc_done) {
1642 if (data->rpc_status)
1643 return ERR_PTR(data->rpc_status);
1644 /* cached opens have already been processed */
1645 goto update;
1646 }
1647
1648 ret = nfs_refresh_inode(inode, &data->f_attr);
1649 if (ret)
1650 return ERR_PTR(ret);
1651
1652 if (data->o_res.delegation_type != 0)
1653 nfs4_opendata_check_deleg(data, state);
1654 update:
1655 update_open_stateid(state, &data->o_res.stateid, NULL,
1656 data->o_arg.fmode);
1657 atomic_inc(&state->count);
1658
1659 return state;
1660 }
1661
1662 static struct nfs4_state *
1663 _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1664 {
1665 struct inode *inode;
1666 struct nfs4_state *state = NULL;
1667 int ret;
1668
1669 if (!data->rpc_done) {
1670 state = nfs4_try_open_cached(data);
1671 trace_nfs4_cached_open(data->state);
1672 goto out;
1673 }
1674
1675 ret = -EAGAIN;
1676 if (!(data->f_attr.valid & NFS_ATTR_FATTR))
1677 goto err;
1678 inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label);
1679 ret = PTR_ERR(inode);
1680 if (IS_ERR(inode))
1681 goto err;
1682 ret = -ENOMEM;
1683 state = nfs4_get_open_state(inode, data->owner);
1684 if (state == NULL)
1685 goto err_put_inode;
1686 if (data->o_res.delegation_type != 0)
1687 nfs4_opendata_check_deleg(data, state);
1688 update_open_stateid(state, &data->o_res.stateid, NULL,
1689 data->o_arg.fmode);
1690 iput(inode);
1691 out:
1692 nfs_release_seqid(data->o_arg.seqid);
1693 return state;
1694 err_put_inode:
1695 iput(inode);
1696 err:
1697 return ERR_PTR(ret);
1698 }
1699
1700 static struct nfs4_state *
1701 nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data)
1702 {
1703 struct nfs4_state *ret;
1704
1705 if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
1706 ret =_nfs4_opendata_reclaim_to_nfs4_state(data);
1707 else
1708 ret = _nfs4_opendata_to_nfs4_state(data);
1709 nfs4_sequence_free_slot(&data->o_res.seq_res);
1710 return ret;
1711 }
1712
1713 static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
1714 {
1715 struct nfs_inode *nfsi = NFS_I(state->inode);
1716 struct nfs_open_context *ctx;
1717
1718 spin_lock(&state->inode->i_lock);
1719 list_for_each_entry(ctx, &nfsi->open_files, list) {
1720 if (ctx->state != state)
1721 continue;
1722 get_nfs_open_context(ctx);
1723 spin_unlock(&state->inode->i_lock);
1724 return ctx;
1725 }
1726 spin_unlock(&state->inode->i_lock);
1727 return ERR_PTR(-ENOENT);
1728 }
1729
1730 static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx,
1731 struct nfs4_state *state, enum open_claim_type4 claim)
1732 {
1733 struct nfs4_opendata *opendata;
1734
1735 opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0,
1736 NULL, NULL, claim, GFP_NOFS);
1737 if (opendata == NULL)
1738 return ERR_PTR(-ENOMEM);
1739 opendata->state = state;
1740 atomic_inc(&state->count);
1741 return opendata;
1742 }
1743
1744 static int nfs4_open_recover_helper(struct nfs4_opendata *opendata,
1745 fmode_t fmode)
1746 {
1747 struct nfs4_state *newstate;
1748 int ret;
1749
1750 if (!nfs4_mode_match_open_stateid(opendata->state, fmode))
1751 return 0;
1752 opendata->o_arg.open_flags = 0;
1753 opendata->o_arg.fmode = fmode;
1754 opendata->o_arg.share_access = nfs4_map_atomic_open_share(
1755 NFS_SB(opendata->dentry->d_sb),
1756 fmode, 0);
1757 memset(&opendata->o_res, 0, sizeof(opendata->o_res));
1758 memset(&opendata->c_res, 0, sizeof(opendata->c_res));
1759 nfs4_init_opendata_res(opendata);
1760 ret = _nfs4_recover_proc_open(opendata);
1761 if (ret != 0)
1762 return ret;
1763 newstate = nfs4_opendata_to_nfs4_state(opendata);
1764 if (IS_ERR(newstate))
1765 return PTR_ERR(newstate);
1766 if (newstate != opendata->state)
1767 ret = -ESTALE;
1768 nfs4_close_state(newstate, fmode);
1769 return ret;
1770 }
1771
1772 static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
1773 {
1774 int ret;
1775
1776 /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */
1777 clear_bit(NFS_O_RDWR_STATE, &state->flags);
1778 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
1779 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
1780 /* memory barrier prior to reading state->n_* */
1781 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1782 clear_bit(NFS_OPEN_STATE, &state->flags);
1783 smp_rmb();
1784 ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1785 if (ret != 0)
1786 return ret;
1787 ret = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1788 if (ret != 0)
1789 return ret;
1790 ret = nfs4_open_recover_helper(opendata, FMODE_READ);
1791 if (ret != 0)
1792 return ret;
1793 /*
1794 * We may have performed cached opens for all three recoveries.
1795 * Check if we need to update the current stateid.
1796 */
1797 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 &&
1798 !nfs4_stateid_match(&state->stateid, &state->open_stateid)) {
1799 write_seqlock(&state->seqlock);
1800 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0)
1801 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1802 write_sequnlock(&state->seqlock);
1803 }
1804 return 0;
1805 }
1806
1807 /*
1808 * OPEN_RECLAIM:
1809 * reclaim state on the server after a reboot.
1810 */
1811 static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1812 {
1813 struct nfs_delegation *delegation;
1814 struct nfs4_opendata *opendata;
1815 fmode_t delegation_type = 0;
1816 int status;
1817
1818 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1819 NFS4_OPEN_CLAIM_PREVIOUS);
1820 if (IS_ERR(opendata))
1821 return PTR_ERR(opendata);
1822 rcu_read_lock();
1823 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
1824 if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0)
1825 delegation_type = delegation->type;
1826 rcu_read_unlock();
1827 opendata->o_arg.u.delegation_type = delegation_type;
1828 status = nfs4_open_recover(opendata, state);
1829 nfs4_opendata_put(opendata);
1830 return status;
1831 }
1832
1833 static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state)
1834 {
1835 struct nfs_server *server = NFS_SERVER(state->inode);
1836 struct nfs4_exception exception = { };
1837 int err;
1838 do {
1839 err = _nfs4_do_open_reclaim(ctx, state);
1840 trace_nfs4_open_reclaim(ctx, 0, err);
1841 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
1842 continue;
1843 if (err != -NFS4ERR_DELAY)
1844 break;
1845 nfs4_handle_exception(server, err, &exception);
1846 } while (exception.retry);
1847 return err;
1848 }
1849
1850 static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
1851 {
1852 struct nfs_open_context *ctx;
1853 int ret;
1854
1855 ctx = nfs4_state_find_open_context(state);
1856 if (IS_ERR(ctx))
1857 return -EAGAIN;
1858 ret = nfs4_do_open_reclaim(ctx, state);
1859 put_nfs_open_context(ctx);
1860 return ret;
1861 }
1862
1863 static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, int err)
1864 {
1865 switch (err) {
1866 default:
1867 printk(KERN_ERR "NFS: %s: unhandled error "
1868 "%d.\n", __func__, err);
1869 case 0:
1870 case -ENOENT:
1871 case -EAGAIN:
1872 case -ESTALE:
1873 break;
1874 case -NFS4ERR_BADSESSION:
1875 case -NFS4ERR_BADSLOT:
1876 case -NFS4ERR_BAD_HIGH_SLOT:
1877 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
1878 case -NFS4ERR_DEADSESSION:
1879 set_bit(NFS_DELEGATED_STATE, &state->flags);
1880 nfs4_schedule_session_recovery(server->nfs_client->cl_session, err);
1881 return -EAGAIN;
1882 case -NFS4ERR_STALE_CLIENTID:
1883 case -NFS4ERR_STALE_STATEID:
1884 set_bit(NFS_DELEGATED_STATE, &state->flags);
1885 /* Don't recall a delegation if it was lost */
1886 nfs4_schedule_lease_recovery(server->nfs_client);
1887 return -EAGAIN;
1888 case -NFS4ERR_MOVED:
1889 nfs4_schedule_migration_recovery(server);
1890 return -EAGAIN;
1891 case -NFS4ERR_LEASE_MOVED:
1892 nfs4_schedule_lease_moved_recovery(server->nfs_client);
1893 return -EAGAIN;
1894 case -NFS4ERR_DELEG_REVOKED:
1895 case -NFS4ERR_ADMIN_REVOKED:
1896 case -NFS4ERR_EXPIRED:
1897 case -NFS4ERR_BAD_STATEID:
1898 case -NFS4ERR_OPENMODE:
1899 nfs_inode_find_state_and_recover(state->inode,
1900 stateid);
1901 nfs4_schedule_stateid_recovery(server, state);
1902 return -EAGAIN;
1903 case -NFS4ERR_DELAY:
1904 case -NFS4ERR_GRACE:
1905 set_bit(NFS_DELEGATED_STATE, &state->flags);
1906 ssleep(1);
1907 return -EAGAIN;
1908 case -ENOMEM:
1909 case -NFS4ERR_DENIED:
1910 /* kill_proc(fl->fl_pid, SIGLOST, 1); */
1911 return 0;
1912 }
1913 return err;
1914 }
1915
1916 int nfs4_open_delegation_recall(struct nfs_open_context *ctx,
1917 struct nfs4_state *state, const nfs4_stateid *stateid,
1918 fmode_t type)
1919 {
1920 struct nfs_server *server = NFS_SERVER(state->inode);
1921 struct nfs4_opendata *opendata;
1922 int err = 0;
1923
1924 opendata = nfs4_open_recoverdata_alloc(ctx, state,
1925 NFS4_OPEN_CLAIM_DELEG_CUR_FH);
1926 if (IS_ERR(opendata))
1927 return PTR_ERR(opendata);
1928 nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid);
1929 write_seqlock(&state->seqlock);
1930 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
1931 write_sequnlock(&state->seqlock);
1932 clear_bit(NFS_DELEGATED_STATE, &state->flags);
1933 switch (type & (FMODE_READ|FMODE_WRITE)) {
1934 case FMODE_READ|FMODE_WRITE:
1935 case FMODE_WRITE:
1936 err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE);
1937 if (err)
1938 break;
1939 err = nfs4_open_recover_helper(opendata, FMODE_WRITE);
1940 if (err)
1941 break;
1942 case FMODE_READ:
1943 err = nfs4_open_recover_helper(opendata, FMODE_READ);
1944 }
1945 nfs4_opendata_put(opendata);
1946 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
1947 }
1948
1949 static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata)
1950 {
1951 struct nfs4_opendata *data = calldata;
1952
1953 nfs4_setup_sequence(data->o_arg.server->nfs_client,
1954 &data->c_arg.seq_args, &data->c_res.seq_res, task);
1955 }
1956
1957 static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
1958 {
1959 struct nfs4_opendata *data = calldata;
1960
1961 nfs40_sequence_done(task, &data->c_res.seq_res);
1962
1963 data->rpc_status = task->tk_status;
1964 if (data->rpc_status == 0) {
1965 nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid);
1966 nfs_confirm_seqid(&data->owner->so_seqid, 0);
1967 renew_lease(data->o_res.server, data->timestamp);
1968 data->rpc_done = 1;
1969 }
1970 }
1971
1972 static void nfs4_open_confirm_release(void *calldata)
1973 {
1974 struct nfs4_opendata *data = calldata;
1975 struct nfs4_state *state = NULL;
1976
1977 /* If this request hasn't been cancelled, do nothing */
1978 if (data->cancelled == 0)
1979 goto out_free;
1980 /* In case of error, no cleanup! */
1981 if (!data->rpc_done)
1982 goto out_free;
1983 state = nfs4_opendata_to_nfs4_state(data);
1984 if (!IS_ERR(state))
1985 nfs4_close_state(state, data->o_arg.fmode);
1986 out_free:
1987 nfs4_opendata_put(data);
1988 }
1989
1990 static const struct rpc_call_ops nfs4_open_confirm_ops = {
1991 .rpc_call_prepare = nfs4_open_confirm_prepare,
1992 .rpc_call_done = nfs4_open_confirm_done,
1993 .rpc_release = nfs4_open_confirm_release,
1994 };
1995
1996 /*
1997 * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata
1998 */
1999 static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
2000 {
2001 struct nfs_server *server = NFS_SERVER(d_inode(data->dir));
2002 struct rpc_task *task;
2003 struct rpc_message msg = {
2004 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM],
2005 .rpc_argp = &data->c_arg,
2006 .rpc_resp = &data->c_res,
2007 .rpc_cred = data->owner->so_cred,
2008 };
2009 struct rpc_task_setup task_setup_data = {
2010 .rpc_client = server->client,
2011 .rpc_message = &msg,
2012 .callback_ops = &nfs4_open_confirm_ops,
2013 .callback_data = data,
2014 .workqueue = nfsiod_workqueue,
2015 .flags = RPC_TASK_ASYNC,
2016 };
2017 int status;
2018
2019 nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1);
2020 kref_get(&data->kref);
2021 data->rpc_done = 0;
2022 data->rpc_status = 0;
2023 data->timestamp = jiffies;
2024 if (data->is_recover)
2025 nfs4_set_sequence_privileged(&data->c_arg.seq_args);
2026 task = rpc_run_task(&task_setup_data);
2027 if (IS_ERR(task))
2028 return PTR_ERR(task);
2029 status = rpc_wait_for_completion_task(task);
2030 if (status != 0) {
2031 data->cancelled = 1;
2032 smp_wmb();
2033 } else
2034 status = data->rpc_status;
2035 rpc_put_task(task);
2036 return status;
2037 }
2038
2039 static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
2040 {
2041 struct nfs4_opendata *data = calldata;
2042 struct nfs4_state_owner *sp = data->owner;
2043 struct nfs_client *clp = sp->so_server->nfs_client;
2044 enum open_claim_type4 claim = data->o_arg.claim;
2045
2046 if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0)
2047 goto out_wait;
2048 /*
2049 * Check if we still need to send an OPEN call, or if we can use
2050 * a delegation instead.
2051 */
2052 if (data->state != NULL) {
2053 struct nfs_delegation *delegation;
2054
2055 if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags))
2056 goto out_no_action;
2057 rcu_read_lock();
2058 delegation = rcu_dereference(NFS_I(data->state->inode)->delegation);
2059 if (can_open_delegated(delegation, data->o_arg.fmode, claim))
2060 goto unlock_no_action;
2061 rcu_read_unlock();
2062 }
2063 /* Update client id. */
2064 data->o_arg.clientid = clp->cl_clientid;
2065 switch (claim) {
2066 default:
2067 break;
2068 case NFS4_OPEN_CLAIM_PREVIOUS:
2069 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
2070 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
2071 data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0];
2072 case NFS4_OPEN_CLAIM_FH:
2073 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
2074 nfs_copy_fh(&data->o_res.fh, data->o_arg.fh);
2075 }
2076 data->timestamp = jiffies;
2077 if (nfs4_setup_sequence(data->o_arg.server->nfs_client,
2078 &data->o_arg.seq_args,
2079 &data->o_res.seq_res,
2080 task) != 0)
2081 nfs_release_seqid(data->o_arg.seqid);
2082
2083 /* Set the create mode (note dependency on the session type) */
2084 data->o_arg.createmode = NFS4_CREATE_UNCHECKED;
2085 if (data->o_arg.open_flags & O_EXCL) {
2086 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE;
2087 if (nfs4_has_persistent_session(clp))
2088 data->o_arg.createmode = NFS4_CREATE_GUARDED;
2089 else if (clp->cl_mvops->minor_version > 0)
2090 data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1;
2091 }
2092 return;
2093 unlock_no_action:
2094 trace_nfs4_cached_open(data->state);
2095 rcu_read_unlock();
2096 out_no_action:
2097 task->tk_action = NULL;
2098 out_wait:
2099 nfs4_sequence_done(task, &data->o_res.seq_res);
2100 }
2101
2102 static void nfs4_open_done(struct rpc_task *task, void *calldata)
2103 {
2104 struct nfs4_opendata *data = calldata;
2105
2106 data->rpc_status = task->tk_status;
2107
2108 if (!nfs4_sequence_process(task, &data->o_res.seq_res))
2109 return;
2110
2111 if (task->tk_status == 0) {
2112 if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) {
2113 switch (data->o_res.f_attr->mode & S_IFMT) {
2114 case S_IFREG:
2115 break;
2116 case S_IFLNK:
2117 data->rpc_status = -ELOOP;
2118 break;
2119 case S_IFDIR:
2120 data->rpc_status = -EISDIR;
2121 break;
2122 default:
2123 data->rpc_status = -ENOTDIR;
2124 }
2125 }
2126 renew_lease(data->o_res.server, data->timestamp);
2127 if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM))
2128 nfs_confirm_seqid(&data->owner->so_seqid, 0);
2129 }
2130 data->rpc_done = 1;
2131 }
2132
2133 static void nfs4_open_release(void *calldata)
2134 {
2135 struct nfs4_opendata *data = calldata;
2136 struct nfs4_state *state = NULL;
2137
2138 /* If this request hasn't been cancelled, do nothing */
2139 if (data->cancelled == 0)
2140 goto out_free;
2141 /* In case of error, no cleanup! */
2142 if (data->rpc_status != 0 || !data->rpc_done)
2143 goto out_free;
2144 /* In case we need an open_confirm, no cleanup! */
2145 if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)
2146 goto out_free;
2147 state = nfs4_opendata_to_nfs4_state(data);
2148 if (!IS_ERR(state))
2149 nfs4_close_state(state, data->o_arg.fmode);
2150 out_free:
2151 nfs4_opendata_put(data);
2152 }
2153
2154 static const struct rpc_call_ops nfs4_open_ops = {
2155 .rpc_call_prepare = nfs4_open_prepare,
2156 .rpc_call_done = nfs4_open_done,
2157 .rpc_release = nfs4_open_release,
2158 };
2159
2160 static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
2161 {
2162 struct inode *dir = d_inode(data->dir);
2163 struct nfs_server *server = NFS_SERVER(dir);
2164 struct nfs_openargs *o_arg = &data->o_arg;
2165 struct nfs_openres *o_res = &data->o_res;
2166 struct rpc_task *task;
2167 struct rpc_message msg = {
2168 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN],
2169 .rpc_argp = o_arg,
2170 .rpc_resp = o_res,
2171 .rpc_cred = data->owner->so_cred,
2172 };
2173 struct rpc_task_setup task_setup_data = {
2174 .rpc_client = server->client,
2175 .rpc_message = &msg,
2176 .callback_ops = &nfs4_open_ops,
2177 .callback_data = data,
2178 .workqueue = nfsiod_workqueue,
2179 .flags = RPC_TASK_ASYNC,
2180 };
2181 int status;
2182
2183 nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1);
2184 kref_get(&data->kref);
2185 data->rpc_done = 0;
2186 data->rpc_status = 0;
2187 data->cancelled = 0;
2188 data->is_recover = 0;
2189 if (isrecover) {
2190 nfs4_set_sequence_privileged(&o_arg->seq_args);
2191 data->is_recover = 1;
2192 }
2193 task = rpc_run_task(&task_setup_data);
2194 if (IS_ERR(task))
2195 return PTR_ERR(task);
2196 status = rpc_wait_for_completion_task(task);
2197 if (status != 0) {
2198 data->cancelled = 1;
2199 smp_wmb();
2200 } else
2201 status = data->rpc_status;
2202 rpc_put_task(task);
2203
2204 return status;
2205 }
2206
2207 static int _nfs4_recover_proc_open(struct nfs4_opendata *data)
2208 {
2209 struct inode *dir = d_inode(data->dir);
2210 struct nfs_openres *o_res = &data->o_res;
2211 int status;
2212
2213 status = nfs4_run_open_task(data, 1);
2214 if (status != 0 || !data->rpc_done)
2215 return status;
2216
2217 nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr);
2218
2219 if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM)
2220 status = _nfs4_proc_open_confirm(data);
2221
2222 return status;
2223 }
2224
2225 /*
2226 * Additional permission checks in order to distinguish between an
2227 * open for read, and an open for execute. This works around the
2228 * fact that NFSv4 OPEN treats read and execute permissions as being
2229 * the same.
2230 * Note that in the non-execute case, we want to turn off permission
2231 * checking if we just created a new file (POSIX open() semantics).
2232 */
2233 static int nfs4_opendata_access(struct rpc_cred *cred,
2234 struct nfs4_opendata *opendata,
2235 struct nfs4_state *state, fmode_t fmode,
2236 int openflags)
2237 {
2238 struct nfs_access_entry cache;
2239 u32 mask;
2240
2241 /* access call failed or for some reason the server doesn't
2242 * support any access modes -- defer access call until later */
2243 if (opendata->o_res.access_supported == 0)
2244 return 0;
2245
2246 mask = 0;
2247 /*
2248 * Use openflags to check for exec, because fmode won't
2249 * always have FMODE_EXEC set when file open for exec.
2250 */
2251 if (openflags & __FMODE_EXEC) {
2252 /* ONLY check for exec rights */
2253 mask = MAY_EXEC;
2254 } else if ((fmode & FMODE_READ) && !opendata->file_created)
2255 mask = MAY_READ;
2256
2257 cache.cred = cred;
2258 cache.jiffies = jiffies;
2259 nfs_access_set_mask(&cache, opendata->o_res.access_result);
2260 nfs_access_add_cache(state->inode, &cache);
2261
2262 if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0)
2263 return 0;
2264
2265 /* even though OPEN succeeded, access is denied. Close the file */
2266 nfs4_close_state(state, fmode);
2267 return -EACCES;
2268 }
2269
2270 /*
2271 * Note: On error, nfs4_proc_open will free the struct nfs4_opendata
2272 */
2273 static int _nfs4_proc_open(struct nfs4_opendata *data)
2274 {
2275 struct inode *dir = d_inode(data->dir);
2276 struct nfs_server *server = NFS_SERVER(dir);
2277 struct nfs_openargs *o_arg = &data->o_arg;
2278 struct nfs_openres *o_res = &data->o_res;
2279 int status;
2280
2281 status = nfs4_run_open_task(data, 0);
2282 if (!data->rpc_done)
2283 return status;
2284 if (status != 0) {
2285 if (status == -NFS4ERR_BADNAME &&
2286 !(o_arg->open_flags & O_CREAT))
2287 return -ENOENT;
2288 return status;
2289 }
2290
2291 nfs_fattr_map_and_free_names(server, &data->f_attr);
2292
2293 if (o_arg->open_flags & O_CREAT) {
2294 if (o_arg->open_flags & O_EXCL)
2295 data->file_created = 1;
2296 else if (o_res->cinfo.before != o_res->cinfo.after)
2297 data->file_created = 1;
2298 if (data->file_created || dir->i_version != o_res->cinfo.after)
2299 update_changeattr(dir, &o_res->cinfo,
2300 o_res->f_attr->time_start);
2301 }
2302 if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0)
2303 server->caps &= ~NFS_CAP_POSIX_LOCK;
2304 if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) {
2305 status = _nfs4_proc_open_confirm(data);
2306 if (status != 0)
2307 return status;
2308 }
2309 if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
2310 nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
2311 return 0;
2312 }
2313
2314 static int nfs4_recover_expired_lease(struct nfs_server *server)
2315 {
2316 return nfs4_client_recover_expired_lease(server->nfs_client);
2317 }
2318
2319 /*
2320 * OPEN_EXPIRED:
2321 * reclaim state on the server after a network partition.
2322 * Assumes caller holds the appropriate lock
2323 */
2324 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2325 {
2326 struct nfs4_opendata *opendata;
2327 int ret;
2328
2329 opendata = nfs4_open_recoverdata_alloc(ctx, state,
2330 NFS4_OPEN_CLAIM_FH);
2331 if (IS_ERR(opendata))
2332 return PTR_ERR(opendata);
2333 ret = nfs4_open_recover(opendata, state);
2334 if (ret == -ESTALE)
2335 d_drop(ctx->dentry);
2336 nfs4_opendata_put(opendata);
2337 return ret;
2338 }
2339
2340 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state)
2341 {
2342 struct nfs_server *server = NFS_SERVER(state->inode);
2343 struct nfs4_exception exception = { };
2344 int err;
2345
2346 do {
2347 err = _nfs4_open_expired(ctx, state);
2348 trace_nfs4_open_expired(ctx, 0, err);
2349 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception))
2350 continue;
2351 switch (err) {
2352 default:
2353 goto out;
2354 case -NFS4ERR_GRACE:
2355 case -NFS4ERR_DELAY:
2356 nfs4_handle_exception(server, err, &exception);
2357 err = 0;
2358 }
2359 } while (exception.retry);
2360 out:
2361 return err;
2362 }
2363
2364 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2365 {
2366 struct nfs_open_context *ctx;
2367 int ret;
2368
2369 ctx = nfs4_state_find_open_context(state);
2370 if (IS_ERR(ctx))
2371 return -EAGAIN;
2372 ret = nfs4_do_open_expired(ctx, state);
2373 put_nfs_open_context(ctx);
2374 return ret;
2375 }
2376
2377 static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state,
2378 const nfs4_stateid *stateid)
2379 {
2380 nfs_remove_bad_delegation(state->inode, stateid);
2381 write_seqlock(&state->seqlock);
2382 nfs4_stateid_copy(&state->stateid, &state->open_stateid);
2383 write_sequnlock(&state->seqlock);
2384 clear_bit(NFS_DELEGATED_STATE, &state->flags);
2385 }
2386
2387 static void nfs40_clear_delegation_stateid(struct nfs4_state *state)
2388 {
2389 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL)
2390 nfs_finish_clear_delegation_stateid(state, NULL);
2391 }
2392
2393 static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2394 {
2395 /* NFSv4.0 doesn't allow for delegation recovery on open expire */
2396 nfs40_clear_delegation_stateid(state);
2397 return nfs4_open_expired(sp, state);
2398 }
2399
2400 static int nfs40_test_and_free_expired_stateid(struct nfs_server *server,
2401 nfs4_stateid *stateid,
2402 struct rpc_cred *cred)
2403 {
2404 return -NFS4ERR_BAD_STATEID;
2405 }
2406
2407 #if defined(CONFIG_NFS_V4_1)
2408 static int nfs41_test_and_free_expired_stateid(struct nfs_server *server,
2409 nfs4_stateid *stateid,
2410 struct rpc_cred *cred)
2411 {
2412 int status;
2413
2414 switch (stateid->type) {
2415 default:
2416 break;
2417 case NFS4_INVALID_STATEID_TYPE:
2418 case NFS4_SPECIAL_STATEID_TYPE:
2419 return -NFS4ERR_BAD_STATEID;
2420 case NFS4_REVOKED_STATEID_TYPE:
2421 goto out_free;
2422 }
2423
2424 status = nfs41_test_stateid(server, stateid, cred);
2425 switch (status) {
2426 case -NFS4ERR_EXPIRED:
2427 case -NFS4ERR_ADMIN_REVOKED:
2428 case -NFS4ERR_DELEG_REVOKED:
2429 break;
2430 default:
2431 return status;
2432 }
2433 out_free:
2434 /* Ack the revoked state to the server */
2435 nfs41_free_stateid(server, stateid, cred, true);
2436 return -NFS4ERR_EXPIRED;
2437 }
2438
2439 static void nfs41_check_delegation_stateid(struct nfs4_state *state)
2440 {
2441 struct nfs_server *server = NFS_SERVER(state->inode);
2442 nfs4_stateid stateid;
2443 struct nfs_delegation *delegation;
2444 struct rpc_cred *cred;
2445 int status;
2446
2447 /* Get the delegation credential for use by test/free_stateid */
2448 rcu_read_lock();
2449 delegation = rcu_dereference(NFS_I(state->inode)->delegation);
2450 if (delegation == NULL) {
2451 rcu_read_unlock();
2452 return;
2453 }
2454
2455 nfs4_stateid_copy(&stateid, &delegation->stateid);
2456 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) {
2457 rcu_read_unlock();
2458 nfs_finish_clear_delegation_stateid(state, &stateid);
2459 return;
2460 }
2461
2462 if (!test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags)) {
2463 rcu_read_unlock();
2464 return;
2465 }
2466
2467 cred = get_rpccred(delegation->cred);
2468 rcu_read_unlock();
2469 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred);
2470 trace_nfs4_test_delegation_stateid(state, NULL, status);
2471 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID)
2472 nfs_finish_clear_delegation_stateid(state, &stateid);
2473
2474 put_rpccred(cred);
2475 }
2476
2477 /**
2478 * nfs41_check_expired_locks - possibly free a lock stateid
2479 *
2480 * @state: NFSv4 state for an inode
2481 *
2482 * Returns NFS_OK if recovery for this stateid is now finished.
2483 * Otherwise a negative NFS4ERR value is returned.
2484 */
2485 static int nfs41_check_expired_locks(struct nfs4_state *state)
2486 {
2487 int status, ret = NFS_OK;
2488 struct nfs4_lock_state *lsp, *prev = NULL;
2489 struct nfs_server *server = NFS_SERVER(state->inode);
2490
2491 if (!test_bit(LK_STATE_IN_USE, &state->flags))
2492 goto out;
2493
2494 spin_lock(&state->state_lock);
2495 list_for_each_entry(lsp, &state->lock_states, ls_locks) {
2496 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) {
2497 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
2498
2499 atomic_inc(&lsp->ls_count);
2500 spin_unlock(&state->state_lock);
2501
2502 nfs4_put_lock_state(prev);
2503 prev = lsp;
2504
2505 status = nfs41_test_and_free_expired_stateid(server,
2506 &lsp->ls_stateid,
2507 cred);
2508 trace_nfs4_test_lock_stateid(state, lsp, status);
2509 if (status == -NFS4ERR_EXPIRED ||
2510 status == -NFS4ERR_BAD_STATEID) {
2511 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
2512 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE;
2513 if (!recover_lost_locks)
2514 set_bit(NFS_LOCK_LOST, &lsp->ls_flags);
2515 } else if (status != NFS_OK) {
2516 ret = status;
2517 nfs4_put_lock_state(prev);
2518 goto out;
2519 }
2520 spin_lock(&state->state_lock);
2521 }
2522 }
2523 spin_unlock(&state->state_lock);
2524 nfs4_put_lock_state(prev);
2525 out:
2526 return ret;
2527 }
2528
2529 /**
2530 * nfs41_check_open_stateid - possibly free an open stateid
2531 *
2532 * @state: NFSv4 state for an inode
2533 *
2534 * Returns NFS_OK if recovery for this stateid is now finished.
2535 * Otherwise a negative NFS4ERR value is returned.
2536 */
2537 static int nfs41_check_open_stateid(struct nfs4_state *state)
2538 {
2539 struct nfs_server *server = NFS_SERVER(state->inode);
2540 nfs4_stateid *stateid = &state->open_stateid;
2541 struct rpc_cred *cred = state->owner->so_cred;
2542 int status;
2543
2544 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) {
2545 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) {
2546 if (nfs4_have_delegation(state->inode, state->state))
2547 return NFS_OK;
2548 return -NFS4ERR_OPENMODE;
2549 }
2550 return -NFS4ERR_BAD_STATEID;
2551 }
2552 status = nfs41_test_and_free_expired_stateid(server, stateid, cred);
2553 trace_nfs4_test_open_stateid(state, NULL, status);
2554 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) {
2555 clear_bit(NFS_O_RDONLY_STATE, &state->flags);
2556 clear_bit(NFS_O_WRONLY_STATE, &state->flags);
2557 clear_bit(NFS_O_RDWR_STATE, &state->flags);
2558 clear_bit(NFS_OPEN_STATE, &state->flags);
2559 stateid->type = NFS4_INVALID_STATEID_TYPE;
2560 }
2561 if (status != NFS_OK)
2562 return status;
2563 if (nfs_open_stateid_recover_openmode(state))
2564 return -NFS4ERR_OPENMODE;
2565 return NFS_OK;
2566 }
2567
2568 static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
2569 {
2570 int status;
2571
2572 nfs41_check_delegation_stateid(state);
2573 status = nfs41_check_expired_locks(state);
2574 if (status != NFS_OK)
2575 return status;
2576 status = nfs41_check_open_stateid(state);
2577 if (status != NFS_OK)
2578 status = nfs4_open_expired(sp, state);
2579 return status;
2580 }
2581 #endif
2582
2583 /*
2584 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-*
2585 * fields corresponding to attributes that were used to store the verifier.
2586 * Make sure we clobber those fields in the later setattr call
2587 */
2588 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata,
2589 struct iattr *sattr, struct nfs4_label **label)
2590 {
2591 const u32 *attrset = opendata->o_res.attrset;
2592
2593 if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) &&
2594 !(sattr->ia_valid & ATTR_ATIME_SET))
2595 sattr->ia_valid |= ATTR_ATIME;
2596
2597 if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) &&
2598 !(sattr->ia_valid & ATTR_MTIME_SET))
2599 sattr->ia_valid |= ATTR_MTIME;
2600
2601 /* Except MODE, it seems harmless of setting twice. */
2602 if (opendata->o_arg.createmode != NFS4_CREATE_EXCLUSIVE &&
2603 attrset[1] & FATTR4_WORD1_MODE)
2604 sattr->ia_valid &= ~ATTR_MODE;
2605
2606 if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL)
2607 *label = NULL;
2608 }
2609
2610 static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata,
2611 fmode_t fmode,
2612 int flags,
2613 struct nfs_open_context *ctx)
2614 {
2615 struct nfs4_state_owner *sp = opendata->owner;
2616 struct nfs_server *server = sp->so_server;
2617 struct dentry *dentry;
2618 struct nfs4_state *state;
2619 unsigned int seq;
2620 int ret;
2621
2622 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount);
2623
2624 ret = _nfs4_proc_open(opendata);
2625 if (ret != 0)
2626 goto out;
2627
2628 state = nfs4_opendata_to_nfs4_state(opendata);
2629 ret = PTR_ERR(state);
2630 if (IS_ERR(state))
2631 goto out;
2632 if (server->caps & NFS_CAP_POSIX_LOCK)
2633 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags);
2634 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK)
2635 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags);
2636
2637 dentry = opendata->dentry;
2638 if (d_really_is_negative(dentry)) {
2639 struct dentry *alias;
2640 d_drop(dentry);
2641 alias = d_exact_alias(dentry, state->inode);
2642 if (!alias)
2643 alias = d_splice_alias(igrab(state->inode), dentry);
2644 /* d_splice_alias() can't fail here - it's a non-directory */
2645 if (alias) {
2646 dput(ctx->dentry);
2647 ctx->dentry = dentry = alias;
2648 }
2649 nfs_set_verifier(dentry,
2650 nfs_save_change_attribute(d_inode(opendata->dir)));
2651 }
2652
2653 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags);
2654 if (ret != 0)
2655 goto out;
2656
2657 ctx->state = state;
2658 if (d_inode(dentry) == state->inode) {
2659 nfs_inode_attach_open_context(ctx);
2660 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq))
2661 nfs4_schedule_stateid_recovery(server, state);
2662 }
2663 out:
2664 return ret;
2665 }
2666
2667 /*
2668 * Returns a referenced nfs4_state
2669 */
2670 static int _nfs4_do_open(struct inode *dir,
2671 struct nfs_open_context *ctx,
2672 int flags,
2673 struct iattr *sattr,
2674 struct nfs4_label *label,
2675 int *opened)
2676 {
2677 struct nfs4_state_owner *sp;
2678 struct nfs4_state *state = NULL;
2679 struct nfs_server *server = NFS_SERVER(dir);
2680 struct nfs4_opendata *opendata;
2681 struct dentry *dentry = ctx->dentry;
2682 struct rpc_cred *cred = ctx->cred;
2683 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold;
2684 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC);
2685 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL;
2686 struct nfs4_label *olabel = NULL;
2687 int status;
2688
2689 /* Protect against reboot recovery conflicts */
2690 status = -ENOMEM;
2691 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL);
2692 if (sp == NULL) {
2693 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n");
2694 goto out_err;
2695 }
2696 status = nfs4_recover_expired_lease(server);
2697 if (status != 0)
2698 goto err_put_state_owner;
2699 if (d_really_is_positive(dentry))
2700 nfs4_return_incompatible_delegation(d_inode(dentry), fmode);
2701 status = -ENOMEM;
2702 if (d_really_is_positive(dentry))
2703 claim = NFS4_OPEN_CLAIM_FH;
2704 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr,
2705 label, claim, GFP_KERNEL);
2706 if (opendata == NULL)
2707 goto err_put_state_owner;
2708
2709 if (label) {
2710 olabel = nfs4_label_alloc(server, GFP_KERNEL);
2711 if (IS_ERR(olabel)) {
2712 status = PTR_ERR(olabel);
2713 goto err_opendata_put;
2714 }
2715 }
2716
2717 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) {
2718 if (!opendata->f_attr.mdsthreshold) {
2719 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc();
2720 if (!opendata->f_attr.mdsthreshold)
2721 goto err_free_label;
2722 }
2723 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0];
2724 }
2725 if (d_really_is_positive(dentry))
2726 opendata->state = nfs4_get_open_state(d_inode(dentry), sp);
2727
2728 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx);
2729 if (status != 0)
2730 goto err_free_label;
2731 state = ctx->state;
2732
2733 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) &&
2734 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) {
2735 nfs4_exclusive_attrset(opendata, sattr, &label);
2736 /*
2737 * send create attributes which was not set by open
2738 * with an extra setattr.
2739 */
2740 if (sattr->ia_valid & NFS4_VALID_ATTRS) {
2741 nfs_fattr_init(opendata->o_res.f_attr);
2742 status = nfs4_do_setattr(state->inode, cred,
2743 opendata->o_res.f_attr, sattr,
2744 ctx, label, olabel);
2745 if (status == 0) {
2746 nfs_setattr_update_inode(state->inode, sattr,
2747 opendata->o_res.f_attr);
2748 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel);
2749 }
2750 }
2751 }
2752 if (opened && opendata->file_created)
2753 *opened |= FILE_CREATED;
2754
2755 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) {
2756 *ctx_th = opendata->f_attr.mdsthreshold;
2757 opendata->f_attr.mdsthreshold = NULL;
2758 }
2759
2760 nfs4_label_free(olabel);
2761
2762 nfs4_opendata_put(opendata);
2763 nfs4_put_state_owner(sp);
2764 return 0;
2765 err_free_label:
2766 nfs4_label_free(olabel);
2767 err_opendata_put:
2768 nfs4_opendata_put(opendata);
2769 err_put_state_owner:
2770 nfs4_put_state_owner(sp);
2771 out_err:
2772 return status;
2773 }
2774
2775
2776 static struct nfs4_state *nfs4_do_open(struct inode *dir,
2777 struct nfs_open_context *ctx,
2778 int flags,
2779 struct iattr *sattr,
2780 struct nfs4_label *label,
2781 int *opened)
2782 {
2783 struct nfs_server *server = NFS_SERVER(dir);
2784 struct nfs4_exception exception = { };
2785 struct nfs4_state *res;
2786 int status;
2787
2788 do {
2789 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened);
2790 res = ctx->state;
2791 trace_nfs4_open_file(ctx, flags, status);
2792 if (status == 0)
2793 break;
2794 /* NOTE: BAD_SEQID means the server and client disagree about the
2795 * book-keeping w.r.t. state-changing operations
2796 * (OPEN/CLOSE/LOCK/LOCKU...)
2797 * It is actually a sign of a bug on the client or on the server.
2798 *
2799 * If we receive a BAD_SEQID error in the particular case of
2800 * doing an OPEN, we assume that nfs_increment_open_seqid() will
2801 * have unhashed the old state_owner for us, and that we can
2802 * therefore safely retry using a new one. We should still warn
2803 * the user though...
2804 */
2805 if (status == -NFS4ERR_BAD_SEQID) {
2806 pr_warn_ratelimited("NFS: v4 server %s "
2807 " returned a bad sequence-id error!\n",
2808 NFS_SERVER(dir)->nfs_client->cl_hostname);
2809 exception.retry = 1;
2810 continue;
2811 }
2812 /*
2813 * BAD_STATEID on OPEN means that the server cancelled our
2814 * state before it received the OPEN_CONFIRM.
2815 * Recover by retrying the request as per the discussion
2816 * on Page 181 of RFC3530.
2817 */
2818 if (status == -NFS4ERR_BAD_STATEID) {
2819 exception.retry = 1;
2820 continue;
2821 }
2822 if (status == -EAGAIN) {
2823 /* We must have found a delegation */
2824 exception.retry = 1;
2825 continue;
2826 }
2827 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception))
2828 continue;
2829 res = ERR_PTR(nfs4_handle_exception(server,
2830 status, &exception));
2831 } while (exception.retry);
2832 return res;
2833 }
2834
2835 static int _nfs4_do_setattr(struct inode *inode,
2836 struct nfs_setattrargs *arg,
2837 struct nfs_setattrres *res,
2838 struct rpc_cred *cred,
2839 struct nfs_open_context *ctx)
2840 {
2841 struct nfs_server *server = NFS_SERVER(inode);
2842 struct rpc_message msg = {
2843 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
2844 .rpc_argp = arg,
2845 .rpc_resp = res,
2846 .rpc_cred = cred,
2847 };
2848 struct rpc_cred *delegation_cred = NULL;
2849 unsigned long timestamp = jiffies;
2850 fmode_t fmode;
2851 bool truncate;
2852 int status;
2853
2854 nfs_fattr_init(res->fattr);
2855
2856 /* Servers should only apply open mode checks for file size changes */
2857 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false;
2858 fmode = truncate ? FMODE_WRITE : FMODE_READ;
2859
2860 if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) {
2861 /* Use that stateid */
2862 } else if (truncate && ctx != NULL) {
2863 struct nfs_lock_context *l_ctx;
2864 if (!nfs4_valid_open_stateid(ctx->state))
2865 return -EBADF;
2866 l_ctx = nfs_get_lock_context(ctx);
2867 if (IS_ERR(l_ctx))
2868 return PTR_ERR(l_ctx);
2869 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx,
2870 &arg->stateid, &delegation_cred);
2871 nfs_put_lock_context(l_ctx);
2872 if (status == -EIO)
2873 return -EBADF;
2874 } else
2875 nfs4_stateid_copy(&arg->stateid, &zero_stateid);
2876 if (delegation_cred)
2877 msg.rpc_cred = delegation_cred;
2878
2879 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1);
2880
2881 put_rpccred(delegation_cred);
2882 if (status == 0 && ctx != NULL)
2883 renew_lease(server, timestamp);
2884 trace_nfs4_setattr(inode, &arg->stateid, status);
2885 return status;
2886 }
2887
2888 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred,
2889 struct nfs_fattr *fattr, struct iattr *sattr,
2890 struct nfs_open_context *ctx, struct nfs4_label *ilabel,
2891 struct nfs4_label *olabel)
2892 {
2893 struct nfs_server *server = NFS_SERVER(inode);
2894 struct nfs4_state *state = ctx ? ctx->state : NULL;
2895 struct nfs_setattrargs arg = {
2896 .fh = NFS_FH(inode),
2897 .iap = sattr,
2898 .server = server,
2899 .bitmask = server->attr_bitmask,
2900 .label = ilabel,
2901 };
2902 struct nfs_setattrres res = {
2903 .fattr = fattr,
2904 .label = olabel,
2905 .server = server,
2906 };
2907 struct nfs4_exception exception = {
2908 .state = state,
2909 .inode = inode,
2910 .stateid = &arg.stateid,
2911 };
2912 int err;
2913
2914 arg.bitmask = nfs4_bitmask(server, ilabel);
2915 if (ilabel)
2916 arg.bitmask = nfs4_bitmask(server, olabel);
2917
2918 do {
2919 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx);
2920 switch (err) {
2921 case -NFS4ERR_OPENMODE:
2922 if (!(sattr->ia_valid & ATTR_SIZE)) {
2923 pr_warn_once("NFSv4: server %s is incorrectly "
2924 "applying open mode checks to "
2925 "a SETATTR that is not "
2926 "changing file size.\n",
2927 server->nfs_client->cl_hostname);
2928 }
2929 if (state && !(state->state & FMODE_WRITE)) {
2930 err = -EBADF;
2931 if (sattr->ia_valid & ATTR_OPEN)
2932 err = -EACCES;
2933 goto out;
2934 }
2935 }
2936 err = nfs4_handle_exception(server, err, &exception);
2937 } while (exception.retry);
2938 out:
2939 return err;
2940 }
2941
2942 static bool
2943 nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task)
2944 {
2945 if (inode == NULL || !nfs_have_layout(inode))
2946 return false;
2947
2948 return pnfs_wait_on_layoutreturn(inode, task);
2949 }
2950
2951 struct nfs4_closedata {
2952 struct inode *inode;
2953 struct nfs4_state *state;
2954 struct nfs_closeargs arg;
2955 struct nfs_closeres res;
2956 struct {
2957 struct nfs4_layoutreturn_args arg;
2958 struct nfs4_layoutreturn_res res;
2959 struct nfs4_xdr_opaque_data ld_private;
2960 u32 roc_barrier;
2961 bool roc;
2962 } lr;
2963 struct nfs_fattr fattr;
2964 unsigned long timestamp;
2965 };
2966
2967 static void nfs4_free_closedata(void *data)
2968 {
2969 struct nfs4_closedata *calldata = data;
2970 struct nfs4_state_owner *sp = calldata->state->owner;
2971 struct super_block *sb = calldata->state->inode->i_sb;
2972
2973 if (calldata->lr.roc)
2974 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res,
2975 calldata->res.lr_ret);
2976 nfs4_put_open_state(calldata->state);
2977 nfs_free_seqid(calldata->arg.seqid);
2978 nfs4_put_state_owner(sp);
2979 nfs_sb_deactive(sb);
2980 kfree(calldata);
2981 }
2982
2983 static void nfs4_close_done(struct rpc_task *task, void *data)
2984 {
2985 struct nfs4_closedata *calldata = data;
2986 struct nfs4_state *state = calldata->state;
2987 struct nfs_server *server = NFS_SERVER(calldata->inode);
2988 nfs4_stateid *res_stateid = NULL;
2989
2990 dprintk("%s: begin!\n", __func__);
2991 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
2992 return;
2993 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status);
2994
2995 /* Handle Layoutreturn errors */
2996 if (calldata->arg.lr_args && task->tk_status != 0) {
2997 switch (calldata->res.lr_ret) {
2998 default:
2999 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
3000 break;
3001 case 0:
3002 calldata->arg.lr_args = NULL;
3003 calldata->res.lr_res = NULL;
3004 break;
3005 case -NFS4ERR_ADMIN_REVOKED:
3006 case -NFS4ERR_DELEG_REVOKED:
3007 case -NFS4ERR_EXPIRED:
3008 case -NFS4ERR_BAD_STATEID:
3009 case -NFS4ERR_OLD_STATEID:
3010 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
3011 case -NFS4ERR_WRONG_CRED:
3012 calldata->arg.lr_args = NULL;
3013 calldata->res.lr_res = NULL;
3014 calldata->res.lr_ret = 0;
3015 rpc_restart_call_prepare(task);
3016 return;
3017 }
3018 }
3019
3020 /* hmm. we are done with the inode, and in the process of freeing
3021 * the state_owner. we keep this around to process errors
3022 */
3023 switch (task->tk_status) {
3024 case 0:
3025 res_stateid = &calldata->res.stateid;
3026 renew_lease(server, calldata->timestamp);
3027 break;
3028 case -NFS4ERR_ACCESS:
3029 if (calldata->arg.bitmask != NULL) {
3030 calldata->arg.bitmask = NULL;
3031 calldata->res.fattr = NULL;
3032 task->tk_status = 0;
3033 rpc_restart_call_prepare(task);
3034 goto out_release;
3035
3036 }
3037 break;
3038 case -NFS4ERR_ADMIN_REVOKED:
3039 case -NFS4ERR_STALE_STATEID:
3040 case -NFS4ERR_EXPIRED:
3041 nfs4_free_revoked_stateid(server,
3042 &calldata->arg.stateid,
3043 task->tk_msg.rpc_cred);
3044 case -NFS4ERR_OLD_STATEID:
3045 case -NFS4ERR_BAD_STATEID:
3046 if (!nfs4_stateid_match(&calldata->arg.stateid,
3047 &state->open_stateid)) {
3048 rpc_restart_call_prepare(task);
3049 goto out_release;
3050 }
3051 if (calldata->arg.fmode == 0)
3052 break;
3053 default:
3054 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) {
3055 rpc_restart_call_prepare(task);
3056 goto out_release;
3057 }
3058 }
3059 nfs_clear_open_stateid(state, &calldata->arg.stateid,
3060 res_stateid, calldata->arg.fmode);
3061 out_release:
3062 nfs_release_seqid(calldata->arg.seqid);
3063 nfs_refresh_inode(calldata->inode, &calldata->fattr);
3064 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status);
3065 }
3066
3067 static void nfs4_close_prepare(struct rpc_task *task, void *data)
3068 {
3069 struct nfs4_closedata *calldata = data;
3070 struct nfs4_state *state = calldata->state;
3071 struct inode *inode = calldata->inode;
3072 bool is_rdonly, is_wronly, is_rdwr;
3073 int call_close = 0;
3074
3075 dprintk("%s: begin!\n", __func__);
3076 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
3077 goto out_wait;
3078
3079 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE];
3080 spin_lock(&state->owner->so_lock);
3081 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags);
3082 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags);
3083 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags);
3084 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid);
3085 /* Calculate the change in open mode */
3086 calldata->arg.fmode = 0;
3087 if (state->n_rdwr == 0) {
3088 if (state->n_rdonly == 0)
3089 call_close |= is_rdonly;
3090 else if (is_rdonly)
3091 calldata->arg.fmode |= FMODE_READ;
3092 if (state->n_wronly == 0)
3093 call_close |= is_wronly;
3094 else if (is_wronly)
3095 calldata->arg.fmode |= FMODE_WRITE;
3096 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE))
3097 call_close |= is_rdwr;
3098 } else if (is_rdwr)
3099 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE;
3100
3101 if (!nfs4_valid_open_stateid(state) ||
3102 test_bit(NFS_OPEN_STATE, &state->flags) == 0)
3103 call_close = 0;
3104 spin_unlock(&state->owner->so_lock);
3105
3106 if (!call_close) {
3107 /* Note: exit _without_ calling nfs4_close_done */
3108 goto out_no_action;
3109 }
3110
3111 if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) {
3112 nfs_release_seqid(calldata->arg.seqid);
3113 goto out_wait;
3114 }
3115
3116 if (calldata->arg.fmode == 0)
3117 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE];
3118
3119 if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) {
3120 /* Close-to-open cache consistency revalidation */
3121 if (!nfs4_have_delegation(inode, FMODE_READ))
3122 calldata->arg.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
3123 else
3124 calldata->arg.bitmask = NULL;
3125 }
3126
3127 calldata->arg.share_access =
3128 nfs4_map_atomic_open_share(NFS_SERVER(inode),
3129 calldata->arg.fmode, 0);
3130
3131 if (calldata->res.fattr == NULL)
3132 calldata->arg.bitmask = NULL;
3133 else if (calldata->arg.bitmask == NULL)
3134 calldata->res.fattr = NULL;
3135 calldata->timestamp = jiffies;
3136 if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client,
3137 &calldata->arg.seq_args,
3138 &calldata->res.seq_res,
3139 task) != 0)
3140 nfs_release_seqid(calldata->arg.seqid);
3141 dprintk("%s: done!\n", __func__);
3142 return;
3143 out_no_action:
3144 task->tk_action = NULL;
3145 out_wait:
3146 nfs4_sequence_done(task, &calldata->res.seq_res);
3147 }
3148
3149 static const struct rpc_call_ops nfs4_close_ops = {
3150 .rpc_call_prepare = nfs4_close_prepare,
3151 .rpc_call_done = nfs4_close_done,
3152 .rpc_release = nfs4_free_closedata,
3153 };
3154
3155 /*
3156 * It is possible for data to be read/written from a mem-mapped file
3157 * after the sys_close call (which hits the vfs layer as a flush).
3158 * This means that we can't safely call nfsv4 close on a file until
3159 * the inode is cleared. This in turn means that we are not good
3160 * NFSv4 citizens - we do not indicate to the server to update the file's
3161 * share state even when we are done with one of the three share
3162 * stateid's in the inode.
3163 *
3164 * NOTE: Caller must be holding the sp->so_owner semaphore!
3165 */
3166 int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait)
3167 {
3168 struct nfs_server *server = NFS_SERVER(state->inode);
3169 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
3170 struct nfs4_closedata *calldata;
3171 struct nfs4_state_owner *sp = state->owner;
3172 struct rpc_task *task;
3173 struct rpc_message msg = {
3174 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE],
3175 .rpc_cred = state->owner->so_cred,
3176 };
3177 struct rpc_task_setup task_setup_data = {
3178 .rpc_client = server->client,
3179 .rpc_message = &msg,
3180 .callback_ops = &nfs4_close_ops,
3181 .workqueue = nfsiod_workqueue,
3182 .flags = RPC_TASK_ASYNC,
3183 };
3184 int status = -ENOMEM;
3185
3186 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP,
3187 &task_setup_data.rpc_client, &msg);
3188
3189 calldata = kzalloc(sizeof(*calldata), gfp_mask);
3190 if (calldata == NULL)
3191 goto out;
3192 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1);
3193 calldata->inode = state->inode;
3194 calldata->state = state;
3195 calldata->arg.fh = NFS_FH(state->inode);
3196 /* Serialization for the sequence id */
3197 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
3198 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask);
3199 if (IS_ERR(calldata->arg.seqid))
3200 goto out_free_calldata;
3201 nfs_fattr_init(&calldata->fattr);
3202 calldata->arg.fmode = 0;
3203 calldata->lr.arg.ld_private = &calldata->lr.ld_private;
3204 calldata->res.fattr = &calldata->fattr;
3205 calldata->res.seqid = calldata->arg.seqid;
3206 calldata->res.server = server;
3207 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
3208 calldata->lr.roc = pnfs_roc(state->inode,
3209 &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred);
3210 if (calldata->lr.roc) {
3211 calldata->arg.lr_args = &calldata->lr.arg;
3212 calldata->res.lr_res = &calldata->lr.res;
3213 }
3214 nfs_sb_active(calldata->inode->i_sb);
3215
3216 msg.rpc_argp = &calldata->arg;
3217 msg.rpc_resp = &calldata->res;
3218 task_setup_data.callback_data = calldata;
3219 task = rpc_run_task(&task_setup_data);
3220 if (IS_ERR(task))
3221 return PTR_ERR(task);
3222 status = 0;
3223 if (wait)
3224 status = rpc_wait_for_completion_task(task);
3225 rpc_put_task(task);
3226 return status;
3227 out_free_calldata:
3228 kfree(calldata);
3229 out:
3230 nfs4_put_open_state(state);
3231 nfs4_put_state_owner(sp);
3232 return status;
3233 }
3234
3235 static struct inode *
3236 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx,
3237 int open_flags, struct iattr *attr, int *opened)
3238 {
3239 struct nfs4_state *state;
3240 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL;
3241
3242 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l);
3243
3244 /* Protect against concurrent sillydeletes */
3245 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened);
3246
3247 nfs4_label_release_security(label);
3248
3249 if (IS_ERR(state))
3250 return ERR_CAST(state);
3251 return state->inode;
3252 }
3253
3254 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync)
3255 {
3256 if (ctx->state == NULL)
3257 return;
3258 if (is_sync)
3259 nfs4_close_sync(ctx->state, ctx->mode);
3260 else
3261 nfs4_close_state(ctx->state, ctx->mode);
3262 }
3263
3264 #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL)
3265 #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL)
3266 #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_MODE_UMASK - 1UL)
3267
3268 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3269 {
3270 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion;
3271 struct nfs4_server_caps_arg args = {
3272 .fhandle = fhandle,
3273 .bitmask = bitmask,
3274 };
3275 struct nfs4_server_caps_res res = {};
3276 struct rpc_message msg = {
3277 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS],
3278 .rpc_argp = &args,
3279 .rpc_resp = &res,
3280 };
3281 int status;
3282
3283 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS |
3284 FATTR4_WORD0_FH_EXPIRE_TYPE |
3285 FATTR4_WORD0_LINK_SUPPORT |
3286 FATTR4_WORD0_SYMLINK_SUPPORT |
3287 FATTR4_WORD0_ACLSUPPORT;
3288 if (minorversion)
3289 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT;
3290
3291 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3292 if (status == 0) {
3293 /* Sanity check the server answers */
3294 switch (minorversion) {
3295 case 0:
3296 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK;
3297 res.attr_bitmask[2] = 0;
3298 break;
3299 case 1:
3300 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK;
3301 break;
3302 case 2:
3303 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK;
3304 }
3305 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask));
3306 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS|
3307 NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
3308 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|
3309 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME|
3310 NFS_CAP_CTIME|NFS_CAP_MTIME|
3311 NFS_CAP_SECURITY_LABEL);
3312 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL &&
3313 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL)
3314 server->caps |= NFS_CAP_ACLS;
3315 if (res.has_links != 0)
3316 server->caps |= NFS_CAP_HARDLINKS;
3317 if (res.has_symlinks != 0)
3318 server->caps |= NFS_CAP_SYMLINKS;
3319 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID)
3320 server->caps |= NFS_CAP_FILEID;
3321 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE)
3322 server->caps |= NFS_CAP_MODE;
3323 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS)
3324 server->caps |= NFS_CAP_NLINK;
3325 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER)
3326 server->caps |= NFS_CAP_OWNER;
3327 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP)
3328 server->caps |= NFS_CAP_OWNER_GROUP;
3329 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS)
3330 server->caps |= NFS_CAP_ATIME;
3331 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA)
3332 server->caps |= NFS_CAP_CTIME;
3333 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY)
3334 server->caps |= NFS_CAP_MTIME;
3335 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
3336 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL)
3337 server->caps |= NFS_CAP_SECURITY_LABEL;
3338 #endif
3339 memcpy(server->attr_bitmask_nl, res.attr_bitmask,
3340 sizeof(server->attr_bitmask));
3341 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
3342
3343 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask));
3344 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE;
3345 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY;
3346 server->cache_consistency_bitmask[2] = 0;
3347 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask,
3348 sizeof(server->exclcreat_bitmask));
3349 server->acl_bitmask = res.acl_bitmask;
3350 server->fh_expire_type = res.fh_expire_type;
3351 }
3352
3353 return status;
3354 }
3355
3356 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle)
3357 {
3358 struct nfs4_exception exception = { };
3359 int err;
3360 do {
3361 err = nfs4_handle_exception(server,
3362 _nfs4_server_capabilities(server, fhandle),
3363 &exception);
3364 } while (exception.retry);
3365 return err;
3366 }
3367
3368 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3369 struct nfs_fsinfo *info)
3370 {
3371 u32 bitmask[3];
3372 struct nfs4_lookup_root_arg args = {
3373 .bitmask = bitmask,
3374 };
3375 struct nfs4_lookup_res res = {
3376 .server = server,
3377 .fattr = info->fattr,
3378 .fh = fhandle,
3379 };
3380 struct rpc_message msg = {
3381 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT],
3382 .rpc_argp = &args,
3383 .rpc_resp = &res,
3384 };
3385
3386 bitmask[0] = nfs4_fattr_bitmap[0];
3387 bitmask[1] = nfs4_fattr_bitmap[1];
3388 /*
3389 * Process the label in the upcoming getfattr
3390 */
3391 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL;
3392
3393 nfs_fattr_init(info->fattr);
3394 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3395 }
3396
3397 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle,
3398 struct nfs_fsinfo *info)
3399 {
3400 struct nfs4_exception exception = { };
3401 int err;
3402 do {
3403 err = _nfs4_lookup_root(server, fhandle, info);
3404 trace_nfs4_lookup_root(server, fhandle, info->fattr, err);
3405 switch (err) {
3406 case 0:
3407 case -NFS4ERR_WRONGSEC:
3408 goto out;
3409 default:
3410 err = nfs4_handle_exception(server, err, &exception);
3411 }
3412 } while (exception.retry);
3413 out:
3414 return err;
3415 }
3416
3417 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3418 struct nfs_fsinfo *info, rpc_authflavor_t flavor)
3419 {
3420 struct rpc_auth_create_args auth_args = {
3421 .pseudoflavor = flavor,
3422 };
3423 struct rpc_auth *auth;
3424 int ret;
3425
3426 auth = rpcauth_create(&auth_args, server->client);
3427 if (IS_ERR(auth)) {
3428 ret = -EACCES;
3429 goto out;
3430 }
3431 ret = nfs4_lookup_root(server, fhandle, info);
3432 out:
3433 return ret;
3434 }
3435
3436 /*
3437 * Retry pseudoroot lookup with various security flavors. We do this when:
3438 *
3439 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC
3440 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation
3441 *
3442 * Returns zero on success, or a negative NFS4ERR value, or a
3443 * negative errno value.
3444 */
3445 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
3446 struct nfs_fsinfo *info)
3447 {
3448 /* Per 3530bis 15.33.5 */
3449 static const rpc_authflavor_t flav_array[] = {
3450 RPC_AUTH_GSS_KRB5P,
3451 RPC_AUTH_GSS_KRB5I,
3452 RPC_AUTH_GSS_KRB5,
3453 RPC_AUTH_UNIX, /* courtesy */
3454 RPC_AUTH_NULL,
3455 };
3456 int status = -EPERM;
3457 size_t i;
3458
3459 if (server->auth_info.flavor_len > 0) {
3460 /* try each flavor specified by user */
3461 for (i = 0; i < server->auth_info.flavor_len; i++) {
3462 status = nfs4_lookup_root_sec(server, fhandle, info,
3463 server->auth_info.flavors[i]);
3464 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3465 continue;
3466 break;
3467 }
3468 } else {
3469 /* no flavors specified by user, try default list */
3470 for (i = 0; i < ARRAY_SIZE(flav_array); i++) {
3471 status = nfs4_lookup_root_sec(server, fhandle, info,
3472 flav_array[i]);
3473 if (status == -NFS4ERR_WRONGSEC || status == -EACCES)
3474 continue;
3475 break;
3476 }
3477 }
3478
3479 /*
3480 * -EACCESS could mean that the user doesn't have correct permissions
3481 * to access the mount. It could also mean that we tried to mount
3482 * with a gss auth flavor, but rpc.gssd isn't running. Either way,
3483 * existing mount programs don't handle -EACCES very well so it should
3484 * be mapped to -EPERM instead.
3485 */
3486 if (status == -EACCES)
3487 status = -EPERM;
3488 return status;
3489 }
3490
3491 /**
3492 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot
3493 * @server: initialized nfs_server handle
3494 * @fhandle: we fill in the pseudo-fs root file handle
3495 * @info: we fill in an FSINFO struct
3496 * @auth_probe: probe the auth flavours
3497 *
3498 * Returns zero on success, or a negative errno.
3499 */
3500 int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle,
3501 struct nfs_fsinfo *info,
3502 bool auth_probe)
3503 {
3504 int status = 0;
3505
3506 if (!auth_probe)
3507 status = nfs4_lookup_root(server, fhandle, info);
3508
3509 if (auth_probe || status == NFS4ERR_WRONGSEC)
3510 status = server->nfs_client->cl_mvops->find_root_sec(server,
3511 fhandle, info);
3512
3513 if (status == 0)
3514 status = nfs4_server_capabilities(server, fhandle);
3515 if (status == 0)
3516 status = nfs4_do_fsinfo(server, fhandle, info);
3517
3518 return nfs4_map_errors(status);
3519 }
3520
3521 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh,
3522 struct nfs_fsinfo *info)
3523 {
3524 int error;
3525 struct nfs_fattr *fattr = info->fattr;
3526 struct nfs4_label *label = NULL;
3527
3528 error = nfs4_server_capabilities(server, mntfh);
3529 if (error < 0) {
3530 dprintk("nfs4_get_root: getcaps error = %d\n", -error);
3531 return error;
3532 }
3533
3534 label = nfs4_label_alloc(server, GFP_KERNEL);
3535 if (IS_ERR(label))
3536 return PTR_ERR(label);
3537
3538 error = nfs4_proc_getattr(server, mntfh, fattr, label);
3539 if (error < 0) {
3540 dprintk("nfs4_get_root: getattr error = %d\n", -error);
3541 goto err_free_label;
3542 }
3543
3544 if (fattr->valid & NFS_ATTR_FATTR_FSID &&
3545 !nfs_fsid_equal(&server->fsid, &fattr->fsid))
3546 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
3547
3548 err_free_label:
3549 nfs4_label_free(label);
3550
3551 return error;
3552 }
3553
3554 /*
3555 * Get locations and (maybe) other attributes of a referral.
3556 * Note that we'll actually follow the referral later when
3557 * we detect fsid mismatch in inode revalidation
3558 */
3559 static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir,
3560 const struct qstr *name, struct nfs_fattr *fattr,
3561 struct nfs_fh *fhandle)
3562 {
3563 int status = -ENOMEM;
3564 struct page *page = NULL;
3565 struct nfs4_fs_locations *locations = NULL;
3566
3567 page = alloc_page(GFP_KERNEL);
3568 if (page == NULL)
3569 goto out;
3570 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL);
3571 if (locations == NULL)
3572 goto out;
3573
3574 status = nfs4_proc_fs_locations(client, dir, name, locations, page);
3575 if (status != 0)
3576 goto out;
3577
3578 /*
3579 * If the fsid didn't change, this is a migration event, not a
3580 * referral. Cause us to drop into the exception handler, which
3581 * will kick off migration recovery.
3582 */
3583 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) {
3584 dprintk("%s: server did not return a different fsid for"
3585 " a referral at %s\n", __func__, name->name);
3586 status = -NFS4ERR_MOVED;
3587 goto out;
3588 }
3589 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */
3590 nfs_fixup_referral_attributes(&locations->fattr);
3591
3592 /* replace the lookup nfs_fattr with the locations nfs_fattr */
3593 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr));
3594 memset(fhandle, 0, sizeof(struct nfs_fh));
3595 out:
3596 if (page)
3597 __free_page(page);
3598 kfree(locations);
3599 return status;
3600 }
3601
3602 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3603 struct nfs_fattr *fattr, struct nfs4_label *label)
3604 {
3605 struct nfs4_getattr_arg args = {
3606 .fh = fhandle,
3607 .bitmask = server->attr_bitmask,
3608 };
3609 struct nfs4_getattr_res res = {
3610 .fattr = fattr,
3611 .label = label,
3612 .server = server,
3613 };
3614 struct rpc_message msg = {
3615 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
3616 .rpc_argp = &args,
3617 .rpc_resp = &res,
3618 };
3619
3620 args.bitmask = nfs4_bitmask(server, label);
3621
3622 nfs_fattr_init(fattr);
3623 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3624 }
3625
3626 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
3627 struct nfs_fattr *fattr, struct nfs4_label *label)
3628 {
3629 struct nfs4_exception exception = { };
3630 int err;
3631 do {
3632 err = _nfs4_proc_getattr(server, fhandle, fattr, label);
3633 trace_nfs4_getattr(server, fhandle, fattr, err);
3634 err = nfs4_handle_exception(server, err,
3635 &exception);
3636 } while (exception.retry);
3637 return err;
3638 }
3639
3640 /*
3641 * The file is not closed if it is opened due to the a request to change
3642 * the size of the file. The open call will not be needed once the
3643 * VFS layer lookup-intents are implemented.
3644 *
3645 * Close is called when the inode is destroyed.
3646 * If we haven't opened the file for O_WRONLY, we
3647 * need to in the size_change case to obtain a stateid.
3648 *
3649 * Got race?
3650 * Because OPEN is always done by name in nfsv4, it is
3651 * possible that we opened a different file by the same
3652 * name. We can recognize this race condition, but we
3653 * can't do anything about it besides returning an error.
3654 *
3655 * This will be fixed with VFS changes (lookup-intent).
3656 */
3657 static int
3658 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
3659 struct iattr *sattr)
3660 {
3661 struct inode *inode = d_inode(dentry);
3662 struct rpc_cred *cred = NULL;
3663 struct nfs_open_context *ctx = NULL;
3664 struct nfs4_label *label = NULL;
3665 int status;
3666
3667 if (pnfs_ld_layoutret_on_setattr(inode) &&
3668 sattr->ia_valid & ATTR_SIZE &&
3669 sattr->ia_size < i_size_read(inode))
3670 pnfs_commit_and_return_layout(inode);
3671
3672 nfs_fattr_init(fattr);
3673
3674 /* Deal with open(O_TRUNC) */
3675 if (sattr->ia_valid & ATTR_OPEN)
3676 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME);
3677
3678 /* Optimization: if the end result is no change, don't RPC */
3679 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
3680 return 0;
3681
3682 /* Search for an existing open(O_WRITE) file */
3683 if (sattr->ia_valid & ATTR_FILE) {
3684
3685 ctx = nfs_file_open_context(sattr->ia_file);
3686 if (ctx)
3687 cred = ctx->cred;
3688 }
3689
3690 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
3691 if (IS_ERR(label))
3692 return PTR_ERR(label);
3693
3694 status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL, label);
3695 if (status == 0) {
3696 nfs_setattr_update_inode(inode, sattr, fattr);
3697 nfs_setsecurity(inode, fattr, label);
3698 }
3699 nfs4_label_free(label);
3700 return status;
3701 }
3702
3703 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir,
3704 const struct qstr *name, struct nfs_fh *fhandle,
3705 struct nfs_fattr *fattr, struct nfs4_label *label)
3706 {
3707 struct nfs_server *server = NFS_SERVER(dir);
3708 int status;
3709 struct nfs4_lookup_arg args = {
3710 .bitmask = server->attr_bitmask,
3711 .dir_fh = NFS_FH(dir),
3712 .name = name,
3713 };
3714 struct nfs4_lookup_res res = {
3715 .server = server,
3716 .fattr = fattr,
3717 .label = label,
3718 .fh = fhandle,
3719 };
3720 struct rpc_message msg = {
3721 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP],
3722 .rpc_argp = &args,
3723 .rpc_resp = &res,
3724 };
3725
3726 args.bitmask = nfs4_bitmask(server, label);
3727
3728 nfs_fattr_init(fattr);
3729
3730 dprintk("NFS call lookup %s\n", name->name);
3731 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0);
3732 dprintk("NFS reply lookup: %d\n", status);
3733 return status;
3734 }
3735
3736 static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr)
3737 {
3738 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
3739 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT;
3740 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
3741 fattr->nlink = 2;
3742 }
3743
3744 static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir,
3745 const struct qstr *name, struct nfs_fh *fhandle,
3746 struct nfs_fattr *fattr, struct nfs4_label *label)
3747 {
3748 struct nfs4_exception exception = { };
3749 struct rpc_clnt *client = *clnt;
3750 int err;
3751 do {
3752 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label);
3753 trace_nfs4_lookup(dir, name, err);
3754 switch (err) {
3755 case -NFS4ERR_BADNAME:
3756 err = -ENOENT;
3757 goto out;
3758 case -NFS4ERR_MOVED:
3759 err = nfs4_get_referral(client, dir, name, fattr, fhandle);
3760 if (err == -NFS4ERR_MOVED)
3761 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3762 goto out;
3763 case -NFS4ERR_WRONGSEC:
3764 err = -EPERM;
3765 if (client != *clnt)
3766 goto out;
3767 client = nfs4_negotiate_security(client, dir, name);
3768 if (IS_ERR(client))
3769 return PTR_ERR(client);
3770
3771 exception.retry = 1;
3772 break;
3773 default:
3774 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception);
3775 }
3776 } while (exception.retry);
3777
3778 out:
3779 if (err == 0)
3780 *clnt = client;
3781 else if (client != *clnt)
3782 rpc_shutdown_client(client);
3783
3784 return err;
3785 }
3786
3787 static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name,
3788 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
3789 struct nfs4_label *label)
3790 {
3791 int status;
3792 struct rpc_clnt *client = NFS_CLIENT(dir);
3793
3794 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label);
3795 if (client != NFS_CLIENT(dir)) {
3796 rpc_shutdown_client(client);
3797 nfs_fixup_secinfo_attributes(fattr);
3798 }
3799 return status;
3800 }
3801
3802 struct rpc_clnt *
3803 nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name,
3804 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
3805 {
3806 struct rpc_clnt *client = NFS_CLIENT(dir);
3807 int status;
3808
3809 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL);
3810 if (status < 0)
3811 return ERR_PTR(status);
3812 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client;
3813 }
3814
3815 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3816 {
3817 struct nfs_server *server = NFS_SERVER(inode);
3818 struct nfs4_accessargs args = {
3819 .fh = NFS_FH(inode),
3820 .bitmask = server->cache_consistency_bitmask,
3821 };
3822 struct nfs4_accessres res = {
3823 .server = server,
3824 };
3825 struct rpc_message msg = {
3826 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS],
3827 .rpc_argp = &args,
3828 .rpc_resp = &res,
3829 .rpc_cred = entry->cred,
3830 };
3831 int mode = entry->mask;
3832 int status = 0;
3833
3834 /*
3835 * Determine which access bits we want to ask for...
3836 */
3837 if (mode & MAY_READ)
3838 args.access |= NFS4_ACCESS_READ;
3839 if (S_ISDIR(inode->i_mode)) {
3840 if (mode & MAY_WRITE)
3841 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE;
3842 if (mode & MAY_EXEC)
3843 args.access |= NFS4_ACCESS_LOOKUP;
3844 } else {
3845 if (mode & MAY_WRITE)
3846 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND;
3847 if (mode & MAY_EXEC)
3848 args.access |= NFS4_ACCESS_EXECUTE;
3849 }
3850
3851 res.fattr = nfs_alloc_fattr();
3852 if (res.fattr == NULL)
3853 return -ENOMEM;
3854
3855 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
3856 if (!status) {
3857 nfs_access_set_mask(entry, res.access);
3858 nfs_refresh_inode(inode, res.fattr);
3859 }
3860 nfs_free_fattr(res.fattr);
3861 return status;
3862 }
3863
3864 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry)
3865 {
3866 struct nfs4_exception exception = { };
3867 int err;
3868 do {
3869 err = _nfs4_proc_access(inode, entry);
3870 trace_nfs4_access(inode, err);
3871 err = nfs4_handle_exception(NFS_SERVER(inode), err,
3872 &exception);
3873 } while (exception.retry);
3874 return err;
3875 }
3876
3877 /*
3878 * TODO: For the time being, we don't try to get any attributes
3879 * along with any of the zero-copy operations READ, READDIR,
3880 * READLINK, WRITE.
3881 *
3882 * In the case of the first three, we want to put the GETATTR
3883 * after the read-type operation -- this is because it is hard
3884 * to predict the length of a GETATTR response in v4, and thus
3885 * align the READ data correctly. This means that the GETATTR
3886 * may end up partially falling into the page cache, and we should
3887 * shift it into the 'tail' of the xdr_buf before processing.
3888 * To do this efficiently, we need to know the total length
3889 * of data received, which doesn't seem to be available outside
3890 * of the RPC layer.
3891 *
3892 * In the case of WRITE, we also want to put the GETATTR after
3893 * the operation -- in this case because we want to make sure
3894 * we get the post-operation mtime and size.
3895 *
3896 * Both of these changes to the XDR layer would in fact be quite
3897 * minor, but I decided to leave them for a subsequent patch.
3898 */
3899 static int _nfs4_proc_readlink(struct inode *inode, struct page *page,
3900 unsigned int pgbase, unsigned int pglen)
3901 {
3902 struct nfs4_readlink args = {
3903 .fh = NFS_FH(inode),
3904 .pgbase = pgbase,
3905 .pglen = pglen,
3906 .pages = &page,
3907 };
3908 struct nfs4_readlink_res res;
3909 struct rpc_message msg = {
3910 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK],
3911 .rpc_argp = &args,
3912 .rpc_resp = &res,
3913 };
3914
3915 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0);
3916 }
3917
3918 static int nfs4_proc_readlink(struct inode *inode, struct page *page,
3919 unsigned int pgbase, unsigned int pglen)
3920 {
3921 struct nfs4_exception exception = { };
3922 int err;
3923 do {
3924 err = _nfs4_proc_readlink(inode, page, pgbase, pglen);
3925 trace_nfs4_readlink(inode, err);
3926 err = nfs4_handle_exception(NFS_SERVER(inode), err,
3927 &exception);
3928 } while (exception.retry);
3929 return err;
3930 }
3931
3932 /*
3933 * This is just for mknod. open(O_CREAT) will always do ->open_context().
3934 */
3935 static int
3936 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
3937 int flags)
3938 {
3939 struct nfs_server *server = NFS_SERVER(dir);
3940 struct nfs4_label l, *ilabel = NULL;
3941 struct nfs_open_context *ctx;
3942 struct nfs4_state *state;
3943 int status = 0;
3944
3945 ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL);
3946 if (IS_ERR(ctx))
3947 return PTR_ERR(ctx);
3948
3949 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l);
3950
3951 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
3952 sattr->ia_mode &= ~current_umask();
3953 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL);
3954 if (IS_ERR(state)) {
3955 status = PTR_ERR(state);
3956 goto out;
3957 }
3958 out:
3959 nfs4_label_release_security(ilabel);
3960 put_nfs_open_context(ctx);
3961 return status;
3962 }
3963
3964 static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name)
3965 {
3966 struct nfs_server *server = NFS_SERVER(dir);
3967 struct nfs_removeargs args = {
3968 .fh = NFS_FH(dir),
3969 .name = *name,
3970 };
3971 struct nfs_removeres res = {
3972 .server = server,
3973 };
3974 struct rpc_message msg = {
3975 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE],
3976 .rpc_argp = &args,
3977 .rpc_resp = &res,
3978 };
3979 unsigned long timestamp = jiffies;
3980 int status;
3981
3982 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1);
3983 if (status == 0)
3984 update_changeattr(dir, &res.cinfo, timestamp);
3985 return status;
3986 }
3987
3988 static int nfs4_proc_remove(struct inode *dir, const struct qstr *name)
3989 {
3990 struct nfs4_exception exception = { };
3991 int err;
3992 do {
3993 err = _nfs4_proc_remove(dir, name);
3994 trace_nfs4_remove(dir, name, err);
3995 err = nfs4_handle_exception(NFS_SERVER(dir), err,
3996 &exception);
3997 } while (exception.retry);
3998 return err;
3999 }
4000
4001 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
4002 {
4003 struct nfs_server *server = NFS_SERVER(dir);
4004 struct nfs_removeargs *args = msg->rpc_argp;
4005 struct nfs_removeres *res = msg->rpc_resp;
4006
4007 res->server = server;
4008 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE];
4009 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1);
4010
4011 nfs_fattr_init(res->dir_attr);
4012 }
4013
4014 static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
4015 {
4016 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client,
4017 &data->args.seq_args,
4018 &data->res.seq_res,
4019 task);
4020 }
4021
4022 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
4023 {
4024 struct nfs_unlinkdata *data = task->tk_calldata;
4025 struct nfs_removeres *res = &data->res;
4026
4027 if (!nfs4_sequence_done(task, &res->seq_res))
4028 return 0;
4029 if (nfs4_async_handle_error(task, res->server, NULL,
4030 &data->timeout) == -EAGAIN)
4031 return 0;
4032 if (task->tk_status == 0)
4033 update_changeattr(dir, &res->cinfo, res->dir_attr->time_start);
4034 return 1;
4035 }
4036
4037 static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
4038 {
4039 struct nfs_server *server = NFS_SERVER(dir);
4040 struct nfs_renameargs *arg = msg->rpc_argp;
4041 struct nfs_renameres *res = msg->rpc_resp;
4042
4043 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME];
4044 res->server = server;
4045 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1);
4046 }
4047
4048 static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
4049 {
4050 nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client,
4051 &data->args.seq_args,
4052 &data->res.seq_res,
4053 task);
4054 }
4055
4056 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
4057 struct inode *new_dir)
4058 {
4059 struct nfs_renamedata *data = task->tk_calldata;
4060 struct nfs_renameres *res = &data->res;
4061
4062 if (!nfs4_sequence_done(task, &res->seq_res))
4063 return 0;
4064 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN)
4065 return 0;
4066
4067 if (task->tk_status == 0) {
4068 update_changeattr(old_dir, &res->old_cinfo, res->old_fattr->time_start);
4069 if (new_dir != old_dir)
4070 update_changeattr(new_dir, &res->new_cinfo, res->new_fattr->time_start);
4071 }
4072 return 1;
4073 }
4074
4075 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4076 {
4077 struct nfs_server *server = NFS_SERVER(inode);
4078 struct nfs4_link_arg arg = {
4079 .fh = NFS_FH(inode),
4080 .dir_fh = NFS_FH(dir),
4081 .name = name,
4082 .bitmask = server->attr_bitmask,
4083 };
4084 struct nfs4_link_res res = {
4085 .server = server,
4086 .label = NULL,
4087 };
4088 struct rpc_message msg = {
4089 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK],
4090 .rpc_argp = &arg,
4091 .rpc_resp = &res,
4092 };
4093 int status = -ENOMEM;
4094
4095 res.fattr = nfs_alloc_fattr();
4096 if (res.fattr == NULL)
4097 goto out;
4098
4099 res.label = nfs4_label_alloc(server, GFP_KERNEL);
4100 if (IS_ERR(res.label)) {
4101 status = PTR_ERR(res.label);
4102 goto out;
4103 }
4104 arg.bitmask = nfs4_bitmask(server, res.label);
4105
4106 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
4107 if (!status) {
4108 update_changeattr(dir, &res.cinfo, res.fattr->time_start);
4109 status = nfs_post_op_update_inode(inode, res.fattr);
4110 if (!status)
4111 nfs_setsecurity(inode, res.fattr, res.label);
4112 }
4113
4114
4115 nfs4_label_free(res.label);
4116
4117 out:
4118 nfs_free_fattr(res.fattr);
4119 return status;
4120 }
4121
4122 static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
4123 {
4124 struct nfs4_exception exception = { };
4125 int err;
4126 do {
4127 err = nfs4_handle_exception(NFS_SERVER(inode),
4128 _nfs4_proc_link(inode, dir, name),
4129 &exception);
4130 } while (exception.retry);
4131 return err;
4132 }
4133
4134 struct nfs4_createdata {
4135 struct rpc_message msg;
4136 struct nfs4_create_arg arg;
4137 struct nfs4_create_res res;
4138 struct nfs_fh fh;
4139 struct nfs_fattr fattr;
4140 struct nfs4_label *label;
4141 };
4142
4143 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir,
4144 const struct qstr *name, struct iattr *sattr, u32 ftype)
4145 {
4146 struct nfs4_createdata *data;
4147
4148 data = kzalloc(sizeof(*data), GFP_KERNEL);
4149 if (data != NULL) {
4150 struct nfs_server *server = NFS_SERVER(dir);
4151
4152 data->label = nfs4_label_alloc(server, GFP_KERNEL);
4153 if (IS_ERR(data->label))
4154 goto out_free;
4155
4156 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE];
4157 data->msg.rpc_argp = &data->arg;
4158 data->msg.rpc_resp = &data->res;
4159 data->arg.dir_fh = NFS_FH(dir);
4160 data->arg.server = server;
4161 data->arg.name = name;
4162 data->arg.attrs = sattr;
4163 data->arg.ftype = ftype;
4164 data->arg.bitmask = nfs4_bitmask(server, data->label);
4165 data->arg.umask = current_umask();
4166 data->res.server = server;
4167 data->res.fh = &data->fh;
4168 data->res.fattr = &data->fattr;
4169 data->res.label = data->label;
4170 nfs_fattr_init(data->res.fattr);
4171 }
4172 return data;
4173 out_free:
4174 kfree(data);
4175 return NULL;
4176 }
4177
4178 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data)
4179 {
4180 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg,
4181 &data->arg.seq_args, &data->res.seq_res, 1);
4182 if (status == 0) {
4183 update_changeattr(dir, &data->res.dir_cinfo,
4184 data->res.fattr->time_start);
4185 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label);
4186 }
4187 return status;
4188 }
4189
4190 static void nfs4_free_createdata(struct nfs4_createdata *data)
4191 {
4192 nfs4_label_free(data->label);
4193 kfree(data);
4194 }
4195
4196 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
4197 struct page *page, unsigned int len, struct iattr *sattr,
4198 struct nfs4_label *label)
4199 {
4200 struct nfs4_createdata *data;
4201 int status = -ENAMETOOLONG;
4202
4203 if (len > NFS4_MAXPATHLEN)
4204 goto out;
4205
4206 status = -ENOMEM;
4207 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK);
4208 if (data == NULL)
4209 goto out;
4210
4211 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK];
4212 data->arg.u.symlink.pages = &page;
4213 data->arg.u.symlink.len = len;
4214 data->arg.label = label;
4215
4216 status = nfs4_do_create(dir, dentry, data);
4217
4218 nfs4_free_createdata(data);
4219 out:
4220 return status;
4221 }
4222
4223 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry,
4224 struct page *page, unsigned int len, struct iattr *sattr)
4225 {
4226 struct nfs4_exception exception = { };
4227 struct nfs4_label l, *label = NULL;
4228 int err;
4229
4230 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4231
4232 do {
4233 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label);
4234 trace_nfs4_symlink(dir, &dentry->d_name, err);
4235 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4236 &exception);
4237 } while (exception.retry);
4238
4239 nfs4_label_release_security(label);
4240 return err;
4241 }
4242
4243 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4244 struct iattr *sattr, struct nfs4_label *label)
4245 {
4246 struct nfs4_createdata *data;
4247 int status = -ENOMEM;
4248
4249 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR);
4250 if (data == NULL)
4251 goto out;
4252
4253 data->arg.label = label;
4254 status = nfs4_do_create(dir, dentry, data);
4255
4256 nfs4_free_createdata(data);
4257 out:
4258 return status;
4259 }
4260
4261 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry,
4262 struct iattr *sattr)
4263 {
4264 struct nfs_server *server = NFS_SERVER(dir);
4265 struct nfs4_exception exception = { };
4266 struct nfs4_label l, *label = NULL;
4267 int err;
4268
4269 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4270
4271 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4272 sattr->ia_mode &= ~current_umask();
4273 do {
4274 err = _nfs4_proc_mkdir(dir, dentry, sattr, label);
4275 trace_nfs4_mkdir(dir, &dentry->d_name, err);
4276 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4277 &exception);
4278 } while (exception.retry);
4279 nfs4_label_release_security(label);
4280
4281 return err;
4282 }
4283
4284 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
4285 u64 cookie, struct page **pages, unsigned int count, int plus)
4286 {
4287 struct inode *dir = d_inode(dentry);
4288 struct nfs4_readdir_arg args = {
4289 .fh = NFS_FH(dir),
4290 .pages = pages,
4291 .pgbase = 0,
4292 .count = count,
4293 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask,
4294 .plus = plus,
4295 };
4296 struct nfs4_readdir_res res;
4297 struct rpc_message msg = {
4298 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR],
4299 .rpc_argp = &args,
4300 .rpc_resp = &res,
4301 .rpc_cred = cred,
4302 };
4303 int status;
4304
4305 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__,
4306 dentry,
4307 (unsigned long long)cookie);
4308 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args);
4309 res.pgbase = args.pgbase;
4310 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0);
4311 if (status >= 0) {
4312 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE);
4313 status += args.pgbase;
4314 }
4315
4316 nfs_invalidate_atime(dir);
4317
4318 dprintk("%s: returns %d\n", __func__, status);
4319 return status;
4320 }
4321
4322 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
4323 u64 cookie, struct page **pages, unsigned int count, int plus)
4324 {
4325 struct nfs4_exception exception = { };
4326 int err;
4327 do {
4328 err = _nfs4_proc_readdir(dentry, cred, cookie,
4329 pages, count, plus);
4330 trace_nfs4_readdir(d_inode(dentry), err);
4331 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err,
4332 &exception);
4333 } while (exception.retry);
4334 return err;
4335 }
4336
4337 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4338 struct iattr *sattr, struct nfs4_label *label, dev_t rdev)
4339 {
4340 struct nfs4_createdata *data;
4341 int mode = sattr->ia_mode;
4342 int status = -ENOMEM;
4343
4344 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK);
4345 if (data == NULL)
4346 goto out;
4347
4348 if (S_ISFIFO(mode))
4349 data->arg.ftype = NF4FIFO;
4350 else if (S_ISBLK(mode)) {
4351 data->arg.ftype = NF4BLK;
4352 data->arg.u.device.specdata1 = MAJOR(rdev);
4353 data->arg.u.device.specdata2 = MINOR(rdev);
4354 }
4355 else if (S_ISCHR(mode)) {
4356 data->arg.ftype = NF4CHR;
4357 data->arg.u.device.specdata1 = MAJOR(rdev);
4358 data->arg.u.device.specdata2 = MINOR(rdev);
4359 } else if (!S_ISSOCK(mode)) {
4360 status = -EINVAL;
4361 goto out_free;
4362 }
4363
4364 data->arg.label = label;
4365 status = nfs4_do_create(dir, dentry, data);
4366 out_free:
4367 nfs4_free_createdata(data);
4368 out:
4369 return status;
4370 }
4371
4372 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry,
4373 struct iattr *sattr, dev_t rdev)
4374 {
4375 struct nfs_server *server = NFS_SERVER(dir);
4376 struct nfs4_exception exception = { };
4377 struct nfs4_label l, *label = NULL;
4378 int err;
4379
4380 label = nfs4_label_init_security(dir, dentry, sattr, &l);
4381
4382 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK))
4383 sattr->ia_mode &= ~current_umask();
4384 do {
4385 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev);
4386 trace_nfs4_mknod(dir, &dentry->d_name, err);
4387 err = nfs4_handle_exception(NFS_SERVER(dir), err,
4388 &exception);
4389 } while (exception.retry);
4390
4391 nfs4_label_release_security(label);
4392
4393 return err;
4394 }
4395
4396 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
4397 struct nfs_fsstat *fsstat)
4398 {
4399 struct nfs4_statfs_arg args = {
4400 .fh = fhandle,
4401 .bitmask = server->attr_bitmask,
4402 };
4403 struct nfs4_statfs_res res = {
4404 .fsstat = fsstat,
4405 };
4406 struct rpc_message msg = {
4407 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS],
4408 .rpc_argp = &args,
4409 .rpc_resp = &res,
4410 };
4411
4412 nfs_fattr_init(fsstat->fattr);
4413 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4414 }
4415
4416 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat)
4417 {
4418 struct nfs4_exception exception = { };
4419 int err;
4420 do {
4421 err = nfs4_handle_exception(server,
4422 _nfs4_proc_statfs(server, fhandle, fsstat),
4423 &exception);
4424 } while (exception.retry);
4425 return err;
4426 }
4427
4428 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
4429 struct nfs_fsinfo *fsinfo)
4430 {
4431 struct nfs4_fsinfo_arg args = {
4432 .fh = fhandle,
4433 .bitmask = server->attr_bitmask,
4434 };
4435 struct nfs4_fsinfo_res res = {
4436 .fsinfo = fsinfo,
4437 };
4438 struct rpc_message msg = {
4439 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO],
4440 .rpc_argp = &args,
4441 .rpc_resp = &res,
4442 };
4443
4444 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4445 }
4446
4447 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4448 {
4449 struct nfs4_exception exception = { };
4450 unsigned long now = jiffies;
4451 int err;
4452
4453 do {
4454 err = _nfs4_do_fsinfo(server, fhandle, fsinfo);
4455 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err);
4456 if (err == 0) {
4457 nfs4_set_lease_period(server->nfs_client,
4458 fsinfo->lease_time * HZ,
4459 now);
4460 break;
4461 }
4462 err = nfs4_handle_exception(server, err, &exception);
4463 } while (exception.retry);
4464 return err;
4465 }
4466
4467 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo)
4468 {
4469 int error;
4470
4471 nfs_fattr_init(fsinfo->fattr);
4472 error = nfs4_do_fsinfo(server, fhandle, fsinfo);
4473 if (error == 0) {
4474 /* block layout checks this! */
4475 server->pnfs_blksize = fsinfo->blksize;
4476 set_pnfs_layoutdriver(server, fhandle, fsinfo);
4477 }
4478
4479 return error;
4480 }
4481
4482 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4483 struct nfs_pathconf *pathconf)
4484 {
4485 struct nfs4_pathconf_arg args = {
4486 .fh = fhandle,
4487 .bitmask = server->attr_bitmask,
4488 };
4489 struct nfs4_pathconf_res res = {
4490 .pathconf = pathconf,
4491 };
4492 struct rpc_message msg = {
4493 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF],
4494 .rpc_argp = &args,
4495 .rpc_resp = &res,
4496 };
4497
4498 /* None of the pathconf attributes are mandatory to implement */
4499 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) {
4500 memset(pathconf, 0, sizeof(*pathconf));
4501 return 0;
4502 }
4503
4504 nfs_fattr_init(pathconf->fattr);
4505 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
4506 }
4507
4508 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
4509 struct nfs_pathconf *pathconf)
4510 {
4511 struct nfs4_exception exception = { };
4512 int err;
4513
4514 do {
4515 err = nfs4_handle_exception(server,
4516 _nfs4_proc_pathconf(server, fhandle, pathconf),
4517 &exception);
4518 } while (exception.retry);
4519 return err;
4520 }
4521
4522 int nfs4_set_rw_stateid(nfs4_stateid *stateid,
4523 const struct nfs_open_context *ctx,
4524 const struct nfs_lock_context *l_ctx,
4525 fmode_t fmode)
4526 {
4527 return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL);
4528 }
4529 EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid);
4530
4531 static bool nfs4_stateid_is_current(nfs4_stateid *stateid,
4532 const struct nfs_open_context *ctx,
4533 const struct nfs_lock_context *l_ctx,
4534 fmode_t fmode)
4535 {
4536 nfs4_stateid current_stateid;
4537
4538 /* If the current stateid represents a lost lock, then exit */
4539 if (nfs4_set_rw_stateid(&current_stateid, ctx, l_ctx, fmode) == -EIO)
4540 return true;
4541 return nfs4_stateid_match(stateid, &current_stateid);
4542 }
4543
4544 static bool nfs4_error_stateid_expired(int err)
4545 {
4546 switch (err) {
4547 case -NFS4ERR_DELEG_REVOKED:
4548 case -NFS4ERR_ADMIN_REVOKED:
4549 case -NFS4ERR_BAD_STATEID:
4550 case -NFS4ERR_STALE_STATEID:
4551 case -NFS4ERR_OLD_STATEID:
4552 case -NFS4ERR_OPENMODE:
4553 case -NFS4ERR_EXPIRED:
4554 return true;
4555 }
4556 return false;
4557 }
4558
4559 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr)
4560 {
4561 struct nfs_server *server = NFS_SERVER(hdr->inode);
4562
4563 trace_nfs4_read(hdr, task->tk_status);
4564 if (task->tk_status < 0) {
4565 struct nfs4_exception exception = {
4566 .inode = hdr->inode,
4567 .state = hdr->args.context->state,
4568 .stateid = &hdr->args.stateid,
4569 };
4570 task->tk_status = nfs4_async_handle_exception(task,
4571 server, task->tk_status, &exception);
4572 if (exception.retry) {
4573 rpc_restart_call_prepare(task);
4574 return -EAGAIN;
4575 }
4576 }
4577
4578 if (task->tk_status > 0)
4579 renew_lease(server, hdr->timestamp);
4580 return 0;
4581 }
4582
4583 static bool nfs4_read_stateid_changed(struct rpc_task *task,
4584 struct nfs_pgio_args *args)
4585 {
4586
4587 if (!nfs4_error_stateid_expired(task->tk_status) ||
4588 nfs4_stateid_is_current(&args->stateid,
4589 args->context,
4590 args->lock_context,
4591 FMODE_READ))
4592 return false;
4593 rpc_restart_call_prepare(task);
4594 return true;
4595 }
4596
4597 static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
4598 {
4599
4600 dprintk("--> %s\n", __func__);
4601
4602 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
4603 return -EAGAIN;
4604 if (nfs4_read_stateid_changed(task, &hdr->args))
4605 return -EAGAIN;
4606 if (task->tk_status > 0)
4607 nfs_invalidate_atime(hdr->inode);
4608 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4609 nfs4_read_done_cb(task, hdr);
4610 }
4611
4612 static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr,
4613 struct rpc_message *msg)
4614 {
4615 hdr->timestamp = jiffies;
4616 if (!hdr->pgio_done_cb)
4617 hdr->pgio_done_cb = nfs4_read_done_cb;
4618 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ];
4619 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0);
4620 }
4621
4622 static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task,
4623 struct nfs_pgio_header *hdr)
4624 {
4625 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client,
4626 &hdr->args.seq_args,
4627 &hdr->res.seq_res,
4628 task))
4629 return 0;
4630 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
4631 hdr->args.lock_context,
4632 hdr->rw_ops->rw_mode) == -EIO)
4633 return -EIO;
4634 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags)))
4635 return -EIO;
4636 return 0;
4637 }
4638
4639 static int nfs4_write_done_cb(struct rpc_task *task,
4640 struct nfs_pgio_header *hdr)
4641 {
4642 struct inode *inode = hdr->inode;
4643
4644 trace_nfs4_write(hdr, task->tk_status);
4645 if (task->tk_status < 0) {
4646 struct nfs4_exception exception = {
4647 .inode = hdr->inode,
4648 .state = hdr->args.context->state,
4649 .stateid = &hdr->args.stateid,
4650 };
4651 task->tk_status = nfs4_async_handle_exception(task,
4652 NFS_SERVER(inode), task->tk_status,
4653 &exception);
4654 if (exception.retry) {
4655 rpc_restart_call_prepare(task);
4656 return -EAGAIN;
4657 }
4658 }
4659 if (task->tk_status >= 0) {
4660 renew_lease(NFS_SERVER(inode), hdr->timestamp);
4661 nfs_writeback_update_inode(hdr);
4662 }
4663 return 0;
4664 }
4665
4666 static bool nfs4_write_stateid_changed(struct rpc_task *task,
4667 struct nfs_pgio_args *args)
4668 {
4669
4670 if (!nfs4_error_stateid_expired(task->tk_status) ||
4671 nfs4_stateid_is_current(&args->stateid,
4672 args->context,
4673 args->lock_context,
4674 FMODE_WRITE))
4675 return false;
4676 rpc_restart_call_prepare(task);
4677 return true;
4678 }
4679
4680 static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
4681 {
4682 if (!nfs4_sequence_done(task, &hdr->res.seq_res))
4683 return -EAGAIN;
4684 if (nfs4_write_stateid_changed(task, &hdr->args))
4685 return -EAGAIN;
4686 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) :
4687 nfs4_write_done_cb(task, hdr);
4688 }
4689
4690 static
4691 bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr)
4692 {
4693 /* Don't request attributes for pNFS or O_DIRECT writes */
4694 if (hdr->ds_clp != NULL || hdr->dreq != NULL)
4695 return false;
4696 /* Otherwise, request attributes if and only if we don't hold
4697 * a delegation
4698 */
4699 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0;
4700 }
4701
4702 static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr,
4703 struct rpc_message *msg)
4704 {
4705 struct nfs_server *server = NFS_SERVER(hdr->inode);
4706
4707 if (!nfs4_write_need_cache_consistency_data(hdr)) {
4708 hdr->args.bitmask = NULL;
4709 hdr->res.fattr = NULL;
4710 } else
4711 hdr->args.bitmask = server->cache_consistency_bitmask;
4712
4713 if (!hdr->pgio_done_cb)
4714 hdr->pgio_done_cb = nfs4_write_done_cb;
4715 hdr->res.server = server;
4716 hdr->timestamp = jiffies;
4717
4718 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE];
4719 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1);
4720 }
4721
4722 static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
4723 {
4724 nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client,
4725 &data->args.seq_args,
4726 &data->res.seq_res,
4727 task);
4728 }
4729
4730 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data)
4731 {
4732 struct inode *inode = data->inode;
4733
4734 trace_nfs4_commit(data, task->tk_status);
4735 if (nfs4_async_handle_error(task, NFS_SERVER(inode),
4736 NULL, NULL) == -EAGAIN) {
4737 rpc_restart_call_prepare(task);
4738 return -EAGAIN;
4739 }
4740 return 0;
4741 }
4742
4743 static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
4744 {
4745 if (!nfs4_sequence_done(task, &data->res.seq_res))
4746 return -EAGAIN;
4747 return data->commit_done_cb(task, data);
4748 }
4749
4750 static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
4751 {
4752 struct nfs_server *server = NFS_SERVER(data->inode);
4753
4754 if (data->commit_done_cb == NULL)
4755 data->commit_done_cb = nfs4_commit_done_cb;
4756 data->res.server = server;
4757 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT];
4758 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
4759 }
4760
4761 struct nfs4_renewdata {
4762 struct nfs_client *client;
4763 unsigned long timestamp;
4764 };
4765
4766 /*
4767 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special
4768 * standalone procedure for queueing an asynchronous RENEW.
4769 */
4770 static void nfs4_renew_release(void *calldata)
4771 {
4772 struct nfs4_renewdata *data = calldata;
4773 struct nfs_client *clp = data->client;
4774
4775 if (atomic_read(&clp->cl_count) > 1)
4776 nfs4_schedule_state_renewal(clp);
4777 nfs_put_client(clp);
4778 kfree(data);
4779 }
4780
4781 static void nfs4_renew_done(struct rpc_task *task, void *calldata)
4782 {
4783 struct nfs4_renewdata *data = calldata;
4784 struct nfs_client *clp = data->client;
4785 unsigned long timestamp = data->timestamp;
4786
4787 trace_nfs4_renew_async(clp, task->tk_status);
4788 switch (task->tk_status) {
4789 case 0:
4790 break;
4791 case -NFS4ERR_LEASE_MOVED:
4792 nfs4_schedule_lease_moved_recovery(clp);
4793 break;
4794 default:
4795 /* Unless we're shutting down, schedule state recovery! */
4796 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0)
4797 return;
4798 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) {
4799 nfs4_schedule_lease_recovery(clp);
4800 return;
4801 }
4802 nfs4_schedule_path_down_recovery(clp);
4803 }
4804 do_renew_lease(clp, timestamp);
4805 }
4806
4807 static const struct rpc_call_ops nfs4_renew_ops = {
4808 .rpc_call_done = nfs4_renew_done,
4809 .rpc_release = nfs4_renew_release,
4810 };
4811
4812 static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
4813 {
4814 struct rpc_message msg = {
4815 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4816 .rpc_argp = clp,
4817 .rpc_cred = cred,
4818 };
4819 struct nfs4_renewdata *data;
4820
4821 if (renew_flags == 0)
4822 return 0;
4823 if (!atomic_inc_not_zero(&clp->cl_count))
4824 return -EIO;
4825 data = kmalloc(sizeof(*data), GFP_NOFS);
4826 if (data == NULL)
4827 return -ENOMEM;
4828 data->client = clp;
4829 data->timestamp = jiffies;
4830 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT,
4831 &nfs4_renew_ops, data);
4832 }
4833
4834 static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred)
4835 {
4836 struct rpc_message msg = {
4837 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW],
4838 .rpc_argp = clp,
4839 .rpc_cred = cred,
4840 };
4841 unsigned long now = jiffies;
4842 int status;
4843
4844 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
4845 if (status < 0)
4846 return status;
4847 do_renew_lease(clp, now);
4848 return 0;
4849 }
4850
4851 static inline int nfs4_server_supports_acls(struct nfs_server *server)
4852 {
4853 return server->caps & NFS_CAP_ACLS;
4854 }
4855
4856 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that
4857 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on
4858 * the stack.
4859 */
4860 #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE)
4861
4862 static int buf_to_pages_noslab(const void *buf, size_t buflen,
4863 struct page **pages)
4864 {
4865 struct page *newpage, **spages;
4866 int rc = 0;
4867 size_t len;
4868 spages = pages;
4869
4870 do {
4871 len = min_t(size_t, PAGE_SIZE, buflen);
4872 newpage = alloc_page(GFP_KERNEL);
4873
4874 if (newpage == NULL)
4875 goto unwind;
4876 memcpy(page_address(newpage), buf, len);
4877 buf += len;
4878 buflen -= len;
4879 *pages++ = newpage;
4880 rc++;
4881 } while (buflen != 0);
4882
4883 return rc;
4884
4885 unwind:
4886 for(; rc > 0; rc--)
4887 __free_page(spages[rc-1]);
4888 return -ENOMEM;
4889 }
4890
4891 struct nfs4_cached_acl {
4892 int cached;
4893 size_t len;
4894 char data[0];
4895 };
4896
4897 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
4898 {
4899 struct nfs_inode *nfsi = NFS_I(inode);
4900
4901 spin_lock(&inode->i_lock);
4902 kfree(nfsi->nfs4_acl);
4903 nfsi->nfs4_acl = acl;
4904 spin_unlock(&inode->i_lock);
4905 }
4906
4907 static void nfs4_zap_acl_attr(struct inode *inode)
4908 {
4909 nfs4_set_cached_acl(inode, NULL);
4910 }
4911
4912 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen)
4913 {
4914 struct nfs_inode *nfsi = NFS_I(inode);
4915 struct nfs4_cached_acl *acl;
4916 int ret = -ENOENT;
4917
4918 spin_lock(&inode->i_lock);
4919 acl = nfsi->nfs4_acl;
4920 if (acl == NULL)
4921 goto out;
4922 if (buf == NULL) /* user is just asking for length */
4923 goto out_len;
4924 if (acl->cached == 0)
4925 goto out;
4926 ret = -ERANGE; /* see getxattr(2) man page */
4927 if (acl->len > buflen)
4928 goto out;
4929 memcpy(buf, acl->data, acl->len);
4930 out_len:
4931 ret = acl->len;
4932 out:
4933 spin_unlock(&inode->i_lock);
4934 return ret;
4935 }
4936
4937 static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len)
4938 {
4939 struct nfs4_cached_acl *acl;
4940 size_t buflen = sizeof(*acl) + acl_len;
4941
4942 if (buflen <= PAGE_SIZE) {
4943 acl = kmalloc(buflen, GFP_KERNEL);
4944 if (acl == NULL)
4945 goto out;
4946 acl->cached = 1;
4947 _copy_from_pages(acl->data, pages, pgbase, acl_len);
4948 } else {
4949 acl = kmalloc(sizeof(*acl), GFP_KERNEL);
4950 if (acl == NULL)
4951 goto out;
4952 acl->cached = 0;
4953 }
4954 acl->len = acl_len;
4955 out:
4956 nfs4_set_cached_acl(inode, acl);
4957 }
4958
4959 /*
4960 * The getxattr API returns the required buffer length when called with a
4961 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating
4962 * the required buf. On a NULL buf, we send a page of data to the server
4963 * guessing that the ACL request can be serviced by a page. If so, we cache
4964 * up to the page of ACL data, and the 2nd call to getxattr is serviced by
4965 * the cache. If not so, we throw away the page, and cache the required
4966 * length. The next getxattr call will then produce another round trip to
4967 * the server, this time with the input buf of the required size.
4968 */
4969 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
4970 {
4971 struct page *pages[NFS4ACL_MAXPAGES] = {NULL, };
4972 struct nfs_getaclargs args = {
4973 .fh = NFS_FH(inode),
4974 .acl_pages = pages,
4975 .acl_len = buflen,
4976 };
4977 struct nfs_getaclres res = {
4978 .acl_len = buflen,
4979 };
4980 struct rpc_message msg = {
4981 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL],
4982 .rpc_argp = &args,
4983 .rpc_resp = &res,
4984 };
4985 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
4986 int ret = -ENOMEM, i;
4987
4988 /* As long as we're doing a round trip to the server anyway,
4989 * let's be prepared for a page of acl data. */
4990 if (npages == 0)
4991 npages = 1;
4992 if (npages > ARRAY_SIZE(pages))
4993 return -ERANGE;
4994
4995 for (i = 0; i < npages; i++) {
4996 pages[i] = alloc_page(GFP_KERNEL);
4997 if (!pages[i])
4998 goto out_free;
4999 }
5000
5001 /* for decoding across pages */
5002 res.acl_scratch = alloc_page(GFP_KERNEL);
5003 if (!res.acl_scratch)
5004 goto out_free;
5005
5006 args.acl_len = npages * PAGE_SIZE;
5007
5008 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n",
5009 __func__, buf, buflen, npages, args.acl_len);
5010 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode),
5011 &msg, &args.seq_args, &res.seq_res, 0);
5012 if (ret)
5013 goto out_free;
5014
5015 /* Handle the case where the passed-in buffer is too short */
5016 if (res.acl_flags & NFS4_ACL_TRUNC) {
5017 /* Did the user only issue a request for the acl length? */
5018 if (buf == NULL)
5019 goto out_ok;
5020 ret = -ERANGE;
5021 goto out_free;
5022 }
5023 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len);
5024 if (buf) {
5025 if (res.acl_len > buflen) {
5026 ret = -ERANGE;
5027 goto out_free;
5028 }
5029 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len);
5030 }
5031 out_ok:
5032 ret = res.acl_len;
5033 out_free:
5034 for (i = 0; i < npages; i++)
5035 if (pages[i])
5036 __free_page(pages[i]);
5037 if (res.acl_scratch)
5038 __free_page(res.acl_scratch);
5039 return ret;
5040 }
5041
5042 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen)
5043 {
5044 struct nfs4_exception exception = { };
5045 ssize_t ret;
5046 do {
5047 ret = __nfs4_get_acl_uncached(inode, buf, buflen);
5048 trace_nfs4_get_acl(inode, ret);
5049 if (ret >= 0)
5050 break;
5051 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception);
5052 } while (exception.retry);
5053 return ret;
5054 }
5055
5056 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen)
5057 {
5058 struct nfs_server *server = NFS_SERVER(inode);
5059 int ret;
5060
5061 if (!nfs4_server_supports_acls(server))
5062 return -EOPNOTSUPP;
5063 ret = nfs_revalidate_inode(server, inode);
5064 if (ret < 0)
5065 return ret;
5066 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL)
5067 nfs_zap_acl_cache(inode);
5068 ret = nfs4_read_cached_acl(inode, buf, buflen);
5069 if (ret != -ENOENT)
5070 /* -ENOENT is returned if there is no ACL or if there is an ACL
5071 * but no cached acl data, just the acl length */
5072 return ret;
5073 return nfs4_get_acl_uncached(inode, buf, buflen);
5074 }
5075
5076 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5077 {
5078 struct nfs_server *server = NFS_SERVER(inode);
5079 struct page *pages[NFS4ACL_MAXPAGES];
5080 struct nfs_setaclargs arg = {
5081 .fh = NFS_FH(inode),
5082 .acl_pages = pages,
5083 .acl_len = buflen,
5084 };
5085 struct nfs_setaclres res;
5086 struct rpc_message msg = {
5087 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL],
5088 .rpc_argp = &arg,
5089 .rpc_resp = &res,
5090 };
5091 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE);
5092 int ret, i;
5093
5094 if (!nfs4_server_supports_acls(server))
5095 return -EOPNOTSUPP;
5096 if (npages > ARRAY_SIZE(pages))
5097 return -ERANGE;
5098 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages);
5099 if (i < 0)
5100 return i;
5101 nfs4_inode_return_delegation(inode);
5102 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5103
5104 /*
5105 * Free each page after tx, so the only ref left is
5106 * held by the network stack
5107 */
5108 for (; i > 0; i--)
5109 put_page(pages[i-1]);
5110
5111 /*
5112 * Acl update can result in inode attribute update.
5113 * so mark the attribute cache invalid.
5114 */
5115 spin_lock(&inode->i_lock);
5116 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR;
5117 spin_unlock(&inode->i_lock);
5118 nfs_access_zap_cache(inode);
5119 nfs_zap_acl_cache(inode);
5120 return ret;
5121 }
5122
5123 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen)
5124 {
5125 struct nfs4_exception exception = { };
5126 int err;
5127 do {
5128 err = __nfs4_proc_set_acl(inode, buf, buflen);
5129 trace_nfs4_set_acl(inode, err);
5130 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5131 &exception);
5132 } while (exception.retry);
5133 return err;
5134 }
5135
5136 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
5137 static int _nfs4_get_security_label(struct inode *inode, void *buf,
5138 size_t buflen)
5139 {
5140 struct nfs_server *server = NFS_SERVER(inode);
5141 struct nfs_fattr fattr;
5142 struct nfs4_label label = {0, 0, buflen, buf};
5143
5144 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
5145 struct nfs4_getattr_arg arg = {
5146 .fh = NFS_FH(inode),
5147 .bitmask = bitmask,
5148 };
5149 struct nfs4_getattr_res res = {
5150 .fattr = &fattr,
5151 .label = &label,
5152 .server = server,
5153 };
5154 struct rpc_message msg = {
5155 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR],
5156 .rpc_argp = &arg,
5157 .rpc_resp = &res,
5158 };
5159 int ret;
5160
5161 nfs_fattr_init(&fattr);
5162
5163 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0);
5164 if (ret)
5165 return ret;
5166 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL))
5167 return -ENOENT;
5168 if (buflen < label.len)
5169 return -ERANGE;
5170 return 0;
5171 }
5172
5173 static int nfs4_get_security_label(struct inode *inode, void *buf,
5174 size_t buflen)
5175 {
5176 struct nfs4_exception exception = { };
5177 int err;
5178
5179 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5180 return -EOPNOTSUPP;
5181
5182 do {
5183 err = _nfs4_get_security_label(inode, buf, buflen);
5184 trace_nfs4_get_security_label(inode, err);
5185 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5186 &exception);
5187 } while (exception.retry);
5188 return err;
5189 }
5190
5191 static int _nfs4_do_set_security_label(struct inode *inode,
5192 struct nfs4_label *ilabel,
5193 struct nfs_fattr *fattr,
5194 struct nfs4_label *olabel)
5195 {
5196
5197 struct iattr sattr = {0};
5198 struct nfs_server *server = NFS_SERVER(inode);
5199 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL };
5200 struct nfs_setattrargs arg = {
5201 .fh = NFS_FH(inode),
5202 .iap = &sattr,
5203 .server = server,
5204 .bitmask = bitmask,
5205 .label = ilabel,
5206 };
5207 struct nfs_setattrres res = {
5208 .fattr = fattr,
5209 .label = olabel,
5210 .server = server,
5211 };
5212 struct rpc_message msg = {
5213 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR],
5214 .rpc_argp = &arg,
5215 .rpc_resp = &res,
5216 };
5217 int status;
5218
5219 nfs4_stateid_copy(&arg.stateid, &zero_stateid);
5220
5221 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5222 if (status)
5223 dprintk("%s failed: %d\n", __func__, status);
5224
5225 return status;
5226 }
5227
5228 static int nfs4_do_set_security_label(struct inode *inode,
5229 struct nfs4_label *ilabel,
5230 struct nfs_fattr *fattr,
5231 struct nfs4_label *olabel)
5232 {
5233 struct nfs4_exception exception = { };
5234 int err;
5235
5236 do {
5237 err = _nfs4_do_set_security_label(inode, ilabel,
5238 fattr, olabel);
5239 trace_nfs4_set_security_label(inode, err);
5240 err = nfs4_handle_exception(NFS_SERVER(inode), err,
5241 &exception);
5242 } while (exception.retry);
5243 return err;
5244 }
5245
5246 static int
5247 nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen)
5248 {
5249 struct nfs4_label ilabel, *olabel = NULL;
5250 struct nfs_fattr fattr;
5251 struct rpc_cred *cred;
5252 int status;
5253
5254 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL))
5255 return -EOPNOTSUPP;
5256
5257 nfs_fattr_init(&fattr);
5258
5259 ilabel.pi = 0;
5260 ilabel.lfs = 0;
5261 ilabel.label = (char *)buf;
5262 ilabel.len = buflen;
5263
5264 cred = rpc_lookup_cred();
5265 if (IS_ERR(cred))
5266 return PTR_ERR(cred);
5267
5268 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
5269 if (IS_ERR(olabel)) {
5270 status = -PTR_ERR(olabel);
5271 goto out;
5272 }
5273
5274 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel);
5275 if (status == 0)
5276 nfs_setsecurity(inode, &fattr, olabel);
5277
5278 nfs4_label_free(olabel);
5279 out:
5280 put_rpccred(cred);
5281 return status;
5282 }
5283 #endif /* CONFIG_NFS_V4_SECURITY_LABEL */
5284
5285
5286 static void nfs4_init_boot_verifier(const struct nfs_client *clp,
5287 nfs4_verifier *bootverf)
5288 {
5289 __be32 verf[2];
5290
5291 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) {
5292 /* An impossible timestamp guarantees this value
5293 * will never match a generated boot time. */
5294 verf[0] = cpu_to_be32(U32_MAX);
5295 verf[1] = cpu_to_be32(U32_MAX);
5296 } else {
5297 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
5298 u64 ns = ktime_to_ns(nn->boot_time);
5299
5300 verf[0] = cpu_to_be32(ns >> 32);
5301 verf[1] = cpu_to_be32(ns);
5302 }
5303 memcpy(bootverf->data, verf, sizeof(bootverf->data));
5304 }
5305
5306 static int
5307 nfs4_init_nonuniform_client_string(struct nfs_client *clp)
5308 {
5309 size_t len;
5310 char *str;
5311
5312 if (clp->cl_owner_id != NULL)
5313 return 0;
5314
5315 rcu_read_lock();
5316 len = 14 + strlen(clp->cl_ipaddr) + 1 +
5317 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) +
5318 1 +
5319 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) +
5320 1;
5321 rcu_read_unlock();
5322
5323 if (len > NFS4_OPAQUE_LIMIT + 1)
5324 return -EINVAL;
5325
5326 /*
5327 * Since this string is allocated at mount time, and held until the
5328 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5329 * about a memory-reclaim deadlock.
5330 */
5331 str = kmalloc(len, GFP_KERNEL);
5332 if (!str)
5333 return -ENOMEM;
5334
5335 rcu_read_lock();
5336 scnprintf(str, len, "Linux NFSv4.0 %s/%s %s",
5337 clp->cl_ipaddr,
5338 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR),
5339 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO));
5340 rcu_read_unlock();
5341
5342 clp->cl_owner_id = str;
5343 return 0;
5344 }
5345
5346 static int
5347 nfs4_init_uniquifier_client_string(struct nfs_client *clp)
5348 {
5349 size_t len;
5350 char *str;
5351
5352 len = 10 + 10 + 1 + 10 + 1 +
5353 strlen(nfs4_client_id_uniquifier) + 1 +
5354 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5355
5356 if (len > NFS4_OPAQUE_LIMIT + 1)
5357 return -EINVAL;
5358
5359 /*
5360 * Since this string is allocated at mount time, and held until the
5361 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5362 * about a memory-reclaim deadlock.
5363 */
5364 str = kmalloc(len, GFP_KERNEL);
5365 if (!str)
5366 return -ENOMEM;
5367
5368 scnprintf(str, len, "Linux NFSv%u.%u %s/%s",
5369 clp->rpc_ops->version, clp->cl_minorversion,
5370 nfs4_client_id_uniquifier,
5371 clp->cl_rpcclient->cl_nodename);
5372 clp->cl_owner_id = str;
5373 return 0;
5374 }
5375
5376 static int
5377 nfs4_init_uniform_client_string(struct nfs_client *clp)
5378 {
5379 size_t len;
5380 char *str;
5381
5382 if (clp->cl_owner_id != NULL)
5383 return 0;
5384
5385 if (nfs4_client_id_uniquifier[0] != '\0')
5386 return nfs4_init_uniquifier_client_string(clp);
5387
5388 len = 10 + 10 + 1 + 10 + 1 +
5389 strlen(clp->cl_rpcclient->cl_nodename) + 1;
5390
5391 if (len > NFS4_OPAQUE_LIMIT + 1)
5392 return -EINVAL;
5393
5394 /*
5395 * Since this string is allocated at mount time, and held until the
5396 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying
5397 * about a memory-reclaim deadlock.
5398 */
5399 str = kmalloc(len, GFP_KERNEL);
5400 if (!str)
5401 return -ENOMEM;
5402
5403 scnprintf(str, len, "Linux NFSv%u.%u %s",
5404 clp->rpc_ops->version, clp->cl_minorversion,
5405 clp->cl_rpcclient->cl_nodename);
5406 clp->cl_owner_id = str;
5407 return 0;
5408 }
5409
5410 /*
5411 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback
5412 * services. Advertise one based on the address family of the
5413 * clientaddr.
5414 */
5415 static unsigned int
5416 nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len)
5417 {
5418 if (strchr(clp->cl_ipaddr, ':') != NULL)
5419 return scnprintf(buf, len, "tcp6");
5420 else
5421 return scnprintf(buf, len, "tcp");
5422 }
5423
5424 static void nfs4_setclientid_done(struct rpc_task *task, void *calldata)
5425 {
5426 struct nfs4_setclientid *sc = calldata;
5427
5428 if (task->tk_status == 0)
5429 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred);
5430 }
5431
5432 static const struct rpc_call_ops nfs4_setclientid_ops = {
5433 .rpc_call_done = nfs4_setclientid_done,
5434 };
5435
5436 /**
5437 * nfs4_proc_setclientid - Negotiate client ID
5438 * @clp: state data structure
5439 * @program: RPC program for NFSv4 callback service
5440 * @port: IP port number for NFS4 callback service
5441 * @cred: RPC credential to use for this call
5442 * @res: where to place the result
5443 *
5444 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5445 */
5446 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program,
5447 unsigned short port, struct rpc_cred *cred,
5448 struct nfs4_setclientid_res *res)
5449 {
5450 nfs4_verifier sc_verifier;
5451 struct nfs4_setclientid setclientid = {
5452 .sc_verifier = &sc_verifier,
5453 .sc_prog = program,
5454 .sc_clnt = clp,
5455 };
5456 struct rpc_message msg = {
5457 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID],
5458 .rpc_argp = &setclientid,
5459 .rpc_resp = res,
5460 .rpc_cred = cred,
5461 };
5462 struct rpc_task *task;
5463 struct rpc_task_setup task_setup_data = {
5464 .rpc_client = clp->cl_rpcclient,
5465 .rpc_message = &msg,
5466 .callback_ops = &nfs4_setclientid_ops,
5467 .callback_data = &setclientid,
5468 .flags = RPC_TASK_TIMEOUT,
5469 };
5470 int status;
5471
5472 /* nfs_client_id4 */
5473 nfs4_init_boot_verifier(clp, &sc_verifier);
5474
5475 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags))
5476 status = nfs4_init_uniform_client_string(clp);
5477 else
5478 status = nfs4_init_nonuniform_client_string(clp);
5479
5480 if (status)
5481 goto out;
5482
5483 /* cb_client4 */
5484 setclientid.sc_netid_len =
5485 nfs4_init_callback_netid(clp,
5486 setclientid.sc_netid,
5487 sizeof(setclientid.sc_netid));
5488 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr,
5489 sizeof(setclientid.sc_uaddr), "%s.%u.%u",
5490 clp->cl_ipaddr, port >> 8, port & 255);
5491
5492 dprintk("NFS call setclientid auth=%s, '%s'\n",
5493 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5494 clp->cl_owner_id);
5495 task = rpc_run_task(&task_setup_data);
5496 if (IS_ERR(task)) {
5497 status = PTR_ERR(task);
5498 goto out;
5499 }
5500 status = task->tk_status;
5501 if (setclientid.sc_cred) {
5502 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred);
5503 put_rpccred(setclientid.sc_cred);
5504 }
5505 rpc_put_task(task);
5506 out:
5507 trace_nfs4_setclientid(clp, status);
5508 dprintk("NFS reply setclientid: %d\n", status);
5509 return status;
5510 }
5511
5512 /**
5513 * nfs4_proc_setclientid_confirm - Confirm client ID
5514 * @clp: state data structure
5515 * @res: result of a previous SETCLIENTID
5516 * @cred: RPC credential to use for this call
5517 *
5518 * Returns zero, a negative errno, or a negative NFS4ERR status code.
5519 */
5520 int nfs4_proc_setclientid_confirm(struct nfs_client *clp,
5521 struct nfs4_setclientid_res *arg,
5522 struct rpc_cred *cred)
5523 {
5524 struct rpc_message msg = {
5525 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM],
5526 .rpc_argp = arg,
5527 .rpc_cred = cred,
5528 };
5529 int status;
5530
5531 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n",
5532 clp->cl_rpcclient->cl_auth->au_ops->au_name,
5533 clp->cl_clientid);
5534 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
5535 trace_nfs4_setclientid_confirm(clp, status);
5536 dprintk("NFS reply setclientid_confirm: %d\n", status);
5537 return status;
5538 }
5539
5540 struct nfs4_delegreturndata {
5541 struct nfs4_delegreturnargs args;
5542 struct nfs4_delegreturnres res;
5543 struct nfs_fh fh;
5544 nfs4_stateid stateid;
5545 unsigned long timestamp;
5546 struct {
5547 struct nfs4_layoutreturn_args arg;
5548 struct nfs4_layoutreturn_res res;
5549 struct nfs4_xdr_opaque_data ld_private;
5550 u32 roc_barrier;
5551 bool roc;
5552 } lr;
5553 struct nfs_fattr fattr;
5554 int rpc_status;
5555 struct inode *inode;
5556 };
5557
5558 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata)
5559 {
5560 struct nfs4_delegreturndata *data = calldata;
5561
5562 if (!nfs4_sequence_done(task, &data->res.seq_res))
5563 return;
5564
5565 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status);
5566
5567 /* Handle Layoutreturn errors */
5568 if (data->args.lr_args && task->tk_status != 0) {
5569 switch(data->res.lr_ret) {
5570 default:
5571 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
5572 break;
5573 case 0:
5574 data->args.lr_args = NULL;
5575 data->res.lr_res = NULL;
5576 break;
5577 case -NFS4ERR_ADMIN_REVOKED:
5578 case -NFS4ERR_DELEG_REVOKED:
5579 case -NFS4ERR_EXPIRED:
5580 case -NFS4ERR_BAD_STATEID:
5581 case -NFS4ERR_OLD_STATEID:
5582 case -NFS4ERR_UNKNOWN_LAYOUTTYPE:
5583 case -NFS4ERR_WRONG_CRED:
5584 data->args.lr_args = NULL;
5585 data->res.lr_res = NULL;
5586 data->res.lr_ret = 0;
5587 rpc_restart_call_prepare(task);
5588 return;
5589 }
5590 }
5591
5592 switch (task->tk_status) {
5593 case 0:
5594 renew_lease(data->res.server, data->timestamp);
5595 break;
5596 case -NFS4ERR_ADMIN_REVOKED:
5597 case -NFS4ERR_DELEG_REVOKED:
5598 case -NFS4ERR_EXPIRED:
5599 nfs4_free_revoked_stateid(data->res.server,
5600 data->args.stateid,
5601 task->tk_msg.rpc_cred);
5602 case -NFS4ERR_BAD_STATEID:
5603 case -NFS4ERR_OLD_STATEID:
5604 case -NFS4ERR_STALE_STATEID:
5605 task->tk_status = 0;
5606 break;
5607 case -NFS4ERR_ACCESS:
5608 if (data->args.bitmask) {
5609 data->args.bitmask = NULL;
5610 data->res.fattr = NULL;
5611 task->tk_status = 0;
5612 rpc_restart_call_prepare(task);
5613 return;
5614 }
5615 default:
5616 if (nfs4_async_handle_error(task, data->res.server,
5617 NULL, NULL) == -EAGAIN) {
5618 rpc_restart_call_prepare(task);
5619 return;
5620 }
5621 }
5622 data->rpc_status = task->tk_status;
5623 }
5624
5625 static void nfs4_delegreturn_release(void *calldata)
5626 {
5627 struct nfs4_delegreturndata *data = calldata;
5628 struct inode *inode = data->inode;
5629
5630 if (inode) {
5631 if (data->lr.roc)
5632 pnfs_roc_release(&data->lr.arg, &data->lr.res,
5633 data->res.lr_ret);
5634 nfs_post_op_update_inode_force_wcc(inode, &data->fattr);
5635 nfs_iput_and_deactive(inode);
5636 }
5637 kfree(calldata);
5638 }
5639
5640 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data)
5641 {
5642 struct nfs4_delegreturndata *d_data;
5643
5644 d_data = (struct nfs4_delegreturndata *)data;
5645
5646 if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task))
5647 return;
5648
5649 nfs4_setup_sequence(d_data->res.server->nfs_client,
5650 &d_data->args.seq_args,
5651 &d_data->res.seq_res,
5652 task);
5653 }
5654
5655 static const struct rpc_call_ops nfs4_delegreturn_ops = {
5656 .rpc_call_prepare = nfs4_delegreturn_prepare,
5657 .rpc_call_done = nfs4_delegreturn_done,
5658 .rpc_release = nfs4_delegreturn_release,
5659 };
5660
5661 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
5662 {
5663 struct nfs4_delegreturndata *data;
5664 struct nfs_server *server = NFS_SERVER(inode);
5665 struct rpc_task *task;
5666 struct rpc_message msg = {
5667 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN],
5668 .rpc_cred = cred,
5669 };
5670 struct rpc_task_setup task_setup_data = {
5671 .rpc_client = server->client,
5672 .rpc_message = &msg,
5673 .callback_ops = &nfs4_delegreturn_ops,
5674 .flags = RPC_TASK_ASYNC,
5675 };
5676 int status = 0;
5677
5678 data = kzalloc(sizeof(*data), GFP_NOFS);
5679 if (data == NULL)
5680 return -ENOMEM;
5681 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
5682
5683 nfs4_state_protect(server->nfs_client,
5684 NFS_SP4_MACH_CRED_CLEANUP,
5685 &task_setup_data.rpc_client, &msg);
5686
5687 data->args.fhandle = &data->fh;
5688 data->args.stateid = &data->stateid;
5689 data->args.bitmask = server->cache_consistency_bitmask;
5690 nfs_copy_fh(&data->fh, NFS_FH(inode));
5691 nfs4_stateid_copy(&data->stateid, stateid);
5692 data->res.fattr = &data->fattr;
5693 data->res.server = server;
5694 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT;
5695 data->lr.arg.ld_private = &data->lr.ld_private;
5696 nfs_fattr_init(data->res.fattr);
5697 data->timestamp = jiffies;
5698 data->rpc_status = 0;
5699 data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res, cred);
5700 data->inode = nfs_igrab_and_active(inode);
5701 if (data->inode) {
5702 if (data->lr.roc) {
5703 data->args.lr_args = &data->lr.arg;
5704 data->res.lr_res = &data->lr.res;
5705 }
5706 } else if (data->lr.roc) {
5707 pnfs_roc_release(&data->lr.arg, &data->lr.res, 0);
5708 data->lr.roc = false;
5709 }
5710
5711 task_setup_data.callback_data = data;
5712 msg.rpc_argp = &data->args;
5713 msg.rpc_resp = &data->res;
5714 task = rpc_run_task(&task_setup_data);
5715 if (IS_ERR(task))
5716 return PTR_ERR(task);
5717 if (!issync)
5718 goto out;
5719 status = rpc_wait_for_completion_task(task);
5720 if (status != 0)
5721 goto out;
5722 status = data->rpc_status;
5723 out:
5724 rpc_put_task(task);
5725 return status;
5726 }
5727
5728 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync)
5729 {
5730 struct nfs_server *server = NFS_SERVER(inode);
5731 struct nfs4_exception exception = { };
5732 int err;
5733 do {
5734 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync);
5735 trace_nfs4_delegreturn(inode, stateid, err);
5736 switch (err) {
5737 case -NFS4ERR_STALE_STATEID:
5738 case -NFS4ERR_EXPIRED:
5739 case 0:
5740 return 0;
5741 }
5742 err = nfs4_handle_exception(server, err, &exception);
5743 } while (exception.retry);
5744 return err;
5745 }
5746
5747 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5748 {
5749 struct inode *inode = state->inode;
5750 struct nfs_server *server = NFS_SERVER(inode);
5751 struct nfs_client *clp = server->nfs_client;
5752 struct nfs_lockt_args arg = {
5753 .fh = NFS_FH(inode),
5754 .fl = request,
5755 };
5756 struct nfs_lockt_res res = {
5757 .denied = request,
5758 };
5759 struct rpc_message msg = {
5760 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT],
5761 .rpc_argp = &arg,
5762 .rpc_resp = &res,
5763 .rpc_cred = state->owner->so_cred,
5764 };
5765 struct nfs4_lock_state *lsp;
5766 int status;
5767
5768 arg.lock_owner.clientid = clp->cl_clientid;
5769 status = nfs4_set_lock_state(state, request);
5770 if (status != 0)
5771 goto out;
5772 lsp = request->fl_u.nfs4_fl.owner;
5773 arg.lock_owner.id = lsp->ls_seqid.owner_id;
5774 arg.lock_owner.s_dev = server->s_dev;
5775 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1);
5776 switch (status) {
5777 case 0:
5778 request->fl_type = F_UNLCK;
5779 break;
5780 case -NFS4ERR_DENIED:
5781 status = 0;
5782 }
5783 request->fl_ops->fl_release_private(request);
5784 request->fl_ops = NULL;
5785 out:
5786 return status;
5787 }
5788
5789 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request)
5790 {
5791 struct nfs4_exception exception = { };
5792 int err;
5793
5794 do {
5795 err = _nfs4_proc_getlk(state, cmd, request);
5796 trace_nfs4_get_lock(request, state, cmd, err);
5797 err = nfs4_handle_exception(NFS_SERVER(state->inode), err,
5798 &exception);
5799 } while (exception.retry);
5800 return err;
5801 }
5802
5803 struct nfs4_unlockdata {
5804 struct nfs_locku_args arg;
5805 struct nfs_locku_res res;
5806 struct nfs4_lock_state *lsp;
5807 struct nfs_open_context *ctx;
5808 struct file_lock fl;
5809 struct nfs_server *server;
5810 unsigned long timestamp;
5811 };
5812
5813 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl,
5814 struct nfs_open_context *ctx,
5815 struct nfs4_lock_state *lsp,
5816 struct nfs_seqid *seqid)
5817 {
5818 struct nfs4_unlockdata *p;
5819 struct inode *inode = lsp->ls_state->inode;
5820
5821 p = kzalloc(sizeof(*p), GFP_NOFS);
5822 if (p == NULL)
5823 return NULL;
5824 p->arg.fh = NFS_FH(inode);
5825 p->arg.fl = &p->fl;
5826 p->arg.seqid = seqid;
5827 p->res.seqid = seqid;
5828 p->lsp = lsp;
5829 atomic_inc(&lsp->ls_count);
5830 /* Ensure we don't close file until we're done freeing locks! */
5831 p->ctx = get_nfs_open_context(ctx);
5832 memcpy(&p->fl, fl, sizeof(p->fl));
5833 p->server = NFS_SERVER(inode);
5834 return p;
5835 }
5836
5837 static void nfs4_locku_release_calldata(void *data)
5838 {
5839 struct nfs4_unlockdata *calldata = data;
5840 nfs_free_seqid(calldata->arg.seqid);
5841 nfs4_put_lock_state(calldata->lsp);
5842 put_nfs_open_context(calldata->ctx);
5843 kfree(calldata);
5844 }
5845
5846 static void nfs4_locku_done(struct rpc_task *task, void *data)
5847 {
5848 struct nfs4_unlockdata *calldata = data;
5849
5850 if (!nfs4_sequence_done(task, &calldata->res.seq_res))
5851 return;
5852 switch (task->tk_status) {
5853 case 0:
5854 renew_lease(calldata->server, calldata->timestamp);
5855 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl);
5856 if (nfs4_update_lock_stateid(calldata->lsp,
5857 &calldata->res.stateid))
5858 break;
5859 case -NFS4ERR_ADMIN_REVOKED:
5860 case -NFS4ERR_EXPIRED:
5861 nfs4_free_revoked_stateid(calldata->server,
5862 &calldata->arg.stateid,
5863 task->tk_msg.rpc_cred);
5864 case -NFS4ERR_BAD_STATEID:
5865 case -NFS4ERR_OLD_STATEID:
5866 case -NFS4ERR_STALE_STATEID:
5867 if (!nfs4_stateid_match(&calldata->arg.stateid,
5868 &calldata->lsp->ls_stateid))
5869 rpc_restart_call_prepare(task);
5870 break;
5871 default:
5872 if (nfs4_async_handle_error(task, calldata->server,
5873 NULL, NULL) == -EAGAIN)
5874 rpc_restart_call_prepare(task);
5875 }
5876 nfs_release_seqid(calldata->arg.seqid);
5877 }
5878
5879 static void nfs4_locku_prepare(struct rpc_task *task, void *data)
5880 {
5881 struct nfs4_unlockdata *calldata = data;
5882
5883 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0)
5884 goto out_wait;
5885 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid);
5886 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) {
5887 /* Note: exit _without_ running nfs4_locku_done */
5888 goto out_no_action;
5889 }
5890 calldata->timestamp = jiffies;
5891 if (nfs4_setup_sequence(calldata->server->nfs_client,
5892 &calldata->arg.seq_args,
5893 &calldata->res.seq_res,
5894 task) != 0)
5895 nfs_release_seqid(calldata->arg.seqid);
5896 return;
5897 out_no_action:
5898 task->tk_action = NULL;
5899 out_wait:
5900 nfs4_sequence_done(task, &calldata->res.seq_res);
5901 }
5902
5903 static const struct rpc_call_ops nfs4_locku_ops = {
5904 .rpc_call_prepare = nfs4_locku_prepare,
5905 .rpc_call_done = nfs4_locku_done,
5906 .rpc_release = nfs4_locku_release_calldata,
5907 };
5908
5909 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl,
5910 struct nfs_open_context *ctx,
5911 struct nfs4_lock_state *lsp,
5912 struct nfs_seqid *seqid)
5913 {
5914 struct nfs4_unlockdata *data;
5915 struct rpc_message msg = {
5916 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU],
5917 .rpc_cred = ctx->cred,
5918 };
5919 struct rpc_task_setup task_setup_data = {
5920 .rpc_client = NFS_CLIENT(lsp->ls_state->inode),
5921 .rpc_message = &msg,
5922 .callback_ops = &nfs4_locku_ops,
5923 .workqueue = nfsiod_workqueue,
5924 .flags = RPC_TASK_ASYNC,
5925 };
5926
5927 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client,
5928 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg);
5929
5930 /* Ensure this is an unlock - when canceling a lock, the
5931 * canceled lock is passed in, and it won't be an unlock.
5932 */
5933 fl->fl_type = F_UNLCK;
5934
5935 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid);
5936 if (data == NULL) {
5937 nfs_free_seqid(seqid);
5938 return ERR_PTR(-ENOMEM);
5939 }
5940
5941 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
5942 msg.rpc_argp = &data->arg;
5943 msg.rpc_resp = &data->res;
5944 task_setup_data.callback_data = data;
5945 return rpc_run_task(&task_setup_data);
5946 }
5947
5948 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request)
5949 {
5950 struct inode *inode = state->inode;
5951 struct nfs4_state_owner *sp = state->owner;
5952 struct nfs_inode *nfsi = NFS_I(inode);
5953 struct nfs_seqid *seqid;
5954 struct nfs4_lock_state *lsp;
5955 struct rpc_task *task;
5956 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
5957 int status = 0;
5958 unsigned char fl_flags = request->fl_flags;
5959
5960 status = nfs4_set_lock_state(state, request);
5961 /* Unlock _before_ we do the RPC call */
5962 request->fl_flags |= FL_EXISTS;
5963 /* Exclude nfs_delegation_claim_locks() */
5964 mutex_lock(&sp->so_delegreturn_mutex);
5965 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */
5966 down_read(&nfsi->rwsem);
5967 if (locks_lock_inode_wait(inode, request) == -ENOENT) {
5968 up_read(&nfsi->rwsem);
5969 mutex_unlock(&sp->so_delegreturn_mutex);
5970 goto out;
5971 }
5972 up_read(&nfsi->rwsem);
5973 mutex_unlock(&sp->so_delegreturn_mutex);
5974 if (status != 0)
5975 goto out;
5976 /* Is this a delegated lock? */
5977 lsp = request->fl_u.nfs4_fl.owner;
5978 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0)
5979 goto out;
5980 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid;
5981 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL);
5982 status = -ENOMEM;
5983 if (IS_ERR(seqid))
5984 goto out;
5985 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid);
5986 status = PTR_ERR(task);
5987 if (IS_ERR(task))
5988 goto out;
5989 status = rpc_wait_for_completion_task(task);
5990 rpc_put_task(task);
5991 out:
5992 request->fl_flags = fl_flags;
5993 trace_nfs4_unlock(request, state, F_SETLK, status);
5994 return status;
5995 }
5996
5997 struct nfs4_lockdata {
5998 struct nfs_lock_args arg;
5999 struct nfs_lock_res res;
6000 struct nfs4_lock_state *lsp;
6001 struct nfs_open_context *ctx;
6002 struct file_lock fl;
6003 unsigned long timestamp;
6004 int rpc_status;
6005 int cancelled;
6006 struct nfs_server *server;
6007 };
6008
6009 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl,
6010 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp,
6011 gfp_t gfp_mask)
6012 {
6013 struct nfs4_lockdata *p;
6014 struct inode *inode = lsp->ls_state->inode;
6015 struct nfs_server *server = NFS_SERVER(inode);
6016 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t);
6017
6018 p = kzalloc(sizeof(*p), gfp_mask);
6019 if (p == NULL)
6020 return NULL;
6021
6022 p->arg.fh = NFS_FH(inode);
6023 p->arg.fl = &p->fl;
6024 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask);
6025 if (IS_ERR(p->arg.open_seqid))
6026 goto out_free;
6027 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid;
6028 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask);
6029 if (IS_ERR(p->arg.lock_seqid))
6030 goto out_free_seqid;
6031 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid;
6032 p->arg.lock_owner.id = lsp->ls_seqid.owner_id;
6033 p->arg.lock_owner.s_dev = server->s_dev;
6034 p->res.lock_seqid = p->arg.lock_seqid;
6035 p->lsp = lsp;
6036 p->server = server;
6037 atomic_inc(&lsp->ls_count);
6038 p->ctx = get_nfs_open_context(ctx);
6039 memcpy(&p->fl, fl, sizeof(p->fl));
6040 return p;
6041 out_free_seqid:
6042 nfs_free_seqid(p->arg.open_seqid);
6043 out_free:
6044 kfree(p);
6045 return NULL;
6046 }
6047
6048 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata)
6049 {
6050 struct nfs4_lockdata *data = calldata;
6051 struct nfs4_state *state = data->lsp->ls_state;
6052
6053 dprintk("%s: begin!\n", __func__);
6054 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0)
6055 goto out_wait;
6056 /* Do we need to do an open_to_lock_owner? */
6057 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) {
6058 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) {
6059 goto out_release_lock_seqid;
6060 }
6061 nfs4_stateid_copy(&data->arg.open_stateid,
6062 &state->open_stateid);
6063 data->arg.new_lock_owner = 1;
6064 data->res.open_seqid = data->arg.open_seqid;
6065 } else {
6066 data->arg.new_lock_owner = 0;
6067 nfs4_stateid_copy(&data->arg.lock_stateid,
6068 &data->lsp->ls_stateid);
6069 }
6070 if (!nfs4_valid_open_stateid(state)) {
6071 data->rpc_status = -EBADF;
6072 task->tk_action = NULL;
6073 goto out_release_open_seqid;
6074 }
6075 data->timestamp = jiffies;
6076 if (nfs4_setup_sequence(data->server->nfs_client,
6077 &data->arg.seq_args,
6078 &data->res.seq_res,
6079 task) == 0)
6080 return;
6081 out_release_open_seqid:
6082 nfs_release_seqid(data->arg.open_seqid);
6083 out_release_lock_seqid:
6084 nfs_release_seqid(data->arg.lock_seqid);
6085 out_wait:
6086 nfs4_sequence_done(task, &data->res.seq_res);
6087 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status);
6088 }
6089
6090 static void nfs4_lock_done(struct rpc_task *task, void *calldata)
6091 {
6092 struct nfs4_lockdata *data = calldata;
6093 struct nfs4_lock_state *lsp = data->lsp;
6094
6095 dprintk("%s: begin!\n", __func__);
6096
6097 if (!nfs4_sequence_done(task, &data->res.seq_res))
6098 return;
6099
6100 data->rpc_status = task->tk_status;
6101 switch (task->tk_status) {
6102 case 0:
6103 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)),
6104 data->timestamp);
6105 if (data->arg.new_lock) {
6106 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS);
6107 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) {
6108 rpc_restart_call_prepare(task);
6109 break;
6110 }
6111 }
6112 if (data->arg.new_lock_owner != 0) {
6113 nfs_confirm_seqid(&lsp->ls_seqid, 0);
6114 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid);
6115 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags);
6116 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid))
6117 rpc_restart_call_prepare(task);
6118 break;
6119 case -NFS4ERR_BAD_STATEID:
6120 case -NFS4ERR_OLD_STATEID:
6121 case -NFS4ERR_STALE_STATEID:
6122 case -NFS4ERR_EXPIRED:
6123 if (data->arg.new_lock_owner != 0) {
6124 if (!nfs4_stateid_match(&data->arg.open_stateid,
6125 &lsp->ls_state->open_stateid))
6126 rpc_restart_call_prepare(task);
6127 } else if (!nfs4_stateid_match(&data->arg.lock_stateid,
6128 &lsp->ls_stateid))
6129 rpc_restart_call_prepare(task);
6130 }
6131 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status);
6132 }
6133
6134 static void nfs4_lock_release(void *calldata)
6135 {
6136 struct nfs4_lockdata *data = calldata;
6137
6138 dprintk("%s: begin!\n", __func__);
6139 nfs_free_seqid(data->arg.open_seqid);
6140 if (data->cancelled != 0) {
6141 struct rpc_task *task;
6142 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp,
6143 data->arg.lock_seqid);
6144 if (!IS_ERR(task))
6145 rpc_put_task_async(task);
6146 dprintk("%s: cancelling lock!\n", __func__);
6147 } else
6148 nfs_free_seqid(data->arg.lock_seqid);
6149 nfs4_put_lock_state(data->lsp);
6150 put_nfs_open_context(data->ctx);
6151 kfree(data);
6152 dprintk("%s: done!\n", __func__);
6153 }
6154
6155 static const struct rpc_call_ops nfs4_lock_ops = {
6156 .rpc_call_prepare = nfs4_lock_prepare,
6157 .rpc_call_done = nfs4_lock_done,
6158 .rpc_release = nfs4_lock_release,
6159 };
6160
6161 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error)
6162 {
6163 switch (error) {
6164 case -NFS4ERR_ADMIN_REVOKED:
6165 case -NFS4ERR_EXPIRED:
6166 case -NFS4ERR_BAD_STATEID:
6167 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
6168 if (new_lock_owner != 0 ||
6169 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0)
6170 nfs4_schedule_stateid_recovery(server, lsp->ls_state);
6171 break;
6172 case -NFS4ERR_STALE_STATEID:
6173 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED;
6174 nfs4_schedule_lease_recovery(server->nfs_client);
6175 };
6176 }
6177
6178 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type)
6179 {
6180 struct nfs4_lockdata *data;
6181 struct rpc_task *task;
6182 struct rpc_message msg = {
6183 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK],
6184 .rpc_cred = state->owner->so_cred,
6185 };
6186 struct rpc_task_setup task_setup_data = {
6187 .rpc_client = NFS_CLIENT(state->inode),
6188 .rpc_message = &msg,
6189 .callback_ops = &nfs4_lock_ops,
6190 .workqueue = nfsiod_workqueue,
6191 .flags = RPC_TASK_ASYNC,
6192 };
6193 int ret;
6194
6195 dprintk("%s: begin!\n", __func__);
6196 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file),
6197 fl->fl_u.nfs4_fl.owner,
6198 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS);
6199 if (data == NULL)
6200 return -ENOMEM;
6201 if (IS_SETLKW(cmd))
6202 data->arg.block = 1;
6203 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1);
6204 msg.rpc_argp = &data->arg;
6205 msg.rpc_resp = &data->res;
6206 task_setup_data.callback_data = data;
6207 if (recovery_type > NFS_LOCK_NEW) {
6208 if (recovery_type == NFS_LOCK_RECLAIM)
6209 data->arg.reclaim = NFS_LOCK_RECLAIM;
6210 nfs4_set_sequence_privileged(&data->arg.seq_args);
6211 } else
6212 data->arg.new_lock = 1;
6213 task = rpc_run_task(&task_setup_data);
6214 if (IS_ERR(task))
6215 return PTR_ERR(task);
6216 ret = rpc_wait_for_completion_task(task);
6217 if (ret == 0) {
6218 ret = data->rpc_status;
6219 if (ret)
6220 nfs4_handle_setlk_error(data->server, data->lsp,
6221 data->arg.new_lock_owner, ret);
6222 } else
6223 data->cancelled = 1;
6224 rpc_put_task(task);
6225 dprintk("%s: done, ret = %d!\n", __func__, ret);
6226 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret);
6227 return ret;
6228 }
6229
6230 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request)
6231 {
6232 struct nfs_server *server = NFS_SERVER(state->inode);
6233 struct nfs4_exception exception = {
6234 .inode = state->inode,
6235 };
6236 int err;
6237
6238 do {
6239 /* Cache the lock if possible... */
6240 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6241 return 0;
6242 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM);
6243 if (err != -NFS4ERR_DELAY)
6244 break;
6245 nfs4_handle_exception(server, err, &exception);
6246 } while (exception.retry);
6247 return err;
6248 }
6249
6250 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request)
6251 {
6252 struct nfs_server *server = NFS_SERVER(state->inode);
6253 struct nfs4_exception exception = {
6254 .inode = state->inode,
6255 };
6256 int err;
6257
6258 err = nfs4_set_lock_state(state, request);
6259 if (err != 0)
6260 return err;
6261 if (!recover_lost_locks) {
6262 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags);
6263 return 0;
6264 }
6265 do {
6266 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0)
6267 return 0;
6268 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED);
6269 switch (err) {
6270 default:
6271 goto out;
6272 case -NFS4ERR_GRACE:
6273 case -NFS4ERR_DELAY:
6274 nfs4_handle_exception(server, err, &exception);
6275 err = 0;
6276 }
6277 } while (exception.retry);
6278 out:
6279 return err;
6280 }
6281
6282 #if defined(CONFIG_NFS_V4_1)
6283 static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request)
6284 {
6285 struct nfs4_lock_state *lsp;
6286 int status;
6287
6288 status = nfs4_set_lock_state(state, request);
6289 if (status != 0)
6290 return status;
6291 lsp = request->fl_u.nfs4_fl.owner;
6292 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) ||
6293 test_bit(NFS_LOCK_LOST, &lsp->ls_flags))
6294 return 0;
6295 status = nfs4_lock_expired(state, request);
6296 return status;
6297 }
6298 #endif
6299
6300 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6301 {
6302 struct nfs_inode *nfsi = NFS_I(state->inode);
6303 struct nfs4_state_owner *sp = state->owner;
6304 unsigned char fl_flags = request->fl_flags;
6305 int status;
6306
6307 request->fl_flags |= FL_ACCESS;
6308 status = locks_lock_inode_wait(state->inode, request);
6309 if (status < 0)
6310 goto out;
6311 mutex_lock(&sp->so_delegreturn_mutex);
6312 down_read(&nfsi->rwsem);
6313 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) {
6314 /* Yes: cache locks! */
6315 /* ...but avoid races with delegation recall... */
6316 request->fl_flags = fl_flags & ~FL_SLEEP;
6317 status = locks_lock_inode_wait(state->inode, request);
6318 up_read(&nfsi->rwsem);
6319 mutex_unlock(&sp->so_delegreturn_mutex);
6320 goto out;
6321 }
6322 up_read(&nfsi->rwsem);
6323 mutex_unlock(&sp->so_delegreturn_mutex);
6324 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW);
6325 out:
6326 request->fl_flags = fl_flags;
6327 return status;
6328 }
6329
6330 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6331 {
6332 struct nfs4_exception exception = {
6333 .state = state,
6334 .inode = state->inode,
6335 };
6336 int err;
6337
6338 do {
6339 err = _nfs4_proc_setlk(state, cmd, request);
6340 if (err == -NFS4ERR_DENIED)
6341 err = -EAGAIN;
6342 err = nfs4_handle_exception(NFS_SERVER(state->inode),
6343 err, &exception);
6344 } while (exception.retry);
6345 return err;
6346 }
6347
6348 #define NFS4_LOCK_MINTIMEOUT (1 * HZ)
6349 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ)
6350
6351 static int
6352 nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd,
6353 struct file_lock *request)
6354 {
6355 int status = -ERESTARTSYS;
6356 unsigned long timeout = NFS4_LOCK_MINTIMEOUT;
6357
6358 while(!signalled()) {
6359 status = nfs4_proc_setlk(state, cmd, request);
6360 if ((status != -EAGAIN) || IS_SETLK(cmd))
6361 break;
6362 freezable_schedule_timeout_interruptible(timeout);
6363 timeout *= 2;
6364 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout);
6365 status = -ERESTARTSYS;
6366 }
6367 return status;
6368 }
6369
6370 #ifdef CONFIG_NFS_V4_1
6371 struct nfs4_lock_waiter {
6372 struct task_struct *task;
6373 struct inode *inode;
6374 struct nfs_lowner *owner;
6375 bool notified;
6376 };
6377
6378 static int
6379 nfs4_wake_lock_waiter(wait_queue_t *wait, unsigned int mode, int flags, void *key)
6380 {
6381 int ret;
6382 struct cb_notify_lock_args *cbnl = key;
6383 struct nfs4_lock_waiter *waiter = wait->private;
6384 struct nfs_lowner *lowner = &cbnl->cbnl_owner,
6385 *wowner = waiter->owner;
6386
6387 /* Only wake if the callback was for the same owner */
6388 if (lowner->clientid != wowner->clientid ||
6389 lowner->id != wowner->id ||
6390 lowner->s_dev != wowner->s_dev)
6391 return 0;
6392
6393 /* Make sure it's for the right inode */
6394 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh))
6395 return 0;
6396
6397 waiter->notified = true;
6398
6399 /* override "private" so we can use default_wake_function */
6400 wait->private = waiter->task;
6401 ret = autoremove_wake_function(wait, mode, flags, key);
6402 wait->private = waiter;
6403 return ret;
6404 }
6405
6406 static int
6407 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6408 {
6409 int status = -ERESTARTSYS;
6410 unsigned long flags;
6411 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner;
6412 struct nfs_server *server = NFS_SERVER(state->inode);
6413 struct nfs_client *clp = server->nfs_client;
6414 wait_queue_head_t *q = &clp->cl_lock_waitq;
6415 struct nfs_lowner owner = { .clientid = clp->cl_clientid,
6416 .id = lsp->ls_seqid.owner_id,
6417 .s_dev = server->s_dev };
6418 struct nfs4_lock_waiter waiter = { .task = current,
6419 .inode = state->inode,
6420 .owner = &owner,
6421 .notified = false };
6422 wait_queue_t wait;
6423
6424 /* Don't bother with waitqueue if we don't expect a callback */
6425 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags))
6426 return nfs4_retry_setlk_simple(state, cmd, request);
6427
6428 init_wait(&wait);
6429 wait.private = &waiter;
6430 wait.func = nfs4_wake_lock_waiter;
6431 add_wait_queue(q, &wait);
6432
6433 while(!signalled()) {
6434 status = nfs4_proc_setlk(state, cmd, request);
6435 if ((status != -EAGAIN) || IS_SETLK(cmd))
6436 break;
6437
6438 status = -ERESTARTSYS;
6439 spin_lock_irqsave(&q->lock, flags);
6440 if (waiter.notified) {
6441 spin_unlock_irqrestore(&q->lock, flags);
6442 continue;
6443 }
6444 set_current_state(TASK_INTERRUPTIBLE);
6445 spin_unlock_irqrestore(&q->lock, flags);
6446
6447 freezable_schedule_timeout_interruptible(NFS4_LOCK_MAXTIMEOUT);
6448 }
6449
6450 finish_wait(q, &wait);
6451 return status;
6452 }
6453 #else /* !CONFIG_NFS_V4_1 */
6454 static inline int
6455 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request)
6456 {
6457 return nfs4_retry_setlk_simple(state, cmd, request);
6458 }
6459 #endif
6460
6461 static int
6462 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request)
6463 {
6464 struct nfs_open_context *ctx;
6465 struct nfs4_state *state;
6466 int status;
6467
6468 /* verify open state */
6469 ctx = nfs_file_open_context(filp);
6470 state = ctx->state;
6471
6472 if (request->fl_start < 0 || request->fl_end < 0)
6473 return -EINVAL;
6474
6475 if (IS_GETLK(cmd)) {
6476 if (state != NULL)
6477 return nfs4_proc_getlk(state, F_GETLK, request);
6478 return 0;
6479 }
6480
6481 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd)))
6482 return -EINVAL;
6483
6484 if (request->fl_type == F_UNLCK) {
6485 if (state != NULL)
6486 return nfs4_proc_unlck(state, cmd, request);
6487 return 0;
6488 }
6489
6490 if (state == NULL)
6491 return -ENOLCK;
6492
6493 if ((request->fl_flags & FL_POSIX) &&
6494 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags))
6495 return -ENOLCK;
6496
6497 /*
6498 * Don't rely on the VFS having checked the file open mode,
6499 * since it won't do this for flock() locks.
6500 */
6501 switch (request->fl_type) {
6502 case F_RDLCK:
6503 if (!(filp->f_mode & FMODE_READ))
6504 return -EBADF;
6505 break;
6506 case F_WRLCK:
6507 if (!(filp->f_mode & FMODE_WRITE))
6508 return -EBADF;
6509 }
6510
6511 status = nfs4_set_lock_state(state, request);
6512 if (status != 0)
6513 return status;
6514
6515 return nfs4_retry_setlk(state, cmd, request);
6516 }
6517
6518 int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid)
6519 {
6520 struct nfs_server *server = NFS_SERVER(state->inode);
6521 int err;
6522
6523 err = nfs4_set_lock_state(state, fl);
6524 if (err != 0)
6525 return err;
6526 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW);
6527 return nfs4_handle_delegation_recall_error(server, state, stateid, err);
6528 }
6529
6530 struct nfs_release_lockowner_data {
6531 struct nfs4_lock_state *lsp;
6532 struct nfs_server *server;
6533 struct nfs_release_lockowner_args args;
6534 struct nfs_release_lockowner_res res;
6535 unsigned long timestamp;
6536 };
6537
6538 static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata)
6539 {
6540 struct nfs_release_lockowner_data *data = calldata;
6541 struct nfs_server *server = data->server;
6542 nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
6543 &data->res.seq_res, task);
6544 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6545 data->timestamp = jiffies;
6546 }
6547
6548 static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata)
6549 {
6550 struct nfs_release_lockowner_data *data = calldata;
6551 struct nfs_server *server = data->server;
6552
6553 nfs40_sequence_done(task, &data->res.seq_res);
6554
6555 switch (task->tk_status) {
6556 case 0:
6557 renew_lease(server, data->timestamp);
6558 break;
6559 case -NFS4ERR_STALE_CLIENTID:
6560 case -NFS4ERR_EXPIRED:
6561 nfs4_schedule_lease_recovery(server->nfs_client);
6562 break;
6563 case -NFS4ERR_LEASE_MOVED:
6564 case -NFS4ERR_DELAY:
6565 if (nfs4_async_handle_error(task, server,
6566 NULL, NULL) == -EAGAIN)
6567 rpc_restart_call_prepare(task);
6568 }
6569 }
6570
6571 static void nfs4_release_lockowner_release(void *calldata)
6572 {
6573 struct nfs_release_lockowner_data *data = calldata;
6574 nfs4_free_lock_state(data->server, data->lsp);
6575 kfree(calldata);
6576 }
6577
6578 static const struct rpc_call_ops nfs4_release_lockowner_ops = {
6579 .rpc_call_prepare = nfs4_release_lockowner_prepare,
6580 .rpc_call_done = nfs4_release_lockowner_done,
6581 .rpc_release = nfs4_release_lockowner_release,
6582 };
6583
6584 static void
6585 nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp)
6586 {
6587 struct nfs_release_lockowner_data *data;
6588 struct rpc_message msg = {
6589 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER],
6590 };
6591
6592 if (server->nfs_client->cl_mvops->minor_version != 0)
6593 return;
6594
6595 data = kmalloc(sizeof(*data), GFP_NOFS);
6596 if (!data)
6597 return;
6598 data->lsp = lsp;
6599 data->server = server;
6600 data->args.lock_owner.clientid = server->nfs_client->cl_clientid;
6601 data->args.lock_owner.id = lsp->ls_seqid.owner_id;
6602 data->args.lock_owner.s_dev = server->s_dev;
6603
6604 msg.rpc_argp = &data->args;
6605 msg.rpc_resp = &data->res;
6606 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0);
6607 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data);
6608 }
6609
6610 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl"
6611
6612 static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler,
6613 struct dentry *unused, struct inode *inode,
6614 const char *key, const void *buf,
6615 size_t buflen, int flags)
6616 {
6617 return nfs4_proc_set_acl(inode, buf, buflen);
6618 }
6619
6620 static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler,
6621 struct dentry *unused, struct inode *inode,
6622 const char *key, void *buf, size_t buflen)
6623 {
6624 return nfs4_proc_get_acl(inode, buf, buflen);
6625 }
6626
6627 static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry)
6628 {
6629 return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry)));
6630 }
6631
6632 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
6633
6634 static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler,
6635 struct dentry *unused, struct inode *inode,
6636 const char *key, const void *buf,
6637 size_t buflen, int flags)
6638 {
6639 if (security_ismaclabel(key))
6640 return nfs4_set_security_label(inode, buf, buflen);
6641
6642 return -EOPNOTSUPP;
6643 }
6644
6645 static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler,
6646 struct dentry *unused, struct inode *inode,
6647 const char *key, void *buf, size_t buflen)
6648 {
6649 if (security_ismaclabel(key))
6650 return nfs4_get_security_label(inode, buf, buflen);
6651 return -EOPNOTSUPP;
6652 }
6653
6654 static ssize_t
6655 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
6656 {
6657 int len = 0;
6658
6659 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) {
6660 len = security_inode_listsecurity(inode, list, list_len);
6661 if (list_len && len > list_len)
6662 return -ERANGE;
6663 }
6664 return len;
6665 }
6666
6667 static const struct xattr_handler nfs4_xattr_nfs4_label_handler = {
6668 .prefix = XATTR_SECURITY_PREFIX,
6669 .get = nfs4_xattr_get_nfs4_label,
6670 .set = nfs4_xattr_set_nfs4_label,
6671 };
6672
6673 #else
6674
6675 static ssize_t
6676 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len)
6677 {
6678 return 0;
6679 }
6680
6681 #endif
6682
6683 /*
6684 * nfs_fhget will use either the mounted_on_fileid or the fileid
6685 */
6686 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr)
6687 {
6688 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) ||
6689 (fattr->valid & NFS_ATTR_FATTR_FILEID)) &&
6690 (fattr->valid & NFS_ATTR_FATTR_FSID) &&
6691 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS)))
6692 return;
6693
6694 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE |
6695 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL;
6696 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO;
6697 fattr->nlink = 2;
6698 }
6699
6700 static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6701 const struct qstr *name,
6702 struct nfs4_fs_locations *fs_locations,
6703 struct page *page)
6704 {
6705 struct nfs_server *server = NFS_SERVER(dir);
6706 u32 bitmask[3] = {
6707 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6708 };
6709 struct nfs4_fs_locations_arg args = {
6710 .dir_fh = NFS_FH(dir),
6711 .name = name,
6712 .page = page,
6713 .bitmask = bitmask,
6714 };
6715 struct nfs4_fs_locations_res res = {
6716 .fs_locations = fs_locations,
6717 };
6718 struct rpc_message msg = {
6719 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6720 .rpc_argp = &args,
6721 .rpc_resp = &res,
6722 };
6723 int status;
6724
6725 dprintk("%s: start\n", __func__);
6726
6727 /* Ask for the fileid of the absent filesystem if mounted_on_fileid
6728 * is not supported */
6729 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID)
6730 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID;
6731 else
6732 bitmask[0] |= FATTR4_WORD0_FILEID;
6733
6734 nfs_fattr_init(&fs_locations->fattr);
6735 fs_locations->server = server;
6736 fs_locations->nlocations = 0;
6737 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0);
6738 dprintk("%s: returned status = %d\n", __func__, status);
6739 return status;
6740 }
6741
6742 int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir,
6743 const struct qstr *name,
6744 struct nfs4_fs_locations *fs_locations,
6745 struct page *page)
6746 {
6747 struct nfs4_exception exception = { };
6748 int err;
6749 do {
6750 err = _nfs4_proc_fs_locations(client, dir, name,
6751 fs_locations, page);
6752 trace_nfs4_get_fs_locations(dir, name, err);
6753 err = nfs4_handle_exception(NFS_SERVER(dir), err,
6754 &exception);
6755 } while (exception.retry);
6756 return err;
6757 }
6758
6759 /*
6760 * This operation also signals the server that this client is
6761 * performing migration recovery. The server can stop returning
6762 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is
6763 * appended to this compound to identify the client ID which is
6764 * performing recovery.
6765 */
6766 static int _nfs40_proc_get_locations(struct inode *inode,
6767 struct nfs4_fs_locations *locations,
6768 struct page *page, struct rpc_cred *cred)
6769 {
6770 struct nfs_server *server = NFS_SERVER(inode);
6771 struct rpc_clnt *clnt = server->client;
6772 u32 bitmask[2] = {
6773 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6774 };
6775 struct nfs4_fs_locations_arg args = {
6776 .clientid = server->nfs_client->cl_clientid,
6777 .fh = NFS_FH(inode),
6778 .page = page,
6779 .bitmask = bitmask,
6780 .migration = 1, /* skip LOOKUP */
6781 .renew = 1, /* append RENEW */
6782 };
6783 struct nfs4_fs_locations_res res = {
6784 .fs_locations = locations,
6785 .migration = 1,
6786 .renew = 1,
6787 };
6788 struct rpc_message msg = {
6789 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6790 .rpc_argp = &args,
6791 .rpc_resp = &res,
6792 .rpc_cred = cred,
6793 };
6794 unsigned long now = jiffies;
6795 int status;
6796
6797 nfs_fattr_init(&locations->fattr);
6798 locations->server = server;
6799 locations->nlocations = 0;
6800
6801 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6802 nfs4_set_sequence_privileged(&args.seq_args);
6803 status = nfs4_call_sync_sequence(clnt, server, &msg,
6804 &args.seq_args, &res.seq_res);
6805 if (status)
6806 return status;
6807
6808 renew_lease(server, now);
6809 return 0;
6810 }
6811
6812 #ifdef CONFIG_NFS_V4_1
6813
6814 /*
6815 * This operation also signals the server that this client is
6816 * performing migration recovery. The server can stop asserting
6817 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID
6818 * performing this operation is identified in the SEQUENCE
6819 * operation in this compound.
6820 *
6821 * When the client supports GETATTR(fs_locations_info), it can
6822 * be plumbed in here.
6823 */
6824 static int _nfs41_proc_get_locations(struct inode *inode,
6825 struct nfs4_fs_locations *locations,
6826 struct page *page, struct rpc_cred *cred)
6827 {
6828 struct nfs_server *server = NFS_SERVER(inode);
6829 struct rpc_clnt *clnt = server->client;
6830 u32 bitmask[2] = {
6831 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS,
6832 };
6833 struct nfs4_fs_locations_arg args = {
6834 .fh = NFS_FH(inode),
6835 .page = page,
6836 .bitmask = bitmask,
6837 .migration = 1, /* skip LOOKUP */
6838 };
6839 struct nfs4_fs_locations_res res = {
6840 .fs_locations = locations,
6841 .migration = 1,
6842 };
6843 struct rpc_message msg = {
6844 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS],
6845 .rpc_argp = &args,
6846 .rpc_resp = &res,
6847 .rpc_cred = cred,
6848 };
6849 int status;
6850
6851 nfs_fattr_init(&locations->fattr);
6852 locations->server = server;
6853 locations->nlocations = 0;
6854
6855 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6856 nfs4_set_sequence_privileged(&args.seq_args);
6857 status = nfs4_call_sync_sequence(clnt, server, &msg,
6858 &args.seq_args, &res.seq_res);
6859 if (status == NFS4_OK &&
6860 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6861 status = -NFS4ERR_LEASE_MOVED;
6862 return status;
6863 }
6864
6865 #endif /* CONFIG_NFS_V4_1 */
6866
6867 /**
6868 * nfs4_proc_get_locations - discover locations for a migrated FSID
6869 * @inode: inode on FSID that is migrating
6870 * @locations: result of query
6871 * @page: buffer
6872 * @cred: credential to use for this operation
6873 *
6874 * Returns NFS4_OK on success, a negative NFS4ERR status code if the
6875 * operation failed, or a negative errno if a local error occurred.
6876 *
6877 * On success, "locations" is filled in, but if the server has
6878 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not
6879 * asserted.
6880 *
6881 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases
6882 * from this client that require migration recovery.
6883 */
6884 int nfs4_proc_get_locations(struct inode *inode,
6885 struct nfs4_fs_locations *locations,
6886 struct page *page, struct rpc_cred *cred)
6887 {
6888 struct nfs_server *server = NFS_SERVER(inode);
6889 struct nfs_client *clp = server->nfs_client;
6890 const struct nfs4_mig_recovery_ops *ops =
6891 clp->cl_mvops->mig_recovery_ops;
6892 struct nfs4_exception exception = { };
6893 int status;
6894
6895 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
6896 (unsigned long long)server->fsid.major,
6897 (unsigned long long)server->fsid.minor,
6898 clp->cl_hostname);
6899 nfs_display_fhandle(NFS_FH(inode), __func__);
6900
6901 do {
6902 status = ops->get_locations(inode, locations, page, cred);
6903 if (status != -NFS4ERR_DELAY)
6904 break;
6905 nfs4_handle_exception(server, status, &exception);
6906 } while (exception.retry);
6907 return status;
6908 }
6909
6910 /*
6911 * This operation also signals the server that this client is
6912 * performing "lease moved" recovery. The server can stop
6913 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation
6914 * is appended to this compound to identify the client ID which is
6915 * performing recovery.
6916 */
6917 static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6918 {
6919 struct nfs_server *server = NFS_SERVER(inode);
6920 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client;
6921 struct rpc_clnt *clnt = server->client;
6922 struct nfs4_fsid_present_arg args = {
6923 .fh = NFS_FH(inode),
6924 .clientid = clp->cl_clientid,
6925 .renew = 1, /* append RENEW */
6926 };
6927 struct nfs4_fsid_present_res res = {
6928 .renew = 1,
6929 };
6930 struct rpc_message msg = {
6931 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6932 .rpc_argp = &args,
6933 .rpc_resp = &res,
6934 .rpc_cred = cred,
6935 };
6936 unsigned long now = jiffies;
6937 int status;
6938
6939 res.fh = nfs_alloc_fhandle();
6940 if (res.fh == NULL)
6941 return -ENOMEM;
6942
6943 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6944 nfs4_set_sequence_privileged(&args.seq_args);
6945 status = nfs4_call_sync_sequence(clnt, server, &msg,
6946 &args.seq_args, &res.seq_res);
6947 nfs_free_fhandle(res.fh);
6948 if (status)
6949 return status;
6950
6951 do_renew_lease(clp, now);
6952 return 0;
6953 }
6954
6955 #ifdef CONFIG_NFS_V4_1
6956
6957 /*
6958 * This operation also signals the server that this client is
6959 * performing "lease moved" recovery. The server can stop asserting
6960 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing
6961 * this operation is identified in the SEQUENCE operation in this
6962 * compound.
6963 */
6964 static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
6965 {
6966 struct nfs_server *server = NFS_SERVER(inode);
6967 struct rpc_clnt *clnt = server->client;
6968 struct nfs4_fsid_present_arg args = {
6969 .fh = NFS_FH(inode),
6970 };
6971 struct nfs4_fsid_present_res res = {
6972 };
6973 struct rpc_message msg = {
6974 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT],
6975 .rpc_argp = &args,
6976 .rpc_resp = &res,
6977 .rpc_cred = cred,
6978 };
6979 int status;
6980
6981 res.fh = nfs_alloc_fhandle();
6982 if (res.fh == NULL)
6983 return -ENOMEM;
6984
6985 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
6986 nfs4_set_sequence_privileged(&args.seq_args);
6987 status = nfs4_call_sync_sequence(clnt, server, &msg,
6988 &args.seq_args, &res.seq_res);
6989 nfs_free_fhandle(res.fh);
6990 if (status == NFS4_OK &&
6991 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED)
6992 status = -NFS4ERR_LEASE_MOVED;
6993 return status;
6994 }
6995
6996 #endif /* CONFIG_NFS_V4_1 */
6997
6998 /**
6999 * nfs4_proc_fsid_present - Is this FSID present or absent on server?
7000 * @inode: inode on FSID to check
7001 * @cred: credential to use for this operation
7002 *
7003 * Server indicates whether the FSID is present, moved, or not
7004 * recognized. This operation is necessary to clear a LEASE_MOVED
7005 * condition for this client ID.
7006 *
7007 * Returns NFS4_OK if the FSID is present on this server,
7008 * -NFS4ERR_MOVED if the FSID is no longer present, a negative
7009 * NFS4ERR code if some error occurred on the server, or a
7010 * negative errno if a local failure occurred.
7011 */
7012 int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred)
7013 {
7014 struct nfs_server *server = NFS_SERVER(inode);
7015 struct nfs_client *clp = server->nfs_client;
7016 const struct nfs4_mig_recovery_ops *ops =
7017 clp->cl_mvops->mig_recovery_ops;
7018 struct nfs4_exception exception = { };
7019 int status;
7020
7021 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__,
7022 (unsigned long long)server->fsid.major,
7023 (unsigned long long)server->fsid.minor,
7024 clp->cl_hostname);
7025 nfs_display_fhandle(NFS_FH(inode), __func__);
7026
7027 do {
7028 status = ops->fsid_present(inode, cred);
7029 if (status != -NFS4ERR_DELAY)
7030 break;
7031 nfs4_handle_exception(server, status, &exception);
7032 } while (exception.retry);
7033 return status;
7034 }
7035
7036 /**
7037 * If 'use_integrity' is true and the state managment nfs_client
7038 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient
7039 * and the machine credential as per RFC3530bis and RFC5661 Security
7040 * Considerations sections. Otherwise, just use the user cred with the
7041 * filesystem's rpc_client.
7042 */
7043 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity)
7044 {
7045 int status;
7046 struct nfs4_secinfo_arg args = {
7047 .dir_fh = NFS_FH(dir),
7048 .name = name,
7049 };
7050 struct nfs4_secinfo_res res = {
7051 .flavors = flavors,
7052 };
7053 struct rpc_message msg = {
7054 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO],
7055 .rpc_argp = &args,
7056 .rpc_resp = &res,
7057 };
7058 struct rpc_clnt *clnt = NFS_SERVER(dir)->client;
7059 struct rpc_cred *cred = NULL;
7060
7061 if (use_integrity) {
7062 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient;
7063 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client);
7064 msg.rpc_cred = cred;
7065 }
7066
7067 dprintk("NFS call secinfo %s\n", name->name);
7068
7069 nfs4_state_protect(NFS_SERVER(dir)->nfs_client,
7070 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg);
7071
7072 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args,
7073 &res.seq_res, 0);
7074 dprintk("NFS reply secinfo: %d\n", status);
7075
7076 if (cred)
7077 put_rpccred(cred);
7078
7079 return status;
7080 }
7081
7082 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name,
7083 struct nfs4_secinfo_flavors *flavors)
7084 {
7085 struct nfs4_exception exception = { };
7086 int err;
7087 do {
7088 err = -NFS4ERR_WRONGSEC;
7089
7090 /* try to use integrity protection with machine cred */
7091 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client))
7092 err = _nfs4_proc_secinfo(dir, name, flavors, true);
7093
7094 /*
7095 * if unable to use integrity protection, or SECINFO with
7096 * integrity protection returns NFS4ERR_WRONGSEC (which is
7097 * disallowed by spec, but exists in deployed servers) use
7098 * the current filesystem's rpc_client and the user cred.
7099 */
7100 if (err == -NFS4ERR_WRONGSEC)
7101 err = _nfs4_proc_secinfo(dir, name, flavors, false);
7102
7103 trace_nfs4_secinfo(dir, name, err);
7104 err = nfs4_handle_exception(NFS_SERVER(dir), err,
7105 &exception);
7106 } while (exception.retry);
7107 return err;
7108 }
7109
7110 #ifdef CONFIG_NFS_V4_1
7111 /*
7112 * Check the exchange flags returned by the server for invalid flags, having
7113 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or
7114 * DS flags set.
7115 */
7116 static int nfs4_check_cl_exchange_flags(u32 flags)
7117 {
7118 if (flags & ~EXCHGID4_FLAG_MASK_R)
7119 goto out_inval;
7120 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) &&
7121 (flags & EXCHGID4_FLAG_USE_NON_PNFS))
7122 goto out_inval;
7123 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS)))
7124 goto out_inval;
7125 return NFS_OK;
7126 out_inval:
7127 return -NFS4ERR_INVAL;
7128 }
7129
7130 static bool
7131 nfs41_same_server_scope(struct nfs41_server_scope *a,
7132 struct nfs41_server_scope *b)
7133 {
7134 if (a->server_scope_sz == b->server_scope_sz &&
7135 memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0)
7136 return true;
7137
7138 return false;
7139 }
7140
7141 static void
7142 nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata)
7143 {
7144 }
7145
7146 static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = {
7147 .rpc_call_done = &nfs4_bind_one_conn_to_session_done,
7148 };
7149
7150 /*
7151 * nfs4_proc_bind_one_conn_to_session()
7152 *
7153 * The 4.1 client currently uses the same TCP connection for the
7154 * fore and backchannel.
7155 */
7156 static
7157 int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt,
7158 struct rpc_xprt *xprt,
7159 struct nfs_client *clp,
7160 struct rpc_cred *cred)
7161 {
7162 int status;
7163 struct nfs41_bind_conn_to_session_args args = {
7164 .client = clp,
7165 .dir = NFS4_CDFC4_FORE_OR_BOTH,
7166 };
7167 struct nfs41_bind_conn_to_session_res res;
7168 struct rpc_message msg = {
7169 .rpc_proc =
7170 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION],
7171 .rpc_argp = &args,
7172 .rpc_resp = &res,
7173 .rpc_cred = cred,
7174 };
7175 struct rpc_task_setup task_setup_data = {
7176 .rpc_client = clnt,
7177 .rpc_xprt = xprt,
7178 .callback_ops = &nfs4_bind_one_conn_to_session_ops,
7179 .rpc_message = &msg,
7180 .flags = RPC_TASK_TIMEOUT,
7181 };
7182 struct rpc_task *task;
7183
7184 dprintk("--> %s\n", __func__);
7185
7186 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id);
7187 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN))
7188 args.dir = NFS4_CDFC4_FORE;
7189
7190 /* Do not set the backchannel flag unless this is clnt->cl_xprt */
7191 if (xprt != rcu_access_pointer(clnt->cl_xprt))
7192 args.dir = NFS4_CDFC4_FORE;
7193
7194 task = rpc_run_task(&task_setup_data);
7195 if (!IS_ERR(task)) {
7196 status = task->tk_status;
7197 rpc_put_task(task);
7198 } else
7199 status = PTR_ERR(task);
7200 trace_nfs4_bind_conn_to_session(clp, status);
7201 if (status == 0) {
7202 if (memcmp(res.sessionid.data,
7203 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) {
7204 dprintk("NFS: %s: Session ID mismatch\n", __func__);
7205 status = -EIO;
7206 goto out;
7207 }
7208 if ((res.dir & args.dir) != res.dir || res.dir == 0) {
7209 dprintk("NFS: %s: Unexpected direction from server\n",
7210 __func__);
7211 status = -EIO;
7212 goto out;
7213 }
7214 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) {
7215 dprintk("NFS: %s: Server returned RDMA mode = true\n",
7216 __func__);
7217 status = -EIO;
7218 goto out;
7219 }
7220 }
7221 out:
7222 dprintk("<-- %s status= %d\n", __func__, status);
7223 return status;
7224 }
7225
7226 struct rpc_bind_conn_calldata {
7227 struct nfs_client *clp;
7228 struct rpc_cred *cred;
7229 };
7230
7231 static int
7232 nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt,
7233 struct rpc_xprt *xprt,
7234 void *calldata)
7235 {
7236 struct rpc_bind_conn_calldata *p = calldata;
7237
7238 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred);
7239 }
7240
7241 int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred)
7242 {
7243 struct rpc_bind_conn_calldata data = {
7244 .clp = clp,
7245 .cred = cred,
7246 };
7247 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient,
7248 nfs4_proc_bind_conn_to_session_callback, &data);
7249 }
7250
7251 /*
7252 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map
7253 * and operations we'd like to see to enable certain features in the allow map
7254 */
7255 static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = {
7256 .how = SP4_MACH_CRED,
7257 .enforce.u.words = {
7258 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7259 1 << (OP_EXCHANGE_ID - 32) |
7260 1 << (OP_CREATE_SESSION - 32) |
7261 1 << (OP_DESTROY_SESSION - 32) |
7262 1 << (OP_DESTROY_CLIENTID - 32)
7263 },
7264 .allow.u.words = {
7265 [0] = 1 << (OP_CLOSE) |
7266 1 << (OP_OPEN_DOWNGRADE) |
7267 1 << (OP_LOCKU) |
7268 1 << (OP_DELEGRETURN) |
7269 1 << (OP_COMMIT),
7270 [1] = 1 << (OP_SECINFO - 32) |
7271 1 << (OP_SECINFO_NO_NAME - 32) |
7272 1 << (OP_LAYOUTRETURN - 32) |
7273 1 << (OP_TEST_STATEID - 32) |
7274 1 << (OP_FREE_STATEID - 32) |
7275 1 << (OP_WRITE - 32)
7276 }
7277 };
7278
7279 /*
7280 * Select the state protection mode for client `clp' given the server results
7281 * from exchange_id in `sp'.
7282 *
7283 * Returns 0 on success, negative errno otherwise.
7284 */
7285 static int nfs4_sp4_select_mode(struct nfs_client *clp,
7286 struct nfs41_state_protection *sp)
7287 {
7288 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = {
7289 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
7290 1 << (OP_EXCHANGE_ID - 32) |
7291 1 << (OP_CREATE_SESSION - 32) |
7292 1 << (OP_DESTROY_SESSION - 32) |
7293 1 << (OP_DESTROY_CLIENTID - 32)
7294 };
7295 unsigned int i;
7296
7297 if (sp->how == SP4_MACH_CRED) {
7298 /* Print state protect result */
7299 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n");
7300 for (i = 0; i <= LAST_NFS4_OP; i++) {
7301 if (test_bit(i, sp->enforce.u.longs))
7302 dfprintk(MOUNT, " enforce op %d\n", i);
7303 if (test_bit(i, sp->allow.u.longs))
7304 dfprintk(MOUNT, " allow op %d\n", i);
7305 }
7306
7307 /* make sure nothing is on enforce list that isn't supported */
7308 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) {
7309 if (sp->enforce.u.words[i] & ~supported_enforce[i]) {
7310 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7311 return -EINVAL;
7312 }
7313 }
7314
7315 /*
7316 * Minimal mode - state operations are allowed to use machine
7317 * credential. Note this already happens by default, so the
7318 * client doesn't have to do anything more than the negotiation.
7319 *
7320 * NOTE: we don't care if EXCHANGE_ID is in the list -
7321 * we're already using the machine cred for exchange_id
7322 * and will never use a different cred.
7323 */
7324 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) &&
7325 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) &&
7326 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) &&
7327 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) {
7328 dfprintk(MOUNT, "sp4_mach_cred:\n");
7329 dfprintk(MOUNT, " minimal mode enabled\n");
7330 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags);
7331 } else {
7332 dfprintk(MOUNT, "sp4_mach_cred: disabled\n");
7333 return -EINVAL;
7334 }
7335
7336 if (test_bit(OP_CLOSE, sp->allow.u.longs) &&
7337 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) &&
7338 test_bit(OP_DELEGRETURN, sp->allow.u.longs) &&
7339 test_bit(OP_LOCKU, sp->allow.u.longs)) {
7340 dfprintk(MOUNT, " cleanup mode enabled\n");
7341 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags);
7342 }
7343
7344 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) {
7345 dfprintk(MOUNT, " pnfs cleanup mode enabled\n");
7346 set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP,
7347 &clp->cl_sp4_flags);
7348 }
7349
7350 if (test_bit(OP_SECINFO, sp->allow.u.longs) &&
7351 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) {
7352 dfprintk(MOUNT, " secinfo mode enabled\n");
7353 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags);
7354 }
7355
7356 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) &&
7357 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) {
7358 dfprintk(MOUNT, " stateid mode enabled\n");
7359 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags);
7360 }
7361
7362 if (test_bit(OP_WRITE, sp->allow.u.longs)) {
7363 dfprintk(MOUNT, " write mode enabled\n");
7364 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags);
7365 }
7366
7367 if (test_bit(OP_COMMIT, sp->allow.u.longs)) {
7368 dfprintk(MOUNT, " commit mode enabled\n");
7369 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags);
7370 }
7371 }
7372
7373 return 0;
7374 }
7375
7376 struct nfs41_exchange_id_data {
7377 struct nfs41_exchange_id_res res;
7378 struct nfs41_exchange_id_args args;
7379 struct rpc_xprt *xprt;
7380 int rpc_status;
7381 };
7382
7383 static void nfs4_exchange_id_done(struct rpc_task *task, void *data)
7384 {
7385 struct nfs41_exchange_id_data *cdata =
7386 (struct nfs41_exchange_id_data *)data;
7387 struct nfs_client *clp = cdata->args.client;
7388 int status = task->tk_status;
7389
7390 trace_nfs4_exchange_id(clp, status);
7391
7392 if (status == 0)
7393 status = nfs4_check_cl_exchange_flags(cdata->res.flags);
7394
7395 if (cdata->xprt && status == 0) {
7396 status = nfs4_detect_session_trunking(clp, &cdata->res,
7397 cdata->xprt);
7398 goto out;
7399 }
7400
7401 if (status == 0)
7402 status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect);
7403
7404 if (status == 0) {
7405 clp->cl_clientid = cdata->res.clientid;
7406 clp->cl_exchange_flags = cdata->res.flags;
7407 /* Client ID is not confirmed */
7408 if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R)) {
7409 clear_bit(NFS4_SESSION_ESTABLISHED,
7410 &clp->cl_session->session_state);
7411 clp->cl_seqid = cdata->res.seqid;
7412 }
7413
7414 kfree(clp->cl_serverowner);
7415 clp->cl_serverowner = cdata->res.server_owner;
7416 cdata->res.server_owner = NULL;
7417
7418 /* use the most recent implementation id */
7419 kfree(clp->cl_implid);
7420 clp->cl_implid = cdata->res.impl_id;
7421 cdata->res.impl_id = NULL;
7422
7423 if (clp->cl_serverscope != NULL &&
7424 !nfs41_same_server_scope(clp->cl_serverscope,
7425 cdata->res.server_scope)) {
7426 dprintk("%s: server_scope mismatch detected\n",
7427 __func__);
7428 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state);
7429 kfree(clp->cl_serverscope);
7430 clp->cl_serverscope = NULL;
7431 }
7432
7433 if (clp->cl_serverscope == NULL) {
7434 clp->cl_serverscope = cdata->res.server_scope;
7435 cdata->res.server_scope = NULL;
7436 }
7437 /* Save the EXCHANGE_ID verifier session trunk tests */
7438 memcpy(clp->cl_confirm.data, cdata->args.verifier->data,
7439 sizeof(clp->cl_confirm.data));
7440 }
7441 out:
7442 cdata->rpc_status = status;
7443 return;
7444 }
7445
7446 static void nfs4_exchange_id_release(void *data)
7447 {
7448 struct nfs41_exchange_id_data *cdata =
7449 (struct nfs41_exchange_id_data *)data;
7450
7451 nfs_put_client(cdata->args.client);
7452 if (cdata->xprt) {
7453 xprt_put(cdata->xprt);
7454 rpc_clnt_xprt_switch_put(cdata->args.client->cl_rpcclient);
7455 }
7456 kfree(cdata->res.impl_id);
7457 kfree(cdata->res.server_scope);
7458 kfree(cdata->res.server_owner);
7459 kfree(cdata);
7460 }
7461
7462 static const struct rpc_call_ops nfs4_exchange_id_call_ops = {
7463 .rpc_call_done = nfs4_exchange_id_done,
7464 .rpc_release = nfs4_exchange_id_release,
7465 };
7466
7467 /*
7468 * _nfs4_proc_exchange_id()
7469 *
7470 * Wrapper for EXCHANGE_ID operation.
7471 */
7472 static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred,
7473 u32 sp4_how, struct rpc_xprt *xprt)
7474 {
7475 nfs4_verifier verifier;
7476 struct rpc_message msg = {
7477 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID],
7478 .rpc_cred = cred,
7479 };
7480 struct rpc_task_setup task_setup_data = {
7481 .rpc_client = clp->cl_rpcclient,
7482 .callback_ops = &nfs4_exchange_id_call_ops,
7483 .rpc_message = &msg,
7484 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
7485 };
7486 struct nfs41_exchange_id_data *calldata;
7487 struct rpc_task *task;
7488 int status = -EIO;
7489
7490 if (!atomic_inc_not_zero(&clp->cl_count))
7491 goto out;
7492
7493 status = -ENOMEM;
7494 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
7495 if (!calldata)
7496 goto out;
7497
7498 if (!xprt)
7499 nfs4_init_boot_verifier(clp, &verifier);
7500
7501 status = nfs4_init_uniform_client_string(clp);
7502 if (status)
7503 goto out_calldata;
7504
7505 dprintk("NFS call exchange_id auth=%s, '%s'\n",
7506 clp->cl_rpcclient->cl_auth->au_ops->au_name,
7507 clp->cl_owner_id);
7508
7509 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner),
7510 GFP_NOFS);
7511 status = -ENOMEM;
7512 if (unlikely(calldata->res.server_owner == NULL))
7513 goto out_calldata;
7514
7515 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope),
7516 GFP_NOFS);
7517 if (unlikely(calldata->res.server_scope == NULL))
7518 goto out_server_owner;
7519
7520 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS);
7521 if (unlikely(calldata->res.impl_id == NULL))
7522 goto out_server_scope;
7523
7524 switch (sp4_how) {
7525 case SP4_NONE:
7526 calldata->args.state_protect.how = SP4_NONE;
7527 break;
7528
7529 case SP4_MACH_CRED:
7530 calldata->args.state_protect = nfs4_sp4_mach_cred_request;
7531 break;
7532
7533 default:
7534 /* unsupported! */
7535 WARN_ON_ONCE(1);
7536 status = -EINVAL;
7537 goto out_impl_id;
7538 }
7539 if (xprt) {
7540 calldata->xprt = xprt;
7541 task_setup_data.rpc_xprt = xprt;
7542 task_setup_data.flags =
7543 RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC;
7544 calldata->args.verifier = &clp->cl_confirm;
7545 } else {
7546 calldata->args.verifier = &verifier;
7547 }
7548 calldata->args.client = clp;
7549 #ifdef CONFIG_NFS_V4_1_MIGRATION
7550 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7551 EXCHGID4_FLAG_BIND_PRINC_STATEID |
7552 EXCHGID4_FLAG_SUPP_MOVED_MIGR,
7553 #else
7554 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER |
7555 EXCHGID4_FLAG_BIND_PRINC_STATEID,
7556 #endif
7557 msg.rpc_argp = &calldata->args;
7558 msg.rpc_resp = &calldata->res;
7559 task_setup_data.callback_data = calldata;
7560
7561 task = rpc_run_task(&task_setup_data);
7562 if (IS_ERR(task)) {
7563 status = PTR_ERR(task);
7564 goto out_impl_id;
7565 }
7566
7567 if (!xprt) {
7568 status = rpc_wait_for_completion_task(task);
7569 if (!status)
7570 status = calldata->rpc_status;
7571 } else /* session trunking test */
7572 status = calldata->rpc_status;
7573
7574 rpc_put_task(task);
7575 out:
7576 if (clp->cl_implid != NULL)
7577 dprintk("NFS reply exchange_id: Server Implementation ID: "
7578 "domain: %s, name: %s, date: %llu,%u\n",
7579 clp->cl_implid->domain, clp->cl_implid->name,
7580 clp->cl_implid->date.seconds,
7581 clp->cl_implid->date.nseconds);
7582 dprintk("NFS reply exchange_id: %d\n", status);
7583 return status;
7584
7585 out_impl_id:
7586 kfree(calldata->res.impl_id);
7587 out_server_scope:
7588 kfree(calldata->res.server_scope);
7589 out_server_owner:
7590 kfree(calldata->res.server_owner);
7591 out_calldata:
7592 kfree(calldata);
7593 goto out;
7594 }
7595
7596 /*
7597 * nfs4_proc_exchange_id()
7598 *
7599 * Returns zero, a negative errno, or a negative NFS4ERR status code.
7600 *
7601 * Since the clientid has expired, all compounds using sessions
7602 * associated with the stale clientid will be returning
7603 * NFS4ERR_BADSESSION in the sequence operation, and will therefore
7604 * be in some phase of session reset.
7605 *
7606 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used.
7607 */
7608 int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
7609 {
7610 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor;
7611 int status;
7612
7613 /* try SP4_MACH_CRED if krb5i/p */
7614 if (authflavor == RPC_AUTH_GSS_KRB5I ||
7615 authflavor == RPC_AUTH_GSS_KRB5P) {
7616 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL);
7617 if (!status)
7618 return 0;
7619 }
7620
7621 /* try SP4_NONE */
7622 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL);
7623 }
7624
7625 /**
7626 * nfs4_test_session_trunk
7627 *
7628 * This is an add_xprt_test() test function called from
7629 * rpc_clnt_setup_test_and_add_xprt.
7630 *
7631 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt
7632 * and is dereferrenced in nfs4_exchange_id_release
7633 *
7634 * Upon success, add the new transport to the rpc_clnt
7635 *
7636 * @clnt: struct rpc_clnt to get new transport
7637 * @xprt: the rpc_xprt to test
7638 * @data: call data for _nfs4_proc_exchange_id.
7639 */
7640 int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt,
7641 void *data)
7642 {
7643 struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data;
7644 u32 sp4_how;
7645
7646 dprintk("--> %s try %s\n", __func__,
7647 xprt->address_strings[RPC_DISPLAY_ADDR]);
7648
7649 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED);
7650
7651 /* Test connection for session trunking. Async exchange_id call */
7652 return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt);
7653 }
7654 EXPORT_SYMBOL_GPL(nfs4_test_session_trunk);
7655
7656 static int _nfs4_proc_destroy_clientid(struct nfs_client *clp,
7657 struct rpc_cred *cred)
7658 {
7659 struct rpc_message msg = {
7660 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID],
7661 .rpc_argp = clp,
7662 .rpc_cred = cred,
7663 };
7664 int status;
7665
7666 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
7667 trace_nfs4_destroy_clientid(clp, status);
7668 if (status)
7669 dprintk("NFS: Got error %d from the server %s on "
7670 "DESTROY_CLIENTID.", status, clp->cl_hostname);
7671 return status;
7672 }
7673
7674 static int nfs4_proc_destroy_clientid(struct nfs_client *clp,
7675 struct rpc_cred *cred)
7676 {
7677 unsigned int loop;
7678 int ret;
7679
7680 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) {
7681 ret = _nfs4_proc_destroy_clientid(clp, cred);
7682 switch (ret) {
7683 case -NFS4ERR_DELAY:
7684 case -NFS4ERR_CLIENTID_BUSY:
7685 ssleep(1);
7686 break;
7687 default:
7688 return ret;
7689 }
7690 }
7691 return 0;
7692 }
7693
7694 int nfs4_destroy_clientid(struct nfs_client *clp)
7695 {
7696 struct rpc_cred *cred;
7697 int ret = 0;
7698
7699 if (clp->cl_mvops->minor_version < 1)
7700 goto out;
7701 if (clp->cl_exchange_flags == 0)
7702 goto out;
7703 if (clp->cl_preserve_clid)
7704 goto out;
7705 cred = nfs4_get_clid_cred(clp);
7706 ret = nfs4_proc_destroy_clientid(clp, cred);
7707 if (cred)
7708 put_rpccred(cred);
7709 switch (ret) {
7710 case 0:
7711 case -NFS4ERR_STALE_CLIENTID:
7712 clp->cl_exchange_flags = 0;
7713 }
7714 out:
7715 return ret;
7716 }
7717
7718 struct nfs4_get_lease_time_data {
7719 struct nfs4_get_lease_time_args *args;
7720 struct nfs4_get_lease_time_res *res;
7721 struct nfs_client *clp;
7722 };
7723
7724 static void nfs4_get_lease_time_prepare(struct rpc_task *task,
7725 void *calldata)
7726 {
7727 struct nfs4_get_lease_time_data *data =
7728 (struct nfs4_get_lease_time_data *)calldata;
7729
7730 dprintk("--> %s\n", __func__);
7731 /* just setup sequence, do not trigger session recovery
7732 since we're invoked within one */
7733 nfs4_setup_sequence(data->clp,
7734 &data->args->la_seq_args,
7735 &data->res->lr_seq_res,
7736 task);
7737 dprintk("<-- %s\n", __func__);
7738 }
7739
7740 /*
7741 * Called from nfs4_state_manager thread for session setup, so don't recover
7742 * from sequence operation or clientid errors.
7743 */
7744 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata)
7745 {
7746 struct nfs4_get_lease_time_data *data =
7747 (struct nfs4_get_lease_time_data *)calldata;
7748
7749 dprintk("--> %s\n", __func__);
7750 if (!nfs41_sequence_done(task, &data->res->lr_seq_res))
7751 return;
7752 switch (task->tk_status) {
7753 case -NFS4ERR_DELAY:
7754 case -NFS4ERR_GRACE:
7755 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status);
7756 rpc_delay(task, NFS4_POLL_RETRY_MIN);
7757 task->tk_status = 0;
7758 /* fall through */
7759 case -NFS4ERR_RETRY_UNCACHED_REP:
7760 rpc_restart_call_prepare(task);
7761 return;
7762 }
7763 dprintk("<-- %s\n", __func__);
7764 }
7765
7766 static const struct rpc_call_ops nfs4_get_lease_time_ops = {
7767 .rpc_call_prepare = nfs4_get_lease_time_prepare,
7768 .rpc_call_done = nfs4_get_lease_time_done,
7769 };
7770
7771 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo)
7772 {
7773 struct rpc_task *task;
7774 struct nfs4_get_lease_time_args args;
7775 struct nfs4_get_lease_time_res res = {
7776 .lr_fsinfo = fsinfo,
7777 };
7778 struct nfs4_get_lease_time_data data = {
7779 .args = &args,
7780 .res = &res,
7781 .clp = clp,
7782 };
7783 struct rpc_message msg = {
7784 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME],
7785 .rpc_argp = &args,
7786 .rpc_resp = &res,
7787 };
7788 struct rpc_task_setup task_setup = {
7789 .rpc_client = clp->cl_rpcclient,
7790 .rpc_message = &msg,
7791 .callback_ops = &nfs4_get_lease_time_ops,
7792 .callback_data = &data,
7793 .flags = RPC_TASK_TIMEOUT,
7794 };
7795 int status;
7796
7797 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0);
7798 nfs4_set_sequence_privileged(&args.la_seq_args);
7799 dprintk("--> %s\n", __func__);
7800 task = rpc_run_task(&task_setup);
7801
7802 if (IS_ERR(task))
7803 status = PTR_ERR(task);
7804 else {
7805 status = task->tk_status;
7806 rpc_put_task(task);
7807 }
7808 dprintk("<-- %s return %d\n", __func__, status);
7809
7810 return status;
7811 }
7812
7813 /*
7814 * Initialize the values to be used by the client in CREATE_SESSION
7815 * If nfs4_init_session set the fore channel request and response sizes,
7816 * use them.
7817 *
7818 * Set the back channel max_resp_sz_cached to zero to force the client to
7819 * always set csa_cachethis to FALSE because the current implementation
7820 * of the back channel DRC only supports caching the CB_SEQUENCE operation.
7821 */
7822 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args,
7823 struct rpc_clnt *clnt)
7824 {
7825 unsigned int max_rqst_sz, max_resp_sz;
7826 unsigned int max_bc_payload = rpc_max_bc_payload(clnt);
7827
7828 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead;
7829 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead;
7830
7831 /* Fore channel attributes */
7832 args->fc_attrs.max_rqst_sz = max_rqst_sz;
7833 args->fc_attrs.max_resp_sz = max_resp_sz;
7834 args->fc_attrs.max_ops = NFS4_MAX_OPS;
7835 args->fc_attrs.max_reqs = max_session_slots;
7836
7837 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u "
7838 "max_ops=%u max_reqs=%u\n",
7839 __func__,
7840 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz,
7841 args->fc_attrs.max_ops, args->fc_attrs.max_reqs);
7842
7843 /* Back channel attributes */
7844 args->bc_attrs.max_rqst_sz = max_bc_payload;
7845 args->bc_attrs.max_resp_sz = max_bc_payload;
7846 args->bc_attrs.max_resp_sz_cached = 0;
7847 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS;
7848 args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1);
7849
7850 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u "
7851 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n",
7852 __func__,
7853 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz,
7854 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops,
7855 args->bc_attrs.max_reqs);
7856 }
7857
7858 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args,
7859 struct nfs41_create_session_res *res)
7860 {
7861 struct nfs4_channel_attrs *sent = &args->fc_attrs;
7862 struct nfs4_channel_attrs *rcvd = &res->fc_attrs;
7863
7864 if (rcvd->max_resp_sz > sent->max_resp_sz)
7865 return -EINVAL;
7866 /*
7867 * Our requested max_ops is the minimum we need; we're not
7868 * prepared to break up compounds into smaller pieces than that.
7869 * So, no point even trying to continue if the server won't
7870 * cooperate:
7871 */
7872 if (rcvd->max_ops < sent->max_ops)
7873 return -EINVAL;
7874 if (rcvd->max_reqs == 0)
7875 return -EINVAL;
7876 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE)
7877 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE;
7878 return 0;
7879 }
7880
7881 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args,
7882 struct nfs41_create_session_res *res)
7883 {
7884 struct nfs4_channel_attrs *sent = &args->bc_attrs;
7885 struct nfs4_channel_attrs *rcvd = &res->bc_attrs;
7886
7887 if (!(res->flags & SESSION4_BACK_CHAN))
7888 goto out;
7889 if (rcvd->max_rqst_sz > sent->max_rqst_sz)
7890 return -EINVAL;
7891 if (rcvd->max_resp_sz < sent->max_resp_sz)
7892 return -EINVAL;
7893 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached)
7894 return -EINVAL;
7895 if (rcvd->max_ops > sent->max_ops)
7896 return -EINVAL;
7897 if (rcvd->max_reqs > sent->max_reqs)
7898 return -EINVAL;
7899 out:
7900 return 0;
7901 }
7902
7903 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args,
7904 struct nfs41_create_session_res *res)
7905 {
7906 int ret;
7907
7908 ret = nfs4_verify_fore_channel_attrs(args, res);
7909 if (ret)
7910 return ret;
7911 return nfs4_verify_back_channel_attrs(args, res);
7912 }
7913
7914 static void nfs4_update_session(struct nfs4_session *session,
7915 struct nfs41_create_session_res *res)
7916 {
7917 nfs4_copy_sessionid(&session->sess_id, &res->sessionid);
7918 /* Mark client id and session as being confirmed */
7919 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R;
7920 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state);
7921 session->flags = res->flags;
7922 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs));
7923 if (res->flags & SESSION4_BACK_CHAN)
7924 memcpy(&session->bc_attrs, &res->bc_attrs,
7925 sizeof(session->bc_attrs));
7926 }
7927
7928 static int _nfs4_proc_create_session(struct nfs_client *clp,
7929 struct rpc_cred *cred)
7930 {
7931 struct nfs4_session *session = clp->cl_session;
7932 struct nfs41_create_session_args args = {
7933 .client = clp,
7934 .clientid = clp->cl_clientid,
7935 .seqid = clp->cl_seqid,
7936 .cb_program = NFS4_CALLBACK,
7937 };
7938 struct nfs41_create_session_res res;
7939
7940 struct rpc_message msg = {
7941 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION],
7942 .rpc_argp = &args,
7943 .rpc_resp = &res,
7944 .rpc_cred = cred,
7945 };
7946 int status;
7947
7948 nfs4_init_channel_attrs(&args, clp->cl_rpcclient);
7949 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN);
7950
7951 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
7952 trace_nfs4_create_session(clp, status);
7953
7954 switch (status) {
7955 case -NFS4ERR_STALE_CLIENTID:
7956 case -NFS4ERR_DELAY:
7957 case -ETIMEDOUT:
7958 case -EACCES:
7959 case -EAGAIN:
7960 goto out;
7961 };
7962
7963 clp->cl_seqid++;
7964 if (!status) {
7965 /* Verify the session's negotiated channel_attrs values */
7966 status = nfs4_verify_channel_attrs(&args, &res);
7967 /* Increment the clientid slot sequence id */
7968 if (status)
7969 goto out;
7970 nfs4_update_session(session, &res);
7971 }
7972 out:
7973 return status;
7974 }
7975
7976 /*
7977 * Issues a CREATE_SESSION operation to the server.
7978 * It is the responsibility of the caller to verify the session is
7979 * expired before calling this routine.
7980 */
7981 int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred)
7982 {
7983 int status;
7984 unsigned *ptr;
7985 struct nfs4_session *session = clp->cl_session;
7986
7987 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session);
7988
7989 status = _nfs4_proc_create_session(clp, cred);
7990 if (status)
7991 goto out;
7992
7993 /* Init or reset the session slot tables */
7994 status = nfs4_setup_session_slot_tables(session);
7995 dprintk("slot table setup returned %d\n", status);
7996 if (status)
7997 goto out;
7998
7999 ptr = (unsigned *)&session->sess_id.data[0];
8000 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__,
8001 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]);
8002 out:
8003 dprintk("<-- %s\n", __func__);
8004 return status;
8005 }
8006
8007 /*
8008 * Issue the over-the-wire RPC DESTROY_SESSION.
8009 * The caller must serialize access to this routine.
8010 */
8011 int nfs4_proc_destroy_session(struct nfs4_session *session,
8012 struct rpc_cred *cred)
8013 {
8014 struct rpc_message msg = {
8015 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION],
8016 .rpc_argp = session,
8017 .rpc_cred = cred,
8018 };
8019 int status = 0;
8020
8021 dprintk("--> nfs4_proc_destroy_session\n");
8022
8023 /* session is still being setup */
8024 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state))
8025 return 0;
8026
8027 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT);
8028 trace_nfs4_destroy_session(session->clp, status);
8029
8030 if (status)
8031 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. "
8032 "Session has been destroyed regardless...\n", status);
8033
8034 dprintk("<-- nfs4_proc_destroy_session\n");
8035 return status;
8036 }
8037
8038 /*
8039 * Renew the cl_session lease.
8040 */
8041 struct nfs4_sequence_data {
8042 struct nfs_client *clp;
8043 struct nfs4_sequence_args args;
8044 struct nfs4_sequence_res res;
8045 };
8046
8047 static void nfs41_sequence_release(void *data)
8048 {
8049 struct nfs4_sequence_data *calldata = data;
8050 struct nfs_client *clp = calldata->clp;
8051
8052 if (atomic_read(&clp->cl_count) > 1)
8053 nfs4_schedule_state_renewal(clp);
8054 nfs_put_client(clp);
8055 kfree(calldata);
8056 }
8057
8058 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8059 {
8060 switch(task->tk_status) {
8061 case -NFS4ERR_DELAY:
8062 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8063 return -EAGAIN;
8064 default:
8065 nfs4_schedule_lease_recovery(clp);
8066 }
8067 return 0;
8068 }
8069
8070 static void nfs41_sequence_call_done(struct rpc_task *task, void *data)
8071 {
8072 struct nfs4_sequence_data *calldata = data;
8073 struct nfs_client *clp = calldata->clp;
8074
8075 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp))
8076 return;
8077
8078 trace_nfs4_sequence(clp, task->tk_status);
8079 if (task->tk_status < 0) {
8080 dprintk("%s ERROR %d\n", __func__, task->tk_status);
8081 if (atomic_read(&clp->cl_count) == 1)
8082 goto out;
8083
8084 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) {
8085 rpc_restart_call_prepare(task);
8086 return;
8087 }
8088 }
8089 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred);
8090 out:
8091 dprintk("<-- %s\n", __func__);
8092 }
8093
8094 static void nfs41_sequence_prepare(struct rpc_task *task, void *data)
8095 {
8096 struct nfs4_sequence_data *calldata = data;
8097 struct nfs_client *clp = calldata->clp;
8098 struct nfs4_sequence_args *args;
8099 struct nfs4_sequence_res *res;
8100
8101 args = task->tk_msg.rpc_argp;
8102 res = task->tk_msg.rpc_resp;
8103
8104 nfs4_setup_sequence(clp, args, res, task);
8105 }
8106
8107 static const struct rpc_call_ops nfs41_sequence_ops = {
8108 .rpc_call_done = nfs41_sequence_call_done,
8109 .rpc_call_prepare = nfs41_sequence_prepare,
8110 .rpc_release = nfs41_sequence_release,
8111 };
8112
8113 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp,
8114 struct rpc_cred *cred,
8115 bool is_privileged)
8116 {
8117 struct nfs4_sequence_data *calldata;
8118 struct rpc_message msg = {
8119 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE],
8120 .rpc_cred = cred,
8121 };
8122 struct rpc_task_setup task_setup_data = {
8123 .rpc_client = clp->cl_rpcclient,
8124 .rpc_message = &msg,
8125 .callback_ops = &nfs41_sequence_ops,
8126 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT,
8127 };
8128
8129 if (!atomic_inc_not_zero(&clp->cl_count))
8130 return ERR_PTR(-EIO);
8131 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8132 if (calldata == NULL) {
8133 nfs_put_client(clp);
8134 return ERR_PTR(-ENOMEM);
8135 }
8136 nfs4_init_sequence(&calldata->args, &calldata->res, 0);
8137 if (is_privileged)
8138 nfs4_set_sequence_privileged(&calldata->args);
8139 msg.rpc_argp = &calldata->args;
8140 msg.rpc_resp = &calldata->res;
8141 calldata->clp = clp;
8142 task_setup_data.callback_data = calldata;
8143
8144 return rpc_run_task(&task_setup_data);
8145 }
8146
8147 static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags)
8148 {
8149 struct rpc_task *task;
8150 int ret = 0;
8151
8152 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0)
8153 return -EAGAIN;
8154 task = _nfs41_proc_sequence(clp, cred, false);
8155 if (IS_ERR(task))
8156 ret = PTR_ERR(task);
8157 else
8158 rpc_put_task_async(task);
8159 dprintk("<-- %s status=%d\n", __func__, ret);
8160 return ret;
8161 }
8162
8163 static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred)
8164 {
8165 struct rpc_task *task;
8166 int ret;
8167
8168 task = _nfs41_proc_sequence(clp, cred, true);
8169 if (IS_ERR(task)) {
8170 ret = PTR_ERR(task);
8171 goto out;
8172 }
8173 ret = rpc_wait_for_completion_task(task);
8174 if (!ret)
8175 ret = task->tk_status;
8176 rpc_put_task(task);
8177 out:
8178 dprintk("<-- %s status=%d\n", __func__, ret);
8179 return ret;
8180 }
8181
8182 struct nfs4_reclaim_complete_data {
8183 struct nfs_client *clp;
8184 struct nfs41_reclaim_complete_args arg;
8185 struct nfs41_reclaim_complete_res res;
8186 };
8187
8188 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data)
8189 {
8190 struct nfs4_reclaim_complete_data *calldata = data;
8191
8192 nfs4_setup_sequence(calldata->clp,
8193 &calldata->arg.seq_args,
8194 &calldata->res.seq_res,
8195 task);
8196 }
8197
8198 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp)
8199 {
8200 switch(task->tk_status) {
8201 case 0:
8202 case -NFS4ERR_COMPLETE_ALREADY:
8203 case -NFS4ERR_WRONG_CRED: /* What to do here? */
8204 break;
8205 case -NFS4ERR_DELAY:
8206 rpc_delay(task, NFS4_POLL_RETRY_MAX);
8207 /* fall through */
8208 case -NFS4ERR_RETRY_UNCACHED_REP:
8209 return -EAGAIN;
8210 default:
8211 nfs4_schedule_lease_recovery(clp);
8212 }
8213 return 0;
8214 }
8215
8216 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data)
8217 {
8218 struct nfs4_reclaim_complete_data *calldata = data;
8219 struct nfs_client *clp = calldata->clp;
8220 struct nfs4_sequence_res *res = &calldata->res.seq_res;
8221
8222 dprintk("--> %s\n", __func__);
8223 if (!nfs41_sequence_done(task, res))
8224 return;
8225
8226 trace_nfs4_reclaim_complete(clp, task->tk_status);
8227 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) {
8228 rpc_restart_call_prepare(task);
8229 return;
8230 }
8231 dprintk("<-- %s\n", __func__);
8232 }
8233
8234 static void nfs4_free_reclaim_complete_data(void *data)
8235 {
8236 struct nfs4_reclaim_complete_data *calldata = data;
8237
8238 kfree(calldata);
8239 }
8240
8241 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = {
8242 .rpc_call_prepare = nfs4_reclaim_complete_prepare,
8243 .rpc_call_done = nfs4_reclaim_complete_done,
8244 .rpc_release = nfs4_free_reclaim_complete_data,
8245 };
8246
8247 /*
8248 * Issue a global reclaim complete.
8249 */
8250 static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
8251 struct rpc_cred *cred)
8252 {
8253 struct nfs4_reclaim_complete_data *calldata;
8254 struct rpc_task *task;
8255 struct rpc_message msg = {
8256 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE],
8257 .rpc_cred = cred,
8258 };
8259 struct rpc_task_setup task_setup_data = {
8260 .rpc_client = clp->cl_rpcclient,
8261 .rpc_message = &msg,
8262 .callback_ops = &nfs4_reclaim_complete_call_ops,
8263 .flags = RPC_TASK_ASYNC,
8264 };
8265 int status = -ENOMEM;
8266
8267 dprintk("--> %s\n", __func__);
8268 calldata = kzalloc(sizeof(*calldata), GFP_NOFS);
8269 if (calldata == NULL)
8270 goto out;
8271 calldata->clp = clp;
8272 calldata->arg.one_fs = 0;
8273
8274 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0);
8275 nfs4_set_sequence_privileged(&calldata->arg.seq_args);
8276 msg.rpc_argp = &calldata->arg;
8277 msg.rpc_resp = &calldata->res;
8278 task_setup_data.callback_data = calldata;
8279 task = rpc_run_task(&task_setup_data);
8280 if (IS_ERR(task)) {
8281 status = PTR_ERR(task);
8282 goto out;
8283 }
8284 status = rpc_wait_for_completion_task(task);
8285 if (status == 0)
8286 status = task->tk_status;
8287 rpc_put_task(task);
8288 return 0;
8289 out:
8290 dprintk("<-- %s status=%d\n", __func__, status);
8291 return status;
8292 }
8293
8294 static void
8295 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata)
8296 {
8297 struct nfs4_layoutget *lgp = calldata;
8298 struct nfs_server *server = NFS_SERVER(lgp->args.inode);
8299
8300 dprintk("--> %s\n", __func__);
8301 nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args,
8302 &lgp->res.seq_res, task);
8303 dprintk("<-- %s\n", __func__);
8304 }
8305
8306 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata)
8307 {
8308 struct nfs4_layoutget *lgp = calldata;
8309
8310 dprintk("--> %s\n", __func__);
8311 nfs41_sequence_process(task, &lgp->res.seq_res);
8312 dprintk("<-- %s\n", __func__);
8313 }
8314
8315 static int
8316 nfs4_layoutget_handle_exception(struct rpc_task *task,
8317 struct nfs4_layoutget *lgp, struct nfs4_exception *exception)
8318 {
8319 struct inode *inode = lgp->args.inode;
8320 struct nfs_server *server = NFS_SERVER(inode);
8321 struct pnfs_layout_hdr *lo;
8322 int nfs4err = task->tk_status;
8323 int err, status = 0;
8324 LIST_HEAD(head);
8325
8326 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status);
8327
8328 switch (nfs4err) {
8329 case 0:
8330 goto out;
8331
8332 /*
8333 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs
8334 * on the file. set tk_status to -ENODATA to tell upper layer to
8335 * retry go inband.
8336 */
8337 case -NFS4ERR_LAYOUTUNAVAILABLE:
8338 status = -ENODATA;
8339 goto out;
8340 /*
8341 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of
8342 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3).
8343 */
8344 case -NFS4ERR_BADLAYOUT:
8345 status = -EOVERFLOW;
8346 goto out;
8347 /*
8348 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client
8349 * (or clients) writing to the same RAID stripe except when
8350 * the minlength argument is 0 (see RFC5661 section 18.43.3).
8351 *
8352 * Treat it like we would RECALLCONFLICT -- we retry for a little
8353 * while, and then eventually give up.
8354 */
8355 case -NFS4ERR_LAYOUTTRYLATER:
8356 if (lgp->args.minlength == 0) {
8357 status = -EOVERFLOW;
8358 goto out;
8359 }
8360 status = -EBUSY;
8361 break;
8362 case -NFS4ERR_RECALLCONFLICT:
8363 status = -ERECALLCONFLICT;
8364 break;
8365 case -NFS4ERR_DELEG_REVOKED:
8366 case -NFS4ERR_ADMIN_REVOKED:
8367 case -NFS4ERR_EXPIRED:
8368 case -NFS4ERR_BAD_STATEID:
8369 exception->timeout = 0;
8370 spin_lock(&inode->i_lock);
8371 lo = NFS_I(inode)->layout;
8372 /* If the open stateid was bad, then recover it. */
8373 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) ||
8374 nfs4_stateid_match_other(&lgp->args.stateid,
8375 &lgp->args.ctx->state->stateid)) {
8376 spin_unlock(&inode->i_lock);
8377 exception->state = lgp->args.ctx->state;
8378 exception->stateid = &lgp->args.stateid;
8379 break;
8380 }
8381
8382 /*
8383 * Mark the bad layout state as invalid, then retry
8384 */
8385 pnfs_mark_layout_stateid_invalid(lo, &head);
8386 spin_unlock(&inode->i_lock);
8387 pnfs_free_lseg_list(&head);
8388 status = -EAGAIN;
8389 goto out;
8390 }
8391
8392 nfs4_sequence_free_slot(&lgp->res.seq_res);
8393 err = nfs4_handle_exception(server, nfs4err, exception);
8394 if (!status) {
8395 if (exception->retry)
8396 status = -EAGAIN;
8397 else
8398 status = err;
8399 }
8400 out:
8401 dprintk("<-- %s\n", __func__);
8402 return status;
8403 }
8404
8405 static size_t max_response_pages(struct nfs_server *server)
8406 {
8407 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
8408 return nfs_page_array_len(0, max_resp_sz);
8409 }
8410
8411 static void nfs4_free_pages(struct page **pages, size_t size)
8412 {
8413 int i;
8414
8415 if (!pages)
8416 return;
8417
8418 for (i = 0; i < size; i++) {
8419 if (!pages[i])
8420 break;
8421 __free_page(pages[i]);
8422 }
8423 kfree(pages);
8424 }
8425
8426 static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags)
8427 {
8428 struct page **pages;
8429 int i;
8430
8431 pages = kcalloc(size, sizeof(struct page *), gfp_flags);
8432 if (!pages) {
8433 dprintk("%s: can't alloc array of %zu pages\n", __func__, size);
8434 return NULL;
8435 }
8436
8437 for (i = 0; i < size; i++) {
8438 pages[i] = alloc_page(gfp_flags);
8439 if (!pages[i]) {
8440 dprintk("%s: failed to allocate page\n", __func__);
8441 nfs4_free_pages(pages, size);
8442 return NULL;
8443 }
8444 }
8445
8446 return pages;
8447 }
8448
8449 static void nfs4_layoutget_release(void *calldata)
8450 {
8451 struct nfs4_layoutget *lgp = calldata;
8452 struct inode *inode = lgp->args.inode;
8453 struct nfs_server *server = NFS_SERVER(inode);
8454 size_t max_pages = max_response_pages(server);
8455
8456 dprintk("--> %s\n", __func__);
8457 nfs4_free_pages(lgp->args.layout.pages, max_pages);
8458 pnfs_put_layout_hdr(NFS_I(inode)->layout);
8459 put_nfs_open_context(lgp->args.ctx);
8460 kfree(calldata);
8461 dprintk("<-- %s\n", __func__);
8462 }
8463
8464 static const struct rpc_call_ops nfs4_layoutget_call_ops = {
8465 .rpc_call_prepare = nfs4_layoutget_prepare,
8466 .rpc_call_done = nfs4_layoutget_done,
8467 .rpc_release = nfs4_layoutget_release,
8468 };
8469
8470 struct pnfs_layout_segment *
8471 nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags)
8472 {
8473 struct inode *inode = lgp->args.inode;
8474 struct nfs_server *server = NFS_SERVER(inode);
8475 size_t max_pages = max_response_pages(server);
8476 struct rpc_task *task;
8477 struct rpc_message msg = {
8478 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET],
8479 .rpc_argp = &lgp->args,
8480 .rpc_resp = &lgp->res,
8481 .rpc_cred = lgp->cred,
8482 };
8483 struct rpc_task_setup task_setup_data = {
8484 .rpc_client = server->client,
8485 .rpc_message = &msg,
8486 .callback_ops = &nfs4_layoutget_call_ops,
8487 .callback_data = lgp,
8488 .flags = RPC_TASK_ASYNC,
8489 };
8490 struct pnfs_layout_segment *lseg = NULL;
8491 struct nfs4_exception exception = {
8492 .inode = inode,
8493 .timeout = *timeout,
8494 };
8495 int status = 0;
8496
8497 dprintk("--> %s\n", __func__);
8498
8499 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */
8500 pnfs_get_layout_hdr(NFS_I(inode)->layout);
8501
8502 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags);
8503 if (!lgp->args.layout.pages) {
8504 nfs4_layoutget_release(lgp);
8505 return ERR_PTR(-ENOMEM);
8506 }
8507 lgp->args.layout.pglen = max_pages * PAGE_SIZE;
8508
8509 lgp->res.layoutp = &lgp->args.layout;
8510 lgp->res.seq_res.sr_slot = NULL;
8511 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0);
8512
8513 task = rpc_run_task(&task_setup_data);
8514 if (IS_ERR(task))
8515 return ERR_CAST(task);
8516 status = rpc_wait_for_completion_task(task);
8517 if (status == 0) {
8518 status = nfs4_layoutget_handle_exception(task, lgp, &exception);
8519 *timeout = exception.timeout;
8520 }
8521
8522 trace_nfs4_layoutget(lgp->args.ctx,
8523 &lgp->args.range,
8524 &lgp->res.range,
8525 &lgp->res.stateid,
8526 status);
8527
8528 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */
8529 if (status == 0 && lgp->res.layoutp->len)
8530 lseg = pnfs_layout_process(lgp);
8531 nfs4_sequence_free_slot(&lgp->res.seq_res);
8532 rpc_put_task(task);
8533 dprintk("<-- %s status=%d\n", __func__, status);
8534 if (status)
8535 return ERR_PTR(status);
8536 return lseg;
8537 }
8538
8539 static void
8540 nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata)
8541 {
8542 struct nfs4_layoutreturn *lrp = calldata;
8543
8544 dprintk("--> %s\n", __func__);
8545 nfs4_setup_sequence(lrp->clp,
8546 &lrp->args.seq_args,
8547 &lrp->res.seq_res,
8548 task);
8549 }
8550
8551 static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata)
8552 {
8553 struct nfs4_layoutreturn *lrp = calldata;
8554 struct nfs_server *server;
8555
8556 dprintk("--> %s\n", __func__);
8557
8558 if (!nfs41_sequence_process(task, &lrp->res.seq_res))
8559 return;
8560
8561 server = NFS_SERVER(lrp->args.inode);
8562 switch (task->tk_status) {
8563 default:
8564 task->tk_status = 0;
8565 case 0:
8566 break;
8567 case -NFS4ERR_DELAY:
8568 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN)
8569 break;
8570 nfs4_sequence_free_slot(&lrp->res.seq_res);
8571 rpc_restart_call_prepare(task);
8572 return;
8573 }
8574 dprintk("<-- %s\n", __func__);
8575 }
8576
8577 static void nfs4_layoutreturn_release(void *calldata)
8578 {
8579 struct nfs4_layoutreturn *lrp = calldata;
8580 struct pnfs_layout_hdr *lo = lrp->args.layout;
8581
8582 dprintk("--> %s\n", __func__);
8583 pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range,
8584 lrp->res.lrs_present ? &lrp->res.stateid : NULL);
8585 nfs4_sequence_free_slot(&lrp->res.seq_res);
8586 if (lrp->ld_private.ops && lrp->ld_private.ops->free)
8587 lrp->ld_private.ops->free(&lrp->ld_private);
8588 pnfs_put_layout_hdr(lrp->args.layout);
8589 nfs_iput_and_deactive(lrp->inode);
8590 kfree(calldata);
8591 dprintk("<-- %s\n", __func__);
8592 }
8593
8594 static const struct rpc_call_ops nfs4_layoutreturn_call_ops = {
8595 .rpc_call_prepare = nfs4_layoutreturn_prepare,
8596 .rpc_call_done = nfs4_layoutreturn_done,
8597 .rpc_release = nfs4_layoutreturn_release,
8598 };
8599
8600 int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync)
8601 {
8602 struct rpc_task *task;
8603 struct rpc_message msg = {
8604 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN],
8605 .rpc_argp = &lrp->args,
8606 .rpc_resp = &lrp->res,
8607 .rpc_cred = lrp->cred,
8608 };
8609 struct rpc_task_setup task_setup_data = {
8610 .rpc_client = NFS_SERVER(lrp->args.inode)->client,
8611 .rpc_message = &msg,
8612 .callback_ops = &nfs4_layoutreturn_call_ops,
8613 .callback_data = lrp,
8614 };
8615 int status = 0;
8616
8617 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client,
8618 NFS_SP4_MACH_CRED_PNFS_CLEANUP,
8619 &task_setup_data.rpc_client, &msg);
8620
8621 dprintk("--> %s\n", __func__);
8622 if (!sync) {
8623 lrp->inode = nfs_igrab_and_active(lrp->args.inode);
8624 if (!lrp->inode) {
8625 nfs4_layoutreturn_release(lrp);
8626 return -EAGAIN;
8627 }
8628 task_setup_data.flags |= RPC_TASK_ASYNC;
8629 }
8630 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1);
8631 task = rpc_run_task(&task_setup_data);
8632 if (IS_ERR(task))
8633 return PTR_ERR(task);
8634 if (sync)
8635 status = task->tk_status;
8636 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status);
8637 dprintk("<-- %s status=%d\n", __func__, status);
8638 rpc_put_task(task);
8639 return status;
8640 }
8641
8642 static int
8643 _nfs4_proc_getdeviceinfo(struct nfs_server *server,
8644 struct pnfs_device *pdev,
8645 struct rpc_cred *cred)
8646 {
8647 struct nfs4_getdeviceinfo_args args = {
8648 .pdev = pdev,
8649 .notify_types = NOTIFY_DEVICEID4_CHANGE |
8650 NOTIFY_DEVICEID4_DELETE,
8651 };
8652 struct nfs4_getdeviceinfo_res res = {
8653 .pdev = pdev,
8654 };
8655 struct rpc_message msg = {
8656 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO],
8657 .rpc_argp = &args,
8658 .rpc_resp = &res,
8659 .rpc_cred = cred,
8660 };
8661 int status;
8662
8663 dprintk("--> %s\n", __func__);
8664 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0);
8665 if (res.notification & ~args.notify_types)
8666 dprintk("%s: unsupported notification\n", __func__);
8667 if (res.notification != args.notify_types)
8668 pdev->nocache = 1;
8669
8670 dprintk("<-- %s status=%d\n", __func__, status);
8671
8672 return status;
8673 }
8674
8675 int nfs4_proc_getdeviceinfo(struct nfs_server *server,
8676 struct pnfs_device *pdev,
8677 struct rpc_cred *cred)
8678 {
8679 struct nfs4_exception exception = { };
8680 int err;
8681
8682 do {
8683 err = nfs4_handle_exception(server,
8684 _nfs4_proc_getdeviceinfo(server, pdev, cred),
8685 &exception);
8686 } while (exception.retry);
8687 return err;
8688 }
8689 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo);
8690
8691 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata)
8692 {
8693 struct nfs4_layoutcommit_data *data = calldata;
8694 struct nfs_server *server = NFS_SERVER(data->args.inode);
8695
8696 nfs4_setup_sequence(server->nfs_client,
8697 &data->args.seq_args,
8698 &data->res.seq_res,
8699 task);
8700 }
8701
8702 static void
8703 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata)
8704 {
8705 struct nfs4_layoutcommit_data *data = calldata;
8706 struct nfs_server *server = NFS_SERVER(data->args.inode);
8707
8708 if (!nfs41_sequence_done(task, &data->res.seq_res))
8709 return;
8710
8711 switch (task->tk_status) { /* Just ignore these failures */
8712 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */
8713 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */
8714 case -NFS4ERR_BADLAYOUT: /* no layout */
8715 case -NFS4ERR_GRACE: /* loca_recalim always false */
8716 task->tk_status = 0;
8717 case 0:
8718 break;
8719 default:
8720 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) {
8721 rpc_restart_call_prepare(task);
8722 return;
8723 }
8724 }
8725 }
8726
8727 static void nfs4_layoutcommit_release(void *calldata)
8728 {
8729 struct nfs4_layoutcommit_data *data = calldata;
8730
8731 pnfs_cleanup_layoutcommit(data);
8732 nfs_post_op_update_inode_force_wcc(data->args.inode,
8733 data->res.fattr);
8734 put_rpccred(data->cred);
8735 nfs_iput_and_deactive(data->inode);
8736 kfree(data);
8737 }
8738
8739 static const struct rpc_call_ops nfs4_layoutcommit_ops = {
8740 .rpc_call_prepare = nfs4_layoutcommit_prepare,
8741 .rpc_call_done = nfs4_layoutcommit_done,
8742 .rpc_release = nfs4_layoutcommit_release,
8743 };
8744
8745 int
8746 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync)
8747 {
8748 struct rpc_message msg = {
8749 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT],
8750 .rpc_argp = &data->args,
8751 .rpc_resp = &data->res,
8752 .rpc_cred = data->cred,
8753 };
8754 struct rpc_task_setup task_setup_data = {
8755 .task = &data->task,
8756 .rpc_client = NFS_CLIENT(data->args.inode),
8757 .rpc_message = &msg,
8758 .callback_ops = &nfs4_layoutcommit_ops,
8759 .callback_data = data,
8760 };
8761 struct rpc_task *task;
8762 int status = 0;
8763
8764 dprintk("NFS: initiating layoutcommit call. sync %d "
8765 "lbw: %llu inode %lu\n", sync,
8766 data->args.lastbytewritten,
8767 data->args.inode->i_ino);
8768
8769 if (!sync) {
8770 data->inode = nfs_igrab_and_active(data->args.inode);
8771 if (data->inode == NULL) {
8772 nfs4_layoutcommit_release(data);
8773 return -EAGAIN;
8774 }
8775 task_setup_data.flags = RPC_TASK_ASYNC;
8776 }
8777 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
8778 task = rpc_run_task(&task_setup_data);
8779 if (IS_ERR(task))
8780 return PTR_ERR(task);
8781 if (sync)
8782 status = task->tk_status;
8783 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status);
8784 dprintk("%s: status %d\n", __func__, status);
8785 rpc_put_task(task);
8786 return status;
8787 }
8788
8789 /**
8790 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if
8791 * possible) as per RFC3530bis and RFC5661 Security Considerations sections
8792 */
8793 static int
8794 _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8795 struct nfs_fsinfo *info,
8796 struct nfs4_secinfo_flavors *flavors, bool use_integrity)
8797 {
8798 struct nfs41_secinfo_no_name_args args = {
8799 .style = SECINFO_STYLE_CURRENT_FH,
8800 };
8801 struct nfs4_secinfo_res res = {
8802 .flavors = flavors,
8803 };
8804 struct rpc_message msg = {
8805 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME],
8806 .rpc_argp = &args,
8807 .rpc_resp = &res,
8808 };
8809 struct rpc_clnt *clnt = server->client;
8810 struct rpc_cred *cred = NULL;
8811 int status;
8812
8813 if (use_integrity) {
8814 clnt = server->nfs_client->cl_rpcclient;
8815 cred = nfs4_get_clid_cred(server->nfs_client);
8816 msg.rpc_cred = cred;
8817 }
8818
8819 dprintk("--> %s\n", __func__);
8820 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args,
8821 &res.seq_res, 0);
8822 dprintk("<-- %s status=%d\n", __func__, status);
8823
8824 if (cred)
8825 put_rpccred(cred);
8826
8827 return status;
8828 }
8829
8830 static int
8831 nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle,
8832 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors)
8833 {
8834 struct nfs4_exception exception = { };
8835 int err;
8836 do {
8837 /* first try using integrity protection */
8838 err = -NFS4ERR_WRONGSEC;
8839
8840 /* try to use integrity protection with machine cred */
8841 if (_nfs4_is_integrity_protected(server->nfs_client))
8842 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8843 flavors, true);
8844
8845 /*
8846 * if unable to use integrity protection, or SECINFO with
8847 * integrity protection returns NFS4ERR_WRONGSEC (which is
8848 * disallowed by spec, but exists in deployed servers) use
8849 * the current filesystem's rpc_client and the user cred.
8850 */
8851 if (err == -NFS4ERR_WRONGSEC)
8852 err = _nfs41_proc_secinfo_no_name(server, fhandle, info,
8853 flavors, false);
8854
8855 switch (err) {
8856 case 0:
8857 case -NFS4ERR_WRONGSEC:
8858 case -ENOTSUPP:
8859 goto out;
8860 default:
8861 err = nfs4_handle_exception(server, err, &exception);
8862 }
8863 } while (exception.retry);
8864 out:
8865 return err;
8866 }
8867
8868 static int
8869 nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle,
8870 struct nfs_fsinfo *info)
8871 {
8872 int err;
8873 struct page *page;
8874 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR;
8875 struct nfs4_secinfo_flavors *flavors;
8876 struct nfs4_secinfo4 *secinfo;
8877 int i;
8878
8879 page = alloc_page(GFP_KERNEL);
8880 if (!page) {
8881 err = -ENOMEM;
8882 goto out;
8883 }
8884
8885 flavors = page_address(page);
8886 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors);
8887
8888 /*
8889 * Fall back on "guess and check" method if
8890 * the server doesn't support SECINFO_NO_NAME
8891 */
8892 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) {
8893 err = nfs4_find_root_sec(server, fhandle, info);
8894 goto out_freepage;
8895 }
8896 if (err)
8897 goto out_freepage;
8898
8899 for (i = 0; i < flavors->num_flavors; i++) {
8900 secinfo = &flavors->flavors[i];
8901
8902 switch (secinfo->flavor) {
8903 case RPC_AUTH_NULL:
8904 case RPC_AUTH_UNIX:
8905 case RPC_AUTH_GSS:
8906 flavor = rpcauth_get_pseudoflavor(secinfo->flavor,
8907 &secinfo->flavor_info);
8908 break;
8909 default:
8910 flavor = RPC_AUTH_MAXFLAVOR;
8911 break;
8912 }
8913
8914 if (!nfs_auth_info_match(&server->auth_info, flavor))
8915 flavor = RPC_AUTH_MAXFLAVOR;
8916
8917 if (flavor != RPC_AUTH_MAXFLAVOR) {
8918 err = nfs4_lookup_root_sec(server, fhandle,
8919 info, flavor);
8920 if (!err)
8921 break;
8922 }
8923 }
8924
8925 if (flavor == RPC_AUTH_MAXFLAVOR)
8926 err = -EPERM;
8927
8928 out_freepage:
8929 put_page(page);
8930 if (err == -EACCES)
8931 return -EPERM;
8932 out:
8933 return err;
8934 }
8935
8936 static int _nfs41_test_stateid(struct nfs_server *server,
8937 nfs4_stateid *stateid,
8938 struct rpc_cred *cred)
8939 {
8940 int status;
8941 struct nfs41_test_stateid_args args = {
8942 .stateid = stateid,
8943 };
8944 struct nfs41_test_stateid_res res;
8945 struct rpc_message msg = {
8946 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID],
8947 .rpc_argp = &args,
8948 .rpc_resp = &res,
8949 .rpc_cred = cred,
8950 };
8951 struct rpc_clnt *rpc_client = server->client;
8952
8953 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
8954 &rpc_client, &msg);
8955
8956 dprintk("NFS call test_stateid %p\n", stateid);
8957 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0);
8958 nfs4_set_sequence_privileged(&args.seq_args);
8959 status = nfs4_call_sync_sequence(rpc_client, server, &msg,
8960 &args.seq_args, &res.seq_res);
8961 if (status != NFS_OK) {
8962 dprintk("NFS reply test_stateid: failed, %d\n", status);
8963 return status;
8964 }
8965 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status);
8966 return -res.status;
8967 }
8968
8969 static void nfs4_handle_delay_or_session_error(struct nfs_server *server,
8970 int err, struct nfs4_exception *exception)
8971 {
8972 exception->retry = 0;
8973 switch(err) {
8974 case -NFS4ERR_DELAY:
8975 case -NFS4ERR_RETRY_UNCACHED_REP:
8976 nfs4_handle_exception(server, err, exception);
8977 break;
8978 case -NFS4ERR_BADSESSION:
8979 case -NFS4ERR_BADSLOT:
8980 case -NFS4ERR_BAD_HIGH_SLOT:
8981 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
8982 case -NFS4ERR_DEADSESSION:
8983 nfs4_do_handle_exception(server, err, exception);
8984 }
8985 }
8986
8987 /**
8988 * nfs41_test_stateid - perform a TEST_STATEID operation
8989 *
8990 * @server: server / transport on which to perform the operation
8991 * @stateid: state ID to test
8992 * @cred: credential
8993 *
8994 * Returns NFS_OK if the server recognizes that "stateid" is valid.
8995 * Otherwise a negative NFS4ERR value is returned if the operation
8996 * failed or the state ID is not currently valid.
8997 */
8998 static int nfs41_test_stateid(struct nfs_server *server,
8999 nfs4_stateid *stateid,
9000 struct rpc_cred *cred)
9001 {
9002 struct nfs4_exception exception = { };
9003 int err;
9004 do {
9005 err = _nfs41_test_stateid(server, stateid, cred);
9006 nfs4_handle_delay_or_session_error(server, err, &exception);
9007 } while (exception.retry);
9008 return err;
9009 }
9010
9011 struct nfs_free_stateid_data {
9012 struct nfs_server *server;
9013 struct nfs41_free_stateid_args args;
9014 struct nfs41_free_stateid_res res;
9015 };
9016
9017 static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata)
9018 {
9019 struct nfs_free_stateid_data *data = calldata;
9020 nfs4_setup_sequence(data->server->nfs_client,
9021 &data->args.seq_args,
9022 &data->res.seq_res,
9023 task);
9024 }
9025
9026 static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata)
9027 {
9028 struct nfs_free_stateid_data *data = calldata;
9029
9030 nfs41_sequence_done(task, &data->res.seq_res);
9031
9032 switch (task->tk_status) {
9033 case -NFS4ERR_DELAY:
9034 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN)
9035 rpc_restart_call_prepare(task);
9036 }
9037 }
9038
9039 static void nfs41_free_stateid_release(void *calldata)
9040 {
9041 kfree(calldata);
9042 }
9043
9044 static const struct rpc_call_ops nfs41_free_stateid_ops = {
9045 .rpc_call_prepare = nfs41_free_stateid_prepare,
9046 .rpc_call_done = nfs41_free_stateid_done,
9047 .rpc_release = nfs41_free_stateid_release,
9048 };
9049
9050 static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server,
9051 const nfs4_stateid *stateid,
9052 struct rpc_cred *cred,
9053 bool privileged)
9054 {
9055 struct rpc_message msg = {
9056 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID],
9057 .rpc_cred = cred,
9058 };
9059 struct rpc_task_setup task_setup = {
9060 .rpc_client = server->client,
9061 .rpc_message = &msg,
9062 .callback_ops = &nfs41_free_stateid_ops,
9063 .flags = RPC_TASK_ASYNC,
9064 };
9065 struct nfs_free_stateid_data *data;
9066
9067 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID,
9068 &task_setup.rpc_client, &msg);
9069
9070 dprintk("NFS call free_stateid %p\n", stateid);
9071 data = kmalloc(sizeof(*data), GFP_NOFS);
9072 if (!data)
9073 return ERR_PTR(-ENOMEM);
9074 data->server = server;
9075 nfs4_stateid_copy(&data->args.stateid, stateid);
9076
9077 task_setup.callback_data = data;
9078
9079 msg.rpc_argp = &data->args;
9080 msg.rpc_resp = &data->res;
9081 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1);
9082 if (privileged)
9083 nfs4_set_sequence_privileged(&data->args.seq_args);
9084
9085 return rpc_run_task(&task_setup);
9086 }
9087
9088 /**
9089 * nfs41_free_stateid - perform a FREE_STATEID operation
9090 *
9091 * @server: server / transport on which to perform the operation
9092 * @stateid: state ID to release
9093 * @cred: credential
9094 * @is_recovery: set to true if this call needs to be privileged
9095 *
9096 * Note: this function is always asynchronous.
9097 */
9098 static int nfs41_free_stateid(struct nfs_server *server,
9099 const nfs4_stateid *stateid,
9100 struct rpc_cred *cred,
9101 bool is_recovery)
9102 {
9103 struct rpc_task *task;
9104
9105 task = _nfs41_free_stateid(server, stateid, cred, is_recovery);
9106 if (IS_ERR(task))
9107 return PTR_ERR(task);
9108 rpc_put_task(task);
9109 return 0;
9110 }
9111
9112 static void
9113 nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp)
9114 {
9115 struct rpc_cred *cred = lsp->ls_state->owner->so_cred;
9116
9117 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false);
9118 nfs4_free_lock_state(server, lsp);
9119 }
9120
9121 static bool nfs41_match_stateid(const nfs4_stateid *s1,
9122 const nfs4_stateid *s2)
9123 {
9124 if (s1->type != s2->type)
9125 return false;
9126
9127 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0)
9128 return false;
9129
9130 if (s1->seqid == s2->seqid)
9131 return true;
9132 if (s1->seqid == 0 || s2->seqid == 0)
9133 return true;
9134
9135 return false;
9136 }
9137
9138 #endif /* CONFIG_NFS_V4_1 */
9139
9140 static bool nfs4_match_stateid(const nfs4_stateid *s1,
9141 const nfs4_stateid *s2)
9142 {
9143 return nfs4_stateid_match(s1, s2);
9144 }
9145
9146
9147 static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = {
9148 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9149 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9150 .recover_open = nfs4_open_reclaim,
9151 .recover_lock = nfs4_lock_reclaim,
9152 .establish_clid = nfs4_init_clientid,
9153 .detect_trunking = nfs40_discover_server_trunking,
9154 };
9155
9156 #if defined(CONFIG_NFS_V4_1)
9157 static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = {
9158 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT,
9159 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT,
9160 .recover_open = nfs4_open_reclaim,
9161 .recover_lock = nfs4_lock_reclaim,
9162 .establish_clid = nfs41_init_clientid,
9163 .reclaim_complete = nfs41_proc_reclaim_complete,
9164 .detect_trunking = nfs41_discover_server_trunking,
9165 };
9166 #endif /* CONFIG_NFS_V4_1 */
9167
9168 static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = {
9169 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9170 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
9171 .recover_open = nfs40_open_expired,
9172 .recover_lock = nfs4_lock_expired,
9173 .establish_clid = nfs4_init_clientid,
9174 };
9175
9176 #if defined(CONFIG_NFS_V4_1)
9177 static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = {
9178 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE,
9179 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE,
9180 .recover_open = nfs41_open_expired,
9181 .recover_lock = nfs41_lock_expired,
9182 .establish_clid = nfs41_init_clientid,
9183 };
9184 #endif /* CONFIG_NFS_V4_1 */
9185
9186 static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = {
9187 .sched_state_renewal = nfs4_proc_async_renew,
9188 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked,
9189 .renew_lease = nfs4_proc_renew,
9190 };
9191
9192 #if defined(CONFIG_NFS_V4_1)
9193 static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = {
9194 .sched_state_renewal = nfs41_proc_async_sequence,
9195 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked,
9196 .renew_lease = nfs4_proc_sequence,
9197 };
9198 #endif
9199
9200 static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = {
9201 .get_locations = _nfs40_proc_get_locations,
9202 .fsid_present = _nfs40_proc_fsid_present,
9203 };
9204
9205 #if defined(CONFIG_NFS_V4_1)
9206 static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = {
9207 .get_locations = _nfs41_proc_get_locations,
9208 .fsid_present = _nfs41_proc_fsid_present,
9209 };
9210 #endif /* CONFIG_NFS_V4_1 */
9211
9212 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = {
9213 .minor_version = 0,
9214 .init_caps = NFS_CAP_READDIRPLUS
9215 | NFS_CAP_ATOMIC_OPEN
9216 | NFS_CAP_POSIX_LOCK,
9217 .init_client = nfs40_init_client,
9218 .shutdown_client = nfs40_shutdown_client,
9219 .match_stateid = nfs4_match_stateid,
9220 .find_root_sec = nfs4_find_root_sec,
9221 .free_lock_state = nfs4_release_lockowner,
9222 .test_and_free_expired = nfs40_test_and_free_expired_stateid,
9223 .alloc_seqid = nfs_alloc_seqid,
9224 .call_sync_ops = &nfs40_call_sync_ops,
9225 .reboot_recovery_ops = &nfs40_reboot_recovery_ops,
9226 .nograce_recovery_ops = &nfs40_nograce_recovery_ops,
9227 .state_renewal_ops = &nfs40_state_renewal_ops,
9228 .mig_recovery_ops = &nfs40_mig_recovery_ops,
9229 };
9230
9231 #if defined(CONFIG_NFS_V4_1)
9232 static struct nfs_seqid *
9233 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2)
9234 {
9235 return NULL;
9236 }
9237
9238 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = {
9239 .minor_version = 1,
9240 .init_caps = NFS_CAP_READDIRPLUS
9241 | NFS_CAP_ATOMIC_OPEN
9242 | NFS_CAP_POSIX_LOCK
9243 | NFS_CAP_STATEID_NFSV41
9244 | NFS_CAP_ATOMIC_OPEN_V1,
9245 .init_client = nfs41_init_client,
9246 .shutdown_client = nfs41_shutdown_client,
9247 .match_stateid = nfs41_match_stateid,
9248 .find_root_sec = nfs41_find_root_sec,
9249 .free_lock_state = nfs41_free_lock_state,
9250 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
9251 .alloc_seqid = nfs_alloc_no_seqid,
9252 .session_trunk = nfs4_test_session_trunk,
9253 .call_sync_ops = &nfs41_call_sync_ops,
9254 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9255 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9256 .state_renewal_ops = &nfs41_state_renewal_ops,
9257 .mig_recovery_ops = &nfs41_mig_recovery_ops,
9258 };
9259 #endif
9260
9261 #if defined(CONFIG_NFS_V4_2)
9262 static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = {
9263 .minor_version = 2,
9264 .init_caps = NFS_CAP_READDIRPLUS
9265 | NFS_CAP_ATOMIC_OPEN
9266 | NFS_CAP_POSIX_LOCK
9267 | NFS_CAP_STATEID_NFSV41
9268 | NFS_CAP_ATOMIC_OPEN_V1
9269 | NFS_CAP_ALLOCATE
9270 | NFS_CAP_COPY
9271 | NFS_CAP_DEALLOCATE
9272 | NFS_CAP_SEEK
9273 | NFS_CAP_LAYOUTSTATS
9274 | NFS_CAP_CLONE,
9275 .init_client = nfs41_init_client,
9276 .shutdown_client = nfs41_shutdown_client,
9277 .match_stateid = nfs41_match_stateid,
9278 .find_root_sec = nfs41_find_root_sec,
9279 .free_lock_state = nfs41_free_lock_state,
9280 .call_sync_ops = &nfs41_call_sync_ops,
9281 .test_and_free_expired = nfs41_test_and_free_expired_stateid,
9282 .alloc_seqid = nfs_alloc_no_seqid,
9283 .session_trunk = nfs4_test_session_trunk,
9284 .reboot_recovery_ops = &nfs41_reboot_recovery_ops,
9285 .nograce_recovery_ops = &nfs41_nograce_recovery_ops,
9286 .state_renewal_ops = &nfs41_state_renewal_ops,
9287 .mig_recovery_ops = &nfs41_mig_recovery_ops,
9288 };
9289 #endif
9290
9291 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = {
9292 [0] = &nfs_v4_0_minor_ops,
9293 #if defined(CONFIG_NFS_V4_1)
9294 [1] = &nfs_v4_1_minor_ops,
9295 #endif
9296 #if defined(CONFIG_NFS_V4_2)
9297 [2] = &nfs_v4_2_minor_ops,
9298 #endif
9299 };
9300
9301 static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size)
9302 {
9303 ssize_t error, error2;
9304
9305 error = generic_listxattr(dentry, list, size);
9306 if (error < 0)
9307 return error;
9308 if (list) {
9309 list += error;
9310 size -= error;
9311 }
9312
9313 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size);
9314 if (error2 < 0)
9315 return error2;
9316 return error + error2;
9317 }
9318
9319 static const struct inode_operations nfs4_dir_inode_operations = {
9320 .create = nfs_create,
9321 .lookup = nfs_lookup,
9322 .atomic_open = nfs_atomic_open,
9323 .link = nfs_link,
9324 .unlink = nfs_unlink,
9325 .symlink = nfs_symlink,
9326 .mkdir = nfs_mkdir,
9327 .rmdir = nfs_rmdir,
9328 .mknod = nfs_mknod,
9329 .rename = nfs_rename,
9330 .permission = nfs_permission,
9331 .getattr = nfs_getattr,
9332 .setattr = nfs_setattr,
9333 .listxattr = nfs4_listxattr,
9334 };
9335
9336 static const struct inode_operations nfs4_file_inode_operations = {
9337 .permission = nfs_permission,
9338 .getattr = nfs_getattr,
9339 .setattr = nfs_setattr,
9340 .listxattr = nfs4_listxattr,
9341 };
9342
9343 const struct nfs_rpc_ops nfs_v4_clientops = {
9344 .version = 4, /* protocol version */
9345 .dentry_ops = &nfs4_dentry_operations,
9346 .dir_inode_ops = &nfs4_dir_inode_operations,
9347 .file_inode_ops = &nfs4_file_inode_operations,
9348 .file_ops = &nfs4_file_operations,
9349 .getroot = nfs4_proc_get_root,
9350 .submount = nfs4_submount,
9351 .try_mount = nfs4_try_mount,
9352 .getattr = nfs4_proc_getattr,
9353 .setattr = nfs4_proc_setattr,
9354 .lookup = nfs4_proc_lookup,
9355 .access = nfs4_proc_access,
9356 .readlink = nfs4_proc_readlink,
9357 .create = nfs4_proc_create,
9358 .remove = nfs4_proc_remove,
9359 .unlink_setup = nfs4_proc_unlink_setup,
9360 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare,
9361 .unlink_done = nfs4_proc_unlink_done,
9362 .rename_setup = nfs4_proc_rename_setup,
9363 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare,
9364 .rename_done = nfs4_proc_rename_done,
9365 .link = nfs4_proc_link,
9366 .symlink = nfs4_proc_symlink,
9367 .mkdir = nfs4_proc_mkdir,
9368 .rmdir = nfs4_proc_remove,
9369 .readdir = nfs4_proc_readdir,
9370 .mknod = nfs4_proc_mknod,
9371 .statfs = nfs4_proc_statfs,
9372 .fsinfo = nfs4_proc_fsinfo,
9373 .pathconf = nfs4_proc_pathconf,
9374 .set_capabilities = nfs4_server_capabilities,
9375 .decode_dirent = nfs4_decode_dirent,
9376 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare,
9377 .read_setup = nfs4_proc_read_setup,
9378 .read_done = nfs4_read_done,
9379 .write_setup = nfs4_proc_write_setup,
9380 .write_done = nfs4_write_done,
9381 .commit_setup = nfs4_proc_commit_setup,
9382 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare,
9383 .commit_done = nfs4_commit_done,
9384 .lock = nfs4_proc_lock,
9385 .clear_acl_cache = nfs4_zap_acl_attr,
9386 .close_context = nfs4_close_context,
9387 .open_context = nfs4_atomic_open,
9388 .have_delegation = nfs4_have_delegation,
9389 .return_delegation = nfs4_inode_return_delegation,
9390 .alloc_client = nfs4_alloc_client,
9391 .init_client = nfs4_init_client,
9392 .free_client = nfs4_free_client,
9393 .create_server = nfs4_create_server,
9394 .clone_server = nfs_clone_server,
9395 };
9396
9397 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = {
9398 .name = XATTR_NAME_NFSV4_ACL,
9399 .list = nfs4_xattr_list_nfs4_acl,
9400 .get = nfs4_xattr_get_nfs4_acl,
9401 .set = nfs4_xattr_set_nfs4_acl,
9402 };
9403
9404 const struct xattr_handler *nfs4_xattr_handlers[] = {
9405 &nfs4_xattr_nfs4_acl_handler,
9406 #ifdef CONFIG_NFS_V4_SECURITY_LABEL
9407 &nfs4_xattr_nfs4_label_handler,
9408 #endif
9409 NULL
9410 };
9411
9412 /*
9413 * Local variables:
9414 * c-basic-offset: 8
9415 * End:
9416 */