1 /* 2 * Copyright (c) 1995 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Copyright (C) 1997 6 * John S. Dyson. All rights reserved. 7 * 8 * This code contains ideas from software contributed to Berkeley by 9 * Avadis Tevanian, Jr., Michael Wayne Young, and the Mach Operating 10 * System project at Carnegie-Mellon University. 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 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 3. All advertising materials mentioning features or use of this software 21 * must display the following acknowledgement: 22 * This product includes software developed by the University of 23 * California, Berkeley and its contributors. 24 * 4. Neither the name of the University nor the names of its contributors 25 * may be used to endorse or promote products derived from this software 26 * without specific prior written permission. 27 * 28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 38 * SUCH DAMAGE. 39 * 40 * @(#)kern_lock.c 8.18 (Berkeley) 5/21/95 41 * $FreeBSD$ 42 */ 43 44 #include "opt_lint.h" 45 46 #include <sys/param.h> 47 #include <sys/proc.h> 48 #include <sys/lock.h> 49 #include <sys/systm.h> 50 51 /* 52 * Locking primitives implementation. 53 * Locks provide shared/exclusive sychronization. 54 */ 55 56 #ifdef SIMPLELOCK_DEBUG 57 #define COUNT(p, x) if (p) (p)->p_locks += (x) 58 #else 59 #define COUNT(p, x) 60 #endif 61 62 #define LOCK_WAIT_TIME 100 63 #define LOCK_SAMPLE_WAIT 7 64 65 #if defined(DIAGNOSTIC) 66 #define LOCK_INLINE 67 #else 68 #define LOCK_INLINE __inline 69 #endif 70 71 #define LK_ALL (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | \ 72 LK_SHARE_NONZERO | LK_WAIT_NONZERO) 73 74 static int acquire(struct lock *lkp, int extflags, int wanted); 75 static int apause(struct lock *lkp, int flags); 76 static int acquiredrain(struct lock *lkp, int extflags) ; 77 78 static LOCK_INLINE void 79 sharelock(struct lock *lkp, int incr) { 80 lkp->lk_flags |= LK_SHARE_NONZERO; 81 lkp->lk_sharecount += incr; 82 } 83 84 static LOCK_INLINE void 85 shareunlock(struct lock *lkp, int decr) { 86 87 KASSERT(lkp->lk_sharecount >= decr, ("shareunlock: count < decr")); 88 89 if (lkp->lk_sharecount == decr) { 90 lkp->lk_flags &= ~LK_SHARE_NONZERO; 91 if (lkp->lk_flags & (LK_WANT_UPGRADE | LK_WANT_EXCL)) { 92 wakeup(lkp); 93 } 94 lkp->lk_sharecount = 0; 95 } else { 96 lkp->lk_sharecount -= decr; 97 } 98 } 99 100 /* 101 * This is the waitloop optimization, and note for this to work 102 * simple_lock and simple_unlock should be subroutines to avoid 103 * optimization troubles. 104 */ 105 static int 106 apause(struct lock *lkp, int flags) 107 { 108 #ifdef SMP 109 int i, lock_wait; 110 #endif 111 112 if ((lkp->lk_flags & flags) == 0) 113 return 0; 114 #ifdef SMP 115 for (lock_wait = LOCK_WAIT_TIME; lock_wait > 0; lock_wait--) { 116 simple_unlock(&lkp->lk_interlock); 117 for (i = LOCK_SAMPLE_WAIT; i > 0; i--) 118 if ((lkp->lk_flags & flags) == 0) 119 break; 120 simple_lock(&lkp->lk_interlock); 121 if ((lkp->lk_flags & flags) == 0) 122 return 0; 123 } 124 #endif 125 return 1; 126 } 127 128 static int 129 acquire(struct lock *lkp, int extflags, int wanted) { 130 int s, error; 131 132 if ((extflags & LK_NOWAIT) && (lkp->lk_flags & wanted)) { 133 return EBUSY; 134 } 135 136 if (((lkp->lk_flags | extflags) & LK_NOPAUSE) == 0) { 137 error = apause(lkp, wanted); 138 if (error == 0) 139 return 0; 140 } 141 142 s = splhigh(); 143 while ((lkp->lk_flags & wanted) != 0) { 144 lkp->lk_flags |= LK_WAIT_NONZERO; 145 lkp->lk_waitcount++; 146 simple_unlock(&lkp->lk_interlock); 147 error = tsleep(lkp, lkp->lk_prio, lkp->lk_wmesg, lkp->lk_timo); 148 simple_lock(&lkp->lk_interlock); 149 if (lkp->lk_waitcount == 1) { 150 lkp->lk_flags &= ~LK_WAIT_NONZERO; 151 lkp->lk_waitcount = 0; 152 } else { 153 lkp->lk_waitcount--; 154 } 155 if (error) { 156 splx(s); 157 return error; 158 } 159 if (extflags & LK_SLEEPFAIL) { 160 splx(s); 161 return ENOLCK; 162 } 163 } 164 splx(s); 165 return 0; 166 } 167 168 /* 169 * Set, change, or release a lock. 170 * 171 * Shared requests increment the shared count. Exclusive requests set the 172 * LK_WANT_EXCL flag (preventing further shared locks), and wait for already 173 * accepted shared locks and shared-to-exclusive upgrades to go away. 174 */ 175 int 176 #ifndef DEBUG_LOCKS 177 lockmgr(lkp, flags, interlkp, p) 178 #else 179 debuglockmgr(lkp, flags, interlkp, p, name, file, line) 180 #endif 181 struct lock *lkp; 182 u_int flags; 183 struct simplelock *interlkp; 184 struct proc *p; 185 #ifdef DEBUG_LOCKS 186 const char *name; /* Name of lock function */ 187 const char *file; /* Name of file call is from */ 188 int line; /* Line number in file */ 189 #endif 190 { 191 int error; 192 pid_t pid; 193 int extflags; 194 195 error = 0; 196 if (p == NULL) 197 pid = LK_KERNPROC; 198 else 199 pid = p->p_pid; 200 201 simple_lock(&lkp->lk_interlock); 202 if (flags & LK_INTERLOCK) 203 simple_unlock(interlkp); 204 205 extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; 206 207 switch (flags & LK_TYPE_MASK) { 208 209 case LK_SHARED: 210 /* 211 * If we are not the exclusive lock holder, we have to block 212 * while there is an exclusive lock holder or while an 213 * exclusive lock request or upgrade request is in progress. 214 * 215 * However, if P_DEADLKTREAT is set, we override exclusive 216 * lock requests or upgrade requests ( but not the exclusive 217 * lock itself ). 218 */ 219 if (lkp->lk_lockholder != pid) { 220 if (p && (p->p_flag & P_DEADLKTREAT)) { 221 error = acquire( 222 lkp, 223 extflags, 224 LK_HAVE_EXCL 225 ); 226 } else { 227 error = acquire( 228 lkp, 229 extflags, 230 LK_HAVE_EXCL | LK_WANT_EXCL | 231 LK_WANT_UPGRADE 232 ); 233 } 234 if (error) 235 break; 236 sharelock(lkp, 1); 237 COUNT(p, 1); 238 break; 239 } 240 /* 241 * We hold an exclusive lock, so downgrade it to shared. 242 * An alternative would be to fail with EDEADLK. 243 */ 244 sharelock(lkp, 1); 245 COUNT(p, 1); 246 /* fall into downgrade */ 247 248 case LK_DOWNGRADE: 249 #if !defined(MAX_PERF) 250 if (lkp->lk_lockholder != pid || lkp->lk_exclusivecount == 0) 251 panic("lockmgr: not holding exclusive lock"); 252 #endif 253 sharelock(lkp, lkp->lk_exclusivecount); 254 lkp->lk_exclusivecount = 0; 255 lkp->lk_flags &= ~LK_HAVE_EXCL; 256 lkp->lk_lockholder = LK_NOPROC; 257 if (lkp->lk_waitcount) 258 wakeup((void *)lkp); 259 break; 260 261 case LK_EXCLUPGRADE: 262 /* 263 * If another process is ahead of us to get an upgrade, 264 * then we want to fail rather than have an intervening 265 * exclusive access. 266 */ 267 if (lkp->lk_flags & LK_WANT_UPGRADE) { 268 shareunlock(lkp, 1); 269 COUNT(p, -1); 270 error = EBUSY; 271 break; 272 } 273 /* fall into normal upgrade */ 274 275 case LK_UPGRADE: 276 /* 277 * Upgrade a shared lock to an exclusive one. If another 278 * shared lock has already requested an upgrade to an 279 * exclusive lock, our shared lock is released and an 280 * exclusive lock is requested (which will be granted 281 * after the upgrade). If we return an error, the file 282 * will always be unlocked. 283 */ 284 #if !defined(MAX_PERF) 285 if ((lkp->lk_lockholder == pid) || (lkp->lk_sharecount <= 0)) 286 panic("lockmgr: upgrade exclusive lock"); 287 #endif 288 shareunlock(lkp, 1); 289 COUNT(p, -1); 290 /* 291 * If we are just polling, check to see if we will block. 292 */ 293 if ((extflags & LK_NOWAIT) && 294 ((lkp->lk_flags & LK_WANT_UPGRADE) || 295 lkp->lk_sharecount > 1)) { 296 error = EBUSY; 297 break; 298 } 299 if ((lkp->lk_flags & LK_WANT_UPGRADE) == 0) { 300 /* 301 * We are first shared lock to request an upgrade, so 302 * request upgrade and wait for the shared count to 303 * drop to zero, then take exclusive lock. 304 */ 305 lkp->lk_flags |= LK_WANT_UPGRADE; 306 error = acquire(lkp, extflags, LK_SHARE_NONZERO); 307 lkp->lk_flags &= ~LK_WANT_UPGRADE; 308 309 if (error) 310 break; 311 lkp->lk_flags |= LK_HAVE_EXCL; 312 lkp->lk_lockholder = pid; 313 #if !defined(MAX_PERF) 314 if (lkp->lk_exclusivecount != 0) 315 panic("lockmgr: non-zero exclusive count"); 316 #endif 317 lkp->lk_exclusivecount = 1; 318 #if defined(DEBUG_LOCKS) 319 lkp->lk_filename = file; 320 lkp->lk_lineno = line; 321 lkp->lk_lockername = name; 322 #endif 323 COUNT(p, 1); 324 break; 325 } 326 /* 327 * Someone else has requested upgrade. Release our shared 328 * lock, awaken upgrade requestor if we are the last shared 329 * lock, then request an exclusive lock. 330 */ 331 if ( (lkp->lk_flags & (LK_SHARE_NONZERO|LK_WAIT_NONZERO)) == 332 LK_WAIT_NONZERO) 333 wakeup((void *)lkp); 334 /* fall into exclusive request */ 335 336 case LK_EXCLUSIVE: 337 if (lkp->lk_lockholder == pid && pid != LK_KERNPROC) { 338 /* 339 * Recursive lock. 340 */ 341 #if !defined(MAX_PERF) 342 if ((extflags & (LK_NOWAIT | LK_CANRECURSE)) == 0) 343 panic("lockmgr: locking against myself"); 344 #endif 345 if ((extflags & LK_CANRECURSE) != 0) { 346 lkp->lk_exclusivecount++; 347 COUNT(p, 1); 348 break; 349 } 350 } 351 /* 352 * If we are just polling, check to see if we will sleep. 353 */ 354 if ((extflags & LK_NOWAIT) && 355 (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | LK_SHARE_NONZERO))) { 356 error = EBUSY; 357 break; 358 } 359 /* 360 * Try to acquire the want_exclusive flag. 361 */ 362 error = acquire(lkp, extflags, (LK_HAVE_EXCL | LK_WANT_EXCL)); 363 if (error) 364 break; 365 lkp->lk_flags |= LK_WANT_EXCL; 366 /* 367 * Wait for shared locks and upgrades to finish. 368 */ 369 error = acquire(lkp, extflags, LK_WANT_UPGRADE | LK_SHARE_NONZERO); 370 lkp->lk_flags &= ~LK_WANT_EXCL; 371 if (error) 372 break; 373 lkp->lk_flags |= LK_HAVE_EXCL; 374 lkp->lk_lockholder = pid; 375 #if !defined(MAX_PERF) 376 if (lkp->lk_exclusivecount != 0) 377 panic("lockmgr: non-zero exclusive count"); 378 #endif 379 lkp->lk_exclusivecount = 1; 380 #if defined(DEBUG_LOCKS) 381 lkp->lk_filename = file; 382 lkp->lk_lineno = line; 383 lkp->lk_lockername = name; 384 #endif 385 COUNT(p, 1); 386 break; 387 388 case LK_RELEASE: 389 if (lkp->lk_exclusivecount != 0) { 390 #if !defined(MAX_PERF) 391 if (lkp->lk_lockholder != pid && 392 lkp->lk_lockholder != LK_KERNPROC) { 393 panic("lockmgr: pid %d, not %s %d unlocking", 394 pid, "exclusive lock holder", 395 lkp->lk_lockholder); 396 } 397 #endif 398 if (lkp->lk_lockholder != LK_KERNPROC) { 399 COUNT(p, -1); 400 } 401 if (lkp->lk_exclusivecount == 1) { 402 lkp->lk_flags &= ~LK_HAVE_EXCL; 403 lkp->lk_lockholder = LK_NOPROC; 404 lkp->lk_exclusivecount = 0; 405 } else { 406 lkp->lk_exclusivecount--; 407 } 408 } else if (lkp->lk_flags & LK_SHARE_NONZERO) { 409 shareunlock(lkp, 1); 410 COUNT(p, -1); 411 } 412 if (lkp->lk_flags & LK_WAIT_NONZERO) 413 wakeup((void *)lkp); 414 break; 415 416 case LK_DRAIN: 417 /* 418 * Check that we do not already hold the lock, as it can 419 * never drain if we do. Unfortunately, we have no way to 420 * check for holding a shared lock, but at least we can 421 * check for an exclusive one. 422 */ 423 #if !defined(MAX_PERF) 424 if (lkp->lk_lockholder == pid) 425 panic("lockmgr: draining against myself"); 426 #endif 427 428 error = acquiredrain(lkp, extflags); 429 if (error) 430 break; 431 lkp->lk_flags |= LK_DRAINING | LK_HAVE_EXCL; 432 lkp->lk_lockholder = pid; 433 lkp->lk_exclusivecount = 1; 434 #if defined(DEBUG_LOCKS) 435 lkp->lk_filename = file; 436 lkp->lk_lineno = line; 437 lkp->lk_lockername = name; 438 #endif 439 COUNT(p, 1); 440 break; 441 442 default: 443 #if !defined(MAX_PERF) 444 simple_unlock(&lkp->lk_interlock); 445 panic("lockmgr: unknown locktype request %d", 446 flags & LK_TYPE_MASK); 447 #endif 448 /* NOTREACHED */ 449 } 450 if ((lkp->lk_flags & LK_WAITDRAIN) && 451 (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | 452 LK_SHARE_NONZERO | LK_WAIT_NONZERO)) == 0) { 453 lkp->lk_flags &= ~LK_WAITDRAIN; 454 wakeup((void *)&lkp->lk_flags); 455 } 456 simple_unlock(&lkp->lk_interlock); 457 return (error); 458 } 459 460 static int 461 acquiredrain(struct lock *lkp, int extflags) { 462 int error; 463 464 if ((extflags & LK_NOWAIT) && (lkp->lk_flags & LK_ALL)) { 465 return EBUSY; 466 } 467 468 error = apause(lkp, LK_ALL); 469 if (error == 0) 470 return 0; 471 472 while (lkp->lk_flags & LK_ALL) { 473 lkp->lk_flags |= LK_WAITDRAIN; 474 simple_unlock(&lkp->lk_interlock); 475 error = tsleep(&lkp->lk_flags, lkp->lk_prio, 476 lkp->lk_wmesg, lkp->lk_timo); 477 simple_lock(&lkp->lk_interlock); 478 if (error) 479 return error; 480 if (extflags & LK_SLEEPFAIL) { 481 return ENOLCK; 482 } 483 } 484 return 0; 485 } 486 487 /* 488 * Initialize a lock; required before use. 489 */ 490 void 491 lockinit(lkp, prio, wmesg, timo, flags) 492 struct lock *lkp; 493 int prio; 494 char *wmesg; 495 int timo; 496 int flags; 497 { 498 499 simple_lock_init(&lkp->lk_interlock); 500 lkp->lk_flags = (flags & LK_EXTFLG_MASK); 501 lkp->lk_sharecount = 0; 502 lkp->lk_waitcount = 0; 503 lkp->lk_exclusivecount = 0; 504 lkp->lk_prio = prio; 505 lkp->lk_wmesg = wmesg; 506 lkp->lk_timo = timo; 507 lkp->lk_lockholder = LK_NOPROC; 508 } 509 510 /* 511 * Determine the status of a lock. 512 */ 513 int 514 lockstatus(lkp, p) 515 struct lock *lkp; 516 struct proc *p; 517 { 518 int lock_type = 0; 519 520 simple_lock(&lkp->lk_interlock); 521 if (lkp->lk_exclusivecount != 0) { 522 if (p == NULL || lkp->lk_lockholder == p->p_pid) 523 lock_type = LK_EXCLUSIVE; 524 else 525 lock_type = LK_EXCLOTHER; 526 } else if (lkp->lk_sharecount != 0) 527 lock_type = LK_SHARED; 528 simple_unlock(&lkp->lk_interlock); 529 return (lock_type); 530 } 531 532 /* 533 * Determine the number of holders of a lock. 534 */ 535 int 536 lockcount(lkp) 537 struct lock *lkp; 538 { 539 int count; 540 541 simple_lock(&lkp->lk_interlock); 542 count = lkp->lk_exclusivecount + lkp->lk_sharecount; 543 simple_unlock(&lkp->lk_interlock); 544 return (count); 545 } 546 547 /* 548 * Print out information about state of a lock. Used by VOP_PRINT 549 * routines to display status about contained locks. 550 */ 551 void 552 lockmgr_printinfo(lkp) 553 struct lock *lkp; 554 { 555 556 if (lkp->lk_sharecount) 557 printf(" lock type %s: SHARED (count %d)", lkp->lk_wmesg, 558 lkp->lk_sharecount); 559 else if (lkp->lk_flags & LK_HAVE_EXCL) 560 printf(" lock type %s: EXCL (count %d) by pid %d", 561 lkp->lk_wmesg, lkp->lk_exclusivecount, lkp->lk_lockholder); 562 if (lkp->lk_waitcount > 0) 563 printf(" with %d pending", lkp->lk_waitcount); 564 } 565 566 #if defined(SIMPLELOCK_DEBUG) && (NCPUS == 1 || defined(COMPILING_LINT)) 567 #include <sys/kernel.h> 568 #include <sys/sysctl.h> 569 570 static int lockpausetime = 0; 571 SYSCTL_INT(_debug, OID_AUTO, lockpausetime, CTLFLAG_RW, &lockpausetime, 0, ""); 572 573 static int simplelockrecurse; 574 575 /* 576 * Simple lock functions so that the debugger can see from whence 577 * they are being called. 578 */ 579 void 580 simple_lock_init(alp) 581 struct simplelock *alp; 582 { 583 584 alp->lock_data = 0; 585 } 586 587 void 588 _simple_lock(alp, id, l) 589 struct simplelock *alp; 590 const char *id; 591 int l; 592 { 593 594 if (simplelockrecurse) 595 return; 596 if (alp->lock_data == 1) { 597 if (lockpausetime == -1) 598 panic("%s:%d: simple_lock: lock held", id, l); 599 printf("%s:%d: simple_lock: lock held\n", id, l); 600 if (lockpausetime == 1) { 601 Debugger("simple_lock"); 602 /*BACKTRACE(curproc); */ 603 } else if (lockpausetime > 1) { 604 printf("%s:%d: simple_lock: lock held...", id, l); 605 tsleep(&lockpausetime, PCATCH | PPAUSE, "slock", 606 lockpausetime * hz); 607 printf(" continuing\n"); 608 } 609 } 610 alp->lock_data = 1; 611 if (curproc) 612 curproc->p_simple_locks++; 613 } 614 615 int 616 _simple_lock_try(alp, id, l) 617 struct simplelock *alp; 618 const char *id; 619 int l; 620 { 621 622 if (alp->lock_data) 623 return (0); 624 if (simplelockrecurse) 625 return (1); 626 alp->lock_data = 1; 627 if (curproc) 628 curproc->p_simple_locks++; 629 return (1); 630 } 631 632 void 633 _simple_unlock(alp, id, l) 634 struct simplelock *alp; 635 const char *id; 636 int l; 637 { 638 639 if (simplelockrecurse) 640 return; 641 if (alp->lock_data == 0) { 642 if (lockpausetime == -1) 643 panic("%s:%d: simple_unlock: lock not held", id, l); 644 printf("%s:%d: simple_unlock: lock not held\n", id, l); 645 if (lockpausetime == 1) { 646 Debugger("simple_unlock"); 647 /* BACKTRACE(curproc); */ 648 } else if (lockpausetime > 1) { 649 printf("%s:%d: simple_unlock: lock not held...", id, l); 650 tsleep(&lockpausetime, PCATCH | PPAUSE, "sunlock", 651 lockpausetime * hz); 652 printf(" continuing\n"); 653 } 654 } 655 alp->lock_data = 0; 656 if (curproc) 657 curproc->p_simple_locks--; 658 } 659 #elif defined(SIMPLELOCK_DEBUG) 660 #error "SIMPLELOCK_DEBUG is not compatible with SMP!" 661 #endif /* SIMPLELOCK_DEBUG && NCPUS == 1 */ 662