sys/kern/kern_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 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 | /* * Copyright (c) 1995 * The Regents of the University of California. All rights reserved. * Copyright (C) 1997 * John S. Dyson. All rights reserved. * Copyright (C) 2013-2017 * Matthew Dillon, All rights reserved. * * This code contains ideas from software contributed to Berkeley by * Avadis Tevanian, Jr., Michael Wayne Young, and the Mach Operating * System project at Carnegie-Mellon University. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com>. Extensively rewritten. * * 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 University 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 REGENTS 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 REGENTS 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. */ #include "opt_lint.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/lock.h> #include <sys/sysctl.h> #include <sys/spinlock.h> #include <sys/spinlock2.h> #include <sys/indefinite2.h> static void undo_shreq(struct lock *lkp); static int undo_upreq(struct lock *lkp); static int undo_exreq(struct lock *lkp); #ifdef DEBUG_CANCEL_LOCKS static int sysctl_cancel_lock(SYSCTL_HANDLER_ARGS); static int sysctl_cancel_test(SYSCTL_HANDLER_ARGS); static struct lock cancel_lk; LOCK_SYSINIT(cancellk, &cancel_lk, "cancel", 0); SYSCTL_PROC(_kern, OID_AUTO, cancel_lock, CTLTYPE_INT|CTLFLAG_RW, 0, 0, sysctl_cancel_lock, "I", "test cancelable locks"); SYSCTL_PROC(_kern, OID_AUTO, cancel_test, CTLTYPE_INT|CTLFLAG_RW, 0, 0, sysctl_cancel_test, "I", "test cancelable locks"); #endif __read_frequently int lock_test_mode; SYSCTL_INT(_debug, OID_AUTO, lock_test_mode, CTLFLAG_RW, &lock_test_mode, 0, ""); /* * Locking primitives implementation. * Locks provide shared/exclusive sychronization. */ #ifdef DEBUG_LOCKS #define COUNT(td, x) (td)->td_locks += (x) #else #define COUNT(td, x) do { } while (0) #endif /* * Helper, assert basic conditions */ static __inline void _lockmgr_assert(struct lock *lkp, u_int flags) { if (mycpu->gd_intr_nesting_level && (flags & LK_NOWAIT) == 0 && (flags & LK_TYPE_MASK) != LK_RELEASE && panic_cpu_gd != mycpu ) { panic("lockmgr %s from %p: called from interrupt, ipi, " "or hard code section", lkp->lk_wmesg, ((int **)&lkp)[-1]); } } /* * Acquire a shared lock */ int lockmgr_shared(struct lock *lkp, u_int flags) { uint32_t extflags; thread_t td; uint64_t count; int error; int pflags; int timo; int didloop; _lockmgr_assert(lkp, flags); extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; td = curthread; count = lkp->lk_count; cpu_ccfence(); /* * If the caller already holds the lock exclusively then * we silently obtain another count on the exclusive lock. * Avoid accessing lk_lockholder until testing exclusivity. * * WARNING! The old FreeBSD behavior was to downgrade, * but this creates a problem when recursions * return to the caller and the caller expects * its original exclusive lock to remain exclusively * locked. */ if ((count & LKC_XMASK) && lkp->lk_lockholder == td) { KKASSERT(lkp->lk_count & LKC_XMASK); if ((extflags & LK_CANRECURSE) == 0) { if (extflags & LK_NOWAIT) return EBUSY; panic("lockmgr: locking against myself"); } atomic_add_64(&lkp->lk_count, 1); COUNT(td, 1); return 0; } /* * Unless TDF_DEADLKTREAT is set, we cannot add LKC_SCOUNT while * SHARED is set and either EXREQ or UPREQ are set. * * NOTE: In the race-to-0 case (see undo_shreq()), we could * theoretically work the SMASK == 0 case here. */ if ((td->td_flags & TDF_DEADLKTREAT) == 0) { while ((count & LKC_SHARED) && (count & (LKC_EXREQ | LKC_UPREQ))) { /* * Immediate failure conditions */ if (extflags & LK_CANCELABLE) { if (count & LKC_CANCEL) return ENOLCK; } if (extflags & LK_NOWAIT) return EBUSY; /* * Interlocked tsleep */ pflags = (extflags & LK_PCATCH) ? PCATCH : 0; timo = (extflags & LK_TIMELOCK) ? lkp->lk_timo : 0; tsleep_interlock(lkp, pflags); count = atomic_fetchadd_long(&lkp->lk_count, 0); if ((count & LKC_SHARED) && (count & (LKC_EXREQ | LKC_UPREQ))) { error = tsleep(lkp, pflags | PINTERLOCKED, lkp->lk_wmesg, timo); if (error) return error; count = lkp->lk_count; cpu_ccfence(); continue; } break; } } /* * Bump the SCOUNT field. The shared lock is granted only once * the SHARED flag gets set. If it is already set, we are done. * * (Racing an EXREQ or UPREQ operation is ok here, we already did * our duty above). */ count = atomic_fetchadd_64(&lkp->lk_count, LKC_SCOUNT) + LKC_SCOUNT; error = 0; didloop = 0; for (;;) { /* * We may be able to grant ourselves the bit trivially. * We're done once the SHARED bit is granted. */ if ((count & (LKC_XMASK | LKC_EXREQ | LKC_UPREQ | LKC_SHARED)) == 0) { if (atomic_fcmpset_64(&lkp->lk_count, &count, count | LKC_SHARED)) { /* count |= LKC_SHARED; NOT USED */ break; } continue; } if ((td->td_flags & TDF_DEADLKTREAT) && (count & (LKC_XMASK | LKC_SHARED)) == 0) { if (atomic_fcmpset_64(&lkp->lk_count, &count, count | LKC_SHARED)) { /* count |= LKC_SHARED; NOT USED */ break; } continue; } if (count & LKC_SHARED) break; /* * Slow path */ pflags = (extflags & LK_PCATCH) ? PCATCH : 0; timo = (extflags & LK_TIMELOCK) ? lkp->lk_timo : 0; if (extflags & LK_CANCELABLE) { if (count & LKC_CANCEL) { undo_shreq(lkp); error = ENOLCK; break; } } if (extflags & LK_NOWAIT) { undo_shreq(lkp); error = EBUSY; break; } /* * Interlocked after the first loop. */ if (didloop) { error = tsleep(lkp, pflags | PINTERLOCKED, lkp->lk_wmesg, timo); if (extflags & LK_SLEEPFAIL) { undo_shreq(lkp); error = ENOLCK; break; } if (error) { undo_shreq(lkp); break; } } didloop = 1; /* * Reload, shortcut grant case, then loop interlock * and loop. */ count = lkp->lk_count; if (count & LKC_SHARED) break; tsleep_interlock(lkp, pflags); count = atomic_fetchadd_64(&lkp->lk_count, 0); } if (error == 0) COUNT(td, 1); return error; } /* * Acquire an exclusive lock */ int lockmgr_exclusive(struct lock *lkp, u_int flags) { uint64_t count; uint64_t ncount; uint32_t extflags; thread_t td; int error; int pflags; int timo; _lockmgr_assert(lkp, flags); extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; td = curthread; error = 0; count = lkp->lk_count; cpu_ccfence(); /* * Recursive lock if we already hold it exclusively. Avoid testing * lk_lockholder until after testing lk_count. */ if ((count & LKC_XMASK) && lkp->lk_lockholder == td) { if ((extflags & LK_CANRECURSE) == 0) { if (extflags & LK_NOWAIT) return EBUSY; panic("lockmgr: locking against myself"); } count = atomic_fetchadd_64(&lkp->lk_count, 1) + 1; KKASSERT((count & LKC_XMASK) > 1); COUNT(td, 1); return 0; } /* * Trivially acquire the lock, or block until we can set EXREQ. * Set EXREQ2 if EXREQ is already set or the lock is already * held exclusively. EXREQ2 is an aggregation bit to request * a wakeup. * * WARNING! We cannot set EXREQ if the lock is already held * exclusively because it may race another EXREQ * being cleared and granted. We use the exclusivity * to prevent both EXREQ and UPREQ from being set. * * This means that both shared and exclusive requests * have equal priority against a current exclusive holder's * release. Exclusive requests still have priority over * new shared requests when the lock is already held shared. */ for (;;) { /* * Normal trivial case */ if ((count & (LKC_UPREQ | LKC_EXREQ | LKC_XMASK)) == 0 && ((count & LKC_SHARED) == 0 || (count & LKC_SMASK) == 0)) { ncount = (count + 1) & ~LKC_SHARED; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { lkp->lk_lockholder = td; COUNT(td, 1); return 0; } continue; } if (extflags & LK_CANCELABLE) { if (count & LKC_CANCEL) return ENOLCK; } if (extflags & LK_NOWAIT) return EBUSY; /* * Interlock to set EXREQ or EXREQ2 */ pflags = (extflags & LK_PCATCH) ? PCATCH : 0; timo = (extflags & LK_TIMELOCK) ? lkp->lk_timo : 0; if (count & (LKC_EXREQ | LKC_XMASK)) ncount = count | LKC_EXREQ2; else ncount = count | LKC_EXREQ; tsleep_interlock(lkp, pflags); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { /* * If we successfully transitioned to EXREQ we * can break out, otherwise we had set EXREQ2 and * we block. */ if ((count & (LKC_EXREQ | LKC_XMASK)) == 0) { count = ncount; break; } error = tsleep(lkp, pflags | PINTERLOCKED, lkp->lk_wmesg, timo); count = lkp->lk_count; /* relod */ cpu_ccfence(); } #ifdef INVARIANTS if (lock_test_mode > 0) { --lock_test_mode; print_backtrace(8); } #endif if (error) return error; if (extflags & LK_SLEEPFAIL) return ENOLCK; } /* * Once EXREQ has been set, wait for it to be granted * We enter the loop with tsleep_interlock() already called. */ for (;;) { /* * Waiting for EXREQ to be granted to us. * * The granting thread will handle the count for us, but we * still have to set lk_lockholder. * * NOTE! If we try to trivially get the exclusive lock * (basically by racing undo_shreq()) and succeed, * we must still wakeup(lkp) for another exclusive * lock trying to acquire EXREQ. Easier to simply * wait for our own wakeup. */ if ((count & LKC_EXREQ) == 0) { KKASSERT(count & LKC_XMASK); lkp->lk_lockholder = td; COUNT(td, 1); break; } /* * Block waiting for our exreq to be granted. * Check cancelation. NOWAIT was already dealt with. */ if (extflags & LK_CANCELABLE) { if (count & LKC_CANCEL) { if (undo_exreq(lkp) == 0) { lkp->lk_lockholder = LK_KERNTHREAD; lockmgr_release(lkp, 0); } error = ENOLCK; break; } } pflags = (extflags & LK_PCATCH) ? PCATCH : 0; timo = (extflags & LK_TIMELOCK) ? lkp->lk_timo : 0; error = tsleep(lkp, pflags | PINTERLOCKED, lkp->lk_wmesg, timo); #ifdef INVARIANTS if (lock_test_mode > 0) { --lock_test_mode; print_backtrace(8); } #endif /* * A tsleep error is uncommon. If it occurs we have to * undo our EXREQ. If we are granted the exclusive lock * as we try to undo we have to deal with it. */ if (extflags & LK_SLEEPFAIL) { if (undo_exreq(lkp) == 0) { lkp->lk_lockholder = LK_KERNTHREAD; lockmgr_release(lkp, 0); } if (error == 0) error = ENOLCK; break; } if (error) { if (undo_exreq(lkp)) break; lkp->lk_lockholder = td; COUNT(td, 1); error = 0; break; } /* * Reload after sleep, shortcut grant case. * Then set the interlock and loop. * * The granting thread will handle the count for us, but we * still have to set lk_lockholder. */ count = lkp->lk_count; cpu_ccfence(); if ((count & LKC_EXREQ) == 0) { KKASSERT(count & LKC_XMASK); lkp->lk_lockholder = td; COUNT(td, 1); break; } tsleep_interlock(lkp, pflags); count = atomic_fetchadd_64(&lkp->lk_count, 0); } return error; } /* * Downgrade an exclusive lock to shared. * * This function always succeeds as long as the caller owns a legal * exclusive lock with one reference. UPREQ and EXREQ is ignored. */ int lockmgr_downgrade(struct lock *lkp, u_int flags) { uint64_t count; uint64_t ncount; uint32_t extflags; thread_t otd; thread_t td; extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; td = curthread; count = lkp->lk_count; for (;;) { cpu_ccfence(); /* * Downgrade an exclusive lock into a shared lock. All * counts on a recursive exclusive lock become shared. * * NOTE: Currently to reduce confusion we only allow * there to be one exclusive lock count, and panic * if there are more. */ if (lkp->lk_lockholder != td || (count & LKC_XMASK) != 1) { panic("lockmgr: not holding exclusive lock: " "%p/%p %016jx", lkp->lk_lockholder, td, count); } /* * NOTE! Must NULL-out lockholder before releasing the * exclusive lock. * * NOTE! There might be pending shared requests, check * and wake them up. */ otd = lkp->lk_lockholder; lkp->lk_lockholder = NULL; ncount = (count & ~(LKC_XMASK | LKC_EXREQ2)) + ((count & LKC_XMASK) << LKC_SSHIFT); ncount |= LKC_SHARED; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { /* * Wakeup any shared waiters (prior SMASK), or * any exclusive requests that couldn't set EXREQ * because the lock had been held exclusively. */ if (count & (LKC_SMASK | LKC_EXREQ2)) wakeup(lkp); /* count = ncount; NOT USED */ break; } lkp->lk_lockholder = otd; /* retry */ } return 0; } /* * Upgrade a shared lock to exclusive. If LK_EXCLUPGRADE then guarantee * that no other exclusive requester can get in front of us and fail * immediately if another upgrade is pending. If we fail, the shared * lock is released. * * If LK_EXCLUPGRADE is not set and we cannot upgrade because someone * else is in front of us, we release the shared lock and acquire the * exclusive lock normally. If a failure occurs, the shared lock is * released. * * The way this works is that if we cannot instantly upgrade the * shared lock due to various conditions, but we can acquire UPREQ, * we then set UPREQ and wait for the thread blocking us to grant * our upgrade. The other thread grants our upgrade by incrementing * the excl count (to 1) and clearing UPREQ, but it doesn't know 'who' * requested the upgrade so it can't set lk_lockholder. Our thread notices * that LK_UPREQ is now clear and finishes up by setting lk_lockholder. */ int lockmgr_upgrade(struct lock *lkp, u_int flags) { uint64_t count; uint64_t ncount; uint32_t extflags; thread_t td; int error; int pflags; int timo; _lockmgr_assert(lkp, flags); extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; td = curthread; error = 0; count = lkp->lk_count; cpu_ccfence(); /* * If we already hold the lock exclusively this operation * succeeds and is a NOP. */ if (count & LKC_XMASK) { if (lkp->lk_lockholder == td) return 0; panic("lockmgr: upgrade unowned lock"); } if ((count & LKC_SMASK) == 0) panic("lockmgr: upgrade unowned lock"); /* * Loop to acquire LKC_UPREQ */ for (;;) { /* * If UPREQ is already pending, release the shared lock * and acquire an exclusive lock normally. * * If NOWAIT or EXCLUPGRADE the operation must be atomic, * and this isn't, so we fail. */ if (count & LKC_UPREQ) { lockmgr_release(lkp, 0); if ((flags & LK_TYPE_MASK) == LK_EXCLUPGRADE) error = EBUSY; else if (extflags & LK_NOWAIT) error = EBUSY; else error = lockmgr_exclusive(lkp, flags); return error; } /* * Try to immediately grant the upgrade, handle NOWAIT, * or release the shared lock and simultaneously set UPREQ. */ if ((count & LKC_SMASK) == LKC_SCOUNT) { /* * Immediate grant */ ncount = (count - LKC_SCOUNT + 1) & ~LKC_SHARED; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { lkp->lk_lockholder = td; return 0; } } else if (extflags & LK_NOWAIT) { /* * Early EBUSY if an immediate grant is impossible */ lockmgr_release(lkp, 0); return EBUSY; } else { /* * Multiple shared locks present, request the * upgrade and break to the next loop. */ pflags = (extflags & LK_PCATCH) ? PCATCH : 0; tsleep_interlock(lkp, pflags); ncount = (count - LKC_SCOUNT) | LKC_UPREQ; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { count = ncount; break; } } /* retry */ } /* * We have acquired LKC_UPREQ, wait until the upgrade is granted * or the tsleep fails. * * NOWAIT and EXCLUPGRADE have already been handled. The first * tsleep_interlock() has already been associated. */ for (;;) { cpu_ccfence(); /* * We were granted our upgrade. No other UPREQ can be * made pending because we are now exclusive. * * The granting thread will handle the count for us, but we * still have to set lk_lockholder. */ if ((count & LKC_UPREQ) == 0) { KKASSERT((count & LKC_XMASK) == 1); lkp->lk_lockholder = td; break; } if (extflags & LK_CANCELABLE) { if (count & LKC_CANCEL) { if (undo_upreq(lkp) == 0) { lkp->lk_lockholder = LK_KERNTHREAD; lockmgr_release(lkp, 0); } error = ENOLCK; break; } } pflags = (extflags & LK_PCATCH) ? PCATCH : 0; timo = (extflags & LK_TIMELOCK) ? lkp->lk_timo : 0; error = tsleep(lkp, pflags | PINTERLOCKED, lkp->lk_wmesg, timo); if (extflags & LK_SLEEPFAIL) { if (undo_upreq(lkp) == 0) { lkp->lk_lockholder = LK_KERNTHREAD; lockmgr_release(lkp, 0); } if (error == 0) error = ENOLCK; break; } if (error) { if (undo_upreq(lkp)) break; error = 0; } /* * Reload the lock, short-cut the UPGRANT code before * taking the time to interlock and loop. * * The granting thread will handle the count for us, but we * still have to set lk_lockholder. */ count = lkp->lk_count; if ((count & LKC_UPREQ) == 0) { KKASSERT((count & LKC_XMASK) == 1); lkp->lk_lockholder = td; break; } tsleep_interlock(lkp, pflags); count = atomic_fetchadd_64(&lkp->lk_count, 0); /* retry */ } return error; } /* * Release a held lock * * NOTE: When releasing to an unlocked state, we set the SHARED bit * to optimize shared lock requests. */ int lockmgr_release(struct lock *lkp, u_int flags) { uint64_t count; uint64_t ncount; uint32_t extflags; thread_t otd; thread_t td; extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; td = curthread; count = lkp->lk_count; cpu_ccfence(); for (;;) { /* * Release the currently held lock, grant all requests * possible. * * WARNING! lksleep() assumes that LK_RELEASE does not * block. * * Always succeeds. * Never blocks. */ if ((count & (LKC_SMASK | LKC_XMASK)) == 0) panic("lockmgr: LK_RELEASE: no lock held"); if (count & LKC_XMASK) { /* * Release exclusively held lock */ if (lkp->lk_lockholder != LK_KERNTHREAD && lkp->lk_lockholder != td) { panic("lockmgr: pid %d, not exclusive " "lock holder thr %p/%p unlocking", (td->td_proc ? td->td_proc->p_pid : -1), td, lkp->lk_lockholder); } if ((count & (LKC_UPREQ | LKC_EXREQ | LKC_XMASK)) == 1) { /* * Last exclusive count is being released * with no UPREQ or EXREQ. The SHARED * bit can be set or not without messing * anything up, so precondition it to * SHARED (which is the most cpu-optimal). * * Wakeup any EXREQ2. EXREQ cannot be * set while an exclusive count is present * so we have to wakeup any EXREQ2 we find. * * We could hint the EXREQ2 by leaving * SHARED unset, but atm I don't see any * usefulness. */ otd = lkp->lk_lockholder; lkp->lk_lockholder = NULL; ncount = (count - 1); ncount &= ~(LKC_CANCEL | LKC_EXREQ2); ncount |= LKC_SHARED; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { if (count & (LKC_SMASK | LKC_EXREQ2)) wakeup(lkp); if (otd != LK_KERNTHREAD) COUNT(td, -1); /* count = ncount; NOT USED */ break; } lkp->lk_lockholder = otd; /* retry */ } else if ((count & (LKC_UPREQ | LKC_XMASK)) == (LKC_UPREQ | 1)) { /* * Last exclusive count is being released but * an upgrade request is present, automatically * grant an exclusive state to the owner of * the upgrade request. Transfer count to * grant. * * The owner of LK_UPREQ is still responsible * for setting lk_lockholder. * * EXREQ cannot be set while an exclusive * holder exists, so do not clear EXREQ2. */ otd = lkp->lk_lockholder; lkp->lk_lockholder = NULL; ncount = count & ~LKC_UPREQ; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); if (otd != LK_KERNTHREAD) COUNT(td, -1); /* count = ncount; NOT USED */ break; } lkp->lk_lockholder = otd; /* retry */ } else if ((count & (LKC_EXREQ | LKC_XMASK)) == (LKC_EXREQ | 1)) { /* * Last exclusive count is being released but * an exclusive request is present. We * automatically grant an exclusive state to * the owner of the exclusive request, * transfering our count. * * This case virtually never occurs because * EXREQ is not set while exclusive holders * exist. However, it might be set if a * an exclusive request is pending and a * shared holder upgrades. * * Don't bother clearing EXREQ2. A thread * waiting to set EXREQ can't do it while * an exclusive lock is present. */ otd = lkp->lk_lockholder; lkp->lk_lockholder = NULL; ncount = count & ~LKC_EXREQ; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); if (otd != LK_KERNTHREAD) COUNT(td, -1); /* count = ncount; NOT USED */ break; } lkp->lk_lockholder = otd; /* retry */ } else { /* * Multiple exclusive counts, drop by 1. * Since we are the holder and there is more * than one count, we can just decrement it. */ count = atomic_fetchadd_long(&lkp->lk_count, -1); /* count = count - 1 NOT NEEDED */ if (lkp->lk_lockholder != LK_KERNTHREAD) COUNT(td, -1); break; } /* retry */ } else { /* * Release shared lock */ KKASSERT((count & LKC_SHARED) && (count & LKC_SMASK)); if ((count & (LKC_EXREQ | LKC_UPREQ | LKC_SMASK)) == LKC_SCOUNT) { /* * Last shared count is being released, * no exclusive or upgrade request present. * Generally leave the shared bit set. * Clear the CANCEL bit. */ ncount = (count - LKC_SCOUNT) & ~LKC_CANCEL; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { COUNT(td, -1); /* count = ncount; NOT USED */ break; } /* retry */ } else if ((count & (LKC_UPREQ | LKC_SMASK)) == (LKC_UPREQ | LKC_SCOUNT)) { /* * Last shared count is being released but * an upgrade request is present, automatically * grant an exclusive state to the owner of * the upgrade request and transfer the count. * * The owner of the upgrade request is still * responsible for setting lk_lockholder. */ ncount = (count - LKC_SCOUNT + 1) & ~(LKC_UPREQ | LKC_CANCEL | LKC_SHARED); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); COUNT(td, -1); /* count = ncount; NOT USED */ break; } /* retry */ } else if ((count & (LKC_EXREQ | LKC_SMASK)) == (LKC_EXREQ | LKC_SCOUNT)) { /* * Last shared count is being released but * an exclusive request is present, we * automatically grant an exclusive state to * the owner of the request and transfer * the count. */ ncount = (count - LKC_SCOUNT + 1) & ~(LKC_EXREQ | LKC_EXREQ2 | LKC_CANCEL | LKC_SHARED); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); COUNT(td, -1); /* count = ncount; NOT USED */ break; } /* retry */ } else { /* * Shared count is greater than 1. We can * just use undo_shreq() to clean things up. * undo_shreq() will also handle races to 0 * after the fact. */ undo_shreq(lkp); COUNT(td, -1); break; } /* retry */ } /* retry */ } return 0; } /* * Start canceling blocked or future requesters. Only blocked/future * requesters who pass the CANCELABLE flag can be canceled. * * This is intended to then allow other requesters (usually the * caller) to obtain a non-cancelable lock. * * Don't waste time issuing a wakeup if nobody is pending. */ int lockmgr_cancel_beg(struct lock *lkp, u_int flags) { uint64_t count; count = lkp->lk_count; for (;;) { cpu_ccfence(); KKASSERT((count & LKC_CANCEL) == 0); /* disallowed case */ /* issue w/lock held */ KKASSERT((count & (LKC_XMASK | LKC_SMASK)) != 0); if (!atomic_fcmpset_64(&lkp->lk_count, &count, count | LKC_CANCEL)) { continue; } /* count |= LKC_CANCEL; NOT USED */ /* * Wakeup any waiters. * * NOTE: EXREQ2 must be checked in addition to standard * wait sources, it is possible for EXREQ2 to be * set when EXREQ is clear. */ if (count & (LKC_EXREQ | LKC_EXREQ2 | LKC_SMASK | LKC_UPREQ)) { wakeup(lkp); } break; } return 0; } /* * End our cancel request (typically after we have acquired * the lock ourselves). */ int lockmgr_cancel_end(struct lock *lkp, u_int flags) { atomic_clear_long(&lkp->lk_count, LKC_CANCEL); return 0; } /* * Backout SCOUNT from a failed shared lock attempt and handle any race * to 0. This function is also used by the release code for the less * optimal race to 0 case. * * WARNING! Since we are unconditionally decrementing LKC_SCOUNT, it is * possible for the lock to get into a LKC_SHARED + ZERO SCOUNT * situation. A shared request can block with a ZERO SCOUNT if * EXREQ or UPREQ is pending in this situation. Be sure to always * issue a wakeup() in this situation if we are unable to * transition to an exclusive lock, to handle the race. * * Always succeeds * Must not block */ static void undo_shreq(struct lock *lkp) { uint64_t count; uint64_t ncount; count = atomic_fetchadd_64(&lkp->lk_count, -LKC_SCOUNT) - LKC_SCOUNT; while ((count & (LKC_EXREQ | LKC_UPREQ | LKC_CANCEL)) && (count & (LKC_SMASK | LKC_XMASK)) == 0) { /* * Grant any UPREQ here. This is handled in two parts. * We grant the UPREQ by incrementing the excl count and * clearing UPREQ and SHARED (and also CANCEL). * * The owner of UPREQ is still responsible for setting * lockholder. * * Note that UPREQ must have priority over EXREQ, and EXREQ * over CANCEL, so if the atomic op fails we have to loop up. */ if (count & LKC_UPREQ) { ncount = (count + 1) & ~(LKC_UPREQ | LKC_CANCEL | LKC_SHARED); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); /* count = ncount; NOT USED */ break; } wakeup(lkp); /* XXX probably not needed */ continue; } if (count & LKC_EXREQ) { ncount = (count + 1) & ~(LKC_EXREQ | LKC_EXREQ2 | LKC_CANCEL | LKC_SHARED); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); /* count = ncount; NOT USED */ break; } wakeup(lkp); /* XXX probably not needed */ continue; } if (count & LKC_CANCEL) { ncount = count & ~LKC_CANCEL; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); /* count = ncount; NOT USED */ break; } } /* retry */ } } /* * Undo an exclusive request. Returns EBUSY if we were able to undo the * request, and 0 if the request was granted before we could undo it. * When 0 is returned, the lock state has not been modified. The caller * is responsible for setting the lockholder to curthread. */ static int undo_exreq(struct lock *lkp) { uint64_t count; uint64_t ncount; int error; count = lkp->lk_count; error = 0; for (;;) { cpu_ccfence(); if ((count & LKC_EXREQ) == 0) { /* * EXREQ was granted. We own the exclusive lock. */ break; } if (count & LKC_XMASK) { /* * Clear the EXREQ we still own. Only wakeup on * EXREQ2 if no UPREQ. There are still exclusive * holders so do not wake up any shared locks or * any UPREQ. * * If there is an UPREQ it will issue a wakeup() * for any EXREQ wait looops, so we can clear EXREQ2 * now. */ ncount = count & ~(LKC_EXREQ | LKC_EXREQ2); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { if ((count & (LKC_EXREQ2 | LKC_UPREQ)) == LKC_EXREQ2) { wakeup(lkp); } error = EBUSY; /* count = ncount; NOT USED */ break; } /* retry */ } else if (count & LKC_UPREQ) { /* * Clear the EXREQ we still own. We cannot wakeup any * shared or exclusive waiters because there is an * uprequest pending (that we do not handle here). * * If there is an UPREQ it will issue a wakeup() * for any EXREQ wait looops, so we can clear EXREQ2 * now. */ ncount = count & ~(LKC_EXREQ | LKC_EXREQ2); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { error = EBUSY; break; } /* retry */ } else if ((count & LKC_SHARED) && (count & LKC_SMASK)) { /* * No UPREQ, lock not held exclusively, but the lock * is held shared. Clear EXREQ, wakeup anyone trying * to get the EXREQ bit (they have to set it * themselves, EXREQ2 is an aggregation). * * We must also wakeup any shared locks blocked * by the EXREQ, so just issue the wakeup * unconditionally. See lockmgr_shared() + 76 lines * or so. */ ncount = count & ~(LKC_EXREQ | LKC_EXREQ2); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); error = EBUSY; /* count = ncount; NOT USED */ break; } /* retry */ } else { /* * No UPREQ, lock not held exclusively or shared. * Grant the EXREQ and wakeup anyone waiting on * EXREQ2. * * We must also issue a wakeup if SHARED is set, * even without an SCOUNT, due to pre-shared blocking * that can occur on EXREQ in lockmgr_shared(). */ ncount = (count + 1) & ~(LKC_EXREQ | LKC_EXREQ2); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { if (count & (LKC_EXREQ2 | LKC_SHARED)) wakeup(lkp); /* count = ncount; NOT USED */ /* we are granting, error == 0 */ break; } /* retry */ } /* retry */ } return error; } /* * Undo an upgrade request. Returns EBUSY if we were able to undo the * request, and 0 if the request was granted before we could undo it. * When 0 is returned, the lock state has not been modified. The caller * is responsible for setting the lockholder to curthread. */ static int undo_upreq(struct lock *lkp) { uint64_t count; uint64_t ncount; int error; count = lkp->lk_count; error = 0; for (;;) { cpu_ccfence(); if ((count & LKC_UPREQ) == 0) { /* * UPREQ was granted */ break; } if (count & LKC_XMASK) { /* * Clear the UPREQ we still own. Nobody to wakeup * here because there is an existing exclusive * holder. */ if (atomic_fcmpset_64(&lkp->lk_count, &count, count & ~LKC_UPREQ)) { error = EBUSY; /* count &= ~LKC_UPREQ; NOT USED */ break; } } else if (count & LKC_EXREQ) { /* * Clear the UPREQ we still own. Grant the exclusive * request and wake it up. */ ncount = (count + 1); ncount &= ~(LKC_EXREQ | LKC_EXREQ2 | LKC_UPREQ); if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { wakeup(lkp); error = EBUSY; /* count = ncount; NOT USED */ break; } } else { /* * Clear the UPREQ we still own. Wakeup any shared * waiters. * * We must also issue a wakeup if SHARED was set * even if no shared waiters due to pre-shared blocking * that can occur on UPREQ. */ ncount = count & ~LKC_UPREQ; if (count & LKC_SMASK) ncount |= LKC_SHARED; if (atomic_fcmpset_64(&lkp->lk_count, &count, ncount)) { if ((count & LKC_SHARED) || (ncount & LKC_SHARED)) { wakeup(lkp); } error = EBUSY; /* count = ncount; NOT USED */ break; } } /* retry */ } return error; } void lockmgr_kernproc(struct lock *lp) { struct thread *td __debugvar = curthread; if (lp->lk_lockholder != LK_KERNTHREAD) { KASSERT(lp->lk_lockholder == td, ("lockmgr_kernproc: lock not owned by curthread %p: %p", td, lp->lk_lockholder)); lp->lk_lockholder = LK_KERNTHREAD; COUNT(td, -1); } } /* * Initialize a lock; required before use. */ void lockinit(struct lock *lkp, const char *wmesg, int timo, int flags) { lkp->lk_flags = (flags & LK_EXTFLG_MASK); lkp->lk_count = 0; lkp->lk_wmesg = wmesg; lkp->lk_timo = timo; lkp->lk_lockholder = NULL; } /* * Reinitialize a lock that is being reused for a different purpose, but * which may have pending (blocked) threads sitting on it. The caller * must already hold the interlock. */ void lockreinit(struct lock *lkp, const char *wmesg, int timo, int flags) { lkp->lk_wmesg = wmesg; lkp->lk_timo = timo; } /* * De-initialize a lock. The structure must no longer be used by anyone. */ void lockuninit(struct lock *lkp) { uint64_t count __unused; count = lkp->lk_count; cpu_ccfence(); KKASSERT((count & (LKC_EXREQ | LKC_UPREQ)) == 0 && ((count & LKC_SHARED) || (count & LKC_SMASK) == 0)); } /* * Determine the status of a lock. */ int lockstatus(struct lock *lkp, struct thread *td) { int lock_type = 0; uint64_t count; count = lkp->lk_count; cpu_ccfence(); if (count & (LKC_XMASK | LKC_SMASK | LKC_EXREQ | LKC_UPREQ)) { if (count & LKC_XMASK) { if (td == NULL || lkp->lk_lockholder == td) lock_type = LK_EXCLUSIVE; else lock_type = LK_EXCLOTHER; } else if ((count & LKC_SMASK) && (count & LKC_SHARED)) { lock_type = LK_SHARED; } } return (lock_type); } /* * Return non-zero if the caller owns the lock shared or exclusive. * We can only guess re: shared locks. */ int lockowned(struct lock *lkp) { thread_t td = curthread; uint64_t count; count = lkp->lk_count; cpu_ccfence(); if (count & LKC_XMASK) return(lkp->lk_lockholder == td); else return((count & LKC_SMASK) != 0); } #if 0 /* * Determine the number of holders of a lock. * * REMOVED - Cannot be used due to our use of atomic_fetchadd_64() * for shared locks. Caller can only test if the lock has * a count or not using lockinuse(lk) (sys/lock.h) */ int lockcount(struct lock *lkp) { panic("lockcount cannot be used"); } int lockcountnb(struct lock *lkp) { panic("lockcount cannot be used"); } #endif /* * Print out information about state of a lock. Used by VOP_PRINT * routines to display status about contained locks. */ void lockmgr_printinfo(struct lock *lkp) { struct thread *td = lkp->lk_lockholder; struct proc *p; uint64_t count; count = lkp->lk_count; cpu_ccfence(); if (td && td != LK_KERNTHREAD) p = td->td_proc; else p = NULL; if (count & LKC_XMASK) { kprintf(" lock type %s: EXCLUS (count %016jx) by td %p pid %d", lkp->lk_wmesg, (intmax_t)count, td, p ? p->p_pid : -99); } else if ((count & LKC_SMASK) && (count & LKC_SHARED)) { kprintf(" lock type %s: SHARED (count %016jx)", lkp->lk_wmesg, (intmax_t)count); } else { kprintf(" lock type %s: NOTHELD", lkp->lk_wmesg); } if ((count & (LKC_EXREQ | LKC_UPREQ)) || ((count & LKC_XMASK) && (count & LKC_SMASK))) kprintf(" with waiters\n"); else kprintf("\n"); } void lock_sysinit(struct lock_args *arg) { lockinit(arg->la_lock, arg->la_desc, 0, arg->la_flags); } #ifdef DEBUG_CANCEL_LOCKS static int sysctl_cancel_lock(SYSCTL_HANDLER_ARGS) { int error; if (req->newptr) { SYSCTL_XUNLOCK(); lockmgr(&cancel_lk, LK_EXCLUSIVE); error = tsleep(&error, PCATCH, "canmas", hz * 5); lockmgr(&cancel_lk, LK_CANCEL_BEG); error = tsleep(&error, PCATCH, "canmas", hz * 5); lockmgr(&cancel_lk, LK_RELEASE); SYSCTL_XLOCK(); SYSCTL_OUT(req, &error, sizeof(error)); } error = 0; return error; } static int sysctl_cancel_test(SYSCTL_HANDLER_ARGS) { int error; if (req->newptr) { error = lockmgr(&cancel_lk, LK_EXCLUSIVE|LK_CANCELABLE); if (error == 0) lockmgr(&cancel_lk, LK_RELEASE); SYSCTL_OUT(req, &error, sizeof(error)); kprintf("test %d\n", error); } return 0; } #endif |