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 /* 2315 * OPEN_EXPIRED: 2316 * reclaim state on the server after a network partition. 2317 * Assumes caller holds the appropriate lock 2318 */ 2319 static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) 2320 { 2321 struct nfs4_opendata *opendata; 2322 int ret; 2323 2324 opendata = nfs4_open_recoverdata_alloc(ctx, state, 2325 NFS4_OPEN_CLAIM_FH); 2326 if (IS_ERR(opendata)) 2327 return PTR_ERR(opendata); 2328 ret = nfs4_open_recover(opendata, state); 2329 if (ret == -ESTALE) 2330 d_drop(ctx->dentry); 2331 nfs4_opendata_put(opendata); 2332 return ret; 2333 } 2334 2335 static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) 2336 { 2337 struct nfs_server *server = NFS_SERVER(state->inode); 2338 struct nfs4_exception exception = { }; 2339 int err; 2340 2341 do { 2342 err = _nfs4_open_expired(ctx, state); 2343 trace_nfs4_open_expired(ctx, 0, err); 2344 if (nfs4_clear_cap_atomic_open_v1(server, err, &exception)) 2345 continue; 2346 switch (err) { 2347 default: 2348 goto out; 2349 case -NFS4ERR_GRACE: 2350 case -NFS4ERR_DELAY: 2351 nfs4_handle_exception(server, err, &exception); 2352 err = 0; 2353 } 2354 } while (exception.retry); 2355 out: 2356 return err; 2357 } 2358 2359 static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) 2360 { 2361 struct nfs_open_context *ctx; 2362 int ret; 2363 2364 ctx = nfs4_state_find_open_context(state); 2365 if (IS_ERR(ctx)) 2366 return -EAGAIN; 2367 ret = nfs4_do_open_expired(ctx, state); 2368 put_nfs_open_context(ctx); 2369 return ret; 2370 } 2371 2372 static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state, 2373 const nfs4_stateid *stateid) 2374 { 2375 nfs_remove_bad_delegation(state->inode, stateid); 2376 write_seqlock(&state->seqlock); 2377 nfs4_stateid_copy(&state->stateid, &state->open_stateid); 2378 write_sequnlock(&state->seqlock); 2379 clear_bit(NFS_DELEGATED_STATE, &state->flags); 2380 } 2381 2382 static void nfs40_clear_delegation_stateid(struct nfs4_state *state) 2383 { 2384 if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL) 2385 nfs_finish_clear_delegation_stateid(state, NULL); 2386 } 2387 2388 static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) 2389 { 2390 /* NFSv4.0 doesn't allow for delegation recovery on open expire */ 2391 nfs40_clear_delegation_stateid(state); 2392 return nfs4_open_expired(sp, state); 2393 } 2394 2395 static int nfs40_test_and_free_expired_stateid(struct nfs_server *server, 2396 nfs4_stateid *stateid, 2397 struct rpc_cred *cred) 2398 { 2399 return -NFS4ERR_BAD_STATEID; 2400 } 2401 2402 #if defined(CONFIG_NFS_V4_1) 2403 static int nfs41_test_and_free_expired_stateid(struct nfs_server *server, 2404 nfs4_stateid *stateid, 2405 struct rpc_cred *cred) 2406 { 2407 int status; 2408 2409 switch (stateid->type) { 2410 default: 2411 break; 2412 case NFS4_INVALID_STATEID_TYPE: 2413 case NFS4_SPECIAL_STATEID_TYPE: 2414 return -NFS4ERR_BAD_STATEID; 2415 case NFS4_REVOKED_STATEID_TYPE: 2416 goto out_free; 2417 } 2418 2419 status = nfs41_test_stateid(server, stateid, cred); 2420 switch (status) { 2421 case -NFS4ERR_EXPIRED: 2422 case -NFS4ERR_ADMIN_REVOKED: 2423 case -NFS4ERR_DELEG_REVOKED: 2424 break; 2425 default: 2426 return status; 2427 } 2428 out_free: 2429 /* Ack the revoked state to the server */ 2430 nfs41_free_stateid(server, stateid, cred, true); 2431 return -NFS4ERR_EXPIRED; 2432 } 2433 2434 static void nfs41_check_delegation_stateid(struct nfs4_state *state) 2435 { 2436 struct nfs_server *server = NFS_SERVER(state->inode); 2437 nfs4_stateid stateid; 2438 struct nfs_delegation *delegation; 2439 struct rpc_cred *cred; 2440 int status; 2441 2442 /* Get the delegation credential for use by test/free_stateid */ 2443 rcu_read_lock(); 2444 delegation = rcu_dereference(NFS_I(state->inode)->delegation); 2445 if (delegation == NULL) { 2446 rcu_read_unlock(); 2447 return; 2448 } 2449 2450 nfs4_stateid_copy(&stateid, &delegation->stateid); 2451 if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) { 2452 rcu_read_unlock(); 2453 nfs_finish_clear_delegation_stateid(state, &stateid); 2454 return; 2455 } 2456 2457 if (!test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags)) { 2458 rcu_read_unlock(); 2459 return; 2460 } 2461 2462 cred = get_rpccred(delegation->cred); 2463 rcu_read_unlock(); 2464 status = nfs41_test_and_free_expired_stateid(server, &stateid, cred); 2465 trace_nfs4_test_delegation_stateid(state, NULL, status); 2466 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) 2467 nfs_finish_clear_delegation_stateid(state, &stateid); 2468 2469 put_rpccred(cred); 2470 } 2471 2472 /** 2473 * nfs41_check_expired_locks - possibly free a lock stateid 2474 * 2475 * @state: NFSv4 state for an inode 2476 * 2477 * Returns NFS_OK if recovery for this stateid is now finished. 2478 * Otherwise a negative NFS4ERR value is returned. 2479 */ 2480 static int nfs41_check_expired_locks(struct nfs4_state *state) 2481 { 2482 int status, ret = NFS_OK; 2483 struct nfs4_lock_state *lsp, *prev = NULL; 2484 struct nfs_server *server = NFS_SERVER(state->inode); 2485 2486 if (!test_bit(LK_STATE_IN_USE, &state->flags)) 2487 goto out; 2488 2489 spin_lock(&state->state_lock); 2490 list_for_each_entry(lsp, &state->lock_states, ls_locks) { 2491 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { 2492 struct rpc_cred *cred = lsp->ls_state->owner->so_cred; 2493 2494 atomic_inc(&lsp->ls_count); 2495 spin_unlock(&state->state_lock); 2496 2497 nfs4_put_lock_state(prev); 2498 prev = lsp; 2499 2500 status = nfs41_test_and_free_expired_stateid(server, 2501 &lsp->ls_stateid, 2502 cred); 2503 trace_nfs4_test_lock_stateid(state, lsp, status); 2504 if (status == -NFS4ERR_EXPIRED || 2505 status == -NFS4ERR_BAD_STATEID) { 2506 clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); 2507 lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE; 2508 if (!recover_lost_locks) 2509 set_bit(NFS_LOCK_LOST, &lsp->ls_flags); 2510 } else if (status != NFS_OK) { 2511 ret = status; 2512 nfs4_put_lock_state(prev); 2513 goto out; 2514 } 2515 spin_lock(&state->state_lock); 2516 } 2517 } 2518 spin_unlock(&state->state_lock); 2519 nfs4_put_lock_state(prev); 2520 out: 2521 return ret; 2522 } 2523 2524 /** 2525 * nfs41_check_open_stateid - possibly free an open stateid 2526 * 2527 * @state: NFSv4 state for an inode 2528 * 2529 * Returns NFS_OK if recovery for this stateid is now finished. 2530 * Otherwise a negative NFS4ERR value is returned. 2531 */ 2532 static int nfs41_check_open_stateid(struct nfs4_state *state) 2533 { 2534 struct nfs_server *server = NFS_SERVER(state->inode); 2535 nfs4_stateid *stateid = &state->open_stateid; 2536 struct rpc_cred *cred = state->owner->so_cred; 2537 int status; 2538 2539 if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) { 2540 if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) { 2541 if (nfs4_have_delegation(state->inode, state->state)) 2542 return NFS_OK; 2543 return -NFS4ERR_OPENMODE; 2544 } 2545 return -NFS4ERR_BAD_STATEID; 2546 } 2547 status = nfs41_test_and_free_expired_stateid(server, stateid, cred); 2548 trace_nfs4_test_open_stateid(state, NULL, status); 2549 if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) { 2550 clear_bit(NFS_O_RDONLY_STATE, &state->flags); 2551 clear_bit(NFS_O_WRONLY_STATE, &state->flags); 2552 clear_bit(NFS_O_RDWR_STATE, &state->flags); 2553 clear_bit(NFS_OPEN_STATE, &state->flags); 2554 stateid->type = NFS4_INVALID_STATEID_TYPE; 2555 } 2556 if (status != NFS_OK) 2557 return status; 2558 if (nfs_open_stateid_recover_openmode(state)) 2559 return -NFS4ERR_OPENMODE; 2560 return NFS_OK; 2561 } 2562 2563 static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) 2564 { 2565 int status; 2566 2567 nfs41_check_delegation_stateid(state); 2568 status = nfs41_check_expired_locks(state); 2569 if (status != NFS_OK) 2570 return status; 2571 status = nfs41_check_open_stateid(state); 2572 if (status != NFS_OK) 2573 status = nfs4_open_expired(sp, state); 2574 return status; 2575 } 2576 #endif 2577 2578 /* 2579 * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-* 2580 * fields corresponding to attributes that were used to store the verifier. 2581 * Make sure we clobber those fields in the later setattr call 2582 */ 2583 static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, 2584 struct iattr *sattr, struct nfs4_label **label) 2585 { 2586 const u32 *attrset = opendata->o_res.attrset; 2587 2588 if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) && 2589 !(sattr->ia_valid & ATTR_ATIME_SET)) 2590 sattr->ia_valid |= ATTR_ATIME; 2591 2592 if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) && 2593 !(sattr->ia_valid & ATTR_MTIME_SET)) 2594 sattr->ia_valid |= ATTR_MTIME; 2595 2596 /* Except MODE, it seems harmless of setting twice. */ 2597 if (opendata->o_arg.createmode != NFS4_CREATE_EXCLUSIVE && 2598 attrset[1] & FATTR4_WORD1_MODE) 2599 sattr->ia_valid &= ~ATTR_MODE; 2600 2601 if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL) 2602 *label = NULL; 2603 } 2604 2605 static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata, 2606 fmode_t fmode, 2607 int flags, 2608 struct nfs_open_context *ctx) 2609 { 2610 struct nfs4_state_owner *sp = opendata->owner; 2611 struct nfs_server *server = sp->so_server; 2612 struct dentry *dentry; 2613 struct nfs4_state *state; 2614 unsigned int seq; 2615 int ret; 2616 2617 seq = raw_seqcount_begin(&sp->so_reclaim_seqcount); 2618 2619 ret = _nfs4_proc_open(opendata); 2620 if (ret != 0) 2621 goto out; 2622 2623 state = nfs4_opendata_to_nfs4_state(opendata); 2624 ret = PTR_ERR(state); 2625 if (IS_ERR(state)) 2626 goto out; 2627 if (server->caps & NFS_CAP_POSIX_LOCK) 2628 set_bit(NFS_STATE_POSIX_LOCKS, &state->flags); 2629 if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK) 2630 set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags); 2631 2632 dentry = opendata->dentry; 2633 if (d_really_is_negative(dentry)) { 2634 struct dentry *alias; 2635 d_drop(dentry); 2636 alias = d_exact_alias(dentry, state->inode); 2637 if (!alias) 2638 alias = d_splice_alias(igrab(state->inode), dentry); 2639 /* d_splice_alias() can't fail here - it's a non-directory */ 2640 if (alias) { 2641 dput(ctx->dentry); 2642 ctx->dentry = dentry = alias; 2643 } 2644 nfs_set_verifier(dentry, 2645 nfs_save_change_attribute(d_inode(opendata->dir))); 2646 } 2647 2648 ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags); 2649 if (ret != 0) 2650 goto out; 2651 2652 ctx->state = state; 2653 if (d_inode(dentry) == state->inode) { 2654 nfs_inode_attach_open_context(ctx); 2655 if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq)) 2656 nfs4_schedule_stateid_recovery(server, state); 2657 } 2658 out: 2659 return ret; 2660 } 2661 2662 /* 2663 * Returns a referenced nfs4_state 2664 */ 2665 static int _nfs4_do_open(struct inode *dir, 2666 struct nfs_open_context *ctx, 2667 int flags, 2668 struct iattr *sattr, 2669 struct nfs4_label *label, 2670 int *opened) 2671 { 2672 struct nfs4_state_owner *sp; 2673 struct nfs4_state *state = NULL; 2674 struct nfs_server *server = NFS_SERVER(dir); 2675 struct nfs4_opendata *opendata; 2676 struct dentry *dentry = ctx->dentry; 2677 struct rpc_cred *cred = ctx->cred; 2678 struct nfs4_threshold **ctx_th = &ctx->mdsthreshold; 2679 fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC); 2680 enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL; 2681 struct nfs4_label *olabel = NULL; 2682 int status; 2683 2684 /* Protect against reboot recovery conflicts */ 2685 status = -ENOMEM; 2686 sp = nfs4_get_state_owner(server, cred, GFP_KERNEL); 2687 if (sp == NULL) { 2688 dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n"); 2689 goto out_err; 2690 } 2691 status = nfs4_client_recover_expired_lease(server->nfs_client); 2692 if (status != 0) 2693 goto err_put_state_owner; 2694 if (d_really_is_positive(dentry)) 2695 nfs4_return_incompatible_delegation(d_inode(dentry), fmode); 2696 status = -ENOMEM; 2697 if (d_really_is_positive(dentry)) 2698 claim = NFS4_OPEN_CLAIM_FH; 2699 opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr, 2700 label, claim, GFP_KERNEL); 2701 if (opendata == NULL) 2702 goto err_put_state_owner; 2703 2704 if (label) { 2705 olabel = nfs4_label_alloc(server, GFP_KERNEL); 2706 if (IS_ERR(olabel)) { 2707 status = PTR_ERR(olabel); 2708 goto err_opendata_put; 2709 } 2710 } 2711 2712 if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) { 2713 if (!opendata->f_attr.mdsthreshold) { 2714 opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc(); 2715 if (!opendata->f_attr.mdsthreshold) 2716 goto err_free_label; 2717 } 2718 opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0]; 2719 } 2720 if (d_really_is_positive(dentry)) 2721 opendata->state = nfs4_get_open_state(d_inode(dentry), sp); 2722 2723 status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx); 2724 if (status != 0) 2725 goto err_free_label; 2726 state = ctx->state; 2727 2728 if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) && 2729 (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) { 2730 nfs4_exclusive_attrset(opendata, sattr, &label); 2731 /* 2732 * send create attributes which was not set by open 2733 * with an extra setattr. 2734 */ 2735 if (sattr->ia_valid & NFS4_VALID_ATTRS) { 2736 nfs_fattr_init(opendata->o_res.f_attr); 2737 status = nfs4_do_setattr(state->inode, cred, 2738 opendata->o_res.f_attr, sattr, 2739 ctx, label, olabel); 2740 if (status == 0) { 2741 nfs_setattr_update_inode(state->inode, sattr, 2742 opendata->o_res.f_attr); 2743 nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel); 2744 } 2745 } 2746 } 2747 if (opened && opendata->file_created) 2748 *opened |= FILE_CREATED; 2749 2750 if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) { 2751 *ctx_th = opendata->f_attr.mdsthreshold; 2752 opendata->f_attr.mdsthreshold = NULL; 2753 } 2754 2755 nfs4_label_free(olabel); 2756 2757 nfs4_opendata_put(opendata); 2758 nfs4_put_state_owner(sp); 2759 return 0; 2760 err_free_label: 2761 nfs4_label_free(olabel); 2762 err_opendata_put: 2763 nfs4_opendata_put(opendata); 2764 err_put_state_owner: 2765 nfs4_put_state_owner(sp); 2766 out_err: 2767 return status; 2768 } 2769 2770 2771 static struct nfs4_state *nfs4_do_open(struct inode *dir, 2772 struct nfs_open_context *ctx, 2773 int flags, 2774 struct iattr *sattr, 2775 struct nfs4_label *label, 2776 int *opened) 2777 { 2778 struct nfs_server *server = NFS_SERVER(dir); 2779 struct nfs4_exception exception = { }; 2780 struct nfs4_state *res; 2781 int status; 2782 2783 do { 2784 status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened); 2785 res = ctx->state; 2786 trace_nfs4_open_file(ctx, flags, status); 2787 if (status == 0) 2788 break; 2789 /* NOTE: BAD_SEQID means the server and client disagree about the 2790 * book-keeping w.r.t. state-changing operations 2791 * (OPEN/CLOSE/LOCK/LOCKU...) 2792 * It is actually a sign of a bug on the client or on the server. 2793 * 2794 * If we receive a BAD_SEQID error in the particular case of 2795 * doing an OPEN, we assume that nfs_increment_open_seqid() will 2796 * have unhashed the old state_owner for us, and that we can 2797 * therefore safely retry using a new one. We should still warn 2798 * the user though... 2799 */ 2800 if (status == -NFS4ERR_BAD_SEQID) { 2801 pr_warn_ratelimited("NFS: v4 server %s " 2802 " returned a bad sequence-id error!\n", 2803 NFS_SERVER(dir)->nfs_client->cl_hostname); 2804 exception.retry = 1; 2805 continue; 2806 } 2807 /* 2808 * BAD_STATEID on OPEN means that the server cancelled our 2809 * state before it received the OPEN_CONFIRM. 2810 * Recover by retrying the request as per the discussion 2811 * on Page 181 of RFC3530. 2812 */ 2813 if (status == -NFS4ERR_BAD_STATEID) { 2814 exception.retry = 1; 2815 continue; 2816 } 2817 if (status == -EAGAIN) { 2818 /* We must have found a delegation */ 2819 exception.retry = 1; 2820 continue; 2821 } 2822 if (nfs4_clear_cap_atomic_open_v1(server, status, &exception)) 2823 continue; 2824 res = ERR_PTR(nfs4_handle_exception(server, 2825 status, &exception)); 2826 } while (exception.retry); 2827 return res; 2828 } 2829 2830 static int _nfs4_do_setattr(struct inode *inode, 2831 struct nfs_setattrargs *arg, 2832 struct nfs_setattrres *res, 2833 struct rpc_cred *cred, 2834 struct nfs_open_context *ctx) 2835 { 2836 struct nfs_server *server = NFS_SERVER(inode); 2837 struct rpc_message msg = { 2838 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], 2839 .rpc_argp = arg, 2840 .rpc_resp = res, 2841 .rpc_cred = cred, 2842 }; 2843 struct rpc_cred *delegation_cred = NULL; 2844 unsigned long timestamp = jiffies; 2845 fmode_t fmode; 2846 bool truncate; 2847 int status; 2848 2849 nfs_fattr_init(res->fattr); 2850 2851 /* Servers should only apply open mode checks for file size changes */ 2852 truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false; 2853 fmode = truncate ? FMODE_WRITE : FMODE_READ; 2854 2855 if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) { 2856 /* Use that stateid */ 2857 } else if (truncate && ctx != NULL) { 2858 struct nfs_lock_context *l_ctx; 2859 if (!nfs4_valid_open_stateid(ctx->state)) 2860 return -EBADF; 2861 l_ctx = nfs_get_lock_context(ctx); 2862 if (IS_ERR(l_ctx)) 2863 return PTR_ERR(l_ctx); 2864 status = nfs4_select_rw_stateid(ctx->state, FMODE_WRITE, l_ctx, 2865 &arg->stateid, &delegation_cred); 2866 nfs_put_lock_context(l_ctx); 2867 if (status == -EIO) 2868 return -EBADF; 2869 } else 2870 nfs4_stateid_copy(&arg->stateid, &zero_stateid); 2871 if (delegation_cred) 2872 msg.rpc_cred = delegation_cred; 2873 2874 status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1); 2875 2876 put_rpccred(delegation_cred); 2877 if (status == 0 && ctx != NULL) 2878 renew_lease(server, timestamp); 2879 trace_nfs4_setattr(inode, &arg->stateid, status); 2880 return status; 2881 } 2882 2883 static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, 2884 struct nfs_fattr *fattr, struct iattr *sattr, 2885 struct nfs_open_context *ctx, struct nfs4_label *ilabel, 2886 struct nfs4_label *olabel) 2887 { 2888 struct nfs_server *server = NFS_SERVER(inode); 2889 struct nfs4_state *state = ctx ? ctx->state : NULL; 2890 struct nfs_setattrargs arg = { 2891 .fh = NFS_FH(inode), 2892 .iap = sattr, 2893 .server = server, 2894 .bitmask = server->attr_bitmask, 2895 .label = ilabel, 2896 }; 2897 struct nfs_setattrres res = { 2898 .fattr = fattr, 2899 .label = olabel, 2900 .server = server, 2901 }; 2902 struct nfs4_exception exception = { 2903 .state = state, 2904 .inode = inode, 2905 .stateid = &arg.stateid, 2906 }; 2907 int err; 2908 2909 arg.bitmask = nfs4_bitmask(server, ilabel); 2910 if (ilabel) 2911 arg.bitmask = nfs4_bitmask(server, olabel); 2912 2913 do { 2914 err = _nfs4_do_setattr(inode, &arg, &res, cred, ctx); 2915 switch (err) { 2916 case -NFS4ERR_OPENMODE: 2917 if (!(sattr->ia_valid & ATTR_SIZE)) { 2918 pr_warn_once("NFSv4: server %s is incorrectly " 2919 "applying open mode checks to " 2920 "a SETATTR that is not " 2921 "changing file size.\n", 2922 server->nfs_client->cl_hostname); 2923 } 2924 if (state && !(state->state & FMODE_WRITE)) { 2925 err = -EBADF; 2926 if (sattr->ia_valid & ATTR_OPEN) 2927 err = -EACCES; 2928 goto out; 2929 } 2930 } 2931 err = nfs4_handle_exception(server, err, &exception); 2932 } while (exception.retry); 2933 out: 2934 return err; 2935 } 2936 2937 static bool 2938 nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task) 2939 { 2940 if (inode == NULL || !nfs_have_layout(inode)) 2941 return false; 2942 2943 return pnfs_wait_on_layoutreturn(inode, task); 2944 } 2945 2946 struct nfs4_closedata { 2947 struct inode *inode; 2948 struct nfs4_state *state; 2949 struct nfs_closeargs arg; 2950 struct nfs_closeres res; 2951 struct { 2952 struct nfs4_layoutreturn_args arg; 2953 struct nfs4_layoutreturn_res res; 2954 struct nfs4_xdr_opaque_data ld_private; 2955 u32 roc_barrier; 2956 bool roc; 2957 } lr; 2958 struct nfs_fattr fattr; 2959 unsigned long timestamp; 2960 }; 2961 2962 static void nfs4_free_closedata(void *data) 2963 { 2964 struct nfs4_closedata *calldata = data; 2965 struct nfs4_state_owner *sp = calldata->state->owner; 2966 struct super_block *sb = calldata->state->inode->i_sb; 2967 2968 if (calldata->lr.roc) 2969 pnfs_roc_release(&calldata->lr.arg, &calldata->lr.res, 2970 calldata->res.lr_ret); 2971 nfs4_put_open_state(calldata->state); 2972 nfs_free_seqid(calldata->arg.seqid); 2973 nfs4_put_state_owner(sp); 2974 nfs_sb_deactive(sb); 2975 kfree(calldata); 2976 } 2977 2978 static void nfs4_close_done(struct rpc_task *task, void *data) 2979 { 2980 struct nfs4_closedata *calldata = data; 2981 struct nfs4_state *state = calldata->state; 2982 struct nfs_server *server = NFS_SERVER(calldata->inode); 2983 nfs4_stateid *res_stateid = NULL; 2984 2985 dprintk("%s: begin!\n", __func__); 2986 if (!nfs4_sequence_done(task, &calldata->res.seq_res)) 2987 return; 2988 trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status); 2989 2990 /* Handle Layoutreturn errors */ 2991 if (calldata->arg.lr_args && task->tk_status != 0) { 2992 switch (calldata->res.lr_ret) { 2993 default: 2994 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT; 2995 break; 2996 case 0: 2997 calldata->arg.lr_args = NULL; 2998 calldata->res.lr_res = NULL; 2999 break; 3000 case -NFS4ERR_ADMIN_REVOKED: 3001 case -NFS4ERR_DELEG_REVOKED: 3002 case -NFS4ERR_EXPIRED: 3003 case -NFS4ERR_BAD_STATEID: 3004 case -NFS4ERR_OLD_STATEID: 3005 case -NFS4ERR_UNKNOWN_LAYOUTTYPE: 3006 case -NFS4ERR_WRONG_CRED: 3007 calldata->arg.lr_args = NULL; 3008 calldata->res.lr_res = NULL; 3009 calldata->res.lr_ret = 0; 3010 rpc_restart_call_prepare(task); 3011 return; 3012 } 3013 } 3014 3015 /* hmm. we are done with the inode, and in the process of freeing 3016 * the state_owner. we keep this around to process errors 3017 */ 3018 switch (task->tk_status) { 3019 case 0: 3020 res_stateid = &calldata->res.stateid; 3021 renew_lease(server, calldata->timestamp); 3022 break; 3023 case -NFS4ERR_ACCESS: 3024 if (calldata->arg.bitmask != NULL) { 3025 calldata->arg.bitmask = NULL; 3026 calldata->res.fattr = NULL; 3027 task->tk_status = 0; 3028 rpc_restart_call_prepare(task); 3029 goto out_release; 3030 3031 } 3032 break; 3033 case -NFS4ERR_ADMIN_REVOKED: 3034 case -NFS4ERR_STALE_STATEID: 3035 case -NFS4ERR_EXPIRED: 3036 nfs4_free_revoked_stateid(server, 3037 &calldata->arg.stateid, 3038 task->tk_msg.rpc_cred); 3039 case -NFS4ERR_OLD_STATEID: 3040 case -NFS4ERR_BAD_STATEID: 3041 if (!nfs4_stateid_match(&calldata->arg.stateid, 3042 &state->open_stateid)) { 3043 rpc_restart_call_prepare(task); 3044 goto out_release; 3045 } 3046 if (calldata->arg.fmode == 0) 3047 break; 3048 default: 3049 if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) { 3050 rpc_restart_call_prepare(task); 3051 goto out_release; 3052 } 3053 } 3054 nfs_clear_open_stateid(state, &calldata->arg.stateid, 3055 res_stateid, calldata->arg.fmode); 3056 out_release: 3057 nfs_release_seqid(calldata->arg.seqid); 3058 nfs_refresh_inode(calldata->inode, &calldata->fattr); 3059 dprintk("%s: done, ret = %d!\n", __func__, task->tk_status); 3060 } 3061 3062 static void nfs4_close_prepare(struct rpc_task *task, void *data) 3063 { 3064 struct nfs4_closedata *calldata = data; 3065 struct nfs4_state *state = calldata->state; 3066 struct inode *inode = calldata->inode; 3067 bool is_rdonly, is_wronly, is_rdwr; 3068 int call_close = 0; 3069 3070 dprintk("%s: begin!\n", __func__); 3071 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) 3072 goto out_wait; 3073 3074 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE]; 3075 spin_lock(&state->owner->so_lock); 3076 is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags); 3077 is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags); 3078 is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags); 3079 nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid); 3080 /* Calculate the change in open mode */ 3081 calldata->arg.fmode = 0; 3082 if (state->n_rdwr == 0) { 3083 if (state->n_rdonly == 0) 3084 call_close |= is_rdonly; 3085 else if (is_rdonly) 3086 calldata->arg.fmode |= FMODE_READ; 3087 if (state->n_wronly == 0) 3088 call_close |= is_wronly; 3089 else if (is_wronly) 3090 calldata->arg.fmode |= FMODE_WRITE; 3091 if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE)) 3092 call_close |= is_rdwr; 3093 } else if (is_rdwr) 3094 calldata->arg.fmode |= FMODE_READ|FMODE_WRITE; 3095 3096 if (!nfs4_valid_open_stateid(state) || 3097 test_bit(NFS_OPEN_STATE, &state->flags) == 0) 3098 call_close = 0; 3099 spin_unlock(&state->owner->so_lock); 3100 3101 if (!call_close) { 3102 /* Note: exit _without_ calling nfs4_close_done */ 3103 goto out_no_action; 3104 } 3105 3106 if (!calldata->lr.roc && nfs4_wait_on_layoutreturn(inode, task)) { 3107 nfs_release_seqid(calldata->arg.seqid); 3108 goto out_wait; 3109 } 3110 3111 if (calldata->arg.fmode == 0) 3112 task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE]; 3113 3114 if (calldata->arg.fmode == 0 || calldata->arg.fmode == FMODE_READ) { 3115 /* Close-to-open cache consistency revalidation */ 3116 if (!nfs4_have_delegation(inode, FMODE_READ)) 3117 calldata->arg.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask; 3118 else 3119 calldata->arg.bitmask = NULL; 3120 } 3121 3122 calldata->arg.share_access = 3123 nfs4_map_atomic_open_share(NFS_SERVER(inode), 3124 calldata->arg.fmode, 0); 3125 3126 if (calldata->res.fattr == NULL) 3127 calldata->arg.bitmask = NULL; 3128 else if (calldata->arg.bitmask == NULL) 3129 calldata->res.fattr = NULL; 3130 calldata->timestamp = jiffies; 3131 if (nfs4_setup_sequence(NFS_SERVER(inode)->nfs_client, 3132 &calldata->arg.seq_args, 3133 &calldata->res.seq_res, 3134 task) != 0) 3135 nfs_release_seqid(calldata->arg.seqid); 3136 dprintk("%s: done!\n", __func__); 3137 return; 3138 out_no_action: 3139 task->tk_action = NULL; 3140 out_wait: 3141 nfs4_sequence_done(task, &calldata->res.seq_res); 3142 } 3143 3144 static const struct rpc_call_ops nfs4_close_ops = { 3145 .rpc_call_prepare = nfs4_close_prepare, 3146 .rpc_call_done = nfs4_close_done, 3147 .rpc_release = nfs4_free_closedata, 3148 }; 3149 3150 /* 3151 * It is possible for data to be read/written from a mem-mapped file 3152 * after the sys_close call (which hits the vfs layer as a flush). 3153 * This means that we can't safely call nfsv4 close on a file until 3154 * the inode is cleared. This in turn means that we are not good 3155 * NFSv4 citizens - we do not indicate to the server to update the file's 3156 * share state even when we are done with one of the three share 3157 * stateid's in the inode. 3158 * 3159 * NOTE: Caller must be holding the sp->so_owner semaphore! 3160 */ 3161 int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait) 3162 { 3163 struct nfs_server *server = NFS_SERVER(state->inode); 3164 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); 3165 struct nfs4_closedata *calldata; 3166 struct nfs4_state_owner *sp = state->owner; 3167 struct rpc_task *task; 3168 struct rpc_message msg = { 3169 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE], 3170 .rpc_cred = state->owner->so_cred, 3171 }; 3172 struct rpc_task_setup task_setup_data = { 3173 .rpc_client = server->client, 3174 .rpc_message = &msg, 3175 .callback_ops = &nfs4_close_ops, 3176 .workqueue = nfsiod_workqueue, 3177 .flags = RPC_TASK_ASYNC, 3178 }; 3179 int status = -ENOMEM; 3180 3181 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP, 3182 &task_setup_data.rpc_client, &msg); 3183 3184 calldata = kzalloc(sizeof(*calldata), gfp_mask); 3185 if (calldata == NULL) 3186 goto out; 3187 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1); 3188 calldata->inode = state->inode; 3189 calldata->state = state; 3190 calldata->arg.fh = NFS_FH(state->inode); 3191 /* Serialization for the sequence id */ 3192 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; 3193 calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask); 3194 if (IS_ERR(calldata->arg.seqid)) 3195 goto out_free_calldata; 3196 nfs_fattr_init(&calldata->fattr); 3197 calldata->arg.fmode = 0; 3198 calldata->lr.arg.ld_private = &calldata->lr.ld_private; 3199 calldata->res.fattr = &calldata->fattr; 3200 calldata->res.seqid = calldata->arg.seqid; 3201 calldata->res.server = server; 3202 calldata->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT; 3203 calldata->lr.roc = pnfs_roc(state->inode, 3204 &calldata->lr.arg, &calldata->lr.res, msg.rpc_cred); 3205 if (calldata->lr.roc) { 3206 calldata->arg.lr_args = &calldata->lr.arg; 3207 calldata->res.lr_res = &calldata->lr.res; 3208 } 3209 nfs_sb_active(calldata->inode->i_sb); 3210 3211 msg.rpc_argp = &calldata->arg; 3212 msg.rpc_resp = &calldata->res; 3213 task_setup_data.callback_data = calldata; 3214 task = rpc_run_task(&task_setup_data); 3215 if (IS_ERR(task)) 3216 return PTR_ERR(task); 3217 status = 0; 3218 if (wait) 3219 status = rpc_wait_for_completion_task(task); 3220 rpc_put_task(task); 3221 return status; 3222 out_free_calldata: 3223 kfree(calldata); 3224 out: 3225 nfs4_put_open_state(state); 3226 nfs4_put_state_owner(sp); 3227 return status; 3228 } 3229 3230 static struct inode * 3231 nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, 3232 int open_flags, struct iattr *attr, int *opened) 3233 { 3234 struct nfs4_state *state; 3235 struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL; 3236 3237 label = nfs4_label_init_security(dir, ctx->dentry, attr, &l); 3238 3239 /* Protect against concurrent sillydeletes */ 3240 state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened); 3241 3242 nfs4_label_release_security(label); 3243 3244 if (IS_ERR(state)) 3245 return ERR_CAST(state); 3246 return state->inode; 3247 } 3248 3249 static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync) 3250 { 3251 if (ctx->state == NULL) 3252 return; 3253 if (is_sync) 3254 nfs4_close_sync(ctx->state, ctx->mode); 3255 else 3256 nfs4_close_state(ctx->state, ctx->mode); 3257 } 3258 3259 #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL) 3260 #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL) 3261 #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_MODE_UMASK - 1UL) 3262 3263 static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) 3264 { 3265 u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion; 3266 struct nfs4_server_caps_arg args = { 3267 .fhandle = fhandle, 3268 .bitmask = bitmask, 3269 }; 3270 struct nfs4_server_caps_res res = {}; 3271 struct rpc_message msg = { 3272 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], 3273 .rpc_argp = &args, 3274 .rpc_resp = &res, 3275 }; 3276 int status; 3277 3278 bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS | 3279 FATTR4_WORD0_FH_EXPIRE_TYPE | 3280 FATTR4_WORD0_LINK_SUPPORT | 3281 FATTR4_WORD0_SYMLINK_SUPPORT | 3282 FATTR4_WORD0_ACLSUPPORT; 3283 if (minorversion) 3284 bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT; 3285 3286 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 3287 if (status == 0) { 3288 /* Sanity check the server answers */ 3289 switch (minorversion) { 3290 case 0: 3291 res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK; 3292 res.attr_bitmask[2] = 0; 3293 break; 3294 case 1: 3295 res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK; 3296 break; 3297 case 2: 3298 res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK; 3299 } 3300 memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask)); 3301 server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS| 3302 NFS_CAP_SYMLINKS|NFS_CAP_FILEID| 3303 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER| 3304 NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME| 3305 NFS_CAP_CTIME|NFS_CAP_MTIME| 3306 NFS_CAP_SECURITY_LABEL); 3307 if (res.attr_bitmask[0] & FATTR4_WORD0_ACL && 3308 res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL) 3309 server->caps |= NFS_CAP_ACLS; 3310 if (res.has_links != 0) 3311 server->caps |= NFS_CAP_HARDLINKS; 3312 if (res.has_symlinks != 0) 3313 server->caps |= NFS_CAP_SYMLINKS; 3314 if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID) 3315 server->caps |= NFS_CAP_FILEID; 3316 if (res.attr_bitmask[1] & FATTR4_WORD1_MODE) 3317 server->caps |= NFS_CAP_MODE; 3318 if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS) 3319 server->caps |= NFS_CAP_NLINK; 3320 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER) 3321 server->caps |= NFS_CAP_OWNER; 3322 if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP) 3323 server->caps |= NFS_CAP_OWNER_GROUP; 3324 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS) 3325 server->caps |= NFS_CAP_ATIME; 3326 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA) 3327 server->caps |= NFS_CAP_CTIME; 3328 if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY) 3329 server->caps |= NFS_CAP_MTIME; 3330 #ifdef CONFIG_NFS_V4_SECURITY_LABEL 3331 if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL) 3332 server->caps |= NFS_CAP_SECURITY_LABEL; 3333 #endif 3334 memcpy(server->attr_bitmask_nl, res.attr_bitmask, 3335 sizeof(server->attr_bitmask)); 3336 server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL; 3337 3338 memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask)); 3339 server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE; 3340 server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY; 3341 server->cache_consistency_bitmask[2] = 0; 3342 memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask, 3343 sizeof(server->exclcreat_bitmask)); 3344 server->acl_bitmask = res.acl_bitmask; 3345 server->fh_expire_type = res.fh_expire_type; 3346 } 3347 3348 return status; 3349 } 3350 3351 int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) 3352 { 3353 struct nfs4_exception exception = { }; 3354 int err; 3355 do { 3356 err = nfs4_handle_exception(server, 3357 _nfs4_server_capabilities(server, fhandle), 3358 &exception); 3359 } while (exception.retry); 3360 return err; 3361 } 3362 3363 static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, 3364 struct nfs_fsinfo *info) 3365 { 3366 u32 bitmask[3]; 3367 struct nfs4_lookup_root_arg args = { 3368 .bitmask = bitmask, 3369 }; 3370 struct nfs4_lookup_res res = { 3371 .server = server, 3372 .fattr = info->fattr, 3373 .fh = fhandle, 3374 }; 3375 struct rpc_message msg = { 3376 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT], 3377 .rpc_argp = &args, 3378 .rpc_resp = &res, 3379 }; 3380 3381 bitmask[0] = nfs4_fattr_bitmap[0]; 3382 bitmask[1] = nfs4_fattr_bitmap[1]; 3383 /* 3384 * Process the label in the upcoming getfattr 3385 */ 3386 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL; 3387 3388 nfs_fattr_init(info->fattr); 3389 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 3390 } 3391 3392 static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, 3393 struct nfs_fsinfo *info) 3394 { 3395 struct nfs4_exception exception = { }; 3396 int err; 3397 do { 3398 err = _nfs4_lookup_root(server, fhandle, info); 3399 trace_nfs4_lookup_root(server, fhandle, info->fattr, err); 3400 switch (err) { 3401 case 0: 3402 case -NFS4ERR_WRONGSEC: 3403 goto out; 3404 default: 3405 err = nfs4_handle_exception(server, err, &exception); 3406 } 3407 } while (exception.retry); 3408 out: 3409 return err; 3410 } 3411 3412 static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, 3413 struct nfs_fsinfo *info, rpc_authflavor_t flavor) 3414 { 3415 struct rpc_auth_create_args auth_args = { 3416 .pseudoflavor = flavor, 3417 }; 3418 struct rpc_auth *auth; 3419 3420 auth = rpcauth_create(&auth_args, server->client); 3421 if (IS_ERR(auth)) 3422 return -EACCES; 3423 return nfs4_lookup_root(server, fhandle, info); 3424 } 3425 3426 /* 3427 * Retry pseudoroot lookup with various security flavors. We do this when: 3428 * 3429 * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC 3430 * NFSv4.1: the server does not support the SECINFO_NO_NAME operation 3431 * 3432 * Returns zero on success, or a negative NFS4ERR value, or a 3433 * negative errno value. 3434 */ 3435 static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, 3436 struct nfs_fsinfo *info) 3437 { 3438 /* Per 3530bis 15.33.5 */ 3439 static const rpc_authflavor_t flav_array[] = { 3440 RPC_AUTH_GSS_KRB5P, 3441 RPC_AUTH_GSS_KRB5I, 3442 RPC_AUTH_GSS_KRB5, 3443 RPC_AUTH_UNIX, /* courtesy */ 3444 RPC_AUTH_NULL, 3445 }; 3446 int status = -EPERM; 3447 size_t i; 3448 3449 if (server->auth_info.flavor_len > 0) { 3450 /* try each flavor specified by user */ 3451 for (i = 0; i < server->auth_info.flavor_len; i++) { 3452 status = nfs4_lookup_root_sec(server, fhandle, info, 3453 server->auth_info.flavors[i]); 3454 if (status == -NFS4ERR_WRONGSEC || status == -EACCES) 3455 continue; 3456 break; 3457 } 3458 } else { 3459 /* no flavors specified by user, try default list */ 3460 for (i = 0; i < ARRAY_SIZE(flav_array); i++) { 3461 status = nfs4_lookup_root_sec(server, fhandle, info, 3462 flav_array[i]); 3463 if (status == -NFS4ERR_WRONGSEC || status == -EACCES) 3464 continue; 3465 break; 3466 } 3467 } 3468 3469 /* 3470 * -EACCESS could mean that the user doesn't have correct permissions 3471 * to access the mount. It could also mean that we tried to mount 3472 * with a gss auth flavor, but rpc.gssd isn't running. Either way, 3473 * existing mount programs don't handle -EACCES very well so it should 3474 * be mapped to -EPERM instead. 3475 */ 3476 if (status == -EACCES) 3477 status = -EPERM; 3478 return status; 3479 } 3480 3481 /** 3482 * nfs4_proc_get_rootfh - get file handle for server's pseudoroot 3483 * @server: initialized nfs_server handle 3484 * @fhandle: we fill in the pseudo-fs root file handle 3485 * @info: we fill in an FSINFO struct 3486 * @auth_probe: probe the auth flavours 3487 * 3488 * Returns zero on success, or a negative errno. 3489 */ 3490 int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle, 3491 struct nfs_fsinfo *info, 3492 bool auth_probe) 3493 { 3494 int status = 0; 3495 3496 if (!auth_probe) 3497 status = nfs4_lookup_root(server, fhandle, info); 3498 3499 if (auth_probe || status == NFS4ERR_WRONGSEC) 3500 status = server->nfs_client->cl_mvops->find_root_sec(server, 3501 fhandle, info); 3502 3503 if (status == 0) 3504 status = nfs4_server_capabilities(server, fhandle); 3505 if (status == 0) 3506 status = nfs4_do_fsinfo(server, fhandle, info); 3507 3508 return nfs4_map_errors(status); 3509 } 3510 3511 static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh, 3512 struct nfs_fsinfo *info) 3513 { 3514 int error; 3515 struct nfs_fattr *fattr = info->fattr; 3516 struct nfs4_label *label = NULL; 3517 3518 error = nfs4_server_capabilities(server, mntfh); 3519 if (error < 0) { 3520 dprintk("nfs4_get_root: getcaps error = %d\n", -error); 3521 return error; 3522 } 3523 3524 label = nfs4_label_alloc(server, GFP_KERNEL); 3525 if (IS_ERR(label)) 3526 return PTR_ERR(label); 3527 3528 error = nfs4_proc_getattr(server, mntfh, fattr, label); 3529 if (error < 0) { 3530 dprintk("nfs4_get_root: getattr error = %d\n", -error); 3531 goto err_free_label; 3532 } 3533 3534 if (fattr->valid & NFS_ATTR_FATTR_FSID && 3535 !nfs_fsid_equal(&server->fsid, &fattr->fsid)) 3536 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid)); 3537 3538 err_free_label: 3539 nfs4_label_free(label); 3540 3541 return error; 3542 } 3543 3544 /* 3545 * Get locations and (maybe) other attributes of a referral. 3546 * Note that we'll actually follow the referral later when 3547 * we detect fsid mismatch in inode revalidation 3548 */ 3549 static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir, 3550 const struct qstr *name, struct nfs_fattr *fattr, 3551 struct nfs_fh *fhandle) 3552 { 3553 int status = -ENOMEM; 3554 struct page *page = NULL; 3555 struct nfs4_fs_locations *locations = NULL; 3556 3557 page = alloc_page(GFP_KERNEL); 3558 if (page == NULL) 3559 goto out; 3560 locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL); 3561 if (locations == NULL) 3562 goto out; 3563 3564 status = nfs4_proc_fs_locations(client, dir, name, locations, page); 3565 if (status != 0) 3566 goto out; 3567 3568 /* 3569 * If the fsid didn't change, this is a migration event, not a 3570 * referral. Cause us to drop into the exception handler, which 3571 * will kick off migration recovery. 3572 */ 3573 if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) { 3574 dprintk("%s: server did not return a different fsid for" 3575 " a referral at %s\n", __func__, name->name); 3576 status = -NFS4ERR_MOVED; 3577 goto out; 3578 } 3579 /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */ 3580 nfs_fixup_referral_attributes(&locations->fattr); 3581 3582 /* replace the lookup nfs_fattr with the locations nfs_fattr */ 3583 memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr)); 3584 memset(fhandle, 0, sizeof(struct nfs_fh)); 3585 out: 3586 if (page) 3587 __free_page(page); 3588 kfree(locations); 3589 return status; 3590 } 3591 3592 static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, 3593 struct nfs_fattr *fattr, struct nfs4_label *label) 3594 { 3595 struct nfs4_getattr_arg args = { 3596 .fh = fhandle, 3597 .bitmask = server->attr_bitmask, 3598 }; 3599 struct nfs4_getattr_res res = { 3600 .fattr = fattr, 3601 .label = label, 3602 .server = server, 3603 }; 3604 struct rpc_message msg = { 3605 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], 3606 .rpc_argp = &args, 3607 .rpc_resp = &res, 3608 }; 3609 3610 args.bitmask = nfs4_bitmask(server, label); 3611 3612 nfs_fattr_init(fattr); 3613 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 3614 } 3615 3616 static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, 3617 struct nfs_fattr *fattr, struct nfs4_label *label) 3618 { 3619 struct nfs4_exception exception = { }; 3620 int err; 3621 do { 3622 err = _nfs4_proc_getattr(server, fhandle, fattr, label); 3623 trace_nfs4_getattr(server, fhandle, fattr, err); 3624 err = nfs4_handle_exception(server, err, 3625 &exception); 3626 } while (exception.retry); 3627 return err; 3628 } 3629 3630 /* 3631 * The file is not closed if it is opened due to the a request to change 3632 * the size of the file. The open call will not be needed once the 3633 * VFS layer lookup-intents are implemented. 3634 * 3635 * Close is called when the inode is destroyed. 3636 * If we haven't opened the file for O_WRONLY, we 3637 * need to in the size_change case to obtain a stateid. 3638 * 3639 * Got race? 3640 * Because OPEN is always done by name in nfsv4, it is 3641 * possible that we opened a different file by the same 3642 * name. We can recognize this race condition, but we 3643 * can't do anything about it besides returning an error. 3644 * 3645 * This will be fixed with VFS changes (lookup-intent). 3646 */ 3647 static int 3648 nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, 3649 struct iattr *sattr) 3650 { 3651 struct inode *inode = d_inode(dentry); 3652 struct rpc_cred *cred = NULL; 3653 struct nfs_open_context *ctx = NULL; 3654 struct nfs4_label *label = NULL; 3655 int status; 3656 3657 if (pnfs_ld_layoutret_on_setattr(inode) && 3658 sattr->ia_valid & ATTR_SIZE && 3659 sattr->ia_size < i_size_read(inode)) 3660 pnfs_commit_and_return_layout(inode); 3661 3662 nfs_fattr_init(fattr); 3663 3664 /* Deal with open(O_TRUNC) */ 3665 if (sattr->ia_valid & ATTR_OPEN) 3666 sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME); 3667 3668 /* Optimization: if the end result is no change, don't RPC */ 3669 if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0) 3670 return 0; 3671 3672 /* Search for an existing open(O_WRITE) file */ 3673 if (sattr->ia_valid & ATTR_FILE) { 3674 3675 ctx = nfs_file_open_context(sattr->ia_file); 3676 if (ctx) 3677 cred = ctx->cred; 3678 } 3679 3680 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); 3681 if (IS_ERR(label)) 3682 return PTR_ERR(label); 3683 3684 status = nfs4_do_setattr(inode, cred, fattr, sattr, ctx, NULL, label); 3685 if (status == 0) { 3686 nfs_setattr_update_inode(inode, sattr, fattr); 3687 nfs_setsecurity(inode, fattr, label); 3688 } 3689 nfs4_label_free(label); 3690 return status; 3691 } 3692 3693 static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir, 3694 const struct qstr *name, struct nfs_fh *fhandle, 3695 struct nfs_fattr *fattr, struct nfs4_label *label) 3696 { 3697 struct nfs_server *server = NFS_SERVER(dir); 3698 int status; 3699 struct nfs4_lookup_arg args = { 3700 .bitmask = server->attr_bitmask, 3701 .dir_fh = NFS_FH(dir), 3702 .name = name, 3703 }; 3704 struct nfs4_lookup_res res = { 3705 .server = server, 3706 .fattr = fattr, 3707 .label = label, 3708 .fh = fhandle, 3709 }; 3710 struct rpc_message msg = { 3711 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP], 3712 .rpc_argp = &args, 3713 .rpc_resp = &res, 3714 }; 3715 3716 args.bitmask = nfs4_bitmask(server, label); 3717 3718 nfs_fattr_init(fattr); 3719 3720 dprintk("NFS call lookup %s\n", name->name); 3721 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0); 3722 dprintk("NFS reply lookup: %d\n", status); 3723 return status; 3724 } 3725 3726 static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr) 3727 { 3728 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | 3729 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT; 3730 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; 3731 fattr->nlink = 2; 3732 } 3733 3734 static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir, 3735 const struct qstr *name, struct nfs_fh *fhandle, 3736 struct nfs_fattr *fattr, struct nfs4_label *label) 3737 { 3738 struct nfs4_exception exception = { }; 3739 struct rpc_clnt *client = *clnt; 3740 int err; 3741 do { 3742 err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label); 3743 trace_nfs4_lookup(dir, name, err); 3744 switch (err) { 3745 case -NFS4ERR_BADNAME: 3746 err = -ENOENT; 3747 goto out; 3748 case -NFS4ERR_MOVED: 3749 err = nfs4_get_referral(client, dir, name, fattr, fhandle); 3750 if (err == -NFS4ERR_MOVED) 3751 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception); 3752 goto out; 3753 case -NFS4ERR_WRONGSEC: 3754 err = -EPERM; 3755 if (client != *clnt) 3756 goto out; 3757 client = nfs4_negotiate_security(client, dir, name); 3758 if (IS_ERR(client)) 3759 return PTR_ERR(client); 3760 3761 exception.retry = 1; 3762 break; 3763 default: 3764 err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception); 3765 } 3766 } while (exception.retry); 3767 3768 out: 3769 if (err == 0) 3770 *clnt = client; 3771 else if (client != *clnt) 3772 rpc_shutdown_client(client); 3773 3774 return err; 3775 } 3776 3777 static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name, 3778 struct nfs_fh *fhandle, struct nfs_fattr *fattr, 3779 struct nfs4_label *label) 3780 { 3781 int status; 3782 struct rpc_clnt *client = NFS_CLIENT(dir); 3783 3784 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label); 3785 if (client != NFS_CLIENT(dir)) { 3786 rpc_shutdown_client(client); 3787 nfs_fixup_secinfo_attributes(fattr); 3788 } 3789 return status; 3790 } 3791 3792 struct rpc_clnt * 3793 nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name, 3794 struct nfs_fh *fhandle, struct nfs_fattr *fattr) 3795 { 3796 struct rpc_clnt *client = NFS_CLIENT(dir); 3797 int status; 3798 3799 status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL); 3800 if (status < 0) 3801 return ERR_PTR(status); 3802 return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client; 3803 } 3804 3805 static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) 3806 { 3807 struct nfs_server *server = NFS_SERVER(inode); 3808 struct nfs4_accessargs args = { 3809 .fh = NFS_FH(inode), 3810 .bitmask = server->cache_consistency_bitmask, 3811 }; 3812 struct nfs4_accessres res = { 3813 .server = server, 3814 }; 3815 struct rpc_message msg = { 3816 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS], 3817 .rpc_argp = &args, 3818 .rpc_resp = &res, 3819 .rpc_cred = entry->cred, 3820 }; 3821 int mode = entry->mask; 3822 int status = 0; 3823 3824 /* 3825 * Determine which access bits we want to ask for... 3826 */ 3827 if (mode & MAY_READ) 3828 args.access |= NFS4_ACCESS_READ; 3829 if (S_ISDIR(inode->i_mode)) { 3830 if (mode & MAY_WRITE) 3831 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE; 3832 if (mode & MAY_EXEC) 3833 args.access |= NFS4_ACCESS_LOOKUP; 3834 } else { 3835 if (mode & MAY_WRITE) 3836 args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND; 3837 if (mode & MAY_EXEC) 3838 args.access |= NFS4_ACCESS_EXECUTE; 3839 } 3840 3841 res.fattr = nfs_alloc_fattr(); 3842 if (res.fattr == NULL) 3843 return -ENOMEM; 3844 3845 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 3846 if (!status) { 3847 nfs_access_set_mask(entry, res.access); 3848 nfs_refresh_inode(inode, res.fattr); 3849 } 3850 nfs_free_fattr(res.fattr); 3851 return status; 3852 } 3853 3854 static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) 3855 { 3856 struct nfs4_exception exception = { }; 3857 int err; 3858 do { 3859 err = _nfs4_proc_access(inode, entry); 3860 trace_nfs4_access(inode, err); 3861 err = nfs4_handle_exception(NFS_SERVER(inode), err, 3862 &exception); 3863 } while (exception.retry); 3864 return err; 3865 } 3866 3867 /* 3868 * TODO: For the time being, we don't try to get any attributes 3869 * along with any of the zero-copy operations READ, READDIR, 3870 * READLINK, WRITE. 3871 * 3872 * In the case of the first three, we want to put the GETATTR 3873 * after the read-type operation -- this is because it is hard 3874 * to predict the length of a GETATTR response in v4, and thus 3875 * align the READ data correctly. This means that the GETATTR 3876 * may end up partially falling into the page cache, and we should 3877 * shift it into the 'tail' of the xdr_buf before processing. 3878 * To do this efficiently, we need to know the total length 3879 * of data received, which doesn't seem to be available outside 3880 * of the RPC layer. 3881 * 3882 * In the case of WRITE, we also want to put the GETATTR after 3883 * the operation -- in this case because we want to make sure 3884 * we get the post-operation mtime and size. 3885 * 3886 * Both of these changes to the XDR layer would in fact be quite 3887 * minor, but I decided to leave them for a subsequent patch. 3888 */ 3889 static int _nfs4_proc_readlink(struct inode *inode, struct page *page, 3890 unsigned int pgbase, unsigned int pglen) 3891 { 3892 struct nfs4_readlink args = { 3893 .fh = NFS_FH(inode), 3894 .pgbase = pgbase, 3895 .pglen = pglen, 3896 .pages = &page, 3897 }; 3898 struct nfs4_readlink_res res; 3899 struct rpc_message msg = { 3900 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK], 3901 .rpc_argp = &args, 3902 .rpc_resp = &res, 3903 }; 3904 3905 return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0); 3906 } 3907 3908 static int nfs4_proc_readlink(struct inode *inode, struct page *page, 3909 unsigned int pgbase, unsigned int pglen) 3910 { 3911 struct nfs4_exception exception = { }; 3912 int err; 3913 do { 3914 err = _nfs4_proc_readlink(inode, page, pgbase, pglen); 3915 trace_nfs4_readlink(inode, err); 3916 err = nfs4_handle_exception(NFS_SERVER(inode), err, 3917 &exception); 3918 } while (exception.retry); 3919 return err; 3920 } 3921 3922 /* 3923 * This is just for mknod. open(O_CREAT) will always do ->open_context(). 3924 */ 3925 static int 3926 nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, 3927 int flags) 3928 { 3929 struct nfs_server *server = NFS_SERVER(dir); 3930 struct nfs4_label l, *ilabel = NULL; 3931 struct nfs_open_context *ctx; 3932 struct nfs4_state *state; 3933 int status = 0; 3934 3935 ctx = alloc_nfs_open_context(dentry, FMODE_READ, NULL); 3936 if (IS_ERR(ctx)) 3937 return PTR_ERR(ctx); 3938 3939 ilabel = nfs4_label_init_security(dir, dentry, sattr, &l); 3940 3941 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK)) 3942 sattr->ia_mode &= ~current_umask(); 3943 state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL); 3944 if (IS_ERR(state)) { 3945 status = PTR_ERR(state); 3946 goto out; 3947 } 3948 out: 3949 nfs4_label_release_security(ilabel); 3950 put_nfs_open_context(ctx); 3951 return status; 3952 } 3953 3954 static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name) 3955 { 3956 struct nfs_server *server = NFS_SERVER(dir); 3957 struct nfs_removeargs args = { 3958 .fh = NFS_FH(dir), 3959 .name = *name, 3960 }; 3961 struct nfs_removeres res = { 3962 .server = server, 3963 }; 3964 struct rpc_message msg = { 3965 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE], 3966 .rpc_argp = &args, 3967 .rpc_resp = &res, 3968 }; 3969 unsigned long timestamp = jiffies; 3970 int status; 3971 3972 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1); 3973 if (status == 0) 3974 update_changeattr(dir, &res.cinfo, timestamp); 3975 return status; 3976 } 3977 3978 static int nfs4_proc_remove(struct inode *dir, const struct qstr *name) 3979 { 3980 struct nfs4_exception exception = { }; 3981 int err; 3982 do { 3983 err = _nfs4_proc_remove(dir, name); 3984 trace_nfs4_remove(dir, name, err); 3985 err = nfs4_handle_exception(NFS_SERVER(dir), err, 3986 &exception); 3987 } while (exception.retry); 3988 return err; 3989 } 3990 3991 static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) 3992 { 3993 struct nfs_server *server = NFS_SERVER(dir); 3994 struct nfs_removeargs *args = msg->rpc_argp; 3995 struct nfs_removeres *res = msg->rpc_resp; 3996 3997 res->server = server; 3998 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE]; 3999 nfs4_init_sequence(&args->seq_args, &res->seq_res, 1); 4000 4001 nfs_fattr_init(res->dir_attr); 4002 } 4003 4004 static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) 4005 { 4006 nfs4_setup_sequence(NFS_SB(data->dentry->d_sb)->nfs_client, 4007 &data->args.seq_args, 4008 &data->res.seq_res, 4009 task); 4010 } 4011 4012 static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir) 4013 { 4014 struct nfs_unlinkdata *data = task->tk_calldata; 4015 struct nfs_removeres *res = &data->res; 4016 4017 if (!nfs4_sequence_done(task, &res->seq_res)) 4018 return 0; 4019 if (nfs4_async_handle_error(task, res->server, NULL, 4020 &data->timeout) == -EAGAIN) 4021 return 0; 4022 if (task->tk_status == 0) 4023 update_changeattr(dir, &res->cinfo, res->dir_attr->time_start); 4024 return 1; 4025 } 4026 4027 static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir) 4028 { 4029 struct nfs_server *server = NFS_SERVER(dir); 4030 struct nfs_renameargs *arg = msg->rpc_argp; 4031 struct nfs_renameres *res = msg->rpc_resp; 4032 4033 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME]; 4034 res->server = server; 4035 nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1); 4036 } 4037 4038 static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) 4039 { 4040 nfs4_setup_sequence(NFS_SERVER(data->old_dir)->nfs_client, 4041 &data->args.seq_args, 4042 &data->res.seq_res, 4043 task); 4044 } 4045 4046 static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir, 4047 struct inode *new_dir) 4048 { 4049 struct nfs_renamedata *data = task->tk_calldata; 4050 struct nfs_renameres *res = &data->res; 4051 4052 if (!nfs4_sequence_done(task, &res->seq_res)) 4053 return 0; 4054 if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN) 4055 return 0; 4056 4057 if (task->tk_status == 0) { 4058 update_changeattr(old_dir, &res->old_cinfo, res->old_fattr->time_start); 4059 if (new_dir != old_dir) 4060 update_changeattr(new_dir, &res->new_cinfo, res->new_fattr->time_start); 4061 } 4062 return 1; 4063 } 4064 4065 static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name) 4066 { 4067 struct nfs_server *server = NFS_SERVER(inode); 4068 struct nfs4_link_arg arg = { 4069 .fh = NFS_FH(inode), 4070 .dir_fh = NFS_FH(dir), 4071 .name = name, 4072 .bitmask = server->attr_bitmask, 4073 }; 4074 struct nfs4_link_res res = { 4075 .server = server, 4076 .label = NULL, 4077 }; 4078 struct rpc_message msg = { 4079 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK], 4080 .rpc_argp = &arg, 4081 .rpc_resp = &res, 4082 }; 4083 int status = -ENOMEM; 4084 4085 res.fattr = nfs_alloc_fattr(); 4086 if (res.fattr == NULL) 4087 goto out; 4088 4089 res.label = nfs4_label_alloc(server, GFP_KERNEL); 4090 if (IS_ERR(res.label)) { 4091 status = PTR_ERR(res.label); 4092 goto out; 4093 } 4094 arg.bitmask = nfs4_bitmask(server, res.label); 4095 4096 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); 4097 if (!status) { 4098 update_changeattr(dir, &res.cinfo, res.fattr->time_start); 4099 status = nfs_post_op_update_inode(inode, res.fattr); 4100 if (!status) 4101 nfs_setsecurity(inode, res.fattr, res.label); 4102 } 4103 4104 4105 nfs4_label_free(res.label); 4106 4107 out: 4108 nfs_free_fattr(res.fattr); 4109 return status; 4110 } 4111 4112 static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name) 4113 { 4114 struct nfs4_exception exception = { }; 4115 int err; 4116 do { 4117 err = nfs4_handle_exception(NFS_SERVER(inode), 4118 _nfs4_proc_link(inode, dir, name), 4119 &exception); 4120 } while (exception.retry); 4121 return err; 4122 } 4123 4124 struct nfs4_createdata { 4125 struct rpc_message msg; 4126 struct nfs4_create_arg arg; 4127 struct nfs4_create_res res; 4128 struct nfs_fh fh; 4129 struct nfs_fattr fattr; 4130 struct nfs4_label *label; 4131 }; 4132 4133 static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir, 4134 const struct qstr *name, struct iattr *sattr, u32 ftype) 4135 { 4136 struct nfs4_createdata *data; 4137 4138 data = kzalloc(sizeof(*data), GFP_KERNEL); 4139 if (data != NULL) { 4140 struct nfs_server *server = NFS_SERVER(dir); 4141 4142 data->label = nfs4_label_alloc(server, GFP_KERNEL); 4143 if (IS_ERR(data->label)) 4144 goto out_free; 4145 4146 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE]; 4147 data->msg.rpc_argp = &data->arg; 4148 data->msg.rpc_resp = &data->res; 4149 data->arg.dir_fh = NFS_FH(dir); 4150 data->arg.server = server; 4151 data->arg.name = name; 4152 data->arg.attrs = sattr; 4153 data->arg.ftype = ftype; 4154 data->arg.bitmask = nfs4_bitmask(server, data->label); 4155 data->arg.umask = current_umask(); 4156 data->res.server = server; 4157 data->res.fh = &data->fh; 4158 data->res.fattr = &data->fattr; 4159 data->res.label = data->label; 4160 nfs_fattr_init(data->res.fattr); 4161 } 4162 return data; 4163 out_free: 4164 kfree(data); 4165 return NULL; 4166 } 4167 4168 static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data) 4169 { 4170 int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg, 4171 &data->arg.seq_args, &data->res.seq_res, 1); 4172 if (status == 0) { 4173 update_changeattr(dir, &data->res.dir_cinfo, 4174 data->res.fattr->time_start); 4175 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label); 4176 } 4177 return status; 4178 } 4179 4180 static void nfs4_free_createdata(struct nfs4_createdata *data) 4181 { 4182 nfs4_label_free(data->label); 4183 kfree(data); 4184 } 4185 4186 static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, 4187 struct page *page, unsigned int len, struct iattr *sattr, 4188 struct nfs4_label *label) 4189 { 4190 struct nfs4_createdata *data; 4191 int status = -ENAMETOOLONG; 4192 4193 if (len > NFS4_MAXPATHLEN) 4194 goto out; 4195 4196 status = -ENOMEM; 4197 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK); 4198 if (data == NULL) 4199 goto out; 4200 4201 data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK]; 4202 data->arg.u.symlink.pages = &page; 4203 data->arg.u.symlink.len = len; 4204 data->arg.label = label; 4205 4206 status = nfs4_do_create(dir, dentry, data); 4207 4208 nfs4_free_createdata(data); 4209 out: 4210 return status; 4211 } 4212 4213 static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, 4214 struct page *page, unsigned int len, struct iattr *sattr) 4215 { 4216 struct nfs4_exception exception = { }; 4217 struct nfs4_label l, *label = NULL; 4218 int err; 4219 4220 label = nfs4_label_init_security(dir, dentry, sattr, &l); 4221 4222 do { 4223 err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label); 4224 trace_nfs4_symlink(dir, &dentry->d_name, err); 4225 err = nfs4_handle_exception(NFS_SERVER(dir), err, 4226 &exception); 4227 } while (exception.retry); 4228 4229 nfs4_label_release_security(label); 4230 return err; 4231 } 4232 4233 static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, 4234 struct iattr *sattr, struct nfs4_label *label) 4235 { 4236 struct nfs4_createdata *data; 4237 int status = -ENOMEM; 4238 4239 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR); 4240 if (data == NULL) 4241 goto out; 4242 4243 data->arg.label = label; 4244 status = nfs4_do_create(dir, dentry, data); 4245 4246 nfs4_free_createdata(data); 4247 out: 4248 return status; 4249 } 4250 4251 static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, 4252 struct iattr *sattr) 4253 { 4254 struct nfs_server *server = NFS_SERVER(dir); 4255 struct nfs4_exception exception = { }; 4256 struct nfs4_label l, *label = NULL; 4257 int err; 4258 4259 label = nfs4_label_init_security(dir, dentry, sattr, &l); 4260 4261 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK)) 4262 sattr->ia_mode &= ~current_umask(); 4263 do { 4264 err = _nfs4_proc_mkdir(dir, dentry, sattr, label); 4265 trace_nfs4_mkdir(dir, &dentry->d_name, err); 4266 err = nfs4_handle_exception(NFS_SERVER(dir), err, 4267 &exception); 4268 } while (exception.retry); 4269 nfs4_label_release_security(label); 4270 4271 return err; 4272 } 4273 4274 static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, 4275 u64 cookie, struct page **pages, unsigned int count, int plus) 4276 { 4277 struct inode *dir = d_inode(dentry); 4278 struct nfs4_readdir_arg args = { 4279 .fh = NFS_FH(dir), 4280 .pages = pages, 4281 .pgbase = 0, 4282 .count = count, 4283 .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask, 4284 .plus = plus, 4285 }; 4286 struct nfs4_readdir_res res; 4287 struct rpc_message msg = { 4288 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR], 4289 .rpc_argp = &args, 4290 .rpc_resp = &res, 4291 .rpc_cred = cred, 4292 }; 4293 int status; 4294 4295 dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__, 4296 dentry, 4297 (unsigned long long)cookie); 4298 nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args); 4299 res.pgbase = args.pgbase; 4300 status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0); 4301 if (status >= 0) { 4302 memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE); 4303 status += args.pgbase; 4304 } 4305 4306 nfs_invalidate_atime(dir); 4307 4308 dprintk("%s: returns %d\n", __func__, status); 4309 return status; 4310 } 4311 4312 static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, 4313 u64 cookie, struct page **pages, unsigned int count, int plus) 4314 { 4315 struct nfs4_exception exception = { }; 4316 int err; 4317 do { 4318 err = _nfs4_proc_readdir(dentry, cred, cookie, 4319 pages, count, plus); 4320 trace_nfs4_readdir(d_inode(dentry), err); 4321 err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err, 4322 &exception); 4323 } while (exception.retry); 4324 return err; 4325 } 4326 4327 static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, 4328 struct iattr *sattr, struct nfs4_label *label, dev_t rdev) 4329 { 4330 struct nfs4_createdata *data; 4331 int mode = sattr->ia_mode; 4332 int status = -ENOMEM; 4333 4334 data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK); 4335 if (data == NULL) 4336 goto out; 4337 4338 if (S_ISFIFO(mode)) 4339 data->arg.ftype = NF4FIFO; 4340 else if (S_ISBLK(mode)) { 4341 data->arg.ftype = NF4BLK; 4342 data->arg.u.device.specdata1 = MAJOR(rdev); 4343 data->arg.u.device.specdata2 = MINOR(rdev); 4344 } 4345 else if (S_ISCHR(mode)) { 4346 data->arg.ftype = NF4CHR; 4347 data->arg.u.device.specdata1 = MAJOR(rdev); 4348 data->arg.u.device.specdata2 = MINOR(rdev); 4349 } else if (!S_ISSOCK(mode)) { 4350 status = -EINVAL; 4351 goto out_free; 4352 } 4353 4354 data->arg.label = label; 4355 status = nfs4_do_create(dir, dentry, data); 4356 out_free: 4357 nfs4_free_createdata(data); 4358 out: 4359 return status; 4360 } 4361 4362 static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, 4363 struct iattr *sattr, dev_t rdev) 4364 { 4365 struct nfs_server *server = NFS_SERVER(dir); 4366 struct nfs4_exception exception = { }; 4367 struct nfs4_label l, *label = NULL; 4368 int err; 4369 4370 label = nfs4_label_init_security(dir, dentry, sattr, &l); 4371 4372 if (!(server->attr_bitmask[2] & FATTR4_WORD2_MODE_UMASK)) 4373 sattr->ia_mode &= ~current_umask(); 4374 do { 4375 err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev); 4376 trace_nfs4_mknod(dir, &dentry->d_name, err); 4377 err = nfs4_handle_exception(NFS_SERVER(dir), err, 4378 &exception); 4379 } while (exception.retry); 4380 4381 nfs4_label_release_security(label); 4382 4383 return err; 4384 } 4385 4386 static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, 4387 struct nfs_fsstat *fsstat) 4388 { 4389 struct nfs4_statfs_arg args = { 4390 .fh = fhandle, 4391 .bitmask = server->attr_bitmask, 4392 }; 4393 struct nfs4_statfs_res res = { 4394 .fsstat = fsstat, 4395 }; 4396 struct rpc_message msg = { 4397 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS], 4398 .rpc_argp = &args, 4399 .rpc_resp = &res, 4400 }; 4401 4402 nfs_fattr_init(fsstat->fattr); 4403 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 4404 } 4405 4406 static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat) 4407 { 4408 struct nfs4_exception exception = { }; 4409 int err; 4410 do { 4411 err = nfs4_handle_exception(server, 4412 _nfs4_proc_statfs(server, fhandle, fsstat), 4413 &exception); 4414 } while (exception.retry); 4415 return err; 4416 } 4417 4418 static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, 4419 struct nfs_fsinfo *fsinfo) 4420 { 4421 struct nfs4_fsinfo_arg args = { 4422 .fh = fhandle, 4423 .bitmask = server->attr_bitmask, 4424 }; 4425 struct nfs4_fsinfo_res res = { 4426 .fsinfo = fsinfo, 4427 }; 4428 struct rpc_message msg = { 4429 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO], 4430 .rpc_argp = &args, 4431 .rpc_resp = &res, 4432 }; 4433 4434 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 4435 } 4436 4437 static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) 4438 { 4439 struct nfs4_exception exception = { }; 4440 unsigned long now = jiffies; 4441 int err; 4442 4443 do { 4444 err = _nfs4_do_fsinfo(server, fhandle, fsinfo); 4445 trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); 4446 if (err == 0) { 4447 nfs4_set_lease_period(server->nfs_client, 4448 fsinfo->lease_time * HZ, 4449 now); 4450 break; 4451 } 4452 err = nfs4_handle_exception(server, err, &exception); 4453 } while (exception.retry); 4454 return err; 4455 } 4456 4457 static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) 4458 { 4459 int error; 4460 4461 nfs_fattr_init(fsinfo->fattr); 4462 error = nfs4_do_fsinfo(server, fhandle, fsinfo); 4463 if (error == 0) { 4464 /* block layout checks this! */ 4465 server->pnfs_blksize = fsinfo->blksize; 4466 set_pnfs_layoutdriver(server, fhandle, fsinfo); 4467 } 4468 4469 return error; 4470 } 4471 4472 static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, 4473 struct nfs_pathconf *pathconf) 4474 { 4475 struct nfs4_pathconf_arg args = { 4476 .fh = fhandle, 4477 .bitmask = server->attr_bitmask, 4478 }; 4479 struct nfs4_pathconf_res res = { 4480 .pathconf = pathconf, 4481 }; 4482 struct rpc_message msg = { 4483 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF], 4484 .rpc_argp = &args, 4485 .rpc_resp = &res, 4486 }; 4487 4488 /* None of the pathconf attributes are mandatory to implement */ 4489 if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) { 4490 memset(pathconf, 0, sizeof(*pathconf)); 4491 return 0; 4492 } 4493 4494 nfs_fattr_init(pathconf->fattr); 4495 return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 4496 } 4497 4498 static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, 4499 struct nfs_pathconf *pathconf) 4500 { 4501 struct nfs4_exception exception = { }; 4502 int err; 4503 4504 do { 4505 err = nfs4_handle_exception(server, 4506 _nfs4_proc_pathconf(server, fhandle, pathconf), 4507 &exception); 4508 } while (exception.retry); 4509 return err; 4510 } 4511 4512 int nfs4_set_rw_stateid(nfs4_stateid *stateid, 4513 const struct nfs_open_context *ctx, 4514 const struct nfs_lock_context *l_ctx, 4515 fmode_t fmode) 4516 { 4517 return nfs4_select_rw_stateid(ctx->state, fmode, l_ctx, stateid, NULL); 4518 } 4519 EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid); 4520 4521 static bool nfs4_stateid_is_current(nfs4_stateid *stateid, 4522 const struct nfs_open_context *ctx, 4523 const struct nfs_lock_context *l_ctx, 4524 fmode_t fmode) 4525 { 4526 nfs4_stateid current_stateid; 4527 4528 /* If the current stateid represents a lost lock, then exit */ 4529 if (nfs4_set_rw_stateid(¤t_stateid, ctx, l_ctx, fmode) == -EIO) 4530 return true; 4531 return nfs4_stateid_match(stateid, ¤t_stateid); 4532 } 4533 4534 static bool nfs4_error_stateid_expired(int err) 4535 { 4536 switch (err) { 4537 case -NFS4ERR_DELEG_REVOKED: 4538 case -NFS4ERR_ADMIN_REVOKED: 4539 case -NFS4ERR_BAD_STATEID: 4540 case -NFS4ERR_STALE_STATEID: 4541 case -NFS4ERR_OLD_STATEID: 4542 case -NFS4ERR_OPENMODE: 4543 case -NFS4ERR_EXPIRED: 4544 return true; 4545 } 4546 return false; 4547 } 4548 4549 static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr) 4550 { 4551 struct nfs_server *server = NFS_SERVER(hdr->inode); 4552 4553 trace_nfs4_read(hdr, task->tk_status); 4554 if (task->tk_status < 0) { 4555 struct nfs4_exception exception = { 4556 .inode = hdr->inode, 4557 .state = hdr->args.context->state, 4558 .stateid = &hdr->args.stateid, 4559 }; 4560 task->tk_status = nfs4_async_handle_exception(task, 4561 server, task->tk_status, &exception); 4562 if (exception.retry) { 4563 rpc_restart_call_prepare(task); 4564 return -EAGAIN; 4565 } 4566 } 4567 4568 if (task->tk_status > 0) 4569 renew_lease(server, hdr->timestamp); 4570 return 0; 4571 } 4572 4573 static bool nfs4_read_stateid_changed(struct rpc_task *task, 4574 struct nfs_pgio_args *args) 4575 { 4576 4577 if (!nfs4_error_stateid_expired(task->tk_status) || 4578 nfs4_stateid_is_current(&args->stateid, 4579 args->context, 4580 args->lock_context, 4581 FMODE_READ)) 4582 return false; 4583 rpc_restart_call_prepare(task); 4584 return true; 4585 } 4586 4587 static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) 4588 { 4589 4590 dprintk("--> %s\n", __func__); 4591 4592 if (!nfs4_sequence_done(task, &hdr->res.seq_res)) 4593 return -EAGAIN; 4594 if (nfs4_read_stateid_changed(task, &hdr->args)) 4595 return -EAGAIN; 4596 if (task->tk_status > 0) 4597 nfs_invalidate_atime(hdr->inode); 4598 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : 4599 nfs4_read_done_cb(task, hdr); 4600 } 4601 4602 static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr, 4603 struct rpc_message *msg) 4604 { 4605 hdr->timestamp = jiffies; 4606 if (!hdr->pgio_done_cb) 4607 hdr->pgio_done_cb = nfs4_read_done_cb; 4608 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ]; 4609 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0); 4610 } 4611 4612 static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task, 4613 struct nfs_pgio_header *hdr) 4614 { 4615 if (nfs4_setup_sequence(NFS_SERVER(hdr->inode)->nfs_client, 4616 &hdr->args.seq_args, 4617 &hdr->res.seq_res, 4618 task)) 4619 return 0; 4620 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context, 4621 hdr->args.lock_context, 4622 hdr->rw_ops->rw_mode) == -EIO) 4623 return -EIO; 4624 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) 4625 return -EIO; 4626 return 0; 4627 } 4628 4629 static int nfs4_write_done_cb(struct rpc_task *task, 4630 struct nfs_pgio_header *hdr) 4631 { 4632 struct inode *inode = hdr->inode; 4633 4634 trace_nfs4_write(hdr, task->tk_status); 4635 if (task->tk_status < 0) { 4636 struct nfs4_exception exception = { 4637 .inode = hdr->inode, 4638 .state = hdr->args.context->state, 4639 .stateid = &hdr->args.stateid, 4640 }; 4641 task->tk_status = nfs4_async_handle_exception(task, 4642 NFS_SERVER(inode), task->tk_status, 4643 &exception); 4644 if (exception.retry) { 4645 rpc_restart_call_prepare(task); 4646 return -EAGAIN; 4647 } 4648 } 4649 if (task->tk_status >= 0) { 4650 renew_lease(NFS_SERVER(inode), hdr->timestamp); 4651 nfs_writeback_update_inode(hdr); 4652 } 4653 return 0; 4654 } 4655 4656 static bool nfs4_write_stateid_changed(struct rpc_task *task, 4657 struct nfs_pgio_args *args) 4658 { 4659 4660 if (!nfs4_error_stateid_expired(task->tk_status) || 4661 nfs4_stateid_is_current(&args->stateid, 4662 args->context, 4663 args->lock_context, 4664 FMODE_WRITE)) 4665 return false; 4666 rpc_restart_call_prepare(task); 4667 return true; 4668 } 4669 4670 static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) 4671 { 4672 if (!nfs4_sequence_done(task, &hdr->res.seq_res)) 4673 return -EAGAIN; 4674 if (nfs4_write_stateid_changed(task, &hdr->args)) 4675 return -EAGAIN; 4676 return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : 4677 nfs4_write_done_cb(task, hdr); 4678 } 4679 4680 static 4681 bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr) 4682 { 4683 /* Don't request attributes for pNFS or O_DIRECT writes */ 4684 if (hdr->ds_clp != NULL || hdr->dreq != NULL) 4685 return false; 4686 /* Otherwise, request attributes if and only if we don't hold 4687 * a delegation 4688 */ 4689 return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0; 4690 } 4691 4692 static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr, 4693 struct rpc_message *msg) 4694 { 4695 struct nfs_server *server = NFS_SERVER(hdr->inode); 4696 4697 if (!nfs4_write_need_cache_consistency_data(hdr)) { 4698 hdr->args.bitmask = NULL; 4699 hdr->res.fattr = NULL; 4700 } else 4701 hdr->args.bitmask = server->cache_consistency_bitmask; 4702 4703 if (!hdr->pgio_done_cb) 4704 hdr->pgio_done_cb = nfs4_write_done_cb; 4705 hdr->res.server = server; 4706 hdr->timestamp = jiffies; 4707 4708 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE]; 4709 nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1); 4710 } 4711 4712 static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) 4713 { 4714 nfs4_setup_sequence(NFS_SERVER(data->inode)->nfs_client, 4715 &data->args.seq_args, 4716 &data->res.seq_res, 4717 task); 4718 } 4719 4720 static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data) 4721 { 4722 struct inode *inode = data->inode; 4723 4724 trace_nfs4_commit(data, task->tk_status); 4725 if (nfs4_async_handle_error(task, NFS_SERVER(inode), 4726 NULL, NULL) == -EAGAIN) { 4727 rpc_restart_call_prepare(task); 4728 return -EAGAIN; 4729 } 4730 return 0; 4731 } 4732 4733 static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data) 4734 { 4735 if (!nfs4_sequence_done(task, &data->res.seq_res)) 4736 return -EAGAIN; 4737 return data->commit_done_cb(task, data); 4738 } 4739 4740 static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg) 4741 { 4742 struct nfs_server *server = NFS_SERVER(data->inode); 4743 4744 if (data->commit_done_cb == NULL) 4745 data->commit_done_cb = nfs4_commit_done_cb; 4746 data->res.server = server; 4747 msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT]; 4748 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); 4749 } 4750 4751 struct nfs4_renewdata { 4752 struct nfs_client *client; 4753 unsigned long timestamp; 4754 }; 4755 4756 /* 4757 * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special 4758 * standalone procedure for queueing an asynchronous RENEW. 4759 */ 4760 static void nfs4_renew_release(void *calldata) 4761 { 4762 struct nfs4_renewdata *data = calldata; 4763 struct nfs_client *clp = data->client; 4764 4765 if (atomic_read(&clp->cl_count) > 1) 4766 nfs4_schedule_state_renewal(clp); 4767 nfs_put_client(clp); 4768 kfree(data); 4769 } 4770 4771 static void nfs4_renew_done(struct rpc_task *task, void *calldata) 4772 { 4773 struct nfs4_renewdata *data = calldata; 4774 struct nfs_client *clp = data->client; 4775 unsigned long timestamp = data->timestamp; 4776 4777 trace_nfs4_renew_async(clp, task->tk_status); 4778 switch (task->tk_status) { 4779 case 0: 4780 break; 4781 case -NFS4ERR_LEASE_MOVED: 4782 nfs4_schedule_lease_moved_recovery(clp); 4783 break; 4784 default: 4785 /* Unless we're shutting down, schedule state recovery! */ 4786 if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0) 4787 return; 4788 if (task->tk_status != NFS4ERR_CB_PATH_DOWN) { 4789 nfs4_schedule_lease_recovery(clp); 4790 return; 4791 } 4792 nfs4_schedule_path_down_recovery(clp); 4793 } 4794 do_renew_lease(clp, timestamp); 4795 } 4796 4797 static const struct rpc_call_ops nfs4_renew_ops = { 4798 .rpc_call_done = nfs4_renew_done, 4799 .rpc_release = nfs4_renew_release, 4800 }; 4801 4802 static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) 4803 { 4804 struct rpc_message msg = { 4805 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], 4806 .rpc_argp = clp, 4807 .rpc_cred = cred, 4808 }; 4809 struct nfs4_renewdata *data; 4810 4811 if (renew_flags == 0) 4812 return 0; 4813 if (!atomic_inc_not_zero(&clp->cl_count)) 4814 return -EIO; 4815 data = kmalloc(sizeof(*data), GFP_NOFS); 4816 if (data == NULL) 4817 return -ENOMEM; 4818 data->client = clp; 4819 data->timestamp = jiffies; 4820 return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT, 4821 &nfs4_renew_ops, data); 4822 } 4823 4824 static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred) 4825 { 4826 struct rpc_message msg = { 4827 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], 4828 .rpc_argp = clp, 4829 .rpc_cred = cred, 4830 }; 4831 unsigned long now = jiffies; 4832 int status; 4833 4834 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); 4835 if (status < 0) 4836 return status; 4837 do_renew_lease(clp, now); 4838 return 0; 4839 } 4840 4841 static inline int nfs4_server_supports_acls(struct nfs_server *server) 4842 { 4843 return server->caps & NFS_CAP_ACLS; 4844 } 4845 4846 /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that 4847 * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on 4848 * the stack. 4849 */ 4850 #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE) 4851 4852 static int buf_to_pages_noslab(const void *buf, size_t buflen, 4853 struct page **pages) 4854 { 4855 struct page *newpage, **spages; 4856 int rc = 0; 4857 size_t len; 4858 spages = pages; 4859 4860 do { 4861 len = min_t(size_t, PAGE_SIZE, buflen); 4862 newpage = alloc_page(GFP_KERNEL); 4863 4864 if (newpage == NULL) 4865 goto unwind; 4866 memcpy(page_address(newpage), buf, len); 4867 buf += len; 4868 buflen -= len; 4869 *pages++ = newpage; 4870 rc++; 4871 } while (buflen != 0); 4872 4873 return rc; 4874 4875 unwind: 4876 for(; rc > 0; rc--) 4877 __free_page(spages[rc-1]); 4878 return -ENOMEM; 4879 } 4880 4881 struct nfs4_cached_acl { 4882 int cached; 4883 size_t len; 4884 char data[0]; 4885 }; 4886 4887 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl) 4888 { 4889 struct nfs_inode *nfsi = NFS_I(inode); 4890 4891 spin_lock(&inode->i_lock); 4892 kfree(nfsi->nfs4_acl); 4893 nfsi->nfs4_acl = acl; 4894 spin_unlock(&inode->i_lock); 4895 } 4896 4897 static void nfs4_zap_acl_attr(struct inode *inode) 4898 { 4899 nfs4_set_cached_acl(inode, NULL); 4900 } 4901 4902 static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen) 4903 { 4904 struct nfs_inode *nfsi = NFS_I(inode); 4905 struct nfs4_cached_acl *acl; 4906 int ret = -ENOENT; 4907 4908 spin_lock(&inode->i_lock); 4909 acl = nfsi->nfs4_acl; 4910 if (acl == NULL) 4911 goto out; 4912 if (buf == NULL) /* user is just asking for length */ 4913 goto out_len; 4914 if (acl->cached == 0) 4915 goto out; 4916 ret = -ERANGE; /* see getxattr(2) man page */ 4917 if (acl->len > buflen) 4918 goto out; 4919 memcpy(buf, acl->data, acl->len); 4920 out_len: 4921 ret = acl->len; 4922 out: 4923 spin_unlock(&inode->i_lock); 4924 return ret; 4925 } 4926 4927 static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len) 4928 { 4929 struct nfs4_cached_acl *acl; 4930 size_t buflen = sizeof(*acl) + acl_len; 4931 4932 if (buflen <= PAGE_SIZE) { 4933 acl = kmalloc(buflen, GFP_KERNEL); 4934 if (acl == NULL) 4935 goto out; 4936 acl->cached = 1; 4937 _copy_from_pages(acl->data, pages, pgbase, acl_len); 4938 } else { 4939 acl = kmalloc(sizeof(*acl), GFP_KERNEL); 4940 if (acl == NULL) 4941 goto out; 4942 acl->cached = 0; 4943 } 4944 acl->len = acl_len; 4945 out: 4946 nfs4_set_cached_acl(inode, acl); 4947 } 4948 4949 /* 4950 * The getxattr API returns the required buffer length when called with a 4951 * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating 4952 * the required buf. On a NULL buf, we send a page of data to the server 4953 * guessing that the ACL request can be serviced by a page. If so, we cache 4954 * up to the page of ACL data, and the 2nd call to getxattr is serviced by 4955 * the cache. If not so, we throw away the page, and cache the required 4956 * length. The next getxattr call will then produce another round trip to 4957 * the server, this time with the input buf of the required size. 4958 */ 4959 static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) 4960 { 4961 struct page *pages[NFS4ACL_MAXPAGES] = {NULL, }; 4962 struct nfs_getaclargs args = { 4963 .fh = NFS_FH(inode), 4964 .acl_pages = pages, 4965 .acl_len = buflen, 4966 }; 4967 struct nfs_getaclres res = { 4968 .acl_len = buflen, 4969 }; 4970 struct rpc_message msg = { 4971 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL], 4972 .rpc_argp = &args, 4973 .rpc_resp = &res, 4974 }; 4975 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); 4976 int ret = -ENOMEM, i; 4977 4978 /* As long as we're doing a round trip to the server anyway, 4979 * let's be prepared for a page of acl data. */ 4980 if (npages == 0) 4981 npages = 1; 4982 if (npages > ARRAY_SIZE(pages)) 4983 return -ERANGE; 4984 4985 for (i = 0; i < npages; i++) { 4986 pages[i] = alloc_page(GFP_KERNEL); 4987 if (!pages[i]) 4988 goto out_free; 4989 } 4990 4991 /* for decoding across pages */ 4992 res.acl_scratch = alloc_page(GFP_KERNEL); 4993 if (!res.acl_scratch) 4994 goto out_free; 4995 4996 args.acl_len = npages * PAGE_SIZE; 4997 4998 dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n", 4999 __func__, buf, buflen, npages, args.acl_len); 5000 ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), 5001 &msg, &args.seq_args, &res.seq_res, 0); 5002 if (ret) 5003 goto out_free; 5004 5005 /* Handle the case where the passed-in buffer is too short */ 5006 if (res.acl_flags & NFS4_ACL_TRUNC) { 5007 /* Did the user only issue a request for the acl length? */ 5008 if (buf == NULL) 5009 goto out_ok; 5010 ret = -ERANGE; 5011 goto out_free; 5012 } 5013 nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len); 5014 if (buf) { 5015 if (res.acl_len > buflen) { 5016 ret = -ERANGE; 5017 goto out_free; 5018 } 5019 _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len); 5020 } 5021 out_ok: 5022 ret = res.acl_len; 5023 out_free: 5024 for (i = 0; i < npages; i++) 5025 if (pages[i]) 5026 __free_page(pages[i]); 5027 if (res.acl_scratch) 5028 __free_page(res.acl_scratch); 5029 return ret; 5030 } 5031 5032 static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) 5033 { 5034 struct nfs4_exception exception = { }; 5035 ssize_t ret; 5036 do { 5037 ret = __nfs4_get_acl_uncached(inode, buf, buflen); 5038 trace_nfs4_get_acl(inode, ret); 5039 if (ret >= 0) 5040 break; 5041 ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception); 5042 } while (exception.retry); 5043 return ret; 5044 } 5045 5046 static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen) 5047 { 5048 struct nfs_server *server = NFS_SERVER(inode); 5049 int ret; 5050 5051 if (!nfs4_server_supports_acls(server)) 5052 return -EOPNOTSUPP; 5053 ret = nfs_revalidate_inode(server, inode); 5054 if (ret < 0) 5055 return ret; 5056 if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL) 5057 nfs_zap_acl_cache(inode); 5058 ret = nfs4_read_cached_acl(inode, buf, buflen); 5059 if (ret != -ENOENT) 5060 /* -ENOENT is returned if there is no ACL or if there is an ACL 5061 * but no cached acl data, just the acl length */ 5062 return ret; 5063 return nfs4_get_acl_uncached(inode, buf, buflen); 5064 } 5065 5066 static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) 5067 { 5068 struct nfs_server *server = NFS_SERVER(inode); 5069 struct page *pages[NFS4ACL_MAXPAGES]; 5070 struct nfs_setaclargs arg = { 5071 .fh = NFS_FH(inode), 5072 .acl_pages = pages, 5073 .acl_len = buflen, 5074 }; 5075 struct nfs_setaclres res; 5076 struct rpc_message msg = { 5077 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL], 5078 .rpc_argp = &arg, 5079 .rpc_resp = &res, 5080 }; 5081 unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); 5082 int ret, i; 5083 5084 if (!nfs4_server_supports_acls(server)) 5085 return -EOPNOTSUPP; 5086 if (npages > ARRAY_SIZE(pages)) 5087 return -ERANGE; 5088 i = buf_to_pages_noslab(buf, buflen, arg.acl_pages); 5089 if (i < 0) 5090 return i; 5091 nfs4_inode_return_delegation(inode); 5092 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); 5093 5094 /* 5095 * Free each page after tx, so the only ref left is 5096 * held by the network stack 5097 */ 5098 for (; i > 0; i--) 5099 put_page(pages[i-1]); 5100 5101 /* 5102 * Acl update can result in inode attribute update. 5103 * so mark the attribute cache invalid. 5104 */ 5105 spin_lock(&inode->i_lock); 5106 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR; 5107 spin_unlock(&inode->i_lock); 5108 nfs_access_zap_cache(inode); 5109 nfs_zap_acl_cache(inode); 5110 return ret; 5111 } 5112 5113 static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) 5114 { 5115 struct nfs4_exception exception = { }; 5116 int err; 5117 do { 5118 err = __nfs4_proc_set_acl(inode, buf, buflen); 5119 trace_nfs4_set_acl(inode, err); 5120 err = nfs4_handle_exception(NFS_SERVER(inode), err, 5121 &exception); 5122 } while (exception.retry); 5123 return err; 5124 } 5125 5126 #ifdef CONFIG_NFS_V4_SECURITY_LABEL 5127 static int _nfs4_get_security_label(struct inode *inode, void *buf, 5128 size_t buflen) 5129 { 5130 struct nfs_server *server = NFS_SERVER(inode); 5131 struct nfs_fattr fattr; 5132 struct nfs4_label label = {0, 0, buflen, buf}; 5133 5134 u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; 5135 struct nfs4_getattr_arg arg = { 5136 .fh = NFS_FH(inode), 5137 .bitmask = bitmask, 5138 }; 5139 struct nfs4_getattr_res res = { 5140 .fattr = &fattr, 5141 .label = &label, 5142 .server = server, 5143 }; 5144 struct rpc_message msg = { 5145 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], 5146 .rpc_argp = &arg, 5147 .rpc_resp = &res, 5148 }; 5149 int ret; 5150 5151 nfs_fattr_init(&fattr); 5152 5153 ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0); 5154 if (ret) 5155 return ret; 5156 if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL)) 5157 return -ENOENT; 5158 if (buflen < label.len) 5159 return -ERANGE; 5160 return 0; 5161 } 5162 5163 static int nfs4_get_security_label(struct inode *inode, void *buf, 5164 size_t buflen) 5165 { 5166 struct nfs4_exception exception = { }; 5167 int err; 5168 5169 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) 5170 return -EOPNOTSUPP; 5171 5172 do { 5173 err = _nfs4_get_security_label(inode, buf, buflen); 5174 trace_nfs4_get_security_label(inode, err); 5175 err = nfs4_handle_exception(NFS_SERVER(inode), err, 5176 &exception); 5177 } while (exception.retry); 5178 return err; 5179 } 5180 5181 static int _nfs4_do_set_security_label(struct inode *inode, 5182 struct nfs4_label *ilabel, 5183 struct nfs_fattr *fattr, 5184 struct nfs4_label *olabel) 5185 { 5186 5187 struct iattr sattr = {0}; 5188 struct nfs_server *server = NFS_SERVER(inode); 5189 const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; 5190 struct nfs_setattrargs arg = { 5191 .fh = NFS_FH(inode), 5192 .iap = &sattr, 5193 .server = server, 5194 .bitmask = bitmask, 5195 .label = ilabel, 5196 }; 5197 struct nfs_setattrres res = { 5198 .fattr = fattr, 5199 .label = olabel, 5200 .server = server, 5201 }; 5202 struct rpc_message msg = { 5203 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], 5204 .rpc_argp = &arg, 5205 .rpc_resp = &res, 5206 }; 5207 int status; 5208 5209 nfs4_stateid_copy(&arg.stateid, &zero_stateid); 5210 5211 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); 5212 if (status) 5213 dprintk("%s failed: %d\n", __func__, status); 5214 5215 return status; 5216 } 5217 5218 static int nfs4_do_set_security_label(struct inode *inode, 5219 struct nfs4_label *ilabel, 5220 struct nfs_fattr *fattr, 5221 struct nfs4_label *olabel) 5222 { 5223 struct nfs4_exception exception = { }; 5224 int err; 5225 5226 do { 5227 err = _nfs4_do_set_security_label(inode, ilabel, 5228 fattr, olabel); 5229 trace_nfs4_set_security_label(inode, err); 5230 err = nfs4_handle_exception(NFS_SERVER(inode), err, 5231 &exception); 5232 } while (exception.retry); 5233 return err; 5234 } 5235 5236 static int 5237 nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen) 5238 { 5239 struct nfs4_label ilabel, *olabel = NULL; 5240 struct nfs_fattr fattr; 5241 struct rpc_cred *cred; 5242 int status; 5243 5244 if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) 5245 return -EOPNOTSUPP; 5246 5247 nfs_fattr_init(&fattr); 5248 5249 ilabel.pi = 0; 5250 ilabel.lfs = 0; 5251 ilabel.label = (char *)buf; 5252 ilabel.len = buflen; 5253 5254 cred = rpc_lookup_cred(); 5255 if (IS_ERR(cred)) 5256 return PTR_ERR(cred); 5257 5258 olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); 5259 if (IS_ERR(olabel)) { 5260 status = -PTR_ERR(olabel); 5261 goto out; 5262 } 5263 5264 status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel); 5265 if (status == 0) 5266 nfs_setsecurity(inode, &fattr, olabel); 5267 5268 nfs4_label_free(olabel); 5269 out: 5270 put_rpccred(cred); 5271 return status; 5272 } 5273 #endif /* CONFIG_NFS_V4_SECURITY_LABEL */ 5274 5275 5276 static void nfs4_init_boot_verifier(const struct nfs_client *clp, 5277 nfs4_verifier *bootverf) 5278 { 5279 __be32 verf[2]; 5280 5281 if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) { 5282 /* An impossible timestamp guarantees this value 5283 * will never match a generated boot time. */ 5284 verf[0] = cpu_to_be32(U32_MAX); 5285 verf[1] = cpu_to_be32(U32_MAX); 5286 } else { 5287 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); 5288 u64 ns = ktime_to_ns(nn->boot_time); 5289 5290 verf[0] = cpu_to_be32(ns >> 32); 5291 verf[1] = cpu_to_be32(ns); 5292 } 5293 memcpy(bootverf->data, verf, sizeof(bootverf->data)); 5294 } 5295 5296 static int 5297 nfs4_init_nonuniform_client_string(struct nfs_client *clp) 5298 { 5299 size_t len; 5300 char *str; 5301 5302 if (clp->cl_owner_id != NULL) 5303 return 0; 5304 5305 rcu_read_lock(); 5306 len = 14 + strlen(clp->cl_ipaddr) + 1 + 5307 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) + 5308 1 + 5309 strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) + 5310 1; 5311 rcu_read_unlock(); 5312 5313 if (len > NFS4_OPAQUE_LIMIT + 1) 5314 return -EINVAL; 5315 5316 /* 5317 * Since this string is allocated at mount time, and held until the 5318 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying 5319 * about a memory-reclaim deadlock. 5320 */ 5321 str = kmalloc(len, GFP_KERNEL); 5322 if (!str) 5323 return -ENOMEM; 5324 5325 rcu_read_lock(); 5326 scnprintf(str, len, "Linux NFSv4.0 %s/%s %s", 5327 clp->cl_ipaddr, 5328 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR), 5329 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)); 5330 rcu_read_unlock(); 5331 5332 clp->cl_owner_id = str; 5333 return 0; 5334 } 5335 5336 static int 5337 nfs4_init_uniquifier_client_string(struct nfs_client *clp) 5338 { 5339 size_t len; 5340 char *str; 5341 5342 len = 10 + 10 + 1 + 10 + 1 + 5343 strlen(nfs4_client_id_uniquifier) + 1 + 5344 strlen(clp->cl_rpcclient->cl_nodename) + 1; 5345 5346 if (len > NFS4_OPAQUE_LIMIT + 1) 5347 return -EINVAL; 5348 5349 /* 5350 * Since this string is allocated at mount time, and held until the 5351 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying 5352 * about a memory-reclaim deadlock. 5353 */ 5354 str = kmalloc(len, GFP_KERNEL); 5355 if (!str) 5356 return -ENOMEM; 5357 5358 scnprintf(str, len, "Linux NFSv%u.%u %s/%s", 5359 clp->rpc_ops->version, clp->cl_minorversion, 5360 nfs4_client_id_uniquifier, 5361 clp->cl_rpcclient->cl_nodename); 5362 clp->cl_owner_id = str; 5363 return 0; 5364 } 5365 5366 static int 5367 nfs4_init_uniform_client_string(struct nfs_client *clp) 5368 { 5369 size_t len; 5370 char *str; 5371 5372 if (clp->cl_owner_id != NULL) 5373 return 0; 5374 5375 if (nfs4_client_id_uniquifier[0] != '\0') 5376 return nfs4_init_uniquifier_client_string(clp); 5377 5378 len = 10 + 10 + 1 + 10 + 1 + 5379 strlen(clp->cl_rpcclient->cl_nodename) + 1; 5380 5381 if (len > NFS4_OPAQUE_LIMIT + 1) 5382 return -EINVAL; 5383 5384 /* 5385 * Since this string is allocated at mount time, and held until the 5386 * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying 5387 * about a memory-reclaim deadlock. 5388 */ 5389 str = kmalloc(len, GFP_KERNEL); 5390 if (!str) 5391 return -ENOMEM; 5392 5393 scnprintf(str, len, "Linux NFSv%u.%u %s", 5394 clp->rpc_ops->version, clp->cl_minorversion, 5395 clp->cl_rpcclient->cl_nodename); 5396 clp->cl_owner_id = str; 5397 return 0; 5398 } 5399 5400 /* 5401 * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback 5402 * services. Advertise one based on the address family of the 5403 * clientaddr. 5404 */ 5405 static unsigned int 5406 nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len) 5407 { 5408 if (strchr(clp->cl_ipaddr, ':') != NULL) 5409 return scnprintf(buf, len, "tcp6"); 5410 else 5411 return scnprintf(buf, len, "tcp"); 5412 } 5413 5414 static void nfs4_setclientid_done(struct rpc_task *task, void *calldata) 5415 { 5416 struct nfs4_setclientid *sc = calldata; 5417 5418 if (task->tk_status == 0) 5419 sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred); 5420 } 5421 5422 static const struct rpc_call_ops nfs4_setclientid_ops = { 5423 .rpc_call_done = nfs4_setclientid_done, 5424 }; 5425 5426 /** 5427 * nfs4_proc_setclientid - Negotiate client ID 5428 * @clp: state data structure 5429 * @program: RPC program for NFSv4 callback service 5430 * @port: IP port number for NFS4 callback service 5431 * @cred: RPC credential to use for this call 5432 * @res: where to place the result 5433 * 5434 * Returns zero, a negative errno, or a negative NFS4ERR status code. 5435 */ 5436 int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, 5437 unsigned short port, struct rpc_cred *cred, 5438 struct nfs4_setclientid_res *res) 5439 { 5440 nfs4_verifier sc_verifier; 5441 struct nfs4_setclientid setclientid = { 5442 .sc_verifier = &sc_verifier, 5443 .sc_prog = program, 5444 .sc_clnt = clp, 5445 }; 5446 struct rpc_message msg = { 5447 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID], 5448 .rpc_argp = &setclientid, 5449 .rpc_resp = res, 5450 .rpc_cred = cred, 5451 }; 5452 struct rpc_task *task; 5453 struct rpc_task_setup task_setup_data = { 5454 .rpc_client = clp->cl_rpcclient, 5455 .rpc_message = &msg, 5456 .callback_ops = &nfs4_setclientid_ops, 5457 .callback_data = &setclientid, 5458 .flags = RPC_TASK_TIMEOUT, 5459 }; 5460 int status; 5461 5462 /* nfs_client_id4 */ 5463 nfs4_init_boot_verifier(clp, &sc_verifier); 5464 5465 if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags)) 5466 status = nfs4_init_uniform_client_string(clp); 5467 else 5468 status = nfs4_init_nonuniform_client_string(clp); 5469 5470 if (status) 5471 goto out; 5472 5473 /* cb_client4 */ 5474 setclientid.sc_netid_len = 5475 nfs4_init_callback_netid(clp, 5476 setclientid.sc_netid, 5477 sizeof(setclientid.sc_netid)); 5478 setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr, 5479 sizeof(setclientid.sc_uaddr), "%s.%u.%u", 5480 clp->cl_ipaddr, port >> 8, port & 255); 5481 5482 dprintk("NFS call setclientid auth=%s, '%s'\n", 5483 clp->cl_rpcclient->cl_auth->au_ops->au_name, 5484 clp->cl_owner_id); 5485 task = rpc_run_task(&task_setup_data); 5486 if (IS_ERR(task)) { 5487 status = PTR_ERR(task); 5488 goto out; 5489 } 5490 status = task->tk_status; 5491 if (setclientid.sc_cred) { 5492 clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred); 5493 put_rpccred(setclientid.sc_cred); 5494 } 5495 rpc_put_task(task); 5496 out: 5497 trace_nfs4_setclientid(clp, status); 5498 dprintk("NFS reply setclientid: %d\n", status); 5499 return status; 5500 } 5501 5502 /** 5503 * nfs4_proc_setclientid_confirm - Confirm client ID 5504 * @clp: state data structure 5505 * @res: result of a previous SETCLIENTID 5506 * @cred: RPC credential to use for this call 5507 * 5508 * Returns zero, a negative errno, or a negative NFS4ERR status code. 5509 */ 5510 int nfs4_proc_setclientid_confirm(struct nfs_client *clp, 5511 struct nfs4_setclientid_res *arg, 5512 struct rpc_cred *cred) 5513 { 5514 struct rpc_message msg = { 5515 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM], 5516 .rpc_argp = arg, 5517 .rpc_cred = cred, 5518 }; 5519 int status; 5520 5521 dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n", 5522 clp->cl_rpcclient->cl_auth->au_ops->au_name, 5523 clp->cl_clientid); 5524 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); 5525 trace_nfs4_setclientid_confirm(clp, status); 5526 dprintk("NFS reply setclientid_confirm: %d\n", status); 5527 return status; 5528 } 5529 5530 struct nfs4_delegreturndata { 5531 struct nfs4_delegreturnargs args; 5532 struct nfs4_delegreturnres res; 5533 struct nfs_fh fh; 5534 nfs4_stateid stateid; 5535 unsigned long timestamp; 5536 struct { 5537 struct nfs4_layoutreturn_args arg; 5538 struct nfs4_layoutreturn_res res; 5539 struct nfs4_xdr_opaque_data ld_private; 5540 u32 roc_barrier; 5541 bool roc; 5542 } lr; 5543 struct nfs_fattr fattr; 5544 int rpc_status; 5545 struct inode *inode; 5546 }; 5547 5548 static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata) 5549 { 5550 struct nfs4_delegreturndata *data = calldata; 5551 5552 if (!nfs4_sequence_done(task, &data->res.seq_res)) 5553 return; 5554 5555 trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status); 5556 5557 /* Handle Layoutreturn errors */ 5558 if (data->args.lr_args && task->tk_status != 0) { 5559 switch(data->res.lr_ret) { 5560 default: 5561 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT; 5562 break; 5563 case 0: 5564 data->args.lr_args = NULL; 5565 data->res.lr_res = NULL; 5566 break; 5567 case -NFS4ERR_ADMIN_REVOKED: 5568 case -NFS4ERR_DELEG_REVOKED: 5569 case -NFS4ERR_EXPIRED: 5570 case -NFS4ERR_BAD_STATEID: 5571 case -NFS4ERR_OLD_STATEID: 5572 case -NFS4ERR_UNKNOWN_LAYOUTTYPE: 5573 case -NFS4ERR_WRONG_CRED: 5574 data->args.lr_args = NULL; 5575 data->res.lr_res = NULL; 5576 data->res.lr_ret = 0; 5577 rpc_restart_call_prepare(task); 5578 return; 5579 } 5580 } 5581 5582 switch (task->tk_status) { 5583 case 0: 5584 renew_lease(data->res.server, data->timestamp); 5585 break; 5586 case -NFS4ERR_ADMIN_REVOKED: 5587 case -NFS4ERR_DELEG_REVOKED: 5588 case -NFS4ERR_EXPIRED: 5589 nfs4_free_revoked_stateid(data->res.server, 5590 data->args.stateid, 5591 task->tk_msg.rpc_cred); 5592 case -NFS4ERR_BAD_STATEID: 5593 case -NFS4ERR_OLD_STATEID: 5594 case -NFS4ERR_STALE_STATEID: 5595 task->tk_status = 0; 5596 break; 5597 case -NFS4ERR_ACCESS: 5598 if (data->args.bitmask) { 5599 data->args.bitmask = NULL; 5600 data->res.fattr = NULL; 5601 task->tk_status = 0; 5602 rpc_restart_call_prepare(task); 5603 return; 5604 } 5605 default: 5606 if (nfs4_async_handle_error(task, data->res.server, 5607 NULL, NULL) == -EAGAIN) { 5608 rpc_restart_call_prepare(task); 5609 return; 5610 } 5611 } 5612 data->rpc_status = task->tk_status; 5613 } 5614 5615 static void nfs4_delegreturn_release(void *calldata) 5616 { 5617 struct nfs4_delegreturndata *data = calldata; 5618 struct inode *inode = data->inode; 5619 5620 if (inode) { 5621 if (data->lr.roc) 5622 pnfs_roc_release(&data->lr.arg, &data->lr.res, 5623 data->res.lr_ret); 5624 nfs_post_op_update_inode_force_wcc(inode, &data->fattr); 5625 nfs_iput_and_deactive(inode); 5626 } 5627 kfree(calldata); 5628 } 5629 5630 static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data) 5631 { 5632 struct nfs4_delegreturndata *d_data; 5633 5634 d_data = (struct nfs4_delegreturndata *)data; 5635 5636 if (!d_data->lr.roc && nfs4_wait_on_layoutreturn(d_data->inode, task)) 5637 return; 5638 5639 nfs4_setup_sequence(d_data->res.server->nfs_client, 5640 &d_data->args.seq_args, 5641 &d_data->res.seq_res, 5642 task); 5643 } 5644 5645 static const struct rpc_call_ops nfs4_delegreturn_ops = { 5646 .rpc_call_prepare = nfs4_delegreturn_prepare, 5647 .rpc_call_done = nfs4_delegreturn_done, 5648 .rpc_release = nfs4_delegreturn_release, 5649 }; 5650 5651 static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) 5652 { 5653 struct nfs4_delegreturndata *data; 5654 struct nfs_server *server = NFS_SERVER(inode); 5655 struct rpc_task *task; 5656 struct rpc_message msg = { 5657 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN], 5658 .rpc_cred = cred, 5659 }; 5660 struct rpc_task_setup task_setup_data = { 5661 .rpc_client = server->client, 5662 .rpc_message = &msg, 5663 .callback_ops = &nfs4_delegreturn_ops, 5664 .flags = RPC_TASK_ASYNC, 5665 }; 5666 int status = 0; 5667 5668 data = kzalloc(sizeof(*data), GFP_NOFS); 5669 if (data == NULL) 5670 return -ENOMEM; 5671 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); 5672 5673 nfs4_state_protect(server->nfs_client, 5674 NFS_SP4_MACH_CRED_CLEANUP, 5675 &task_setup_data.rpc_client, &msg); 5676 5677 data->args.fhandle = &data->fh; 5678 data->args.stateid = &data->stateid; 5679 data->args.bitmask = server->cache_consistency_bitmask; 5680 nfs_copy_fh(&data->fh, NFS_FH(inode)); 5681 nfs4_stateid_copy(&data->stateid, stateid); 5682 data->res.fattr = &data->fattr; 5683 data->res.server = server; 5684 data->res.lr_ret = -NFS4ERR_NOMATCHING_LAYOUT; 5685 data->lr.arg.ld_private = &data->lr.ld_private; 5686 nfs_fattr_init(data->res.fattr); 5687 data->timestamp = jiffies; 5688 data->rpc_status = 0; 5689 data->lr.roc = pnfs_roc(inode, &data->lr.arg, &data->lr.res, cred); 5690 data->inode = nfs_igrab_and_active(inode); 5691 if (data->inode) { 5692 if (data->lr.roc) { 5693 data->args.lr_args = &data->lr.arg; 5694 data->res.lr_res = &data->lr.res; 5695 } 5696 } else if (data->lr.roc) { 5697 pnfs_roc_release(&data->lr.arg, &data->lr.res, 0); 5698 data->lr.roc = false; 5699 } 5700 5701 task_setup_data.callback_data = data; 5702 msg.rpc_argp = &data->args; 5703 msg.rpc_resp = &data->res; 5704 task = rpc_run_task(&task_setup_data); 5705 if (IS_ERR(task)) 5706 return PTR_ERR(task); 5707 if (!issync) 5708 goto out; 5709 status = rpc_wait_for_completion_task(task); 5710 if (status != 0) 5711 goto out; 5712 status = data->rpc_status; 5713 out: 5714 rpc_put_task(task); 5715 return status; 5716 } 5717 5718 int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) 5719 { 5720 struct nfs_server *server = NFS_SERVER(inode); 5721 struct nfs4_exception exception = { }; 5722 int err; 5723 do { 5724 err = _nfs4_proc_delegreturn(inode, cred, stateid, issync); 5725 trace_nfs4_delegreturn(inode, stateid, err); 5726 switch (err) { 5727 case -NFS4ERR_STALE_STATEID: 5728 case -NFS4ERR_EXPIRED: 5729 case 0: 5730 return 0; 5731 } 5732 err = nfs4_handle_exception(server, err, &exception); 5733 } while (exception.retry); 5734 return err; 5735 } 5736 5737 static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) 5738 { 5739 struct inode *inode = state->inode; 5740 struct nfs_server *server = NFS_SERVER(inode); 5741 struct nfs_client *clp = server->nfs_client; 5742 struct nfs_lockt_args arg = { 5743 .fh = NFS_FH(inode), 5744 .fl = request, 5745 }; 5746 struct nfs_lockt_res res = { 5747 .denied = request, 5748 }; 5749 struct rpc_message msg = { 5750 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT], 5751 .rpc_argp = &arg, 5752 .rpc_resp = &res, 5753 .rpc_cred = state->owner->so_cred, 5754 }; 5755 struct nfs4_lock_state *lsp; 5756 int status; 5757 5758 arg.lock_owner.clientid = clp->cl_clientid; 5759 status = nfs4_set_lock_state(state, request); 5760 if (status != 0) 5761 goto out; 5762 lsp = request->fl_u.nfs4_fl.owner; 5763 arg.lock_owner.id = lsp->ls_seqid.owner_id; 5764 arg.lock_owner.s_dev = server->s_dev; 5765 status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); 5766 switch (status) { 5767 case 0: 5768 request->fl_type = F_UNLCK; 5769 break; 5770 case -NFS4ERR_DENIED: 5771 status = 0; 5772 } 5773 request->fl_ops->fl_release_private(request); 5774 request->fl_ops = NULL; 5775 out: 5776 return status; 5777 } 5778 5779 static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) 5780 { 5781 struct nfs4_exception exception = { }; 5782 int err; 5783 5784 do { 5785 err = _nfs4_proc_getlk(state, cmd, request); 5786 trace_nfs4_get_lock(request, state, cmd, err); 5787 err = nfs4_handle_exception(NFS_SERVER(state->inode), err, 5788 &exception); 5789 } while (exception.retry); 5790 return err; 5791 } 5792 5793 struct nfs4_unlockdata { 5794 struct nfs_locku_args arg; 5795 struct nfs_locku_res res; 5796 struct nfs4_lock_state *lsp; 5797 struct nfs_open_context *ctx; 5798 struct file_lock fl; 5799 struct nfs_server *server; 5800 unsigned long timestamp; 5801 }; 5802 5803 static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl, 5804 struct nfs_open_context *ctx, 5805 struct nfs4_lock_state *lsp, 5806 struct nfs_seqid *seqid) 5807 { 5808 struct nfs4_unlockdata *p; 5809 struct inode *inode = lsp->ls_state->inode; 5810 5811 p = kzalloc(sizeof(*p), GFP_NOFS); 5812 if (p == NULL) 5813 return NULL; 5814 p->arg.fh = NFS_FH(inode); 5815 p->arg.fl = &p->fl; 5816 p->arg.seqid = seqid; 5817 p->res.seqid = seqid; 5818 p->lsp = lsp; 5819 atomic_inc(&lsp->ls_count); 5820 /* Ensure we don't close file until we're done freeing locks! */ 5821 p->ctx = get_nfs_open_context(ctx); 5822 memcpy(&p->fl, fl, sizeof(p->fl)); 5823 p->server = NFS_SERVER(inode); 5824 return p; 5825 } 5826 5827 static void nfs4_locku_release_calldata(void *data) 5828 { 5829 struct nfs4_unlockdata *calldata = data; 5830 nfs_free_seqid(calldata->arg.seqid); 5831 nfs4_put_lock_state(calldata->lsp); 5832 put_nfs_open_context(calldata->ctx); 5833 kfree(calldata); 5834 } 5835 5836 static void nfs4_locku_done(struct rpc_task *task, void *data) 5837 { 5838 struct nfs4_unlockdata *calldata = data; 5839 5840 if (!nfs4_sequence_done(task, &calldata->res.seq_res)) 5841 return; 5842 switch (task->tk_status) { 5843 case 0: 5844 renew_lease(calldata->server, calldata->timestamp); 5845 locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl); 5846 if (nfs4_update_lock_stateid(calldata->lsp, 5847 &calldata->res.stateid)) 5848 break; 5849 case -NFS4ERR_ADMIN_REVOKED: 5850 case -NFS4ERR_EXPIRED: 5851 nfs4_free_revoked_stateid(calldata->server, 5852 &calldata->arg.stateid, 5853 task->tk_msg.rpc_cred); 5854 case -NFS4ERR_BAD_STATEID: 5855 case -NFS4ERR_OLD_STATEID: 5856 case -NFS4ERR_STALE_STATEID: 5857 if (!nfs4_stateid_match(&calldata->arg.stateid, 5858 &calldata->lsp->ls_stateid)) 5859 rpc_restart_call_prepare(task); 5860 break; 5861 default: 5862 if (nfs4_async_handle_error(task, calldata->server, 5863 NULL, NULL) == -EAGAIN) 5864 rpc_restart_call_prepare(task); 5865 } 5866 nfs_release_seqid(calldata->arg.seqid); 5867 } 5868 5869 static void nfs4_locku_prepare(struct rpc_task *task, void *data) 5870 { 5871 struct nfs4_unlockdata *calldata = data; 5872 5873 if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) 5874 goto out_wait; 5875 nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid); 5876 if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) { 5877 /* Note: exit _without_ running nfs4_locku_done */ 5878 goto out_no_action; 5879 } 5880 calldata->timestamp = jiffies; 5881 if (nfs4_setup_sequence(calldata->server->nfs_client, 5882 &calldata->arg.seq_args, 5883 &calldata->res.seq_res, 5884 task) != 0) 5885 nfs_release_seqid(calldata->arg.seqid); 5886 return; 5887 out_no_action: 5888 task->tk_action = NULL; 5889 out_wait: 5890 nfs4_sequence_done(task, &calldata->res.seq_res); 5891 } 5892 5893 static const struct rpc_call_ops nfs4_locku_ops = { 5894 .rpc_call_prepare = nfs4_locku_prepare, 5895 .rpc_call_done = nfs4_locku_done, 5896 .rpc_release = nfs4_locku_release_calldata, 5897 }; 5898 5899 static struct rpc_task *nfs4_do_unlck(struct file_lock *fl, 5900 struct nfs_open_context *ctx, 5901 struct nfs4_lock_state *lsp, 5902 struct nfs_seqid *seqid) 5903 { 5904 struct nfs4_unlockdata *data; 5905 struct rpc_message msg = { 5906 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU], 5907 .rpc_cred = ctx->cred, 5908 }; 5909 struct rpc_task_setup task_setup_data = { 5910 .rpc_client = NFS_CLIENT(lsp->ls_state->inode), 5911 .rpc_message = &msg, 5912 .callback_ops = &nfs4_locku_ops, 5913 .workqueue = nfsiod_workqueue, 5914 .flags = RPC_TASK_ASYNC, 5915 }; 5916 5917 nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client, 5918 NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg); 5919 5920 /* Ensure this is an unlock - when canceling a lock, the 5921 * canceled lock is passed in, and it won't be an unlock. 5922 */ 5923 fl->fl_type = F_UNLCK; 5924 5925 data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid); 5926 if (data == NULL) { 5927 nfs_free_seqid(seqid); 5928 return ERR_PTR(-ENOMEM); 5929 } 5930 5931 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); 5932 msg.rpc_argp = &data->arg; 5933 msg.rpc_resp = &data->res; 5934 task_setup_data.callback_data = data; 5935 return rpc_run_task(&task_setup_data); 5936 } 5937 5938 static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request) 5939 { 5940 struct inode *inode = state->inode; 5941 struct nfs4_state_owner *sp = state->owner; 5942 struct nfs_inode *nfsi = NFS_I(inode); 5943 struct nfs_seqid *seqid; 5944 struct nfs4_lock_state *lsp; 5945 struct rpc_task *task; 5946 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); 5947 int status = 0; 5948 unsigned char fl_flags = request->fl_flags; 5949 5950 status = nfs4_set_lock_state(state, request); 5951 /* Unlock _before_ we do the RPC call */ 5952 request->fl_flags |= FL_EXISTS; 5953 /* Exclude nfs_delegation_claim_locks() */ 5954 mutex_lock(&sp->so_delegreturn_mutex); 5955 /* Exclude nfs4_reclaim_open_stateid() - note nesting! */ 5956 down_read(&nfsi->rwsem); 5957 if (locks_lock_inode_wait(inode, request) == -ENOENT) { 5958 up_read(&nfsi->rwsem); 5959 mutex_unlock(&sp->so_delegreturn_mutex); 5960 goto out; 5961 } 5962 up_read(&nfsi->rwsem); 5963 mutex_unlock(&sp->so_delegreturn_mutex); 5964 if (status != 0) 5965 goto out; 5966 /* Is this a delegated lock? */ 5967 lsp = request->fl_u.nfs4_fl.owner; 5968 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0) 5969 goto out; 5970 alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid; 5971 seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL); 5972 status = -ENOMEM; 5973 if (IS_ERR(seqid)) 5974 goto out; 5975 task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid); 5976 status = PTR_ERR(task); 5977 if (IS_ERR(task)) 5978 goto out; 5979 status = rpc_wait_for_completion_task(task); 5980 rpc_put_task(task); 5981 out: 5982 request->fl_flags = fl_flags; 5983 trace_nfs4_unlock(request, state, F_SETLK, status); 5984 return status; 5985 } 5986 5987 struct nfs4_lockdata { 5988 struct nfs_lock_args arg; 5989 struct nfs_lock_res res; 5990 struct nfs4_lock_state *lsp; 5991 struct nfs_open_context *ctx; 5992 struct file_lock fl; 5993 unsigned long timestamp; 5994 int rpc_status; 5995 int cancelled; 5996 struct nfs_server *server; 5997 }; 5998 5999 static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl, 6000 struct nfs_open_context *ctx, struct nfs4_lock_state *lsp, 6001 gfp_t gfp_mask) 6002 { 6003 struct nfs4_lockdata *p; 6004 struct inode *inode = lsp->ls_state->inode; 6005 struct nfs_server *server = NFS_SERVER(inode); 6006 struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); 6007 6008 p = kzalloc(sizeof(*p), gfp_mask); 6009 if (p == NULL) 6010 return NULL; 6011 6012 p->arg.fh = NFS_FH(inode); 6013 p->arg.fl = &p->fl; 6014 p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask); 6015 if (IS_ERR(p->arg.open_seqid)) 6016 goto out_free; 6017 alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; 6018 p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask); 6019 if (IS_ERR(p->arg.lock_seqid)) 6020 goto out_free_seqid; 6021 p->arg.lock_owner.clientid = server->nfs_client->cl_clientid; 6022 p->arg.lock_owner.id = lsp->ls_seqid.owner_id; 6023 p->arg.lock_owner.s_dev = server->s_dev; 6024 p->res.lock_seqid = p->arg.lock_seqid; 6025 p->lsp = lsp; 6026 p->server = server; 6027 atomic_inc(&lsp->ls_count); 6028 p->ctx = get_nfs_open_context(ctx); 6029 memcpy(&p->fl, fl, sizeof(p->fl)); 6030 return p; 6031 out_free_seqid: 6032 nfs_free_seqid(p->arg.open_seqid); 6033 out_free: 6034 kfree(p); 6035 return NULL; 6036 } 6037 6038 static void nfs4_lock_prepare(struct rpc_task *task, void *calldata) 6039 { 6040 struct nfs4_lockdata *data = calldata; 6041 struct nfs4_state *state = data->lsp->ls_state; 6042 6043 dprintk("%s: begin!\n", __func__); 6044 if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0) 6045 goto out_wait; 6046 /* Do we need to do an open_to_lock_owner? */ 6047 if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) { 6048 if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) { 6049 goto out_release_lock_seqid; 6050 } 6051 nfs4_stateid_copy(&data->arg.open_stateid, 6052 &state->open_stateid); 6053 data->arg.new_lock_owner = 1; 6054 data->res.open_seqid = data->arg.open_seqid; 6055 } else { 6056 data->arg.new_lock_owner = 0; 6057 nfs4_stateid_copy(&data->arg.lock_stateid, 6058 &data->lsp->ls_stateid); 6059 } 6060 if (!nfs4_valid_open_stateid(state)) { 6061 data->rpc_status = -EBADF; 6062 task->tk_action = NULL; 6063 goto out_release_open_seqid; 6064 } 6065 data->timestamp = jiffies; 6066 if (nfs4_setup_sequence(data->server->nfs_client, 6067 &data->arg.seq_args, 6068 &data->res.seq_res, 6069 task) == 0) 6070 return; 6071 out_release_open_seqid: 6072 nfs_release_seqid(data->arg.open_seqid); 6073 out_release_lock_seqid: 6074 nfs_release_seqid(data->arg.lock_seqid); 6075 out_wait: 6076 nfs4_sequence_done(task, &data->res.seq_res); 6077 dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status); 6078 } 6079 6080 static void nfs4_lock_done(struct rpc_task *task, void *calldata) 6081 { 6082 struct nfs4_lockdata *data = calldata; 6083 struct nfs4_lock_state *lsp = data->lsp; 6084 6085 dprintk("%s: begin!\n", __func__); 6086 6087 if (!nfs4_sequence_done(task, &data->res.seq_res)) 6088 return; 6089 6090 data->rpc_status = task->tk_status; 6091 switch (task->tk_status) { 6092 case 0: 6093 renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)), 6094 data->timestamp); 6095 if (data->arg.new_lock) { 6096 data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS); 6097 if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) { 6098 rpc_restart_call_prepare(task); 6099 break; 6100 } 6101 } 6102 if (data->arg.new_lock_owner != 0) { 6103 nfs_confirm_seqid(&lsp->ls_seqid, 0); 6104 nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid); 6105 set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); 6106 } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid)) 6107 rpc_restart_call_prepare(task); 6108 break; 6109 case -NFS4ERR_BAD_STATEID: 6110 case -NFS4ERR_OLD_STATEID: 6111 case -NFS4ERR_STALE_STATEID: 6112 case -NFS4ERR_EXPIRED: 6113 if (data->arg.new_lock_owner != 0) { 6114 if (!nfs4_stateid_match(&data->arg.open_stateid, 6115 &lsp->ls_state->open_stateid)) 6116 rpc_restart_call_prepare(task); 6117 } else if (!nfs4_stateid_match(&data->arg.lock_stateid, 6118 &lsp->ls_stateid)) 6119 rpc_restart_call_prepare(task); 6120 } 6121 dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status); 6122 } 6123 6124 static void nfs4_lock_release(void *calldata) 6125 { 6126 struct nfs4_lockdata *data = calldata; 6127 6128 dprintk("%s: begin!\n", __func__); 6129 nfs_free_seqid(data->arg.open_seqid); 6130 if (data->cancelled != 0) { 6131 struct rpc_task *task; 6132 task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp, 6133 data->arg.lock_seqid); 6134 if (!IS_ERR(task)) 6135 rpc_put_task_async(task); 6136 dprintk("%s: cancelling lock!\n", __func__); 6137 } else 6138 nfs_free_seqid(data->arg.lock_seqid); 6139 nfs4_put_lock_state(data->lsp); 6140 put_nfs_open_context(data->ctx); 6141 kfree(data); 6142 dprintk("%s: done!\n", __func__); 6143 } 6144 6145 static const struct rpc_call_ops nfs4_lock_ops = { 6146 .rpc_call_prepare = nfs4_lock_prepare, 6147 .rpc_call_done = nfs4_lock_done, 6148 .rpc_release = nfs4_lock_release, 6149 }; 6150 6151 static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error) 6152 { 6153 switch (error) { 6154 case -NFS4ERR_ADMIN_REVOKED: 6155 case -NFS4ERR_EXPIRED: 6156 case -NFS4ERR_BAD_STATEID: 6157 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; 6158 if (new_lock_owner != 0 || 6159 test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) 6160 nfs4_schedule_stateid_recovery(server, lsp->ls_state); 6161 break; 6162 case -NFS4ERR_STALE_STATEID: 6163 lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; 6164 nfs4_schedule_lease_recovery(server->nfs_client); 6165 }; 6166 } 6167 6168 static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type) 6169 { 6170 struct nfs4_lockdata *data; 6171 struct rpc_task *task; 6172 struct rpc_message msg = { 6173 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK], 6174 .rpc_cred = state->owner->so_cred, 6175 }; 6176 struct rpc_task_setup task_setup_data = { 6177 .rpc_client = NFS_CLIENT(state->inode), 6178 .rpc_message = &msg, 6179 .callback_ops = &nfs4_lock_ops, 6180 .workqueue = nfsiod_workqueue, 6181 .flags = RPC_TASK_ASYNC, 6182 }; 6183 int ret; 6184 6185 dprintk("%s: begin!\n", __func__); 6186 data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file), 6187 fl->fl_u.nfs4_fl.owner, 6188 recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS); 6189 if (data == NULL) 6190 return -ENOMEM; 6191 if (IS_SETLKW(cmd)) 6192 data->arg.block = 1; 6193 nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); 6194 msg.rpc_argp = &data->arg; 6195 msg.rpc_resp = &data->res; 6196 task_setup_data.callback_data = data; 6197 if (recovery_type > NFS_LOCK_NEW) { 6198 if (recovery_type == NFS_LOCK_RECLAIM) 6199 data->arg.reclaim = NFS_LOCK_RECLAIM; 6200 nfs4_set_sequence_privileged(&data->arg.seq_args); 6201 } else 6202 data->arg.new_lock = 1; 6203 task = rpc_run_task(&task_setup_data); 6204 if (IS_ERR(task)) 6205 return PTR_ERR(task); 6206 ret = rpc_wait_for_completion_task(task); 6207 if (ret == 0) { 6208 ret = data->rpc_status; 6209 if (ret) 6210 nfs4_handle_setlk_error(data->server, data->lsp, 6211 data->arg.new_lock_owner, ret); 6212 } else 6213 data->cancelled = 1; 6214 rpc_put_task(task); 6215 dprintk("%s: done, ret = %d!\n", __func__, ret); 6216 trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret); 6217 return ret; 6218 } 6219 6220 static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request) 6221 { 6222 struct nfs_server *server = NFS_SERVER(state->inode); 6223 struct nfs4_exception exception = { 6224 .inode = state->inode, 6225 }; 6226 int err; 6227 6228 do { 6229 /* Cache the lock if possible... */ 6230 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) 6231 return 0; 6232 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM); 6233 if (err != -NFS4ERR_DELAY) 6234 break; 6235 nfs4_handle_exception(server, err, &exception); 6236 } while (exception.retry); 6237 return err; 6238 } 6239 6240 static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request) 6241 { 6242 struct nfs_server *server = NFS_SERVER(state->inode); 6243 struct nfs4_exception exception = { 6244 .inode = state->inode, 6245 }; 6246 int err; 6247 6248 err = nfs4_set_lock_state(state, request); 6249 if (err != 0) 6250 return err; 6251 if (!recover_lost_locks) { 6252 set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags); 6253 return 0; 6254 } 6255 do { 6256 if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) 6257 return 0; 6258 err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED); 6259 switch (err) { 6260 default: 6261 goto out; 6262 case -NFS4ERR_GRACE: 6263 case -NFS4ERR_DELAY: 6264 nfs4_handle_exception(server, err, &exception); 6265 err = 0; 6266 } 6267 } while (exception.retry); 6268 out: 6269 return err; 6270 } 6271 6272 #if defined(CONFIG_NFS_V4_1) 6273 static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request) 6274 { 6275 struct nfs4_lock_state *lsp; 6276 int status; 6277 6278 status = nfs4_set_lock_state(state, request); 6279 if (status != 0) 6280 return status; 6281 lsp = request->fl_u.nfs4_fl.owner; 6282 if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) || 6283 test_bit(NFS_LOCK_LOST, &lsp->ls_flags)) 6284 return 0; 6285 return nfs4_lock_expired(state, request); 6286 } 6287 #endif 6288 6289 static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) 6290 { 6291 struct nfs_inode *nfsi = NFS_I(state->inode); 6292 struct nfs4_state_owner *sp = state->owner; 6293 unsigned char fl_flags = request->fl_flags; 6294 int status; 6295 6296 request->fl_flags |= FL_ACCESS; 6297 status = locks_lock_inode_wait(state->inode, request); 6298 if (status < 0) 6299 goto out; 6300 mutex_lock(&sp->so_delegreturn_mutex); 6301 down_read(&nfsi->rwsem); 6302 if (test_bit(NFS_DELEGATED_STATE, &state->flags)) { 6303 /* Yes: cache locks! */ 6304 /* ...but avoid races with delegation recall... */ 6305 request->fl_flags = fl_flags & ~FL_SLEEP; 6306 status = locks_lock_inode_wait(state->inode, request); 6307 up_read(&nfsi->rwsem); 6308 mutex_unlock(&sp->so_delegreturn_mutex); 6309 goto out; 6310 } 6311 up_read(&nfsi->rwsem); 6312 mutex_unlock(&sp->so_delegreturn_mutex); 6313 status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW); 6314 out: 6315 request->fl_flags = fl_flags; 6316 return status; 6317 } 6318 6319 static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) 6320 { 6321 struct nfs4_exception exception = { 6322 .state = state, 6323 .inode = state->inode, 6324 }; 6325 int err; 6326 6327 do { 6328 err = _nfs4_proc_setlk(state, cmd, request); 6329 if (err == -NFS4ERR_DENIED) 6330 err = -EAGAIN; 6331 err = nfs4_handle_exception(NFS_SERVER(state->inode), 6332 err, &exception); 6333 } while (exception.retry); 6334 return err; 6335 } 6336 6337 #define NFS4_LOCK_MINTIMEOUT (1 * HZ) 6338 #define NFS4_LOCK_MAXTIMEOUT (30 * HZ) 6339 6340 static int 6341 nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd, 6342 struct file_lock *request) 6343 { 6344 int status = -ERESTARTSYS; 6345 unsigned long timeout = NFS4_LOCK_MINTIMEOUT; 6346 6347 while(!signalled()) { 6348 status = nfs4_proc_setlk(state, cmd, request); 6349 if ((status != -EAGAIN) || IS_SETLK(cmd)) 6350 break; 6351 freezable_schedule_timeout_interruptible(timeout); 6352 timeout *= 2; 6353 timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout); 6354 status = -ERESTARTSYS; 6355 } 6356 return status; 6357 } 6358 6359 #ifdef CONFIG_NFS_V4_1 6360 struct nfs4_lock_waiter { 6361 struct task_struct *task; 6362 struct inode *inode; 6363 struct nfs_lowner *owner; 6364 bool notified; 6365 }; 6366 6367 static int 6368 nfs4_wake_lock_waiter(wait_queue_t *wait, unsigned int mode, int flags, void *key) 6369 { 6370 int ret; 6371 struct cb_notify_lock_args *cbnl = key; 6372 struct nfs4_lock_waiter *waiter = wait->private; 6373 struct nfs_lowner *lowner = &cbnl->cbnl_owner, 6374 *wowner = waiter->owner; 6375 6376 /* Only wake if the callback was for the same owner */ 6377 if (lowner->clientid != wowner->clientid || 6378 lowner->id != wowner->id || 6379 lowner->s_dev != wowner->s_dev) 6380 return 0; 6381 6382 /* Make sure it's for the right inode */ 6383 if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh)) 6384 return 0; 6385 6386 waiter->notified = true; 6387 6388 /* override "private" so we can use default_wake_function */ 6389 wait->private = waiter->task; 6390 ret = autoremove_wake_function(wait, mode, flags, key); 6391 wait->private = waiter; 6392 return ret; 6393 } 6394 6395 static int 6396 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) 6397 { 6398 int status = -ERESTARTSYS; 6399 unsigned long flags; 6400 struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner; 6401 struct nfs_server *server = NFS_SERVER(state->inode); 6402 struct nfs_client *clp = server->nfs_client; 6403 wait_queue_head_t *q = &clp->cl_lock_waitq; 6404 struct nfs_lowner owner = { .clientid = clp->cl_clientid, 6405 .id = lsp->ls_seqid.owner_id, 6406 .s_dev = server->s_dev }; 6407 struct nfs4_lock_waiter waiter = { .task = current, 6408 .inode = state->inode, 6409 .owner = &owner, 6410 .notified = false }; 6411 wait_queue_t wait; 6412 6413 /* Don't bother with waitqueue if we don't expect a callback */ 6414 if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags)) 6415 return nfs4_retry_setlk_simple(state, cmd, request); 6416 6417 init_wait(&wait); 6418 wait.private = &waiter; 6419 wait.func = nfs4_wake_lock_waiter; 6420 add_wait_queue(q, &wait); 6421 6422 while(!signalled()) { 6423 status = nfs4_proc_setlk(state, cmd, request); 6424 if ((status != -EAGAIN) || IS_SETLK(cmd)) 6425 break; 6426 6427 status = -ERESTARTSYS; 6428 spin_lock_irqsave(&q->lock, flags); 6429 if (waiter.notified) { 6430 spin_unlock_irqrestore(&q->lock, flags); 6431 continue; 6432 } 6433 set_current_state(TASK_INTERRUPTIBLE); 6434 spin_unlock_irqrestore(&q->lock, flags); 6435 6436 freezable_schedule_timeout_interruptible(NFS4_LOCK_MAXTIMEOUT); 6437 } 6438 6439 finish_wait(q, &wait); 6440 return status; 6441 } 6442 #else /* !CONFIG_NFS_V4_1 */ 6443 static inline int 6444 nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) 6445 { 6446 return nfs4_retry_setlk_simple(state, cmd, request); 6447 } 6448 #endif 6449 6450 static int 6451 nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) 6452 { 6453 struct nfs_open_context *ctx; 6454 struct nfs4_state *state; 6455 int status; 6456 6457 /* verify open state */ 6458 ctx = nfs_file_open_context(filp); 6459 state = ctx->state; 6460 6461 if (request->fl_start < 0 || request->fl_end < 0) 6462 return -EINVAL; 6463 6464 if (IS_GETLK(cmd)) { 6465 if (state != NULL) 6466 return nfs4_proc_getlk(state, F_GETLK, request); 6467 return 0; 6468 } 6469 6470 if (!(IS_SETLK(cmd) || IS_SETLKW(cmd))) 6471 return -EINVAL; 6472 6473 if (request->fl_type == F_UNLCK) { 6474 if (state != NULL) 6475 return nfs4_proc_unlck(state, cmd, request); 6476 return 0; 6477 } 6478 6479 if (state == NULL) 6480 return -ENOLCK; 6481 6482 if ((request->fl_flags & FL_POSIX) && 6483 !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags)) 6484 return -ENOLCK; 6485 6486 /* 6487 * Don't rely on the VFS having checked the file open mode, 6488 * since it won't do this for flock() locks. 6489 */ 6490 switch (request->fl_type) { 6491 case F_RDLCK: 6492 if (!(filp->f_mode & FMODE_READ)) 6493 return -EBADF; 6494 break; 6495 case F_WRLCK: 6496 if (!(filp->f_mode & FMODE_WRITE)) 6497 return -EBADF; 6498 } 6499 6500 status = nfs4_set_lock_state(state, request); 6501 if (status != 0) 6502 return status; 6503 6504 return nfs4_retry_setlk(state, cmd, request); 6505 } 6506 6507 int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid) 6508 { 6509 struct nfs_server *server = NFS_SERVER(state->inode); 6510 int err; 6511 6512 err = nfs4_set_lock_state(state, fl); 6513 if (err != 0) 6514 return err; 6515 err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW); 6516 return nfs4_handle_delegation_recall_error(server, state, stateid, err); 6517 } 6518 6519 struct nfs_release_lockowner_data { 6520 struct nfs4_lock_state *lsp; 6521 struct nfs_server *server; 6522 struct nfs_release_lockowner_args args; 6523 struct nfs_release_lockowner_res res; 6524 unsigned long timestamp; 6525 }; 6526 6527 static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata) 6528 { 6529 struct nfs_release_lockowner_data *data = calldata; 6530 struct nfs_server *server = data->server; 6531 nfs4_setup_sequence(server->nfs_client, &data->args.seq_args, 6532 &data->res.seq_res, task); 6533 data->args.lock_owner.clientid = server->nfs_client->cl_clientid; 6534 data->timestamp = jiffies; 6535 } 6536 6537 static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata) 6538 { 6539 struct nfs_release_lockowner_data *data = calldata; 6540 struct nfs_server *server = data->server; 6541 6542 nfs40_sequence_done(task, &data->res.seq_res); 6543 6544 switch (task->tk_status) { 6545 case 0: 6546 renew_lease(server, data->timestamp); 6547 break; 6548 case -NFS4ERR_STALE_CLIENTID: 6549 case -NFS4ERR_EXPIRED: 6550 nfs4_schedule_lease_recovery(server->nfs_client); 6551 break; 6552 case -NFS4ERR_LEASE_MOVED: 6553 case -NFS4ERR_DELAY: 6554 if (nfs4_async_handle_error(task, server, 6555 NULL, NULL) == -EAGAIN) 6556 rpc_restart_call_prepare(task); 6557 } 6558 } 6559 6560 static void nfs4_release_lockowner_release(void *calldata) 6561 { 6562 struct nfs_release_lockowner_data *data = calldata; 6563 nfs4_free_lock_state(data->server, data->lsp); 6564 kfree(calldata); 6565 } 6566 6567 static const struct rpc_call_ops nfs4_release_lockowner_ops = { 6568 .rpc_call_prepare = nfs4_release_lockowner_prepare, 6569 .rpc_call_done = nfs4_release_lockowner_done, 6570 .rpc_release = nfs4_release_lockowner_release, 6571 }; 6572 6573 static void 6574 nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp) 6575 { 6576 struct nfs_release_lockowner_data *data; 6577 struct rpc_message msg = { 6578 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER], 6579 }; 6580 6581 if (server->nfs_client->cl_mvops->minor_version != 0) 6582 return; 6583 6584 data = kmalloc(sizeof(*data), GFP_NOFS); 6585 if (!data) 6586 return; 6587 data->lsp = lsp; 6588 data->server = server; 6589 data->args.lock_owner.clientid = server->nfs_client->cl_clientid; 6590 data->args.lock_owner.id = lsp->ls_seqid.owner_id; 6591 data->args.lock_owner.s_dev = server->s_dev; 6592 6593 msg.rpc_argp = &data->args; 6594 msg.rpc_resp = &data->res; 6595 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0); 6596 rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data); 6597 } 6598 6599 #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl" 6600 6601 static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler, 6602 struct dentry *unused, struct inode *inode, 6603 const char *key, const void *buf, 6604 size_t buflen, int flags) 6605 { 6606 return nfs4_proc_set_acl(inode, buf, buflen); 6607 } 6608 6609 static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler, 6610 struct dentry *unused, struct inode *inode, 6611 const char *key, void *buf, size_t buflen) 6612 { 6613 return nfs4_proc_get_acl(inode, buf, buflen); 6614 } 6615 6616 static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry) 6617 { 6618 return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry))); 6619 } 6620 6621 #ifdef CONFIG_NFS_V4_SECURITY_LABEL 6622 6623 static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler, 6624 struct dentry *unused, struct inode *inode, 6625 const char *key, const void *buf, 6626 size_t buflen, int flags) 6627 { 6628 if (security_ismaclabel(key)) 6629 return nfs4_set_security_label(inode, buf, buflen); 6630 6631 return -EOPNOTSUPP; 6632 } 6633 6634 static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler, 6635 struct dentry *unused, struct inode *inode, 6636 const char *key, void *buf, size_t buflen) 6637 { 6638 if (security_ismaclabel(key)) 6639 return nfs4_get_security_label(inode, buf, buflen); 6640 return -EOPNOTSUPP; 6641 } 6642 6643 static ssize_t 6644 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len) 6645 { 6646 int len = 0; 6647 6648 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) { 6649 len = security_inode_listsecurity(inode, list, list_len); 6650 if (list_len && len > list_len) 6651 return -ERANGE; 6652 } 6653 return len; 6654 } 6655 6656 static const struct xattr_handler nfs4_xattr_nfs4_label_handler = { 6657 .prefix = XATTR_SECURITY_PREFIX, 6658 .get = nfs4_xattr_get_nfs4_label, 6659 .set = nfs4_xattr_set_nfs4_label, 6660 }; 6661 6662 #else 6663 6664 static ssize_t 6665 nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len) 6666 { 6667 return 0; 6668 } 6669 6670 #endif 6671 6672 /* 6673 * nfs_fhget will use either the mounted_on_fileid or the fileid 6674 */ 6675 static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr) 6676 { 6677 if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) || 6678 (fattr->valid & NFS_ATTR_FATTR_FILEID)) && 6679 (fattr->valid & NFS_ATTR_FATTR_FSID) && 6680 (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS))) 6681 return; 6682 6683 fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | 6684 NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL; 6685 fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; 6686 fattr->nlink = 2; 6687 } 6688 6689 static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, 6690 const struct qstr *name, 6691 struct nfs4_fs_locations *fs_locations, 6692 struct page *page) 6693 { 6694 struct nfs_server *server = NFS_SERVER(dir); 6695 u32 bitmask[3] = { 6696 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, 6697 }; 6698 struct nfs4_fs_locations_arg args = { 6699 .dir_fh = NFS_FH(dir), 6700 .name = name, 6701 .page = page, 6702 .bitmask = bitmask, 6703 }; 6704 struct nfs4_fs_locations_res res = { 6705 .fs_locations = fs_locations, 6706 }; 6707 struct rpc_message msg = { 6708 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], 6709 .rpc_argp = &args, 6710 .rpc_resp = &res, 6711 }; 6712 int status; 6713 6714 dprintk("%s: start\n", __func__); 6715 6716 /* Ask for the fileid of the absent filesystem if mounted_on_fileid 6717 * is not supported */ 6718 if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID) 6719 bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID; 6720 else 6721 bitmask[0] |= FATTR4_WORD0_FILEID; 6722 6723 nfs_fattr_init(&fs_locations->fattr); 6724 fs_locations->server = server; 6725 fs_locations->nlocations = 0; 6726 status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0); 6727 dprintk("%s: returned status = %d\n", __func__, status); 6728 return status; 6729 } 6730 6731 int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, 6732 const struct qstr *name, 6733 struct nfs4_fs_locations *fs_locations, 6734 struct page *page) 6735 { 6736 struct nfs4_exception exception = { }; 6737 int err; 6738 do { 6739 err = _nfs4_proc_fs_locations(client, dir, name, 6740 fs_locations, page); 6741 trace_nfs4_get_fs_locations(dir, name, err); 6742 err = nfs4_handle_exception(NFS_SERVER(dir), err, 6743 &exception); 6744 } while (exception.retry); 6745 return err; 6746 } 6747 6748 /* 6749 * This operation also signals the server that this client is 6750 * performing migration recovery. The server can stop returning 6751 * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is 6752 * appended to this compound to identify the client ID which is 6753 * performing recovery. 6754 */ 6755 static int _nfs40_proc_get_locations(struct inode *inode, 6756 struct nfs4_fs_locations *locations, 6757 struct page *page, struct rpc_cred *cred) 6758 { 6759 struct nfs_server *server = NFS_SERVER(inode); 6760 struct rpc_clnt *clnt = server->client; 6761 u32 bitmask[2] = { 6762 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, 6763 }; 6764 struct nfs4_fs_locations_arg args = { 6765 .clientid = server->nfs_client->cl_clientid, 6766 .fh = NFS_FH(inode), 6767 .page = page, 6768 .bitmask = bitmask, 6769 .migration = 1, /* skip LOOKUP */ 6770 .renew = 1, /* append RENEW */ 6771 }; 6772 struct nfs4_fs_locations_res res = { 6773 .fs_locations = locations, 6774 .migration = 1, 6775 .renew = 1, 6776 }; 6777 struct rpc_message msg = { 6778 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], 6779 .rpc_argp = &args, 6780 .rpc_resp = &res, 6781 .rpc_cred = cred, 6782 }; 6783 unsigned long now = jiffies; 6784 int status; 6785 6786 nfs_fattr_init(&locations->fattr); 6787 locations->server = server; 6788 locations->nlocations = 0; 6789 6790 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 6791 nfs4_set_sequence_privileged(&args.seq_args); 6792 status = nfs4_call_sync_sequence(clnt, server, &msg, 6793 &args.seq_args, &res.seq_res); 6794 if (status) 6795 return status; 6796 6797 renew_lease(server, now); 6798 return 0; 6799 } 6800 6801 #ifdef CONFIG_NFS_V4_1 6802 6803 /* 6804 * This operation also signals the server that this client is 6805 * performing migration recovery. The server can stop asserting 6806 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID 6807 * performing this operation is identified in the SEQUENCE 6808 * operation in this compound. 6809 * 6810 * When the client supports GETATTR(fs_locations_info), it can 6811 * be plumbed in here. 6812 */ 6813 static int _nfs41_proc_get_locations(struct inode *inode, 6814 struct nfs4_fs_locations *locations, 6815 struct page *page, struct rpc_cred *cred) 6816 { 6817 struct nfs_server *server = NFS_SERVER(inode); 6818 struct rpc_clnt *clnt = server->client; 6819 u32 bitmask[2] = { 6820 [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, 6821 }; 6822 struct nfs4_fs_locations_arg args = { 6823 .fh = NFS_FH(inode), 6824 .page = page, 6825 .bitmask = bitmask, 6826 .migration = 1, /* skip LOOKUP */ 6827 }; 6828 struct nfs4_fs_locations_res res = { 6829 .fs_locations = locations, 6830 .migration = 1, 6831 }; 6832 struct rpc_message msg = { 6833 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], 6834 .rpc_argp = &args, 6835 .rpc_resp = &res, 6836 .rpc_cred = cred, 6837 }; 6838 int status; 6839 6840 nfs_fattr_init(&locations->fattr); 6841 locations->server = server; 6842 locations->nlocations = 0; 6843 6844 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 6845 nfs4_set_sequence_privileged(&args.seq_args); 6846 status = nfs4_call_sync_sequence(clnt, server, &msg, 6847 &args.seq_args, &res.seq_res); 6848 if (status == NFS4_OK && 6849 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) 6850 status = -NFS4ERR_LEASE_MOVED; 6851 return status; 6852 } 6853 6854 #endif /* CONFIG_NFS_V4_1 */ 6855 6856 /** 6857 * nfs4_proc_get_locations - discover locations for a migrated FSID 6858 * @inode: inode on FSID that is migrating 6859 * @locations: result of query 6860 * @page: buffer 6861 * @cred: credential to use for this operation 6862 * 6863 * Returns NFS4_OK on success, a negative NFS4ERR status code if the 6864 * operation failed, or a negative errno if a local error occurred. 6865 * 6866 * On success, "locations" is filled in, but if the server has 6867 * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not 6868 * asserted. 6869 * 6870 * -NFS4ERR_LEASE_MOVED is returned if the server still has leases 6871 * from this client that require migration recovery. 6872 */ 6873 int nfs4_proc_get_locations(struct inode *inode, 6874 struct nfs4_fs_locations *locations, 6875 struct page *page, struct rpc_cred *cred) 6876 { 6877 struct nfs_server *server = NFS_SERVER(inode); 6878 struct nfs_client *clp = server->nfs_client; 6879 const struct nfs4_mig_recovery_ops *ops = 6880 clp->cl_mvops->mig_recovery_ops; 6881 struct nfs4_exception exception = { }; 6882 int status; 6883 6884 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, 6885 (unsigned long long)server->fsid.major, 6886 (unsigned long long)server->fsid.minor, 6887 clp->cl_hostname); 6888 nfs_display_fhandle(NFS_FH(inode), __func__); 6889 6890 do { 6891 status = ops->get_locations(inode, locations, page, cred); 6892 if (status != -NFS4ERR_DELAY) 6893 break; 6894 nfs4_handle_exception(server, status, &exception); 6895 } while (exception.retry); 6896 return status; 6897 } 6898 6899 /* 6900 * This operation also signals the server that this client is 6901 * performing "lease moved" recovery. The server can stop 6902 * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation 6903 * is appended to this compound to identify the client ID which is 6904 * performing recovery. 6905 */ 6906 static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) 6907 { 6908 struct nfs_server *server = NFS_SERVER(inode); 6909 struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; 6910 struct rpc_clnt *clnt = server->client; 6911 struct nfs4_fsid_present_arg args = { 6912 .fh = NFS_FH(inode), 6913 .clientid = clp->cl_clientid, 6914 .renew = 1, /* append RENEW */ 6915 }; 6916 struct nfs4_fsid_present_res res = { 6917 .renew = 1, 6918 }; 6919 struct rpc_message msg = { 6920 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], 6921 .rpc_argp = &args, 6922 .rpc_resp = &res, 6923 .rpc_cred = cred, 6924 }; 6925 unsigned long now = jiffies; 6926 int status; 6927 6928 res.fh = nfs_alloc_fhandle(); 6929 if (res.fh == NULL) 6930 return -ENOMEM; 6931 6932 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 6933 nfs4_set_sequence_privileged(&args.seq_args); 6934 status = nfs4_call_sync_sequence(clnt, server, &msg, 6935 &args.seq_args, &res.seq_res); 6936 nfs_free_fhandle(res.fh); 6937 if (status) 6938 return status; 6939 6940 do_renew_lease(clp, now); 6941 return 0; 6942 } 6943 6944 #ifdef CONFIG_NFS_V4_1 6945 6946 /* 6947 * This operation also signals the server that this client is 6948 * performing "lease moved" recovery. The server can stop asserting 6949 * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing 6950 * this operation is identified in the SEQUENCE operation in this 6951 * compound. 6952 */ 6953 static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) 6954 { 6955 struct nfs_server *server = NFS_SERVER(inode); 6956 struct rpc_clnt *clnt = server->client; 6957 struct nfs4_fsid_present_arg args = { 6958 .fh = NFS_FH(inode), 6959 }; 6960 struct nfs4_fsid_present_res res = { 6961 }; 6962 struct rpc_message msg = { 6963 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], 6964 .rpc_argp = &args, 6965 .rpc_resp = &res, 6966 .rpc_cred = cred, 6967 }; 6968 int status; 6969 6970 res.fh = nfs_alloc_fhandle(); 6971 if (res.fh == NULL) 6972 return -ENOMEM; 6973 6974 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 6975 nfs4_set_sequence_privileged(&args.seq_args); 6976 status = nfs4_call_sync_sequence(clnt, server, &msg, 6977 &args.seq_args, &res.seq_res); 6978 nfs_free_fhandle(res.fh); 6979 if (status == NFS4_OK && 6980 res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) 6981 status = -NFS4ERR_LEASE_MOVED; 6982 return status; 6983 } 6984 6985 #endif /* CONFIG_NFS_V4_1 */ 6986 6987 /** 6988 * nfs4_proc_fsid_present - Is this FSID present or absent on server? 6989 * @inode: inode on FSID to check 6990 * @cred: credential to use for this operation 6991 * 6992 * Server indicates whether the FSID is present, moved, or not 6993 * recognized. This operation is necessary to clear a LEASE_MOVED 6994 * condition for this client ID. 6995 * 6996 * Returns NFS4_OK if the FSID is present on this server, 6997 * -NFS4ERR_MOVED if the FSID is no longer present, a negative 6998 * NFS4ERR code if some error occurred on the server, or a 6999 * negative errno if a local failure occurred. 7000 */ 7001 int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) 7002 { 7003 struct nfs_server *server = NFS_SERVER(inode); 7004 struct nfs_client *clp = server->nfs_client; 7005 const struct nfs4_mig_recovery_ops *ops = 7006 clp->cl_mvops->mig_recovery_ops; 7007 struct nfs4_exception exception = { }; 7008 int status; 7009 7010 dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, 7011 (unsigned long long)server->fsid.major, 7012 (unsigned long long)server->fsid.minor, 7013 clp->cl_hostname); 7014 nfs_display_fhandle(NFS_FH(inode), __func__); 7015 7016 do { 7017 status = ops->fsid_present(inode, cred); 7018 if (status != -NFS4ERR_DELAY) 7019 break; 7020 nfs4_handle_exception(server, status, &exception); 7021 } while (exception.retry); 7022 return status; 7023 } 7024 7025 /** 7026 * If 'use_integrity' is true and the state managment nfs_client 7027 * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient 7028 * and the machine credential as per RFC3530bis and RFC5661 Security 7029 * Considerations sections. Otherwise, just use the user cred with the 7030 * filesystem's rpc_client. 7031 */ 7032 static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity) 7033 { 7034 int status; 7035 struct nfs4_secinfo_arg args = { 7036 .dir_fh = NFS_FH(dir), 7037 .name = name, 7038 }; 7039 struct nfs4_secinfo_res res = { 7040 .flavors = flavors, 7041 }; 7042 struct rpc_message msg = { 7043 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO], 7044 .rpc_argp = &args, 7045 .rpc_resp = &res, 7046 }; 7047 struct rpc_clnt *clnt = NFS_SERVER(dir)->client; 7048 struct rpc_cred *cred = NULL; 7049 7050 if (use_integrity) { 7051 clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient; 7052 cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client); 7053 msg.rpc_cred = cred; 7054 } 7055 7056 dprintk("NFS call secinfo %s\n", name->name); 7057 7058 nfs4_state_protect(NFS_SERVER(dir)->nfs_client, 7059 NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg); 7060 7061 status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args, 7062 &res.seq_res, 0); 7063 dprintk("NFS reply secinfo: %d\n", status); 7064 7065 if (cred) 7066 put_rpccred(cred); 7067 7068 return status; 7069 } 7070 7071 int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, 7072 struct nfs4_secinfo_flavors *flavors) 7073 { 7074 struct nfs4_exception exception = { }; 7075 int err; 7076 do { 7077 err = -NFS4ERR_WRONGSEC; 7078 7079 /* try to use integrity protection with machine cred */ 7080 if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client)) 7081 err = _nfs4_proc_secinfo(dir, name, flavors, true); 7082 7083 /* 7084 * if unable to use integrity protection, or SECINFO with 7085 * integrity protection returns NFS4ERR_WRONGSEC (which is 7086 * disallowed by spec, but exists in deployed servers) use 7087 * the current filesystem's rpc_client and the user cred. 7088 */ 7089 if (err == -NFS4ERR_WRONGSEC) 7090 err = _nfs4_proc_secinfo(dir, name, flavors, false); 7091 7092 trace_nfs4_secinfo(dir, name, err); 7093 err = nfs4_handle_exception(NFS_SERVER(dir), err, 7094 &exception); 7095 } while (exception.retry); 7096 return err; 7097 } 7098 7099 #ifdef CONFIG_NFS_V4_1 7100 /* 7101 * Check the exchange flags returned by the server for invalid flags, having 7102 * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or 7103 * DS flags set. 7104 */ 7105 static int nfs4_check_cl_exchange_flags(u32 flags) 7106 { 7107 if (flags & ~EXCHGID4_FLAG_MASK_R) 7108 goto out_inval; 7109 if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) && 7110 (flags & EXCHGID4_FLAG_USE_NON_PNFS)) 7111 goto out_inval; 7112 if (!(flags & (EXCHGID4_FLAG_MASK_PNFS))) 7113 goto out_inval; 7114 return NFS_OK; 7115 out_inval: 7116 return -NFS4ERR_INVAL; 7117 } 7118 7119 static bool 7120 nfs41_same_server_scope(struct nfs41_server_scope *a, 7121 struct nfs41_server_scope *b) 7122 { 7123 if (a->server_scope_sz != b->server_scope_sz) 7124 return false; 7125 return memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0; 7126 } 7127 7128 static void 7129 nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata) 7130 { 7131 } 7132 7133 static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = { 7134 .rpc_call_done = &nfs4_bind_one_conn_to_session_done, 7135 }; 7136 7137 /* 7138 * nfs4_proc_bind_one_conn_to_session() 7139 * 7140 * The 4.1 client currently uses the same TCP connection for the 7141 * fore and backchannel. 7142 */ 7143 static 7144 int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt, 7145 struct rpc_xprt *xprt, 7146 struct nfs_client *clp, 7147 struct rpc_cred *cred) 7148 { 7149 int status; 7150 struct nfs41_bind_conn_to_session_args args = { 7151 .client = clp, 7152 .dir = NFS4_CDFC4_FORE_OR_BOTH, 7153 }; 7154 struct nfs41_bind_conn_to_session_res res; 7155 struct rpc_message msg = { 7156 .rpc_proc = 7157 &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION], 7158 .rpc_argp = &args, 7159 .rpc_resp = &res, 7160 .rpc_cred = cred, 7161 }; 7162 struct rpc_task_setup task_setup_data = { 7163 .rpc_client = clnt, 7164 .rpc_xprt = xprt, 7165 .callback_ops = &nfs4_bind_one_conn_to_session_ops, 7166 .rpc_message = &msg, 7167 .flags = RPC_TASK_TIMEOUT, 7168 }; 7169 struct rpc_task *task; 7170 7171 dprintk("--> %s\n", __func__); 7172 7173 nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id); 7174 if (!(clp->cl_session->flags & SESSION4_BACK_CHAN)) 7175 args.dir = NFS4_CDFC4_FORE; 7176 7177 /* Do not set the backchannel flag unless this is clnt->cl_xprt */ 7178 if (xprt != rcu_access_pointer(clnt->cl_xprt)) 7179 args.dir = NFS4_CDFC4_FORE; 7180 7181 task = rpc_run_task(&task_setup_data); 7182 if (!IS_ERR(task)) { 7183 status = task->tk_status; 7184 rpc_put_task(task); 7185 } else 7186 status = PTR_ERR(task); 7187 trace_nfs4_bind_conn_to_session(clp, status); 7188 if (status == 0) { 7189 if (memcmp(res.sessionid.data, 7190 clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) { 7191 dprintk("NFS: %s: Session ID mismatch\n", __func__); 7192 status = -EIO; 7193 goto out; 7194 } 7195 if ((res.dir & args.dir) != res.dir || res.dir == 0) { 7196 dprintk("NFS: %s: Unexpected direction from server\n", 7197 __func__); 7198 status = -EIO; 7199 goto out; 7200 } 7201 if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) { 7202 dprintk("NFS: %s: Server returned RDMA mode = true\n", 7203 __func__); 7204 status = -EIO; 7205 goto out; 7206 } 7207 } 7208 out: 7209 dprintk("<-- %s status= %d\n", __func__, status); 7210 return status; 7211 } 7212 7213 struct rpc_bind_conn_calldata { 7214 struct nfs_client *clp; 7215 struct rpc_cred *cred; 7216 }; 7217 7218 static int 7219 nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt, 7220 struct rpc_xprt *xprt, 7221 void *calldata) 7222 { 7223 struct rpc_bind_conn_calldata *p = calldata; 7224 7225 return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred); 7226 } 7227 7228 int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred) 7229 { 7230 struct rpc_bind_conn_calldata data = { 7231 .clp = clp, 7232 .cred = cred, 7233 }; 7234 return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient, 7235 nfs4_proc_bind_conn_to_session_callback, &data); 7236 } 7237 7238 /* 7239 * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map 7240 * and operations we'd like to see to enable certain features in the allow map 7241 */ 7242 static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = { 7243 .how = SP4_MACH_CRED, 7244 .enforce.u.words = { 7245 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | 7246 1 << (OP_EXCHANGE_ID - 32) | 7247 1 << (OP_CREATE_SESSION - 32) | 7248 1 << (OP_DESTROY_SESSION - 32) | 7249 1 << (OP_DESTROY_CLIENTID - 32) 7250 }, 7251 .allow.u.words = { 7252 [0] = 1 << (OP_CLOSE) | 7253 1 << (OP_OPEN_DOWNGRADE) | 7254 1 << (OP_LOCKU) | 7255 1 << (OP_DELEGRETURN) | 7256 1 << (OP_COMMIT), 7257 [1] = 1 << (OP_SECINFO - 32) | 7258 1 << (OP_SECINFO_NO_NAME - 32) | 7259 1 << (OP_LAYOUTRETURN - 32) | 7260 1 << (OP_TEST_STATEID - 32) | 7261 1 << (OP_FREE_STATEID - 32) | 7262 1 << (OP_WRITE - 32) 7263 } 7264 }; 7265 7266 /* 7267 * Select the state protection mode for client `clp' given the server results 7268 * from exchange_id in `sp'. 7269 * 7270 * Returns 0 on success, negative errno otherwise. 7271 */ 7272 static int nfs4_sp4_select_mode(struct nfs_client *clp, 7273 struct nfs41_state_protection *sp) 7274 { 7275 static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = { 7276 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | 7277 1 << (OP_EXCHANGE_ID - 32) | 7278 1 << (OP_CREATE_SESSION - 32) | 7279 1 << (OP_DESTROY_SESSION - 32) | 7280 1 << (OP_DESTROY_CLIENTID - 32) 7281 }; 7282 unsigned int i; 7283 7284 if (sp->how == SP4_MACH_CRED) { 7285 /* Print state protect result */ 7286 dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n"); 7287 for (i = 0; i <= LAST_NFS4_OP; i++) { 7288 if (test_bit(i, sp->enforce.u.longs)) 7289 dfprintk(MOUNT, " enforce op %d\n", i); 7290 if (test_bit(i, sp->allow.u.longs)) 7291 dfprintk(MOUNT, " allow op %d\n", i); 7292 } 7293 7294 /* make sure nothing is on enforce list that isn't supported */ 7295 for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) { 7296 if (sp->enforce.u.words[i] & ~supported_enforce[i]) { 7297 dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); 7298 return -EINVAL; 7299 } 7300 } 7301 7302 /* 7303 * Minimal mode - state operations are allowed to use machine 7304 * credential. Note this already happens by default, so the 7305 * client doesn't have to do anything more than the negotiation. 7306 * 7307 * NOTE: we don't care if EXCHANGE_ID is in the list - 7308 * we're already using the machine cred for exchange_id 7309 * and will never use a different cred. 7310 */ 7311 if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) && 7312 test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) && 7313 test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) && 7314 test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) { 7315 dfprintk(MOUNT, "sp4_mach_cred:\n"); 7316 dfprintk(MOUNT, " minimal mode enabled\n"); 7317 set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags); 7318 } else { 7319 dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); 7320 return -EINVAL; 7321 } 7322 7323 if (test_bit(OP_CLOSE, sp->allow.u.longs) && 7324 test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) && 7325 test_bit(OP_DELEGRETURN, sp->allow.u.longs) && 7326 test_bit(OP_LOCKU, sp->allow.u.longs)) { 7327 dfprintk(MOUNT, " cleanup mode enabled\n"); 7328 set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags); 7329 } 7330 7331 if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) { 7332 dfprintk(MOUNT, " pnfs cleanup mode enabled\n"); 7333 set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP, 7334 &clp->cl_sp4_flags); 7335 } 7336 7337 if (test_bit(OP_SECINFO, sp->allow.u.longs) && 7338 test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) { 7339 dfprintk(MOUNT, " secinfo mode enabled\n"); 7340 set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags); 7341 } 7342 7343 if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) && 7344 test_bit(OP_FREE_STATEID, sp->allow.u.longs)) { 7345 dfprintk(MOUNT, " stateid mode enabled\n"); 7346 set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags); 7347 } 7348 7349 if (test_bit(OP_WRITE, sp->allow.u.longs)) { 7350 dfprintk(MOUNT, " write mode enabled\n"); 7351 set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags); 7352 } 7353 7354 if (test_bit(OP_COMMIT, sp->allow.u.longs)) { 7355 dfprintk(MOUNT, " commit mode enabled\n"); 7356 set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags); 7357 } 7358 } 7359 7360 return 0; 7361 } 7362 7363 struct nfs41_exchange_id_data { 7364 struct nfs41_exchange_id_res res; 7365 struct nfs41_exchange_id_args args; 7366 struct rpc_xprt *xprt; 7367 int rpc_status; 7368 }; 7369 7370 static void nfs4_exchange_id_done(struct rpc_task *task, void *data) 7371 { 7372 struct nfs41_exchange_id_data *cdata = 7373 (struct nfs41_exchange_id_data *)data; 7374 struct nfs_client *clp = cdata->args.client; 7375 int status = task->tk_status; 7376 7377 trace_nfs4_exchange_id(clp, status); 7378 7379 if (status == 0) 7380 status = nfs4_check_cl_exchange_flags(cdata->res.flags); 7381 7382 if (cdata->xprt && status == 0) { 7383 status = nfs4_detect_session_trunking(clp, &cdata->res, 7384 cdata->xprt); 7385 goto out; 7386 } 7387 7388 if (status == 0) 7389 status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect); 7390 7391 if (status == 0) { 7392 clp->cl_clientid = cdata->res.clientid; 7393 clp->cl_exchange_flags = cdata->res.flags; 7394 /* Client ID is not confirmed */ 7395 if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R)) { 7396 clear_bit(NFS4_SESSION_ESTABLISHED, 7397 &clp->cl_session->session_state); 7398 clp->cl_seqid = cdata->res.seqid; 7399 } 7400 7401 kfree(clp->cl_serverowner); 7402 clp->cl_serverowner = cdata->res.server_owner; 7403 cdata->res.server_owner = NULL; 7404 7405 /* use the most recent implementation id */ 7406 kfree(clp->cl_implid); 7407 clp->cl_implid = cdata->res.impl_id; 7408 cdata->res.impl_id = NULL; 7409 7410 if (clp->cl_serverscope != NULL && 7411 !nfs41_same_server_scope(clp->cl_serverscope, 7412 cdata->res.server_scope)) { 7413 dprintk("%s: server_scope mismatch detected\n", 7414 __func__); 7415 set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state); 7416 kfree(clp->cl_serverscope); 7417 clp->cl_serverscope = NULL; 7418 } 7419 7420 if (clp->cl_serverscope == NULL) { 7421 clp->cl_serverscope = cdata->res.server_scope; 7422 cdata->res.server_scope = NULL; 7423 } 7424 /* Save the EXCHANGE_ID verifier session trunk tests */ 7425 memcpy(clp->cl_confirm.data, cdata->args.verifier->data, 7426 sizeof(clp->cl_confirm.data)); 7427 } 7428 out: 7429 cdata->rpc_status = status; 7430 return; 7431 } 7432 7433 static void nfs4_exchange_id_release(void *data) 7434 { 7435 struct nfs41_exchange_id_data *cdata = 7436 (struct nfs41_exchange_id_data *)data; 7437 7438 nfs_put_client(cdata->args.client); 7439 if (cdata->xprt) { 7440 xprt_put(cdata->xprt); 7441 rpc_clnt_xprt_switch_put(cdata->args.client->cl_rpcclient); 7442 } 7443 kfree(cdata->res.impl_id); 7444 kfree(cdata->res.server_scope); 7445 kfree(cdata->res.server_owner); 7446 kfree(cdata); 7447 } 7448 7449 static const struct rpc_call_ops nfs4_exchange_id_call_ops = { 7450 .rpc_call_done = nfs4_exchange_id_done, 7451 .rpc_release = nfs4_exchange_id_release, 7452 }; 7453 7454 /* 7455 * _nfs4_proc_exchange_id() 7456 * 7457 * Wrapper for EXCHANGE_ID operation. 7458 */ 7459 static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred, 7460 u32 sp4_how, struct rpc_xprt *xprt) 7461 { 7462 nfs4_verifier verifier; 7463 struct rpc_message msg = { 7464 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID], 7465 .rpc_cred = cred, 7466 }; 7467 struct rpc_task_setup task_setup_data = { 7468 .rpc_client = clp->cl_rpcclient, 7469 .callback_ops = &nfs4_exchange_id_call_ops, 7470 .rpc_message = &msg, 7471 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, 7472 }; 7473 struct nfs41_exchange_id_data *calldata; 7474 struct rpc_task *task; 7475 int status = -EIO; 7476 7477 if (!atomic_inc_not_zero(&clp->cl_count)) 7478 goto out; 7479 7480 status = -ENOMEM; 7481 calldata = kzalloc(sizeof(*calldata), GFP_NOFS); 7482 if (!calldata) 7483 goto out; 7484 7485 if (!xprt) 7486 nfs4_init_boot_verifier(clp, &verifier); 7487 7488 status = nfs4_init_uniform_client_string(clp); 7489 if (status) 7490 goto out_calldata; 7491 7492 dprintk("NFS call exchange_id auth=%s, '%s'\n", 7493 clp->cl_rpcclient->cl_auth->au_ops->au_name, 7494 clp->cl_owner_id); 7495 7496 calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner), 7497 GFP_NOFS); 7498 status = -ENOMEM; 7499 if (unlikely(calldata->res.server_owner == NULL)) 7500 goto out_calldata; 7501 7502 calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope), 7503 GFP_NOFS); 7504 if (unlikely(calldata->res.server_scope == NULL)) 7505 goto out_server_owner; 7506 7507 calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS); 7508 if (unlikely(calldata->res.impl_id == NULL)) 7509 goto out_server_scope; 7510 7511 switch (sp4_how) { 7512 case SP4_NONE: 7513 calldata->args.state_protect.how = SP4_NONE; 7514 break; 7515 7516 case SP4_MACH_CRED: 7517 calldata->args.state_protect = nfs4_sp4_mach_cred_request; 7518 break; 7519 7520 default: 7521 /* unsupported! */ 7522 WARN_ON_ONCE(1); 7523 status = -EINVAL; 7524 goto out_impl_id; 7525 } 7526 if (xprt) { 7527 calldata->xprt = xprt; 7528 task_setup_data.rpc_xprt = xprt; 7529 task_setup_data.flags = 7530 RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC; 7531 calldata->args.verifier = &clp->cl_confirm; 7532 } else { 7533 calldata->args.verifier = &verifier; 7534 } 7535 calldata->args.client = clp; 7536 #ifdef CONFIG_NFS_V4_1_MIGRATION 7537 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | 7538 EXCHGID4_FLAG_BIND_PRINC_STATEID | 7539 EXCHGID4_FLAG_SUPP_MOVED_MIGR, 7540 #else 7541 calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | 7542 EXCHGID4_FLAG_BIND_PRINC_STATEID, 7543 #endif 7544 msg.rpc_argp = &calldata->args; 7545 msg.rpc_resp = &calldata->res; 7546 task_setup_data.callback_data = calldata; 7547 7548 task = rpc_run_task(&task_setup_data); 7549 if (IS_ERR(task)) { 7550 status = PTR_ERR(task); 7551 goto out_impl_id; 7552 } 7553 7554 if (!xprt) { 7555 status = rpc_wait_for_completion_task(task); 7556 if (!status) 7557 status = calldata->rpc_status; 7558 } else /* session trunking test */ 7559 status = calldata->rpc_status; 7560 7561 rpc_put_task(task); 7562 out: 7563 if (clp->cl_implid != NULL) 7564 dprintk("NFS reply exchange_id: Server Implementation ID: " 7565 "domain: %s, name: %s, date: %llu,%u\n", 7566 clp->cl_implid->domain, clp->cl_implid->name, 7567 clp->cl_implid->date.seconds, 7568 clp->cl_implid->date.nseconds); 7569 dprintk("NFS reply exchange_id: %d\n", status); 7570 return status; 7571 7572 out_impl_id: 7573 kfree(calldata->res.impl_id); 7574 out_server_scope: 7575 kfree(calldata->res.server_scope); 7576 out_server_owner: 7577 kfree(calldata->res.server_owner); 7578 out_calldata: 7579 kfree(calldata); 7580 goto out; 7581 } 7582 7583 /* 7584 * nfs4_proc_exchange_id() 7585 * 7586 * Returns zero, a negative errno, or a negative NFS4ERR status code. 7587 * 7588 * Since the clientid has expired, all compounds using sessions 7589 * associated with the stale clientid will be returning 7590 * NFS4ERR_BADSESSION in the sequence operation, and will therefore 7591 * be in some phase of session reset. 7592 * 7593 * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used. 7594 */ 7595 int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred) 7596 { 7597 rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor; 7598 int status; 7599 7600 /* try SP4_MACH_CRED if krb5i/p */ 7601 if (authflavor == RPC_AUTH_GSS_KRB5I || 7602 authflavor == RPC_AUTH_GSS_KRB5P) { 7603 status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL); 7604 if (!status) 7605 return 0; 7606 } 7607 7608 /* try SP4_NONE */ 7609 return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL); 7610 } 7611 7612 /** 7613 * nfs4_test_session_trunk 7614 * 7615 * This is an add_xprt_test() test function called from 7616 * rpc_clnt_setup_test_and_add_xprt. 7617 * 7618 * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt 7619 * and is dereferrenced in nfs4_exchange_id_release 7620 * 7621 * Upon success, add the new transport to the rpc_clnt 7622 * 7623 * @clnt: struct rpc_clnt to get new transport 7624 * @xprt: the rpc_xprt to test 7625 * @data: call data for _nfs4_proc_exchange_id. 7626 */ 7627 int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt, 7628 void *data) 7629 { 7630 struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data; 7631 u32 sp4_how; 7632 7633 dprintk("--> %s try %s\n", __func__, 7634 xprt->address_strings[RPC_DISPLAY_ADDR]); 7635 7636 sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED); 7637 7638 /* Test connection for session trunking. Async exchange_id call */ 7639 return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt); 7640 } 7641 EXPORT_SYMBOL_GPL(nfs4_test_session_trunk); 7642 7643 static int _nfs4_proc_destroy_clientid(struct nfs_client *clp, 7644 struct rpc_cred *cred) 7645 { 7646 struct rpc_message msg = { 7647 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID], 7648 .rpc_argp = clp, 7649 .rpc_cred = cred, 7650 }; 7651 int status; 7652 7653 status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); 7654 trace_nfs4_destroy_clientid(clp, status); 7655 if (status) 7656 dprintk("NFS: Got error %d from the server %s on " 7657 "DESTROY_CLIENTID.", status, clp->cl_hostname); 7658 return status; 7659 } 7660 7661 static int nfs4_proc_destroy_clientid(struct nfs_client *clp, 7662 struct rpc_cred *cred) 7663 { 7664 unsigned int loop; 7665 int ret; 7666 7667 for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) { 7668 ret = _nfs4_proc_destroy_clientid(clp, cred); 7669 switch (ret) { 7670 case -NFS4ERR_DELAY: 7671 case -NFS4ERR_CLIENTID_BUSY: 7672 ssleep(1); 7673 break; 7674 default: 7675 return ret; 7676 } 7677 } 7678 return 0; 7679 } 7680 7681 int nfs4_destroy_clientid(struct nfs_client *clp) 7682 { 7683 struct rpc_cred *cred; 7684 int ret = 0; 7685 7686 if (clp->cl_mvops->minor_version < 1) 7687 goto out; 7688 if (clp->cl_exchange_flags == 0) 7689 goto out; 7690 if (clp->cl_preserve_clid) 7691 goto out; 7692 cred = nfs4_get_clid_cred(clp); 7693 ret = nfs4_proc_destroy_clientid(clp, cred); 7694 if (cred) 7695 put_rpccred(cred); 7696 switch (ret) { 7697 case 0: 7698 case -NFS4ERR_STALE_CLIENTID: 7699 clp->cl_exchange_flags = 0; 7700 } 7701 out: 7702 return ret; 7703 } 7704 7705 struct nfs4_get_lease_time_data { 7706 struct nfs4_get_lease_time_args *args; 7707 struct nfs4_get_lease_time_res *res; 7708 struct nfs_client *clp; 7709 }; 7710 7711 static void nfs4_get_lease_time_prepare(struct rpc_task *task, 7712 void *calldata) 7713 { 7714 struct nfs4_get_lease_time_data *data = 7715 (struct nfs4_get_lease_time_data *)calldata; 7716 7717 dprintk("--> %s\n", __func__); 7718 /* just setup sequence, do not trigger session recovery 7719 since we're invoked within one */ 7720 nfs4_setup_sequence(data->clp, 7721 &data->args->la_seq_args, 7722 &data->res->lr_seq_res, 7723 task); 7724 dprintk("<-- %s\n", __func__); 7725 } 7726 7727 /* 7728 * Called from nfs4_state_manager thread for session setup, so don't recover 7729 * from sequence operation or clientid errors. 7730 */ 7731 static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata) 7732 { 7733 struct nfs4_get_lease_time_data *data = 7734 (struct nfs4_get_lease_time_data *)calldata; 7735 7736 dprintk("--> %s\n", __func__); 7737 if (!nfs41_sequence_done(task, &data->res->lr_seq_res)) 7738 return; 7739 switch (task->tk_status) { 7740 case -NFS4ERR_DELAY: 7741 case -NFS4ERR_GRACE: 7742 dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status); 7743 rpc_delay(task, NFS4_POLL_RETRY_MIN); 7744 task->tk_status = 0; 7745 /* fall through */ 7746 case -NFS4ERR_RETRY_UNCACHED_REP: 7747 rpc_restart_call_prepare(task); 7748 return; 7749 } 7750 dprintk("<-- %s\n", __func__); 7751 } 7752 7753 static const struct rpc_call_ops nfs4_get_lease_time_ops = { 7754 .rpc_call_prepare = nfs4_get_lease_time_prepare, 7755 .rpc_call_done = nfs4_get_lease_time_done, 7756 }; 7757 7758 int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo) 7759 { 7760 struct rpc_task *task; 7761 struct nfs4_get_lease_time_args args; 7762 struct nfs4_get_lease_time_res res = { 7763 .lr_fsinfo = fsinfo, 7764 }; 7765 struct nfs4_get_lease_time_data data = { 7766 .args = &args, 7767 .res = &res, 7768 .clp = clp, 7769 }; 7770 struct rpc_message msg = { 7771 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME], 7772 .rpc_argp = &args, 7773 .rpc_resp = &res, 7774 }; 7775 struct rpc_task_setup task_setup = { 7776 .rpc_client = clp->cl_rpcclient, 7777 .rpc_message = &msg, 7778 .callback_ops = &nfs4_get_lease_time_ops, 7779 .callback_data = &data, 7780 .flags = RPC_TASK_TIMEOUT, 7781 }; 7782 int status; 7783 7784 nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0); 7785 nfs4_set_sequence_privileged(&args.la_seq_args); 7786 dprintk("--> %s\n", __func__); 7787 task = rpc_run_task(&task_setup); 7788 7789 if (IS_ERR(task)) 7790 status = PTR_ERR(task); 7791 else { 7792 status = task->tk_status; 7793 rpc_put_task(task); 7794 } 7795 dprintk("<-- %s return %d\n", __func__, status); 7796 7797 return status; 7798 } 7799 7800 /* 7801 * Initialize the values to be used by the client in CREATE_SESSION 7802 * If nfs4_init_session set the fore channel request and response sizes, 7803 * use them. 7804 * 7805 * Set the back channel max_resp_sz_cached to zero to force the client to 7806 * always set csa_cachethis to FALSE because the current implementation 7807 * of the back channel DRC only supports caching the CB_SEQUENCE operation. 7808 */ 7809 static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args, 7810 struct rpc_clnt *clnt) 7811 { 7812 unsigned int max_rqst_sz, max_resp_sz; 7813 unsigned int max_bc_payload = rpc_max_bc_payload(clnt); 7814 7815 max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead; 7816 max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead; 7817 7818 /* Fore channel attributes */ 7819 args->fc_attrs.max_rqst_sz = max_rqst_sz; 7820 args->fc_attrs.max_resp_sz = max_resp_sz; 7821 args->fc_attrs.max_ops = NFS4_MAX_OPS; 7822 args->fc_attrs.max_reqs = max_session_slots; 7823 7824 dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u " 7825 "max_ops=%u max_reqs=%u\n", 7826 __func__, 7827 args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz, 7828 args->fc_attrs.max_ops, args->fc_attrs.max_reqs); 7829 7830 /* Back channel attributes */ 7831 args->bc_attrs.max_rqst_sz = max_bc_payload; 7832 args->bc_attrs.max_resp_sz = max_bc_payload; 7833 args->bc_attrs.max_resp_sz_cached = 0; 7834 args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS; 7835 args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1); 7836 7837 dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u " 7838 "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n", 7839 __func__, 7840 args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz, 7841 args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops, 7842 args->bc_attrs.max_reqs); 7843 } 7844 7845 static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, 7846 struct nfs41_create_session_res *res) 7847 { 7848 struct nfs4_channel_attrs *sent = &args->fc_attrs; 7849 struct nfs4_channel_attrs *rcvd = &res->fc_attrs; 7850 7851 if (rcvd->max_resp_sz > sent->max_resp_sz) 7852 return -EINVAL; 7853 /* 7854 * Our requested max_ops is the minimum we need; we're not 7855 * prepared to break up compounds into smaller pieces than that. 7856 * So, no point even trying to continue if the server won't 7857 * cooperate: 7858 */ 7859 if (rcvd->max_ops < sent->max_ops) 7860 return -EINVAL; 7861 if (rcvd->max_reqs == 0) 7862 return -EINVAL; 7863 if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE) 7864 rcvd->max_reqs = NFS4_MAX_SLOT_TABLE; 7865 return 0; 7866 } 7867 7868 static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, 7869 struct nfs41_create_session_res *res) 7870 { 7871 struct nfs4_channel_attrs *sent = &args->bc_attrs; 7872 struct nfs4_channel_attrs *rcvd = &res->bc_attrs; 7873 7874 if (!(res->flags & SESSION4_BACK_CHAN)) 7875 goto out; 7876 if (rcvd->max_rqst_sz > sent->max_rqst_sz) 7877 return -EINVAL; 7878 if (rcvd->max_resp_sz < sent->max_resp_sz) 7879 return -EINVAL; 7880 if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached) 7881 return -EINVAL; 7882 if (rcvd->max_ops > sent->max_ops) 7883 return -EINVAL; 7884 if (rcvd->max_reqs > sent->max_reqs) 7885 return -EINVAL; 7886 out: 7887 return 0; 7888 } 7889 7890 static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args, 7891 struct nfs41_create_session_res *res) 7892 { 7893 int ret; 7894 7895 ret = nfs4_verify_fore_channel_attrs(args, res); 7896 if (ret) 7897 return ret; 7898 return nfs4_verify_back_channel_attrs(args, res); 7899 } 7900 7901 static void nfs4_update_session(struct nfs4_session *session, 7902 struct nfs41_create_session_res *res) 7903 { 7904 nfs4_copy_sessionid(&session->sess_id, &res->sessionid); 7905 /* Mark client id and session as being confirmed */ 7906 session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R; 7907 set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state); 7908 session->flags = res->flags; 7909 memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs)); 7910 if (res->flags & SESSION4_BACK_CHAN) 7911 memcpy(&session->bc_attrs, &res->bc_attrs, 7912 sizeof(session->bc_attrs)); 7913 } 7914 7915 static int _nfs4_proc_create_session(struct nfs_client *clp, 7916 struct rpc_cred *cred) 7917 { 7918 struct nfs4_session *session = clp->cl_session; 7919 struct nfs41_create_session_args args = { 7920 .client = clp, 7921 .clientid = clp->cl_clientid, 7922 .seqid = clp->cl_seqid, 7923 .cb_program = NFS4_CALLBACK, 7924 }; 7925 struct nfs41_create_session_res res; 7926 7927 struct rpc_message msg = { 7928 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION], 7929 .rpc_argp = &args, 7930 .rpc_resp = &res, 7931 .rpc_cred = cred, 7932 }; 7933 int status; 7934 7935 nfs4_init_channel_attrs(&args, clp->cl_rpcclient); 7936 args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN); 7937 7938 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); 7939 trace_nfs4_create_session(clp, status); 7940 7941 switch (status) { 7942 case -NFS4ERR_STALE_CLIENTID: 7943 case -NFS4ERR_DELAY: 7944 case -ETIMEDOUT: 7945 case -EACCES: 7946 case -EAGAIN: 7947 goto out; 7948 }; 7949 7950 clp->cl_seqid++; 7951 if (!status) { 7952 /* Verify the session's negotiated channel_attrs values */ 7953 status = nfs4_verify_channel_attrs(&args, &res); 7954 /* Increment the clientid slot sequence id */ 7955 if (status) 7956 goto out; 7957 nfs4_update_session(session, &res); 7958 } 7959 out: 7960 return status; 7961 } 7962 7963 /* 7964 * Issues a CREATE_SESSION operation to the server. 7965 * It is the responsibility of the caller to verify the session is 7966 * expired before calling this routine. 7967 */ 7968 int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred) 7969 { 7970 int status; 7971 unsigned *ptr; 7972 struct nfs4_session *session = clp->cl_session; 7973 7974 dprintk("--> %s clp=%p session=%p\n", __func__, clp, session); 7975 7976 status = _nfs4_proc_create_session(clp, cred); 7977 if (status) 7978 goto out; 7979 7980 /* Init or reset the session slot tables */ 7981 status = nfs4_setup_session_slot_tables(session); 7982 dprintk("slot table setup returned %d\n", status); 7983 if (status) 7984 goto out; 7985 7986 ptr = (unsigned *)&session->sess_id.data[0]; 7987 dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__, 7988 clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]); 7989 out: 7990 dprintk("<-- %s\n", __func__); 7991 return status; 7992 } 7993 7994 /* 7995 * Issue the over-the-wire RPC DESTROY_SESSION. 7996 * The caller must serialize access to this routine. 7997 */ 7998 int nfs4_proc_destroy_session(struct nfs4_session *session, 7999 struct rpc_cred *cred) 8000 { 8001 struct rpc_message msg = { 8002 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION], 8003 .rpc_argp = session, 8004 .rpc_cred = cred, 8005 }; 8006 int status = 0; 8007 8008 dprintk("--> nfs4_proc_destroy_session\n"); 8009 8010 /* session is still being setup */ 8011 if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state)) 8012 return 0; 8013 8014 status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); 8015 trace_nfs4_destroy_session(session->clp, status); 8016 8017 if (status) 8018 dprintk("NFS: Got error %d from the server on DESTROY_SESSION. " 8019 "Session has been destroyed regardless...\n", status); 8020 8021 dprintk("<-- nfs4_proc_destroy_session\n"); 8022 return status; 8023 } 8024 8025 /* 8026 * Renew the cl_session lease. 8027 */ 8028 struct nfs4_sequence_data { 8029 struct nfs_client *clp; 8030 struct nfs4_sequence_args args; 8031 struct nfs4_sequence_res res; 8032 }; 8033 8034 static void nfs41_sequence_release(void *data) 8035 { 8036 struct nfs4_sequence_data *calldata = data; 8037 struct nfs_client *clp = calldata->clp; 8038 8039 if (atomic_read(&clp->cl_count) > 1) 8040 nfs4_schedule_state_renewal(clp); 8041 nfs_put_client(clp); 8042 kfree(calldata); 8043 } 8044 8045 static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp) 8046 { 8047 switch(task->tk_status) { 8048 case -NFS4ERR_DELAY: 8049 rpc_delay(task, NFS4_POLL_RETRY_MAX); 8050 return -EAGAIN; 8051 default: 8052 nfs4_schedule_lease_recovery(clp); 8053 } 8054 return 0; 8055 } 8056 8057 static void nfs41_sequence_call_done(struct rpc_task *task, void *data) 8058 { 8059 struct nfs4_sequence_data *calldata = data; 8060 struct nfs_client *clp = calldata->clp; 8061 8062 if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp)) 8063 return; 8064 8065 trace_nfs4_sequence(clp, task->tk_status); 8066 if (task->tk_status < 0) { 8067 dprintk("%s ERROR %d\n", __func__, task->tk_status); 8068 if (atomic_read(&clp->cl_count) == 1) 8069 goto out; 8070 8071 if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) { 8072 rpc_restart_call_prepare(task); 8073 return; 8074 } 8075 } 8076 dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred); 8077 out: 8078 dprintk("<-- %s\n", __func__); 8079 } 8080 8081 static void nfs41_sequence_prepare(struct rpc_task *task, void *data) 8082 { 8083 struct nfs4_sequence_data *calldata = data; 8084 struct nfs_client *clp = calldata->clp; 8085 struct nfs4_sequence_args *args; 8086 struct nfs4_sequence_res *res; 8087 8088 args = task->tk_msg.rpc_argp; 8089 res = task->tk_msg.rpc_resp; 8090 8091 nfs4_setup_sequence(clp, args, res, task); 8092 } 8093 8094 static const struct rpc_call_ops nfs41_sequence_ops = { 8095 .rpc_call_done = nfs41_sequence_call_done, 8096 .rpc_call_prepare = nfs41_sequence_prepare, 8097 .rpc_release = nfs41_sequence_release, 8098 }; 8099 8100 static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, 8101 struct rpc_cred *cred, 8102 bool is_privileged) 8103 { 8104 struct nfs4_sequence_data *calldata; 8105 struct rpc_message msg = { 8106 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE], 8107 .rpc_cred = cred, 8108 }; 8109 struct rpc_task_setup task_setup_data = { 8110 .rpc_client = clp->cl_rpcclient, 8111 .rpc_message = &msg, 8112 .callback_ops = &nfs41_sequence_ops, 8113 .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, 8114 }; 8115 8116 if (!atomic_inc_not_zero(&clp->cl_count)) 8117 return ERR_PTR(-EIO); 8118 calldata = kzalloc(sizeof(*calldata), GFP_NOFS); 8119 if (calldata == NULL) { 8120 nfs_put_client(clp); 8121 return ERR_PTR(-ENOMEM); 8122 } 8123 nfs4_init_sequence(&calldata->args, &calldata->res, 0); 8124 if (is_privileged) 8125 nfs4_set_sequence_privileged(&calldata->args); 8126 msg.rpc_argp = &calldata->args; 8127 msg.rpc_resp = &calldata->res; 8128 calldata->clp = clp; 8129 task_setup_data.callback_data = calldata; 8130 8131 return rpc_run_task(&task_setup_data); 8132 } 8133 8134 static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) 8135 { 8136 struct rpc_task *task; 8137 int ret = 0; 8138 8139 if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0) 8140 return -EAGAIN; 8141 task = _nfs41_proc_sequence(clp, cred, false); 8142 if (IS_ERR(task)) 8143 ret = PTR_ERR(task); 8144 else 8145 rpc_put_task_async(task); 8146 dprintk("<-- %s status=%d\n", __func__, ret); 8147 return ret; 8148 } 8149 8150 static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred) 8151 { 8152 struct rpc_task *task; 8153 int ret; 8154 8155 task = _nfs41_proc_sequence(clp, cred, true); 8156 if (IS_ERR(task)) { 8157 ret = PTR_ERR(task); 8158 goto out; 8159 } 8160 ret = rpc_wait_for_completion_task(task); 8161 if (!ret) 8162 ret = task->tk_status; 8163 rpc_put_task(task); 8164 out: 8165 dprintk("<-- %s status=%d\n", __func__, ret); 8166 return ret; 8167 } 8168 8169 struct nfs4_reclaim_complete_data { 8170 struct nfs_client *clp; 8171 struct nfs41_reclaim_complete_args arg; 8172 struct nfs41_reclaim_complete_res res; 8173 }; 8174 8175 static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data) 8176 { 8177 struct nfs4_reclaim_complete_data *calldata = data; 8178 8179 nfs4_setup_sequence(calldata->clp, 8180 &calldata->arg.seq_args, 8181 &calldata->res.seq_res, 8182 task); 8183 } 8184 8185 static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp) 8186 { 8187 switch(task->tk_status) { 8188 case 0: 8189 case -NFS4ERR_COMPLETE_ALREADY: 8190 case -NFS4ERR_WRONG_CRED: /* What to do here? */ 8191 break; 8192 case -NFS4ERR_DELAY: 8193 rpc_delay(task, NFS4_POLL_RETRY_MAX); 8194 /* fall through */ 8195 case -NFS4ERR_RETRY_UNCACHED_REP: 8196 return -EAGAIN; 8197 default: 8198 nfs4_schedule_lease_recovery(clp); 8199 } 8200 return 0; 8201 } 8202 8203 static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data) 8204 { 8205 struct nfs4_reclaim_complete_data *calldata = data; 8206 struct nfs_client *clp = calldata->clp; 8207 struct nfs4_sequence_res *res = &calldata->res.seq_res; 8208 8209 dprintk("--> %s\n", __func__); 8210 if (!nfs41_sequence_done(task, res)) 8211 return; 8212 8213 trace_nfs4_reclaim_complete(clp, task->tk_status); 8214 if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) { 8215 rpc_restart_call_prepare(task); 8216 return; 8217 } 8218 dprintk("<-- %s\n", __func__); 8219 } 8220 8221 static void nfs4_free_reclaim_complete_data(void *data) 8222 { 8223 struct nfs4_reclaim_complete_data *calldata = data; 8224 8225 kfree(calldata); 8226 } 8227 8228 static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = { 8229 .rpc_call_prepare = nfs4_reclaim_complete_prepare, 8230 .rpc_call_done = nfs4_reclaim_complete_done, 8231 .rpc_release = nfs4_free_reclaim_complete_data, 8232 }; 8233 8234 /* 8235 * Issue a global reclaim complete. 8236 */ 8237 static int nfs41_proc_reclaim_complete(struct nfs_client *clp, 8238 struct rpc_cred *cred) 8239 { 8240 struct nfs4_reclaim_complete_data *calldata; 8241 struct rpc_task *task; 8242 struct rpc_message msg = { 8243 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE], 8244 .rpc_cred = cred, 8245 }; 8246 struct rpc_task_setup task_setup_data = { 8247 .rpc_client = clp->cl_rpcclient, 8248 .rpc_message = &msg, 8249 .callback_ops = &nfs4_reclaim_complete_call_ops, 8250 .flags = RPC_TASK_ASYNC, 8251 }; 8252 int status = -ENOMEM; 8253 8254 dprintk("--> %s\n", __func__); 8255 calldata = kzalloc(sizeof(*calldata), GFP_NOFS); 8256 if (calldata == NULL) 8257 goto out; 8258 calldata->clp = clp; 8259 calldata->arg.one_fs = 0; 8260 8261 nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0); 8262 nfs4_set_sequence_privileged(&calldata->arg.seq_args); 8263 msg.rpc_argp = &calldata->arg; 8264 msg.rpc_resp = &calldata->res; 8265 task_setup_data.callback_data = calldata; 8266 task = rpc_run_task(&task_setup_data); 8267 if (IS_ERR(task)) { 8268 status = PTR_ERR(task); 8269 goto out; 8270 } 8271 status = rpc_wait_for_completion_task(task); 8272 if (status == 0) 8273 status = task->tk_status; 8274 rpc_put_task(task); 8275 return 0; 8276 out: 8277 dprintk("<-- %s status=%d\n", __func__, status); 8278 return status; 8279 } 8280 8281 static void 8282 nfs4_layoutget_prepare(struct rpc_task *task, void *calldata) 8283 { 8284 struct nfs4_layoutget *lgp = calldata; 8285 struct nfs_server *server = NFS_SERVER(lgp->args.inode); 8286 8287 dprintk("--> %s\n", __func__); 8288 nfs4_setup_sequence(server->nfs_client, &lgp->args.seq_args, 8289 &lgp->res.seq_res, task); 8290 dprintk("<-- %s\n", __func__); 8291 } 8292 8293 static void nfs4_layoutget_done(struct rpc_task *task, void *calldata) 8294 { 8295 struct nfs4_layoutget *lgp = calldata; 8296 8297 dprintk("--> %s\n", __func__); 8298 nfs41_sequence_process(task, &lgp->res.seq_res); 8299 dprintk("<-- %s\n", __func__); 8300 } 8301 8302 static int 8303 nfs4_layoutget_handle_exception(struct rpc_task *task, 8304 struct nfs4_layoutget *lgp, struct nfs4_exception *exception) 8305 { 8306 struct inode *inode = lgp->args.inode; 8307 struct nfs_server *server = NFS_SERVER(inode); 8308 struct pnfs_layout_hdr *lo; 8309 int nfs4err = task->tk_status; 8310 int err, status = 0; 8311 LIST_HEAD(head); 8312 8313 dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status); 8314 8315 switch (nfs4err) { 8316 case 0: 8317 goto out; 8318 8319 /* 8320 * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs 8321 * on the file. set tk_status to -ENODATA to tell upper layer to 8322 * retry go inband. 8323 */ 8324 case -NFS4ERR_LAYOUTUNAVAILABLE: 8325 status = -ENODATA; 8326 goto out; 8327 /* 8328 * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of 8329 * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3). 8330 */ 8331 case -NFS4ERR_BADLAYOUT: 8332 status = -EOVERFLOW; 8333 goto out; 8334 /* 8335 * NFS4ERR_LAYOUTTRYLATER is a conflict with another client 8336 * (or clients) writing to the same RAID stripe except when 8337 * the minlength argument is 0 (see RFC5661 section 18.43.3). 8338 * 8339 * Treat it like we would RECALLCONFLICT -- we retry for a little 8340 * while, and then eventually give up. 8341 */ 8342 case -NFS4ERR_LAYOUTTRYLATER: 8343 if (lgp->args.minlength == 0) { 8344 status = -EOVERFLOW; 8345 goto out; 8346 } 8347 status = -EBUSY; 8348 break; 8349 case -NFS4ERR_RECALLCONFLICT: 8350 status = -ERECALLCONFLICT; 8351 break; 8352 case -NFS4ERR_DELEG_REVOKED: 8353 case -NFS4ERR_ADMIN_REVOKED: 8354 case -NFS4ERR_EXPIRED: 8355 case -NFS4ERR_BAD_STATEID: 8356 exception->timeout = 0; 8357 spin_lock(&inode->i_lock); 8358 lo = NFS_I(inode)->layout; 8359 /* If the open stateid was bad, then recover it. */ 8360 if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) || 8361 nfs4_stateid_match_other(&lgp->args.stateid, 8362 &lgp->args.ctx->state->stateid)) { 8363 spin_unlock(&inode->i_lock); 8364 exception->state = lgp->args.ctx->state; 8365 exception->stateid = &lgp->args.stateid; 8366 break; 8367 } 8368 8369 /* 8370 * Mark the bad layout state as invalid, then retry 8371 */ 8372 pnfs_mark_layout_stateid_invalid(lo, &head); 8373 spin_unlock(&inode->i_lock); 8374 pnfs_free_lseg_list(&head); 8375 status = -EAGAIN; 8376 goto out; 8377 } 8378 8379 nfs4_sequence_free_slot(&lgp->res.seq_res); 8380 err = nfs4_handle_exception(server, nfs4err, exception); 8381 if (!status) { 8382 if (exception->retry) 8383 status = -EAGAIN; 8384 else 8385 status = err; 8386 } 8387 out: 8388 dprintk("<-- %s\n", __func__); 8389 return status; 8390 } 8391 8392 static size_t max_response_pages(struct nfs_server *server) 8393 { 8394 u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz; 8395 return nfs_page_array_len(0, max_resp_sz); 8396 } 8397 8398 static void nfs4_free_pages(struct page **pages, size_t size) 8399 { 8400 int i; 8401 8402 if (!pages) 8403 return; 8404 8405 for (i = 0; i < size; i++) { 8406 if (!pages[i]) 8407 break; 8408 __free_page(pages[i]); 8409 } 8410 kfree(pages); 8411 } 8412 8413 static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags) 8414 { 8415 struct page **pages; 8416 int i; 8417 8418 pages = kcalloc(size, sizeof(struct page *), gfp_flags); 8419 if (!pages) { 8420 dprintk("%s: can't alloc array of %zu pages\n", __func__, size); 8421 return NULL; 8422 } 8423 8424 for (i = 0; i < size; i++) { 8425 pages[i] = alloc_page(gfp_flags); 8426 if (!pages[i]) { 8427 dprintk("%s: failed to allocate page\n", __func__); 8428 nfs4_free_pages(pages, size); 8429 return NULL; 8430 } 8431 } 8432 8433 return pages; 8434 } 8435 8436 static void nfs4_layoutget_release(void *calldata) 8437 { 8438 struct nfs4_layoutget *lgp = calldata; 8439 struct inode *inode = lgp->args.inode; 8440 struct nfs_server *server = NFS_SERVER(inode); 8441 size_t max_pages = max_response_pages(server); 8442 8443 dprintk("--> %s\n", __func__); 8444 nfs4_free_pages(lgp->args.layout.pages, max_pages); 8445 pnfs_put_layout_hdr(NFS_I(inode)->layout); 8446 put_nfs_open_context(lgp->args.ctx); 8447 kfree(calldata); 8448 dprintk("<-- %s\n", __func__); 8449 } 8450 8451 static const struct rpc_call_ops nfs4_layoutget_call_ops = { 8452 .rpc_call_prepare = nfs4_layoutget_prepare, 8453 .rpc_call_done = nfs4_layoutget_done, 8454 .rpc_release = nfs4_layoutget_release, 8455 }; 8456 8457 struct pnfs_layout_segment * 8458 nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags) 8459 { 8460 struct inode *inode = lgp->args.inode; 8461 struct nfs_server *server = NFS_SERVER(inode); 8462 size_t max_pages = max_response_pages(server); 8463 struct rpc_task *task; 8464 struct rpc_message msg = { 8465 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET], 8466 .rpc_argp = &lgp->args, 8467 .rpc_resp = &lgp->res, 8468 .rpc_cred = lgp->cred, 8469 }; 8470 struct rpc_task_setup task_setup_data = { 8471 .rpc_client = server->client, 8472 .rpc_message = &msg, 8473 .callback_ops = &nfs4_layoutget_call_ops, 8474 .callback_data = lgp, 8475 .flags = RPC_TASK_ASYNC, 8476 }; 8477 struct pnfs_layout_segment *lseg = NULL; 8478 struct nfs4_exception exception = { 8479 .inode = inode, 8480 .timeout = *timeout, 8481 }; 8482 int status = 0; 8483 8484 dprintk("--> %s\n", __func__); 8485 8486 /* nfs4_layoutget_release calls pnfs_put_layout_hdr */ 8487 pnfs_get_layout_hdr(NFS_I(inode)->layout); 8488 8489 lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags); 8490 if (!lgp->args.layout.pages) { 8491 nfs4_layoutget_release(lgp); 8492 return ERR_PTR(-ENOMEM); 8493 } 8494 lgp->args.layout.pglen = max_pages * PAGE_SIZE; 8495 8496 lgp->res.layoutp = &lgp->args.layout; 8497 lgp->res.seq_res.sr_slot = NULL; 8498 nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0); 8499 8500 task = rpc_run_task(&task_setup_data); 8501 if (IS_ERR(task)) 8502 return ERR_CAST(task); 8503 status = rpc_wait_for_completion_task(task); 8504 if (status == 0) { 8505 status = nfs4_layoutget_handle_exception(task, lgp, &exception); 8506 *timeout = exception.timeout; 8507 } 8508 8509 trace_nfs4_layoutget(lgp->args.ctx, 8510 &lgp->args.range, 8511 &lgp->res.range, 8512 &lgp->res.stateid, 8513 status); 8514 8515 /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */ 8516 if (status == 0 && lgp->res.layoutp->len) 8517 lseg = pnfs_layout_process(lgp); 8518 nfs4_sequence_free_slot(&lgp->res.seq_res); 8519 rpc_put_task(task); 8520 dprintk("<-- %s status=%d\n", __func__, status); 8521 if (status) 8522 return ERR_PTR(status); 8523 return lseg; 8524 } 8525 8526 static void 8527 nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata) 8528 { 8529 struct nfs4_layoutreturn *lrp = calldata; 8530 8531 dprintk("--> %s\n", __func__); 8532 nfs4_setup_sequence(lrp->clp, 8533 &lrp->args.seq_args, 8534 &lrp->res.seq_res, 8535 task); 8536 } 8537 8538 static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata) 8539 { 8540 struct nfs4_layoutreturn *lrp = calldata; 8541 struct nfs_server *server; 8542 8543 dprintk("--> %s\n", __func__); 8544 8545 if (!nfs41_sequence_process(task, &lrp->res.seq_res)) 8546 return; 8547 8548 server = NFS_SERVER(lrp->args.inode); 8549 switch (task->tk_status) { 8550 default: 8551 task->tk_status = 0; 8552 case 0: 8553 break; 8554 case -NFS4ERR_DELAY: 8555 if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN) 8556 break; 8557 nfs4_sequence_free_slot(&lrp->res.seq_res); 8558 rpc_restart_call_prepare(task); 8559 return; 8560 } 8561 dprintk("<-- %s\n", __func__); 8562 } 8563 8564 static void nfs4_layoutreturn_release(void *calldata) 8565 { 8566 struct nfs4_layoutreturn *lrp = calldata; 8567 struct pnfs_layout_hdr *lo = lrp->args.layout; 8568 8569 dprintk("--> %s\n", __func__); 8570 pnfs_layoutreturn_free_lsegs(lo, &lrp->args.stateid, &lrp->args.range, 8571 lrp->res.lrs_present ? &lrp->res.stateid : NULL); 8572 nfs4_sequence_free_slot(&lrp->res.seq_res); 8573 if (lrp->ld_private.ops && lrp->ld_private.ops->free) 8574 lrp->ld_private.ops->free(&lrp->ld_private); 8575 pnfs_put_layout_hdr(lrp->args.layout); 8576 nfs_iput_and_deactive(lrp->inode); 8577 kfree(calldata); 8578 dprintk("<-- %s\n", __func__); 8579 } 8580 8581 static const struct rpc_call_ops nfs4_layoutreturn_call_ops = { 8582 .rpc_call_prepare = nfs4_layoutreturn_prepare, 8583 .rpc_call_done = nfs4_layoutreturn_done, 8584 .rpc_release = nfs4_layoutreturn_release, 8585 }; 8586 8587 int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync) 8588 { 8589 struct rpc_task *task; 8590 struct rpc_message msg = { 8591 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN], 8592 .rpc_argp = &lrp->args, 8593 .rpc_resp = &lrp->res, 8594 .rpc_cred = lrp->cred, 8595 }; 8596 struct rpc_task_setup task_setup_data = { 8597 .rpc_client = NFS_SERVER(lrp->args.inode)->client, 8598 .rpc_message = &msg, 8599 .callback_ops = &nfs4_layoutreturn_call_ops, 8600 .callback_data = lrp, 8601 }; 8602 int status = 0; 8603 8604 nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client, 8605 NFS_SP4_MACH_CRED_PNFS_CLEANUP, 8606 &task_setup_data.rpc_client, &msg); 8607 8608 dprintk("--> %s\n", __func__); 8609 if (!sync) { 8610 lrp->inode = nfs_igrab_and_active(lrp->args.inode); 8611 if (!lrp->inode) { 8612 nfs4_layoutreturn_release(lrp); 8613 return -EAGAIN; 8614 } 8615 task_setup_data.flags |= RPC_TASK_ASYNC; 8616 } 8617 nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1); 8618 task = rpc_run_task(&task_setup_data); 8619 if (IS_ERR(task)) 8620 return PTR_ERR(task); 8621 if (sync) 8622 status = task->tk_status; 8623 trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status); 8624 dprintk("<-- %s status=%d\n", __func__, status); 8625 rpc_put_task(task); 8626 return status; 8627 } 8628 8629 static int 8630 _nfs4_proc_getdeviceinfo(struct nfs_server *server, 8631 struct pnfs_device *pdev, 8632 struct rpc_cred *cred) 8633 { 8634 struct nfs4_getdeviceinfo_args args = { 8635 .pdev = pdev, 8636 .notify_types = NOTIFY_DEVICEID4_CHANGE | 8637 NOTIFY_DEVICEID4_DELETE, 8638 }; 8639 struct nfs4_getdeviceinfo_res res = { 8640 .pdev = pdev, 8641 }; 8642 struct rpc_message msg = { 8643 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO], 8644 .rpc_argp = &args, 8645 .rpc_resp = &res, 8646 .rpc_cred = cred, 8647 }; 8648 int status; 8649 8650 dprintk("--> %s\n", __func__); 8651 status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); 8652 if (res.notification & ~args.notify_types) 8653 dprintk("%s: unsupported notification\n", __func__); 8654 if (res.notification != args.notify_types) 8655 pdev->nocache = 1; 8656 8657 dprintk("<-- %s status=%d\n", __func__, status); 8658 8659 return status; 8660 } 8661 8662 int nfs4_proc_getdeviceinfo(struct nfs_server *server, 8663 struct pnfs_device *pdev, 8664 struct rpc_cred *cred) 8665 { 8666 struct nfs4_exception exception = { }; 8667 int err; 8668 8669 do { 8670 err = nfs4_handle_exception(server, 8671 _nfs4_proc_getdeviceinfo(server, pdev, cred), 8672 &exception); 8673 } while (exception.retry); 8674 return err; 8675 } 8676 EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo); 8677 8678 static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata) 8679 { 8680 struct nfs4_layoutcommit_data *data = calldata; 8681 struct nfs_server *server = NFS_SERVER(data->args.inode); 8682 8683 nfs4_setup_sequence(server->nfs_client, 8684 &data->args.seq_args, 8685 &data->res.seq_res, 8686 task); 8687 } 8688 8689 static void 8690 nfs4_layoutcommit_done(struct rpc_task *task, void *calldata) 8691 { 8692 struct nfs4_layoutcommit_data *data = calldata; 8693 struct nfs_server *server = NFS_SERVER(data->args.inode); 8694 8695 if (!nfs41_sequence_done(task, &data->res.seq_res)) 8696 return; 8697 8698 switch (task->tk_status) { /* Just ignore these failures */ 8699 case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */ 8700 case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */ 8701 case -NFS4ERR_BADLAYOUT: /* no layout */ 8702 case -NFS4ERR_GRACE: /* loca_recalim always false */ 8703 task->tk_status = 0; 8704 case 0: 8705 break; 8706 default: 8707 if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) { 8708 rpc_restart_call_prepare(task); 8709 return; 8710 } 8711 } 8712 } 8713 8714 static void nfs4_layoutcommit_release(void *calldata) 8715 { 8716 struct nfs4_layoutcommit_data *data = calldata; 8717 8718 pnfs_cleanup_layoutcommit(data); 8719 nfs_post_op_update_inode_force_wcc(data->args.inode, 8720 data->res.fattr); 8721 put_rpccred(data->cred); 8722 nfs_iput_and_deactive(data->inode); 8723 kfree(data); 8724 } 8725 8726 static const struct rpc_call_ops nfs4_layoutcommit_ops = { 8727 .rpc_call_prepare = nfs4_layoutcommit_prepare, 8728 .rpc_call_done = nfs4_layoutcommit_done, 8729 .rpc_release = nfs4_layoutcommit_release, 8730 }; 8731 8732 int 8733 nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync) 8734 { 8735 struct rpc_message msg = { 8736 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT], 8737 .rpc_argp = &data->args, 8738 .rpc_resp = &data->res, 8739 .rpc_cred = data->cred, 8740 }; 8741 struct rpc_task_setup task_setup_data = { 8742 .task = &data->task, 8743 .rpc_client = NFS_CLIENT(data->args.inode), 8744 .rpc_message = &msg, 8745 .callback_ops = &nfs4_layoutcommit_ops, 8746 .callback_data = data, 8747 }; 8748 struct rpc_task *task; 8749 int status = 0; 8750 8751 dprintk("NFS: initiating layoutcommit call. sync %d " 8752 "lbw: %llu inode %lu\n", sync, 8753 data->args.lastbytewritten, 8754 data->args.inode->i_ino); 8755 8756 if (!sync) { 8757 data->inode = nfs_igrab_and_active(data->args.inode); 8758 if (data->inode == NULL) { 8759 nfs4_layoutcommit_release(data); 8760 return -EAGAIN; 8761 } 8762 task_setup_data.flags = RPC_TASK_ASYNC; 8763 } 8764 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); 8765 task = rpc_run_task(&task_setup_data); 8766 if (IS_ERR(task)) 8767 return PTR_ERR(task); 8768 if (sync) 8769 status = task->tk_status; 8770 trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status); 8771 dprintk("%s: status %d\n", __func__, status); 8772 rpc_put_task(task); 8773 return status; 8774 } 8775 8776 /** 8777 * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if 8778 * possible) as per RFC3530bis and RFC5661 Security Considerations sections 8779 */ 8780 static int 8781 _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, 8782 struct nfs_fsinfo *info, 8783 struct nfs4_secinfo_flavors *flavors, bool use_integrity) 8784 { 8785 struct nfs41_secinfo_no_name_args args = { 8786 .style = SECINFO_STYLE_CURRENT_FH, 8787 }; 8788 struct nfs4_secinfo_res res = { 8789 .flavors = flavors, 8790 }; 8791 struct rpc_message msg = { 8792 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME], 8793 .rpc_argp = &args, 8794 .rpc_resp = &res, 8795 }; 8796 struct rpc_clnt *clnt = server->client; 8797 struct rpc_cred *cred = NULL; 8798 int status; 8799 8800 if (use_integrity) { 8801 clnt = server->nfs_client->cl_rpcclient; 8802 cred = nfs4_get_clid_cred(server->nfs_client); 8803 msg.rpc_cred = cred; 8804 } 8805 8806 dprintk("--> %s\n", __func__); 8807 status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, 8808 &res.seq_res, 0); 8809 dprintk("<-- %s status=%d\n", __func__, status); 8810 8811 if (cred) 8812 put_rpccred(cred); 8813 8814 return status; 8815 } 8816 8817 static int 8818 nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, 8819 struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors) 8820 { 8821 struct nfs4_exception exception = { }; 8822 int err; 8823 do { 8824 /* first try using integrity protection */ 8825 err = -NFS4ERR_WRONGSEC; 8826 8827 /* try to use integrity protection with machine cred */ 8828 if (_nfs4_is_integrity_protected(server->nfs_client)) 8829 err = _nfs41_proc_secinfo_no_name(server, fhandle, info, 8830 flavors, true); 8831 8832 /* 8833 * if unable to use integrity protection, or SECINFO with 8834 * integrity protection returns NFS4ERR_WRONGSEC (which is 8835 * disallowed by spec, but exists in deployed servers) use 8836 * the current filesystem's rpc_client and the user cred. 8837 */ 8838 if (err == -NFS4ERR_WRONGSEC) 8839 err = _nfs41_proc_secinfo_no_name(server, fhandle, info, 8840 flavors, false); 8841 8842 switch (err) { 8843 case 0: 8844 case -NFS4ERR_WRONGSEC: 8845 case -ENOTSUPP: 8846 goto out; 8847 default: 8848 err = nfs4_handle_exception(server, err, &exception); 8849 } 8850 } while (exception.retry); 8851 out: 8852 return err; 8853 } 8854 8855 static int 8856 nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, 8857 struct nfs_fsinfo *info) 8858 { 8859 int err; 8860 struct page *page; 8861 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; 8862 struct nfs4_secinfo_flavors *flavors; 8863 struct nfs4_secinfo4 *secinfo; 8864 int i; 8865 8866 page = alloc_page(GFP_KERNEL); 8867 if (!page) { 8868 err = -ENOMEM; 8869 goto out; 8870 } 8871 8872 flavors = page_address(page); 8873 err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors); 8874 8875 /* 8876 * Fall back on "guess and check" method if 8877 * the server doesn't support SECINFO_NO_NAME 8878 */ 8879 if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) { 8880 err = nfs4_find_root_sec(server, fhandle, info); 8881 goto out_freepage; 8882 } 8883 if (err) 8884 goto out_freepage; 8885 8886 for (i = 0; i < flavors->num_flavors; i++) { 8887 secinfo = &flavors->flavors[i]; 8888 8889 switch (secinfo->flavor) { 8890 case RPC_AUTH_NULL: 8891 case RPC_AUTH_UNIX: 8892 case RPC_AUTH_GSS: 8893 flavor = rpcauth_get_pseudoflavor(secinfo->flavor, 8894 &secinfo->flavor_info); 8895 break; 8896 default: 8897 flavor = RPC_AUTH_MAXFLAVOR; 8898 break; 8899 } 8900 8901 if (!nfs_auth_info_match(&server->auth_info, flavor)) 8902 flavor = RPC_AUTH_MAXFLAVOR; 8903 8904 if (flavor != RPC_AUTH_MAXFLAVOR) { 8905 err = nfs4_lookup_root_sec(server, fhandle, 8906 info, flavor); 8907 if (!err) 8908 break; 8909 } 8910 } 8911 8912 if (flavor == RPC_AUTH_MAXFLAVOR) 8913 err = -EPERM; 8914 8915 out_freepage: 8916 put_page(page); 8917 if (err == -EACCES) 8918 return -EPERM; 8919 out: 8920 return err; 8921 } 8922 8923 static int _nfs41_test_stateid(struct nfs_server *server, 8924 nfs4_stateid *stateid, 8925 struct rpc_cred *cred) 8926 { 8927 int status; 8928 struct nfs41_test_stateid_args args = { 8929 .stateid = stateid, 8930 }; 8931 struct nfs41_test_stateid_res res; 8932 struct rpc_message msg = { 8933 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID], 8934 .rpc_argp = &args, 8935 .rpc_resp = &res, 8936 .rpc_cred = cred, 8937 }; 8938 struct rpc_clnt *rpc_client = server->client; 8939 8940 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, 8941 &rpc_client, &msg); 8942 8943 dprintk("NFS call test_stateid %p\n", stateid); 8944 nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); 8945 nfs4_set_sequence_privileged(&args.seq_args); 8946 status = nfs4_call_sync_sequence(rpc_client, server, &msg, 8947 &args.seq_args, &res.seq_res); 8948 if (status != NFS_OK) { 8949 dprintk("NFS reply test_stateid: failed, %d\n", status); 8950 return status; 8951 } 8952 dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status); 8953 return -res.status; 8954 } 8955 8956 static void nfs4_handle_delay_or_session_error(struct nfs_server *server, 8957 int err, struct nfs4_exception *exception) 8958 { 8959 exception->retry = 0; 8960 switch(err) { 8961 case -NFS4ERR_DELAY: 8962 case -NFS4ERR_RETRY_UNCACHED_REP: 8963 nfs4_handle_exception(server, err, exception); 8964 break; 8965 case -NFS4ERR_BADSESSION: 8966 case -NFS4ERR_BADSLOT: 8967 case -NFS4ERR_BAD_HIGH_SLOT: 8968 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: 8969 case -NFS4ERR_DEADSESSION: 8970 nfs4_do_handle_exception(server, err, exception); 8971 } 8972 } 8973 8974 /** 8975 * nfs41_test_stateid - perform a TEST_STATEID operation 8976 * 8977 * @server: server / transport on which to perform the operation 8978 * @stateid: state ID to test 8979 * @cred: credential 8980 * 8981 * Returns NFS_OK if the server recognizes that "stateid" is valid. 8982 * Otherwise a negative NFS4ERR value is returned if the operation 8983 * failed or the state ID is not currently valid. 8984 */ 8985 static int nfs41_test_stateid(struct nfs_server *server, 8986 nfs4_stateid *stateid, 8987 struct rpc_cred *cred) 8988 { 8989 struct nfs4_exception exception = { }; 8990 int err; 8991 do { 8992 err = _nfs41_test_stateid(server, stateid, cred); 8993 nfs4_handle_delay_or_session_error(server, err, &exception); 8994 } while (exception.retry); 8995 return err; 8996 } 8997 8998 struct nfs_free_stateid_data { 8999 struct nfs_server *server; 9000 struct nfs41_free_stateid_args args; 9001 struct nfs41_free_stateid_res res; 9002 }; 9003 9004 static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata) 9005 { 9006 struct nfs_free_stateid_data *data = calldata; 9007 nfs4_setup_sequence(data->server->nfs_client, 9008 &data->args.seq_args, 9009 &data->res.seq_res, 9010 task); 9011 } 9012 9013 static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata) 9014 { 9015 struct nfs_free_stateid_data *data = calldata; 9016 9017 nfs41_sequence_done(task, &data->res.seq_res); 9018 9019 switch (task->tk_status) { 9020 case -NFS4ERR_DELAY: 9021 if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN) 9022 rpc_restart_call_prepare(task); 9023 } 9024 } 9025 9026 static void nfs41_free_stateid_release(void *calldata) 9027 { 9028 kfree(calldata); 9029 } 9030 9031 static const struct rpc_call_ops nfs41_free_stateid_ops = { 9032 .rpc_call_prepare = nfs41_free_stateid_prepare, 9033 .rpc_call_done = nfs41_free_stateid_done, 9034 .rpc_release = nfs41_free_stateid_release, 9035 }; 9036 9037 static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server, 9038 const nfs4_stateid *stateid, 9039 struct rpc_cred *cred, 9040 bool privileged) 9041 { 9042 struct rpc_message msg = { 9043 .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID], 9044 .rpc_cred = cred, 9045 }; 9046 struct rpc_task_setup task_setup = { 9047 .rpc_client = server->client, 9048 .rpc_message = &msg, 9049 .callback_ops = &nfs41_free_stateid_ops, 9050 .flags = RPC_TASK_ASYNC, 9051 }; 9052 struct nfs_free_stateid_data *data; 9053 9054 nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, 9055 &task_setup.rpc_client, &msg); 9056 9057 dprintk("NFS call free_stateid %p\n", stateid); 9058 data = kmalloc(sizeof(*data), GFP_NOFS); 9059 if (!data) 9060 return ERR_PTR(-ENOMEM); 9061 data->server = server; 9062 nfs4_stateid_copy(&data->args.stateid, stateid); 9063 9064 task_setup.callback_data = data; 9065 9066 msg.rpc_argp = &data->args; 9067 msg.rpc_resp = &data->res; 9068 nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); 9069 if (privileged) 9070 nfs4_set_sequence_privileged(&data->args.seq_args); 9071 9072 return rpc_run_task(&task_setup); 9073 } 9074 9075 /** 9076 * nfs41_free_stateid - perform a FREE_STATEID operation 9077 * 9078 * @server: server / transport on which to perform the operation 9079 * @stateid: state ID to release 9080 * @cred: credential 9081 * @is_recovery: set to true if this call needs to be privileged 9082 * 9083 * Note: this function is always asynchronous. 9084 */ 9085 static int nfs41_free_stateid(struct nfs_server *server, 9086 const nfs4_stateid *stateid, 9087 struct rpc_cred *cred, 9088 bool is_recovery) 9089 { 9090 struct rpc_task *task; 9091 9092 task = _nfs41_free_stateid(server, stateid, cred, is_recovery); 9093 if (IS_ERR(task)) 9094 return PTR_ERR(task); 9095 rpc_put_task(task); 9096 return 0; 9097 } 9098 9099 static void 9100 nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp) 9101 { 9102 struct rpc_cred *cred = lsp->ls_state->owner->so_cred; 9103 9104 nfs41_free_stateid(server, &lsp->ls_stateid, cred, false); 9105 nfs4_free_lock_state(server, lsp); 9106 } 9107 9108 static bool nfs41_match_stateid(const nfs4_stateid *s1, 9109 const nfs4_stateid *s2) 9110 { 9111 if (s1->type != s2->type) 9112 return false; 9113 9114 if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0) 9115 return false; 9116 9117 if (s1->seqid == s2->seqid) 9118 return true; 9119 9120 return s1->seqid == 0 || s2->seqid == 0; 9121 } 9122 9123 #endif /* CONFIG_NFS_V4_1 */ 9124 9125 static bool nfs4_match_stateid(const nfs4_stateid *s1, 9126 const nfs4_stateid *s2) 9127 { 9128 return nfs4_stateid_match(s1, s2); 9129 } 9130 9131 9132 static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = { 9133 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, 9134 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, 9135 .recover_open = nfs4_open_reclaim, 9136 .recover_lock = nfs4_lock_reclaim, 9137 .establish_clid = nfs4_init_clientid, 9138 .detect_trunking = nfs40_discover_server_trunking, 9139 }; 9140 9141 #if defined(CONFIG_NFS_V4_1) 9142 static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = { 9143 .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, 9144 .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, 9145 .recover_open = nfs4_open_reclaim, 9146 .recover_lock = nfs4_lock_reclaim, 9147 .establish_clid = nfs41_init_clientid, 9148 .reclaim_complete = nfs41_proc_reclaim_complete, 9149 .detect_trunking = nfs41_discover_server_trunking, 9150 }; 9151 #endif /* CONFIG_NFS_V4_1 */ 9152 9153 static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = { 9154 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, 9155 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, 9156 .recover_open = nfs40_open_expired, 9157 .recover_lock = nfs4_lock_expired, 9158 .establish_clid = nfs4_init_clientid, 9159 }; 9160 9161 #if defined(CONFIG_NFS_V4_1) 9162 static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = { 9163 .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, 9164 .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, 9165 .recover_open = nfs41_open_expired, 9166 .recover_lock = nfs41_lock_expired, 9167 .establish_clid = nfs41_init_clientid, 9168 }; 9169 #endif /* CONFIG_NFS_V4_1 */ 9170 9171 static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = { 9172 .sched_state_renewal = nfs4_proc_async_renew, 9173 .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked, 9174 .renew_lease = nfs4_proc_renew, 9175 }; 9176 9177 #if defined(CONFIG_NFS_V4_1) 9178 static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = { 9179 .sched_state_renewal = nfs41_proc_async_sequence, 9180 .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked, 9181 .renew_lease = nfs4_proc_sequence, 9182 }; 9183 #endif 9184 9185 static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = { 9186 .get_locations = _nfs40_proc_get_locations, 9187 .fsid_present = _nfs40_proc_fsid_present, 9188 }; 9189 9190 #if defined(CONFIG_NFS_V4_1) 9191 static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = { 9192 .get_locations = _nfs41_proc_get_locations, 9193 .fsid_present = _nfs41_proc_fsid_present, 9194 }; 9195 #endif /* CONFIG_NFS_V4_1 */ 9196 9197 static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = { 9198 .minor_version = 0, 9199 .init_caps = NFS_CAP_READDIRPLUS 9200 | NFS_CAP_ATOMIC_OPEN 9201 | NFS_CAP_POSIX_LOCK, 9202 .init_client = nfs40_init_client, 9203 .shutdown_client = nfs40_shutdown_client, 9204 .match_stateid = nfs4_match_stateid, 9205 .find_root_sec = nfs4_find_root_sec, 9206 .free_lock_state = nfs4_release_lockowner, 9207 .test_and_free_expired = nfs40_test_and_free_expired_stateid, 9208 .alloc_seqid = nfs_alloc_seqid, 9209 .call_sync_ops = &nfs40_call_sync_ops, 9210 .reboot_recovery_ops = &nfs40_reboot_recovery_ops, 9211 .nograce_recovery_ops = &nfs40_nograce_recovery_ops, 9212 .state_renewal_ops = &nfs40_state_renewal_ops, 9213 .mig_recovery_ops = &nfs40_mig_recovery_ops, 9214 }; 9215 9216 #if defined(CONFIG_NFS_V4_1) 9217 static struct nfs_seqid * 9218 nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2) 9219 { 9220 return NULL; 9221 } 9222 9223 static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = { 9224 .minor_version = 1, 9225 .init_caps = NFS_CAP_READDIRPLUS 9226 | NFS_CAP_ATOMIC_OPEN 9227 | NFS_CAP_POSIX_LOCK 9228 | NFS_CAP_STATEID_NFSV41 9229 | NFS_CAP_ATOMIC_OPEN_V1, 9230 .init_client = nfs41_init_client, 9231 .shutdown_client = nfs41_shutdown_client, 9232 .match_stateid = nfs41_match_stateid, 9233 .find_root_sec = nfs41_find_root_sec, 9234 .free_lock_state = nfs41_free_lock_state, 9235 .test_and_free_expired = nfs41_test_and_free_expired_stateid, 9236 .alloc_seqid = nfs_alloc_no_seqid, 9237 .session_trunk = nfs4_test_session_trunk, 9238 .call_sync_ops = &nfs41_call_sync_ops, 9239 .reboot_recovery_ops = &nfs41_reboot_recovery_ops, 9240 .nograce_recovery_ops = &nfs41_nograce_recovery_ops, 9241 .state_renewal_ops = &nfs41_state_renewal_ops, 9242 .mig_recovery_ops = &nfs41_mig_recovery_ops, 9243 }; 9244 #endif 9245 9246 #if defined(CONFIG_NFS_V4_2) 9247 static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = { 9248 .minor_version = 2, 9249 .init_caps = NFS_CAP_READDIRPLUS 9250 | NFS_CAP_ATOMIC_OPEN 9251 | NFS_CAP_POSIX_LOCK 9252 | NFS_CAP_STATEID_NFSV41 9253 | NFS_CAP_ATOMIC_OPEN_V1 9254 | NFS_CAP_ALLOCATE 9255 | NFS_CAP_COPY 9256 | NFS_CAP_DEALLOCATE 9257 | NFS_CAP_SEEK 9258 | NFS_CAP_LAYOUTSTATS 9259 | NFS_CAP_CLONE, 9260 .init_client = nfs41_init_client, 9261 .shutdown_client = nfs41_shutdown_client, 9262 .match_stateid = nfs41_match_stateid, 9263 .find_root_sec = nfs41_find_root_sec, 9264 .free_lock_state = nfs41_free_lock_state, 9265 .call_sync_ops = &nfs41_call_sync_ops, 9266 .test_and_free_expired = nfs41_test_and_free_expired_stateid, 9267 .alloc_seqid = nfs_alloc_no_seqid, 9268 .session_trunk = nfs4_test_session_trunk, 9269 .reboot_recovery_ops = &nfs41_reboot_recovery_ops, 9270 .nograce_recovery_ops = &nfs41_nograce_recovery_ops, 9271 .state_renewal_ops = &nfs41_state_renewal_ops, 9272 .mig_recovery_ops = &nfs41_mig_recovery_ops, 9273 }; 9274 #endif 9275 9276 const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = { 9277 [0] = &nfs_v4_0_minor_ops, 9278 #if defined(CONFIG_NFS_V4_1) 9279 [1] = &nfs_v4_1_minor_ops, 9280 #endif 9281 #if defined(CONFIG_NFS_V4_2) 9282 [2] = &nfs_v4_2_minor_ops, 9283 #endif 9284 }; 9285 9286 static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size) 9287 { 9288 ssize_t error, error2; 9289 9290 error = generic_listxattr(dentry, list, size); 9291 if (error < 0) 9292 return error; 9293 if (list) { 9294 list += error; 9295 size -= error; 9296 } 9297 9298 error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size); 9299 if (error2 < 0) 9300 return error2; 9301 return error + error2; 9302 } 9303 9304 static const struct inode_operations nfs4_dir_inode_operations = { 9305 .create = nfs_create, 9306 .lookup = nfs_lookup, 9307 .atomic_open = nfs_atomic_open, 9308 .link = nfs_link, 9309 .unlink = nfs_unlink, 9310 .symlink = nfs_symlink, 9311 .mkdir = nfs_mkdir, 9312 .rmdir = nfs_rmdir, 9313 .mknod = nfs_mknod, 9314 .rename = nfs_rename, 9315 .permission = nfs_permission, 9316 .getattr = nfs_getattr, 9317 .setattr = nfs_setattr, 9318 .listxattr = nfs4_listxattr, 9319 }; 9320 9321 static const struct inode_operations nfs4_file_inode_operations = { 9322 .permission = nfs_permission, 9323 .getattr = nfs_getattr, 9324 .setattr = nfs_setattr, 9325 .listxattr = nfs4_listxattr, 9326 }; 9327 9328 const struct nfs_rpc_ops nfs_v4_clientops = { 9329 .version = 4, /* protocol version */ 9330 .dentry_ops = &nfs4_dentry_operations, 9331 .dir_inode_ops = &nfs4_dir_inode_operations, 9332 .file_inode_ops = &nfs4_file_inode_operations, 9333 .file_ops = &nfs4_file_operations, 9334 .getroot = nfs4_proc_get_root, 9335 .submount = nfs4_submount, 9336 .try_mount = nfs4_try_mount, 9337 .getattr = nfs4_proc_getattr, 9338 .setattr = nfs4_proc_setattr, 9339 .lookup = nfs4_proc_lookup, 9340 .access = nfs4_proc_access, 9341 .readlink = nfs4_proc_readlink, 9342 .create = nfs4_proc_create, 9343 .remove = nfs4_proc_remove, 9344 .unlink_setup = nfs4_proc_unlink_setup, 9345 .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare, 9346 .unlink_done = nfs4_proc_unlink_done, 9347 .rename_setup = nfs4_proc_rename_setup, 9348 .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare, 9349 .rename_done = nfs4_proc_rename_done, 9350 .link = nfs4_proc_link, 9351 .symlink = nfs4_proc_symlink, 9352 .mkdir = nfs4_proc_mkdir, 9353 .rmdir = nfs4_proc_remove, 9354 .readdir = nfs4_proc_readdir, 9355 .mknod = nfs4_proc_mknod, 9356 .statfs = nfs4_proc_statfs, 9357 .fsinfo = nfs4_proc_fsinfo, 9358 .pathconf = nfs4_proc_pathconf, 9359 .set_capabilities = nfs4_server_capabilities, 9360 .decode_dirent = nfs4_decode_dirent, 9361 .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare, 9362 .read_setup = nfs4_proc_read_setup, 9363 .read_done = nfs4_read_done, 9364 .write_setup = nfs4_proc_write_setup, 9365 .write_done = nfs4_write_done, 9366 .commit_setup = nfs4_proc_commit_setup, 9367 .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare, 9368 .commit_done = nfs4_commit_done, 9369 .lock = nfs4_proc_lock, 9370 .clear_acl_cache = nfs4_zap_acl_attr, 9371 .close_context = nfs4_close_context, 9372 .open_context = nfs4_atomic_open, 9373 .have_delegation = nfs4_have_delegation, 9374 .return_delegation = nfs4_inode_return_delegation, 9375 .alloc_client = nfs4_alloc_client, 9376 .init_client = nfs4_init_client, 9377 .free_client = nfs4_free_client, 9378 .create_server = nfs4_create_server, 9379 .clone_server = nfs_clone_server, 9380 }; 9381 9382 static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = { 9383 .name = XATTR_NAME_NFSV4_ACL, 9384 .list = nfs4_xattr_list_nfs4_acl, 9385 .get = nfs4_xattr_get_nfs4_acl, 9386 .set = nfs4_xattr_set_nfs4_acl, 9387 }; 9388 9389 const struct xattr_handler *nfs4_xattr_handlers[] = { 9390 &nfs4_xattr_nfs4_acl_handler, 9391 #ifdef CONFIG_NFS_V4_SECURITY_LABEL 9392 &nfs4_xattr_nfs4_label_handler, 9393 #endif 9394 NULL 9395 }; 9396 9397 /* 9398 * Local variables: 9399 * c-basic-offset: 8 9400 * End: 9401 */ 9402