sys/kern/vfs_lock.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 | /* * Copyright (c) 2004,2013-2022 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* * External lock/ref-related vnode functions * * vs_state transition locking requirements: * * INACTIVE -> CACHED|DYING vx_lock(excl) + vi->spin * DYING -> CACHED vx_lock(excl) * ACTIVE -> INACTIVE (none) + v_spin + vi->spin * INACTIVE -> ACTIVE vn_lock(any) + v_spin + vi->spin * CACHED -> ACTIVE vn_lock(any) + v_spin + vi->spin * * NOTE: Switching to/from ACTIVE/INACTIVE requires v_spin and vi->spin, * * Switching into ACTIVE also requires a vref and vnode lock, however * the vnode lock is allowed to be SHARED. * * Switching into a CACHED or DYING state requires an exclusive vnode * lock or vx_lock (which is almost the same thing but not quite). */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/mount.h> #include <sys/proc.h> #include <sys/vnode.h> #include <sys/spinlock2.h> #include <sys/sysctl.h> #include <machine/limits.h> #include <vm/vm.h> #include <vm/vm_object.h> #define VACT_MAX 10 #define VACT_INC 2 static void vnode_terminate(struct vnode *vp); static MALLOC_DEFINE_OBJ(M_VNODE, sizeof(struct vnode), "vnodes", "vnodes"); static MALLOC_DEFINE(M_VNODE_HASH, "vnodelsthash", "vnode list hash"); /* * The vnode free list hold inactive vnodes. Aged inactive vnodes * are inserted prior to the mid point, and otherwise inserted * at the tail. * * The vnode code goes to great lengths to avoid moving vnodes between * lists, but sometimes it is unavoidable. For this situation we try to * avoid lock contention but we do not try very hard to avoid cache line * congestion. A modestly sized hash table is used. */ #define VLIST_PRIME2 123462047LU #define VLIST_XOR (uintptr_t)0xab4582fa8322fb71LLU #define VLIST_HASH(vp) (((uintptr_t)vp ^ VLIST_XOR) % \ VLIST_PRIME2 % (unsigned)ncpus) static struct vnode_index *vnode_list_hash; int activevnodes = 0; SYSCTL_INT(_debug, OID_AUTO, activevnodes, CTLFLAG_RD, &activevnodes, 0, "Number of active nodes"); int cachedvnodes = 0; SYSCTL_INT(_debug, OID_AUTO, cachedvnodes, CTLFLAG_RD, &cachedvnodes, 0, "Number of total cached nodes"); int inactivevnodes = 0; SYSCTL_INT(_debug, OID_AUTO, inactivevnodes, CTLFLAG_RD, &inactivevnodes, 0, "Number of inactive nodes"); static int batchfreevnodes = 5; SYSCTL_INT(_debug, OID_AUTO, batchfreevnodes, CTLFLAG_RW, &batchfreevnodes, 0, "Number of vnodes to free at once"); static long auxrecovervnodes1; SYSCTL_INT(_debug, OID_AUTO, auxrecovervnodes1, CTLFLAG_RW, &auxrecovervnodes1, 0, "vnlru auxillary vnodes recovered"); static long auxrecovervnodes2; SYSCTL_INT(_debug, OID_AUTO, auxrecovervnodes2, CTLFLAG_RW, &auxrecovervnodes2, 0, "vnlru auxillary vnodes recovered"); #ifdef TRACKVNODE static u_long trackvnode; SYSCTL_ULONG(_debug, OID_AUTO, trackvnode, CTLFLAG_RW, &trackvnode, 0, ""); #endif /* * Called from vfsinit() */ void vfs_lock_init(void) { int i; kmalloc_obj_raise_limit(M_VNODE, 0); /* unlimited */ vnode_list_hash = kmalloc(sizeof(*vnode_list_hash) * ncpus, M_VNODE_HASH, M_ZERO | M_WAITOK); for (i = 0; i < ncpus; ++i) { struct vnode_index *vi = &vnode_list_hash[i]; TAILQ_INIT(&vi->inactive_list); TAILQ_INIT(&vi->active_list); TAILQ_INSERT_TAIL(&vi->active_list, &vi->active_rover, v_list); spin_init(&vi->spin, "vfslock"); } } /* * Misc functions */ static __inline void _vsetflags(struct vnode *vp, int flags) { atomic_set_int(&vp->v_flag, flags); } static __inline void _vclrflags(struct vnode *vp, int flags) { atomic_clear_int(&vp->v_flag, flags); } void vsetflags(struct vnode *vp, int flags) { _vsetflags(vp, flags); } void vclrflags(struct vnode *vp, int flags) { _vclrflags(vp, flags); } /* * Place the vnode on the active list. * * Caller must hold vp->v_spin */ static __inline void _vactivate(struct vnode *vp) { struct vnode_index *vi = &vnode_list_hash[VLIST_HASH(vp)]; #ifdef TRACKVNODE if ((u_long)vp == trackvnode) kprintf("_vactivate %p %08x\n", vp, vp->v_flag); #endif spin_lock(&vi->spin); switch(vp->v_state) { case VS_ACTIVE: spin_unlock(&vi->spin); panic("_vactivate: already active"); /* NOT REACHED */ return; case VS_INACTIVE: TAILQ_REMOVE(&vi->inactive_list, vp, v_list); atomic_add_int(&mycpu->gd_inactivevnodes, -1); break; case VS_CACHED: case VS_DYING: break; } TAILQ_INSERT_TAIL(&vi->active_list, vp, v_list); vp->v_state = VS_ACTIVE; spin_unlock(&vi->spin); atomic_add_int(&mycpu->gd_activevnodes, 1); } /* * Put a vnode on the inactive list. * * Caller must hold v_spin */ static __inline void _vinactive(struct vnode *vp) { struct vnode_index *vi = &vnode_list_hash[VLIST_HASH(vp)]; #ifdef TRACKVNODE if ((u_long)vp == trackvnode) { kprintf("_vinactive %p %08x\n", vp, vp->v_flag); print_backtrace(-1); } #endif spin_lock(&vi->spin); /* * Remove from active list if it is sitting on it */ switch(vp->v_state) { case VS_ACTIVE: TAILQ_REMOVE(&vi->active_list, vp, v_list); atomic_add_int(&mycpu->gd_activevnodes, -1); break; case VS_INACTIVE: spin_unlock(&vi->spin); panic("_vinactive: already inactive"); /* NOT REACHED */ return; case VS_CACHED: case VS_DYING: break; } /* * Distinguish between basically dead vnodes, vnodes with cached * data, and vnodes without cached data. A rover will shift the * vnodes around as their cache status is lost. */ if (vp->v_flag & VRECLAIMED) { TAILQ_INSERT_HEAD(&vi->inactive_list, vp, v_list); } else { TAILQ_INSERT_TAIL(&vi->inactive_list, vp, v_list); } vp->v_state = VS_INACTIVE; spin_unlock(&vi->spin); atomic_add_int(&mycpu->gd_inactivevnodes, 1); } /* * Add a ref to an active vnode. This function should never be called * with an inactive vnode (use vget() instead), but might be called * with other states. */ void vref(struct vnode *vp) { KASSERT((VREFCNT(vp) > 0 && vp->v_state != VS_INACTIVE), ("vref: bad refcnt %08x %d", vp->v_refcnt, vp->v_state)); atomic_add_int(&vp->v_refcnt, 1); } void vref_special(struct vnode *vp) { if ((atomic_fetchadd_int(&vp->v_refcnt, 1) & VREF_MASK) == 0) atomic_add_int(&mycpu->gd_cachedvnodes, -1); } void synchronizevnodecount(void) { int nca = 0; int act = 0; int ina = 0; int i; for (i = 0; i < ncpus; ++i) { globaldata_t gd = globaldata_find(i); nca += gd->gd_cachedvnodes; act += gd->gd_activevnodes; ina += gd->gd_inactivevnodes; } cachedvnodes = nca; activevnodes = act; inactivevnodes = ina; } /* * Count number of cached vnodes. This is middling expensive so be * careful not to make this call in the critical path. Each cpu tracks * its own accumulator. The individual accumulators must be summed * together to get an accurate value. */ int countcachedvnodes(void) { int i; int n = 0; for (i = 0; i < ncpus; ++i) { globaldata_t gd = globaldata_find(i); n += gd->gd_cachedvnodes; } return n; } int countcachedandinactivevnodes(void) { int i; int n = 0; for (i = 0; i < ncpus; ++i) { globaldata_t gd = globaldata_find(i); n += gd->gd_cachedvnodes + gd->gd_inactivevnodes; } return n; } /* * Release a ref on an active or inactive vnode. * * Caller has no other requirements. * * If VREF_FINALIZE is set this will deactivate the vnode on the 1->0 * transition, otherwise we leave the vnode in the active list and * do a lockless transition to 0, which is very important for the * critical path. * * (vrele() is not called when a vnode is being destroyed w/kfree) */ void vrele(struct vnode *vp) { int count; #if 1 count = vp->v_refcnt; cpu_ccfence(); for (;;) { KKASSERT((count & VREF_MASK) > 0); KKASSERT(vp->v_state == VS_ACTIVE || vp->v_state == VS_INACTIVE); /* * 2+ case */ if ((count & VREF_MASK) > 1) { if (atomic_fcmpset_int(&vp->v_refcnt, &count, count - 1)) { break; } continue; } /* * 1->0 transition case must handle possible finalization. * When finalizing we transition 1->0x40000000. Note that * cachedvnodes is only adjusted on transitions to ->0. * * WARNING! VREF_TERMINATE can be cleared at any point * when the refcnt is non-zero (by vget()) and * the vnode has not been reclaimed. Thus * transitions out of VREF_TERMINATE do not have * to mess with cachedvnodes. */ if (count & VREF_FINALIZE) { vx_lock(vp); if (atomic_fcmpset_int(&vp->v_refcnt, &count, VREF_TERMINATE)) { vnode_terminate(vp); break; } vx_unlock(vp); } else { if (atomic_fcmpset_int(&vp->v_refcnt, &count, 0)) { atomic_add_int(&mycpu->gd_cachedvnodes, 1); break; } } cpu_pause(); /* retry */ } #else /* * XXX NOT YET WORKING! Multiple threads can reference the vnode * after dropping their count, racing destruction, because this * code is not directly transitioning from 1->VREF_FINALIZE. */ /* * Drop the ref-count. On the 1->0 transition we check VREF_FINALIZE * and attempt to acquire VREF_TERMINATE if set. It is possible for * concurrent vref/vrele to race and bounce 0->1, 1->0, etc, but * only one will be able to transition the vnode into the * VREF_TERMINATE state. * * NOTE: VREF_TERMINATE is *in* VREF_MASK, so the vnode may only enter * this state once. */ count = atomic_fetchadd_int(&vp->v_refcnt, -1); if ((count & VREF_MASK) == 1) { atomic_add_int(&mycpu->gd_cachedvnodes, 1); --count; while ((count & (VREF_MASK | VREF_FINALIZE)) == VREF_FINALIZE) { vx_lock(vp); if (atomic_fcmpset_int(&vp->v_refcnt, &count, VREF_TERMINATE)) { atomic_add_int(&mycpu->gd_cachedvnodes, -1); vnode_terminate(vp); break; } vx_unlock(vp); } } #endif } /* * Add an auxiliary data structure reference to the vnode. Auxiliary * references do not change the state of the vnode or prevent deactivation * or reclamation of the vnode, but will prevent the vnode from being * destroyed (kfree()'d). * * WARNING! vhold() must not acquire v_spin. The spinlock may or may not * already be held by the caller. vdrop() will clean up the * free list state. */ void vhold(struct vnode *vp) { atomic_add_int(&vp->v_auxrefs, 1); } /* * Remove an auxiliary reference from the vnode. */ void vdrop(struct vnode *vp) { atomic_add_int(&vp->v_auxrefs, -1); } /* * Set VREF_FINALIZE to request that the vnode be inactivated * as soon as possible (on the 1->0 transition of its refs). * * Caller must have a ref on the vnode. * * This function has no effect if the vnode is already in termination * processing. */ void vfinalize(struct vnode *vp) { if ((vp->v_refcnt & VREF_MASK) > 0) atomic_set_int(&vp->v_refcnt, VREF_FINALIZE); } /* * This function is called on the 1->0 transition (which is actually * 1->VREF_TERMINATE) when VREF_FINALIZE is set, forcing deactivation * of the vnode. * * Additional vrefs are allowed to race but will not result in a reentrant * call to vnode_terminate() due to refcnt being VREF_TERMINATE. This * prevents additional 1->0 transitions. * * ONLY A VGET() CAN REACTIVATE THE VNODE. * * Caller must hold the VX lock. * * NOTE: v_mount may be NULL due to assigmment to dead_vnode_vops * * NOTE: The vnode may be marked inactive with dirty buffers * or dirty pages in its cached VM object still present. * * NOTE: VS_FREE should not be set on entry (the vnode was expected to * previously be active). We lose control of the vnode the instant * it is placed on the free list. * * The VX lock is required when transitioning to VS_CACHED but is * not sufficient for the vshouldfree() interlocked test or when * transitioning away from VS_CACHED. v_spin is also required for * those cases. */ static void vnode_terminate(struct vnode *vp) { KKASSERT(vp->v_state == VS_ACTIVE); if ((vp->v_flag & VINACTIVE) == 0) { _vsetflags(vp, VINACTIVE); if (vp->v_mount) VOP_INACTIVE(vp); } spin_lock(&vp->v_spin); _vinactive(vp); spin_unlock(&vp->v_spin); vx_unlock(vp); } /**************************************************************** * VX LOCKING FUNCTIONS * **************************************************************** * * These functions lock vnodes for reclamation and deactivation related * activities. The caller must already be holding some sort of reference * on the vnode. */ void vx_lock(struct vnode *vp) { lockmgr(&vp->v_lock, LK_EXCLUSIVE); spin_lock_update_only(&vp->v_spin); } void vx_unlock(struct vnode *vp) { spin_unlock_update_only(&vp->v_spin); lockmgr(&vp->v_lock, LK_RELEASE); } /* * Downgrades a VX lock to a normal VN lock. The lock remains EXCLUSIVE. * * Generally required after calling getnewvnode() if the intention is * to return a normal locked vnode to the caller. */ void vx_downgrade(struct vnode *vp) { spin_unlock_update_only(&vp->v_spin); } /**************************************************************** * VNODE ACQUISITION FUNCTIONS * **************************************************************** * * These functions must be used when accessing a vnode that has no * chance of being destroyed in a SMP race. That means the caller will * usually either hold an auxiliary reference (such as the namecache) * or hold some other lock that ensures that the vnode cannot be destroyed. * * These functions are MANDATORY for any code chain accessing a vnode * whos activation state is not known. * * vget() can be called with LK_NOWAIT and will return EBUSY if the * lock cannot be immediately acquired. * * vget()/vput() are used when reactivation is desired. * * vx_get() and vx_put() are used when reactivation is not desired. */ int vget(struct vnode *vp, int flags) { int error; /* * A lock type must be passed */ if ((flags & LK_TYPE_MASK) == 0) { panic("vget() called with no lock specified!"); /* NOT REACHED */ } /* * Reference the structure and then acquire the lock. * * NOTE: The requested lock might be a shared lock and does * not protect our access to the refcnt or other fields. */ if ((atomic_fetchadd_int(&vp->v_refcnt, 1) & VREF_MASK) == 0) atomic_add_int(&mycpu->gd_cachedvnodes, -1); if ((error = vn_lock(vp, flags | LK_FAILRECLAIM)) != 0) { /* * The lock failed, undo and return an error. This will not * normally trigger a termination. */ vrele(vp); } else if (vp->v_flag & VRECLAIMED) { /* * The node is being reclaimed and cannot be reactivated * any more, undo and return ENOENT. */ vn_unlock(vp); vrele(vp); error = ENOENT; } else if (vp->v_state == VS_ACTIVE) { /* * A VS_ACTIVE vnode coupled with the fact that we have * a vnode lock (even if shared) prevents v_state from * changing. Since the vnode is not in a VRECLAIMED state, * we can safely clear VINACTIVE. * * It is possible for a shared lock to cause a race with * another thread that is also in the process of clearing * VREF_TERMINATE, meaning that we might return with it still * set and then assert in a later vref(). The solution is to * unconditionally clear VREF_TERMINATE here as well. * * NOTE! Multiple threads may clear VINACTIVE if this is * shared lock. This race is allowed. */ if (vp->v_flag & VINACTIVE) _vclrflags(vp, VINACTIVE); /* SMP race ok */ if (vp->v_act < VACT_MAX) { vp->v_act += VACT_INC; if (vp->v_act > VACT_MAX) /* SMP race ok */ vp->v_act = VACT_MAX; } error = 0; if (vp->v_refcnt & VREF_TERMINATE) /* SMP race ok */ atomic_clear_int(&vp->v_refcnt, VREF_TERMINATE); } else { /* * If the vnode is not VS_ACTIVE it must be reactivated * in addition to clearing VINACTIVE. An exclusive spin_lock * is needed to manipulate the vnode's list. * * Because the lockmgr lock might be shared, we might race * another reactivation, which we handle. In this situation, * however, the refcnt prevents other v_state races. * * As with above, clearing VINACTIVE is allowed to race other * clearings of VINACTIVE. * * VREF_TERMINATE and VREF_FINALIZE can only be cleared when * the refcnt is non-zero and the vnode has not been * reclaimed. This also means that the transitions do * not affect cachedvnodes. * * It is possible for a shared lock to cause a race with * another thread that is also in the process of clearing * VREF_TERMINATE, meaning that we might return with it still * set and then assert in a later vref(). The solution is to * unconditionally clear VREF_TERMINATE here as well. */ _vclrflags(vp, VINACTIVE); vp->v_act += VACT_INC; if (vp->v_act > VACT_MAX) /* SMP race ok */ vp->v_act = VACT_MAX; spin_lock(&vp->v_spin); switch(vp->v_state) { case VS_INACTIVE: _vactivate(vp); atomic_clear_int(&vp->v_refcnt, VREF_TERMINATE | VREF_FINALIZE); spin_unlock(&vp->v_spin); break; case VS_CACHED: _vactivate(vp); atomic_clear_int(&vp->v_refcnt, VREF_TERMINATE | VREF_FINALIZE); spin_unlock(&vp->v_spin); break; case VS_ACTIVE: atomic_clear_int(&vp->v_refcnt, VREF_FINALIZE | VREF_TERMINATE); spin_unlock(&vp->v_spin); break; case VS_DYING: spin_unlock(&vp->v_spin); panic("Impossible VS_DYING state"); break; } error = 0; } return(error); } #ifdef DEBUG_VPUT void debug_vput(struct vnode *vp, const char *filename, int line) { kprintf("vput(%p) %s:%d\n", vp, filename, line); vn_unlock(vp); vrele(vp); } #else void vput(struct vnode *vp) { vn_unlock(vp); vrele(vp); } #endif /* * Acquire the vnode lock unguarded. * * The non-blocking version also uses a slightly different mechanic. * This function will explicitly fail not only if it cannot acquire * the lock normally, but also if the caller already holds a lock. * * The adjusted mechanic is used to close a loophole where complex * VOP_RECLAIM code can circle around recursively and allocate the * same vnode it is trying to destroy from the freelist. * * Any filesystem (aka UFS) which puts LK_CANRECURSE in lk_flags can * cause the incorrect behavior to occur. If not for that lockmgr() * would do the right thing. * * XXX The vx_*() locks should use auxrefs, not the main reference counter. */ void vx_get(struct vnode *vp) { if ((atomic_fetchadd_int(&vp->v_refcnt, 1) & VREF_MASK) == 0) atomic_add_int(&mycpu->gd_cachedvnodes, -1); lockmgr(&vp->v_lock, LK_EXCLUSIVE); spin_lock_update_only(&vp->v_spin); } int vx_get_nonblock(struct vnode *vp) { int error; if (lockinuse(&vp->v_lock)) return(EBUSY); error = lockmgr(&vp->v_lock, LK_EXCLUSIVE | LK_NOWAIT); if (error == 0) { spin_lock_update_only(&vp->v_spin); if ((atomic_fetchadd_int(&vp->v_refcnt, 1) & VREF_MASK) == 0) atomic_add_int(&mycpu->gd_cachedvnodes, -1); } return(error); } /* * Release a VX lock that also held a ref on the vnode. vrele() will handle * any needed state transitions. * * However, filesystems use this function to get rid of unwanted new vnodes * so try to get the vnode on the correct queue in that case. */ void vx_put(struct vnode *vp) { if (vp->v_type == VNON || vp->v_type == VBAD) atomic_set_int(&vp->v_refcnt, VREF_FINALIZE); spin_unlock_update_only(&vp->v_spin); lockmgr(&vp->v_lock, LK_RELEASE); vrele(vp); } /* * Try to reuse a vnode from the free list. This function is somewhat * advisory in that NULL can be returned as a normal case, even if free * vnodes are present. * * The scan is limited because it can result in excessive CPU use during * periods of extreme vnode use. * * NOTE: The returned vnode is not completely initialized. * The returned vnode will be VX locked. */ static struct vnode * cleanfreevnode(int maxcount) { struct vnode_index *vi; struct vnode *vp; int count; int trigger = (long)vmstats.v_page_count / (activevnodes * 2 + 1); int ri; int cpu_count; int cachedvnodes; /* * Try to deactivate some vnodes cached on the active list. We * generally want a 50-50 balance active vs inactive. */ cachedvnodes = countcachedvnodes(); if (cachedvnodes < inactivevnodes) goto skip; ri = vnode_list_hash[mycpu->gd_cpuid].deac_rover + 1; for (count = 0; count < maxcount * 2; ++count, ++ri) { vi = &vnode_list_hash[((unsigned)ri >> 4) % ncpus]; spin_lock(&vi->spin); vp = TAILQ_NEXT(&vi->active_rover, v_list); TAILQ_REMOVE(&vi->active_list, &vi->active_rover, v_list); if (vp == NULL) { TAILQ_INSERT_HEAD(&vi->active_list, &vi->active_rover, v_list); } else { TAILQ_INSERT_AFTER(&vi->active_list, vp, &vi->active_rover, v_list); } if (vp == NULL) { spin_unlock(&vi->spin); continue; } /* * Don't try to deactivate if someone has the vp referenced. */ if ((vp->v_refcnt & VREF_MASK) != 0) { spin_unlock(&vi->spin); vp->v_act += VACT_INC; if (vp->v_act > VACT_MAX) /* SMP race ok */ vp->v_act = VACT_MAX; continue; } /* * Calculate the deactivation weight. Reduce v_act less * if the vnode's object has a lot of VM pages. * * XXX obj race */ if (vp->v_act > 0) { vm_object_t obj; if ((obj = vp->v_object) != NULL && obj->resident_page_count >= trigger) { vp->v_act -= 1; } else { vp->v_act -= VACT_INC; } if (vp->v_act < 0) vp->v_act = 0; spin_unlock(&vi->spin); continue; } /* * If v_auxrefs is not the expected value the vnode might * reside in the namecache topology on an internal node and * not at a leaf. v_auxrefs can be wrong for other reasons, * but this is the most likely. * * Such vnodes will not be recycled by vnlru later on in * its inactive scan, so try to make the vnode presentable * and only move it to the inactive queue if we can. * * On success, the vnode is disconnected from the namecache * topology entirely, making vnodes above it in the topology * recycleable. This will allow the active scan to continue * to make progress in balancing the active and inactive * lists. */ if (vp->v_auxrefs != vp->v_namecache_count) { if (vx_get_nonblock(vp) == 0) { spin_unlock(&vi->spin); if ((vp->v_refcnt & VREF_MASK) == 1) cache_inval_vp_quick(vp); if (vp->v_auxrefs == vp->v_namecache_count) ++auxrecovervnodes1; vx_put(vp); } else { spin_unlock(&vi->spin); } continue; } /* * Try to deactivate the vnode. It is ok if v_auxrefs * races every once in a while, we just don't want an * excess of unreclaimable vnodes on the inactive list. */ if ((atomic_fetchadd_int(&vp->v_refcnt, 1) & VREF_MASK) == 0) atomic_add_int(&mycpu->gd_cachedvnodes, -1); atomic_set_int(&vp->v_refcnt, VREF_FINALIZE); spin_unlock(&vi->spin); vrele(vp); } vnode_list_hash[mycpu->gd_cpuid].deac_rover = ri; skip: /* * Loop trying to lock the first vnode on the free list. * Cycle if we can't. */ cpu_count = ncpus; ri = vnode_list_hash[mycpu->gd_cpuid].free_rover + 1; for (count = 0; count < maxcount; ++count, ++ri) { vi = &vnode_list_hash[((unsigned)ri >> 4) % ncpus]; spin_lock(&vi->spin); vp = TAILQ_FIRST(&vi->inactive_list); if (vp == NULL) { spin_unlock(&vi->spin); if (--cpu_count == 0) break; ri = (ri + 16) & ~15; --ri; continue; } /* * non-blocking vx_get will also ref the vnode on success. */ if (vx_get_nonblock(vp)) { KKASSERT(vp->v_state == VS_INACTIVE); TAILQ_REMOVE(&vi->inactive_list, vp, v_list); TAILQ_INSERT_TAIL(&vi->inactive_list, vp, v_list); spin_unlock(&vi->spin); continue; } /* * Because we are holding vfs_spin the vnode should currently * be inactive and VREF_TERMINATE should still be set. * * Once vfs_spin is released the vnode's state should remain * unmodified due to both the lock and ref on it. */ KKASSERT(vp->v_state == VS_INACTIVE); spin_unlock(&vi->spin); #ifdef TRACKVNODE if ((u_long)vp == trackvnode) kprintf("cleanfreevnode %p %08x\n", vp, vp->v_flag); #endif /* * The active scan already did this, but some leakage can * happen. Don't let an easily recycleable vnode go to * waste! */ if (vp->v_auxrefs != vp->v_namecache_count && (vp->v_refcnt & ~VREF_FINALIZE) == VREF_TERMINATE + 1) { cache_inval_vp_quick(vp); if (vp->v_auxrefs == vp->v_namecache_count) ++auxrecovervnodes2; } /* * Do not reclaim/reuse a vnode while auxillary refs exists. * This includes namecache refs due to a related ncp being * locked or having children, a VM object association, or * other hold users. * * Do not reclaim/reuse a vnode if someone else has a real * ref on it. This can occur if a filesystem temporarily * releases the vnode lock during VOP_RECLAIM. */ if (vp->v_auxrefs != vp->v_namecache_count || (vp->v_refcnt & ~VREF_FINALIZE) != VREF_TERMINATE + 1) { failed: if (vp->v_state == VS_INACTIVE) { spin_lock(&vi->spin); if (vp->v_state == VS_INACTIVE) { TAILQ_REMOVE(&vi->inactive_list, vp, v_list); TAILQ_INSERT_TAIL(&vi->inactive_list, vp, v_list); } spin_unlock(&vi->spin); } vx_put(vp); continue; } /* * VINACTIVE and VREF_TERMINATE are expected to both be set * for vnodes pulled from the inactive list, and cannot be * changed while we hold the vx lock. * * Try to reclaim the vnode. * * The cache_inval_vp() can fail if any of the namecache * elements are actively locked, preventing the vnode from * bring reclaimed. This is desired operation as it gives * the namecache code certain guarantees just by holding * a ncp. */ KKASSERT(vp->v_flag & VINACTIVE); KKASSERT(vp->v_refcnt & VREF_TERMINATE); if ((vp->v_flag & VRECLAIMED) == 0) { if (cache_inval_vp_nonblock(vp)) goto failed; vgone_vxlocked(vp); /* vnode is still VX locked */ } /* * At this point if there are no other refs or auxrefs on * the vnode with the inactive list locked, and we remove * the vnode from the inactive list, it should not be * possible for anyone else to access the vnode any more. * * Since the vnode is in a VRECLAIMED state, no new * namecache associations could have been made and the * vnode should have already been removed from its mountlist. * * Since we hold a VX lock on the vnode it cannot have been * reactivated (moved out of the inactive list). */ KKASSERT(TAILQ_EMPTY(&vp->v_namecache)); spin_lock(&vi->spin); if (vp->v_auxrefs || (vp->v_refcnt & ~VREF_FINALIZE) != VREF_TERMINATE + 1) { spin_unlock(&vi->spin); goto failed; } KKASSERT(vp->v_state == VS_INACTIVE); TAILQ_REMOVE(&vi->inactive_list, vp, v_list); atomic_add_int(&mycpu->gd_inactivevnodes, -1); vp->v_state = VS_DYING; spin_unlock(&vi->spin); /* * Nothing should have been able to access this vp. Only * our ref should remain now. */ atomic_clear_int(&vp->v_refcnt, VREF_TERMINATE|VREF_FINALIZE); KASSERT(vp->v_refcnt == 1, ("vp %p badrefs %08x", vp, vp->v_refcnt)); /* * Return a VX locked vnode suitable for reuse. */ vnode_list_hash[mycpu->gd_cpuid].free_rover = ri; return(vp); } vnode_list_hash[mycpu->gd_cpuid].free_rover = ri; return(NULL); } /* * Obtain a new vnode. The returned vnode is VX locked & vrefd. * * All new vnodes set the VAGE flags. An open() of the vnode will * decrement the (2-bit) flags. Vnodes which are opened several times * are thus retained in the cache over vnodes which are merely stat()d. * * We attempt to reuse an already-recycled vnode from our pcpu inactive * queue first, and allocate otherwise. Attempting to recycle inactive * vnodes here can lead to numerous deadlocks, particularly with * softupdates. */ struct vnode * allocvnode(int lktimeout, int lkflags) { struct vnode *vp; struct vnode_index *vi; /* * lktimeout only applies when LK_TIMELOCK is used, and only * the pageout daemon uses it. The timeout may not be zero * or the pageout daemon can deadlock in low-VM situations. */ if (lktimeout == 0) lktimeout = hz / 10; /* * Do not flag for synchronous recyclement unless there are enough * freeable vnodes to recycle and the number of vnodes has * significantly exceeded our target. We want the normal vnlru * process to handle the cleaning (at 9/10's) before we are forced * to flag it here at 11/10's for userexit path processing. */ if (numvnodes >= maxvnodes * 11 / 10 && cachedvnodes + inactivevnodes >= maxvnodes * 5 / 10) { struct thread *td = curthread; if (td->td_lwp) atomic_set_int(&td->td_lwp->lwp_mpflags, LWP_MP_VNLRU); } /* * Try to trivially reuse a reclaimed vnode from the head of the * inactive list for this cpu. Any vnode cycling which occurs * which terminates the vnode will cause it to be returned to the * same pcpu structure (e.g. unlink calls). */ vi = &vnode_list_hash[mycpuid]; spin_lock(&vi->spin); vp = TAILQ_FIRST(&vi->inactive_list); if (vp && (vp->v_flag & VRECLAIMED)) { /* * non-blocking vx_get will also ref the vnode on success. */ if (vx_get_nonblock(vp)) { KKASSERT(vp->v_state == VS_INACTIVE); TAILQ_REMOVE(&vi->inactive_list, vp, v_list); TAILQ_INSERT_TAIL(&vi->inactive_list, vp, v_list); spin_unlock(&vi->spin); goto slower; } /* * Because we are holding vfs_spin the vnode should currently * be inactive and VREF_TERMINATE should still be set. * * Once vfs_spin is released the vnode's state should remain * unmodified due to both the lock and ref on it. */ KKASSERT(vp->v_state == VS_INACTIVE); #ifdef TRACKVNODE if ((u_long)vp == trackvnode) kprintf("allocvnode %p %08x\n", vp, vp->v_flag); #endif /* * Do not reclaim/reuse a vnode while auxillary refs exists. * This includes namecache refs due to a related ncp being * locked or having children, a VM object association, or * other hold users. * * Do not reclaim/reuse a vnode if someone else has a real * ref on it. This can occur if a filesystem temporarily * releases the vnode lock during VOP_RECLAIM. */ if (vp->v_auxrefs || (vp->v_refcnt & ~VREF_FINALIZE) != VREF_TERMINATE + 1) { if (vp->v_state == VS_INACTIVE) { TAILQ_REMOVE(&vi->inactive_list, vp, v_list); TAILQ_INSERT_TAIL(&vi->inactive_list, vp, v_list); } spin_unlock(&vi->spin); vx_put(vp); goto slower; } /* * VINACTIVE and VREF_TERMINATE are expected to both be set * for vnodes pulled from the inactive list, and cannot be * changed while we hold the vx lock. * * Try to reclaim the vnode. */ KKASSERT(vp->v_flag & VINACTIVE); KKASSERT(vp->v_refcnt & VREF_TERMINATE); if ((vp->v_flag & VRECLAIMED) == 0) { spin_unlock(&vi->spin); vx_put(vp); goto slower; } /* * At this point if there are no other refs or auxrefs on * the vnode with the inactive list locked, and we remove * the vnode from the inactive list, it should not be * possible for anyone else to access the vnode any more. * * Since the vnode is in a VRECLAIMED state, no new * namecache associations could have been made and the * vnode should have already been removed from its mountlist. * * Since we hold a VX lock on the vnode it cannot have been * reactivated (moved out of the inactive list). */ KKASSERT(TAILQ_EMPTY(&vp->v_namecache)); KKASSERT(vp->v_state == VS_INACTIVE); TAILQ_REMOVE(&vi->inactive_list, vp, v_list); atomic_add_int(&mycpu->gd_inactivevnodes, -1); vp->v_state = VS_DYING; spin_unlock(&vi->spin); /* * Nothing should have been able to access this vp. Only * our ref should remain now. * * At this point we can kfree() the vnode if we want to. * Instead, we reuse it for the allocation. */ atomic_clear_int(&vp->v_refcnt, VREF_TERMINATE|VREF_FINALIZE); KASSERT(vp->v_refcnt == 1, ("vp %p badrefs %08x", vp, vp->v_refcnt)); vx_unlock(vp); /* safety: keep the API clean */ bzero(vp, sizeof(*vp)); } else { spin_unlock(&vi->spin); slower: vp = kmalloc_obj(sizeof(*vp), M_VNODE, M_ZERO | M_WAITOK); atomic_add_int(&numvnodes, 1); } lwkt_token_init(&vp->v_token, "vnode"); lockinit(&vp->v_lock, "vnode", lktimeout, lkflags); TAILQ_INIT(&vp->v_namecache); RB_INIT(&vp->v_rbclean_tree); RB_INIT(&vp->v_rbdirty_tree); RB_INIT(&vp->v_rbhash_tree); spin_init(&vp->v_spin, "allocvnode"); vx_lock(vp); vp->v_refcnt = 1; vp->v_flag = VAGE0 | VAGE1; vp->v_pbuf_count = nswbuf_kva / NSWBUF_SPLIT; KKASSERT(TAILQ_EMPTY(&vp->v_namecache)); /* exclusive lock still held */ vp->v_filesize = NOOFFSET; vp->v_type = VNON; vp->v_tag = 0; vp->v_state = VS_CACHED; _vactivate(vp); return (vp); } /* * Called after a process has allocated a vnode via allocvnode() * and we detected that too many vnodes were present. * * This function is called just prior to a return to userland if the * process at some point had to allocate a new vnode during the last * system call and the vnode count was found to be excessive. * * This is a synchronous path that we do not normally want to execute. * * Flagged at >= 11/10's, runs if >= 10/10, vnlru runs at 9/10. * * WARNING: Sometimes numvnodes can blow out due to children being * present under directory vnodes in the namecache. For the * moment use an if() instead of a while() and note that if * we were to use a while() we would still have to break out * if freesomevnodes() returned 0. vnlru will also be trying * hard to free vnodes at the same time (with a lower trigger * pointer). */ void allocvnode_gc(void) { if (numvnodes >= maxvnodes && countcachedandinactivevnodes() >= maxvnodes * 5 / 10) { freesomevnodes(batchfreevnodes); } } int freesomevnodes(int n) { struct vnode *vp; int count = 0; while (n) { if ((vp = cleanfreevnode(n)) == NULL) break; vx_unlock(vp); --n; ++count; kfree_obj(vp, M_VNODE); atomic_add_int(&numvnodes, -1); } return(count); } |