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 <sys/param.h> 45 #include <sys/proc.h> 46 #include <sys/kernel.h> 47 #include <sys/ktr.h> 48 #include <sys/lock.h> 49 #include <sys/malloc.h> 50 #include <sys/mutex.h> 51 #include <sys/systm.h> 52 53 /* 54 * Locking primitives implementation. 55 * Locks provide shared/exclusive sychronization. 56 */ 57 58 #define LOCK_WAIT_TIME 100 59 #define LOCK_SAMPLE_WAIT 7 60 61 #if defined(DIAGNOSTIC) 62 #define LOCK_INLINE 63 #else 64 #define LOCK_INLINE __inline 65 #endif 66 67 #define LK_ALL (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | \ 68 LK_SHARE_NONZERO | LK_WAIT_NONZERO) 69 70 /* 71 * Mutex array variables. Rather than each lockmgr lock having its own mutex, 72 * share a fixed (at boot time) number of mutexes across all lockmgr locks in 73 * order to keep sizeof(struct lock) down. 74 */ 75 int lock_mtx_valid; 76 static struct mtx lock_mtx; 77 78 static int acquire(struct lock *lkp, int extflags, int wanted); 79 static int apause(struct lock *lkp, int flags); 80 static int acquiredrain(struct lock *lkp, int extflags) ; 81 82 static void 83 lockmgr_init(void *dummy __unused) 84 { 85 /* 86 * Initialize the lockmgr protection mutex if it hasn't already been 87 * done. Unless something changes about kernel startup order, VM 88 * initialization will always cause this mutex to already be 89 * initialized in a call to lockinit(). 90 */ 91 if (lock_mtx_valid == 0) { 92 mtx_init(&lock_mtx, "lockmgr", MTX_DEF); 93 lock_mtx_valid = 1; 94 } 95 } 96 SYSINIT(lmgrinit, SI_SUB_LOCK, SI_ORDER_FIRST, lockmgr_init, NULL) 97 98 static LOCK_INLINE void 99 sharelock(struct lock *lkp, int incr) { 100 lkp->lk_flags |= LK_SHARE_NONZERO; 101 lkp->lk_sharecount += incr; 102 } 103 104 static LOCK_INLINE void 105 shareunlock(struct lock *lkp, int decr) { 106 107 KASSERT(lkp->lk_sharecount >= decr, ("shareunlock: count < decr")); 108 109 if (lkp->lk_sharecount == decr) { 110 lkp->lk_flags &= ~LK_SHARE_NONZERO; 111 if (lkp->lk_flags & (LK_WANT_UPGRADE | LK_WANT_EXCL)) { 112 wakeup(lkp); 113 } 114 lkp->lk_sharecount = 0; 115 } else { 116 lkp->lk_sharecount -= decr; 117 } 118 } 119 120 /* 121 * This is the waitloop optimization. 122 */ 123 static int 124 apause(struct lock *lkp, int flags) 125 { 126 #ifdef SMP 127 int i, lock_wait; 128 #endif 129 130 if ((lkp->lk_flags & flags) == 0) 131 return 0; 132 #ifdef SMP 133 for (lock_wait = LOCK_WAIT_TIME; lock_wait > 0; lock_wait--) { 134 mtx_unlock(lkp->lk_interlock); 135 for (i = LOCK_SAMPLE_WAIT; i > 0; i--) 136 if ((lkp->lk_flags & flags) == 0) 137 break; 138 mtx_lock(lkp->lk_interlock); 139 if ((lkp->lk_flags & flags) == 0) 140 return 0; 141 } 142 #endif 143 return 1; 144 } 145 146 static int 147 acquire(struct lock *lkp, int extflags, int wanted) { 148 int s, error; 149 150 CTR3(KTR_LOCKMGR, 151 "acquire(): lkp == %p, extflags == 0x%x, wanted == 0x%x\n", 152 lkp, extflags, wanted); 153 154 if ((extflags & LK_NOWAIT) && (lkp->lk_flags & wanted)) { 155 return EBUSY; 156 } 157 158 if (((lkp->lk_flags | extflags) & LK_NOPAUSE) == 0) { 159 error = apause(lkp, wanted); 160 if (error == 0) 161 return 0; 162 } 163 164 s = splhigh(); 165 while ((lkp->lk_flags & wanted) != 0) { 166 lkp->lk_flags |= LK_WAIT_NONZERO; 167 lkp->lk_waitcount++; 168 error = msleep(lkp, lkp->lk_interlock, lkp->lk_prio, 169 lkp->lk_wmesg, lkp->lk_timo); 170 if (lkp->lk_waitcount == 1) { 171 lkp->lk_flags &= ~LK_WAIT_NONZERO; 172 lkp->lk_waitcount = 0; 173 } else { 174 lkp->lk_waitcount--; 175 } 176 if (error) { 177 splx(s); 178 return error; 179 } 180 if (extflags & LK_SLEEPFAIL) { 181 splx(s); 182 return ENOLCK; 183 } 184 } 185 splx(s); 186 return 0; 187 } 188 189 /* 190 * Set, change, or release a lock. 191 * 192 * Shared requests increment the shared count. Exclusive requests set the 193 * LK_WANT_EXCL flag (preventing further shared locks), and wait for already 194 * accepted shared locks and shared-to-exclusive upgrades to go away. 195 */ 196 int 197 #ifndef DEBUG_LOCKS 198 lockmgr(lkp, flags, interlkp, td) 199 #else 200 debuglockmgr(lkp, flags, interlkp, td, name, file, line) 201 #endif 202 struct lock *lkp; 203 u_int flags; 204 struct mtx *interlkp; 205 struct thread *td; 206 #ifdef DEBUG_LOCKS 207 const char *name; /* Name of lock function */ 208 const char *file; /* Name of file call is from */ 209 int line; /* Line number in file */ 210 #endif 211 { 212 int error; 213 pid_t pid; 214 int extflags, lockflags; 215 216 CTR5(KTR_LOCKMGR, 217 "lockmgr(): lkp == %p (lk_wmesg == \"%s\"), flags == 0x%x, " 218 "interlkp == %p, td == %p", lkp, lkp->lk_wmesg, flags, interlkp, td); 219 220 error = 0; 221 if (td == NULL) 222 pid = LK_KERNPROC; 223 else 224 pid = td->td_proc->p_pid; 225 226 mtx_lock(lkp->lk_interlock); 227 if (flags & LK_INTERLOCK) { 228 mtx_assert(interlkp, MA_OWNED | MA_NOTRECURSED); 229 mtx_unlock(interlkp); 230 } 231 232 if (panicstr != NULL) { 233 mtx_unlock(lkp->lk_interlock); 234 return (0); 235 } 236 237 extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK; 238 239 switch (flags & LK_TYPE_MASK) { 240 241 case LK_SHARED: 242 /* 243 * If we are not the exclusive lock holder, we have to block 244 * while there is an exclusive lock holder or while an 245 * exclusive lock request or upgrade request is in progress. 246 * 247 * However, if TDF_DEADLKTREAT is set, we override exclusive 248 * lock requests or upgrade requests ( but not the exclusive 249 * lock itself ). 250 */ 251 if (lkp->lk_lockholder != pid) { 252 lockflags = LK_HAVE_EXCL; 253 mtx_lock_spin(&sched_lock); 254 if (td != NULL && !(td->td_flags & TDF_DEADLKTREAT)) 255 lockflags |= LK_WANT_EXCL | LK_WANT_UPGRADE; 256 mtx_unlock_spin(&sched_lock); 257 error = acquire(lkp, extflags, lockflags); 258 if (error) 259 break; 260 sharelock(lkp, 1); 261 break; 262 } 263 /* 264 * We hold an exclusive lock, so downgrade it to shared. 265 * An alternative would be to fail with EDEADLK. 266 */ 267 sharelock(lkp, 1); 268 /* fall into downgrade */ 269 270 case LK_DOWNGRADE: 271 KASSERT(lkp->lk_lockholder == pid && lkp->lk_exclusivecount != 0, 272 ("lockmgr: not holding exclusive lock " 273 "(owner pid (%d) != pid (%d), exlcnt (%d) != 0", 274 lkp->lk_lockholder, pid, lkp->lk_exclusivecount)); 275 sharelock(lkp, lkp->lk_exclusivecount); 276 lkp->lk_exclusivecount = 0; 277 lkp->lk_flags &= ~LK_HAVE_EXCL; 278 lkp->lk_lockholder = LK_NOPROC; 279 if (lkp->lk_waitcount) 280 wakeup((void *)lkp); 281 break; 282 283 case LK_EXCLUPGRADE: 284 /* 285 * If another process is ahead of us to get an upgrade, 286 * then we want to fail rather than have an intervening 287 * exclusive access. 288 */ 289 if (lkp->lk_flags & LK_WANT_UPGRADE) { 290 shareunlock(lkp, 1); 291 error = EBUSY; 292 break; 293 } 294 /* fall into normal upgrade */ 295 296 case LK_UPGRADE: 297 /* 298 * Upgrade a shared lock to an exclusive one. If another 299 * shared lock has already requested an upgrade to an 300 * exclusive lock, our shared lock is released and an 301 * exclusive lock is requested (which will be granted 302 * after the upgrade). If we return an error, the file 303 * will always be unlocked. 304 */ 305 if ((lkp->lk_lockholder == pid) || (lkp->lk_sharecount <= 0)) 306 panic("lockmgr: upgrade exclusive lock"); 307 shareunlock(lkp, 1); 308 /* 309 * If we are just polling, check to see if we will block. 310 */ 311 if ((extflags & LK_NOWAIT) && 312 ((lkp->lk_flags & LK_WANT_UPGRADE) || 313 lkp->lk_sharecount > 1)) { 314 error = EBUSY; 315 break; 316 } 317 if ((lkp->lk_flags & LK_WANT_UPGRADE) == 0) { 318 /* 319 * We are first shared lock to request an upgrade, so 320 * request upgrade and wait for the shared count to 321 * drop to zero, then take exclusive lock. 322 */ 323 lkp->lk_flags |= LK_WANT_UPGRADE; 324 error = acquire(lkp, extflags, LK_SHARE_NONZERO); 325 lkp->lk_flags &= ~LK_WANT_UPGRADE; 326 327 if (error) 328 break; 329 lkp->lk_flags |= LK_HAVE_EXCL; 330 lkp->lk_lockholder = pid; 331 if (lkp->lk_exclusivecount != 0) 332 panic("lockmgr: non-zero exclusive count"); 333 lkp->lk_exclusivecount = 1; 334 #if defined(DEBUG_LOCKS) 335 lkp->lk_filename = file; 336 lkp->lk_lineno = line; 337 lkp->lk_lockername = name; 338 #endif 339 break; 340 } 341 /* 342 * Someone else has requested upgrade. Release our shared 343 * lock, awaken upgrade requestor if we are the last shared 344 * lock, then request an exclusive lock. 345 */ 346 if ( (lkp->lk_flags & (LK_SHARE_NONZERO|LK_WAIT_NONZERO)) == 347 LK_WAIT_NONZERO) 348 wakeup((void *)lkp); 349 /* fall into exclusive request */ 350 351 case LK_EXCLUSIVE: 352 if (lkp->lk_lockholder == pid && pid != LK_KERNPROC) { 353 /* 354 * Recursive lock. 355 */ 356 if ((extflags & (LK_NOWAIT | LK_CANRECURSE)) == 0) 357 panic("lockmgr: locking against myself"); 358 if ((extflags & LK_CANRECURSE) != 0) { 359 lkp->lk_exclusivecount++; 360 break; 361 } 362 } 363 /* 364 * If we are just polling, check to see if we will sleep. 365 */ 366 if ((extflags & LK_NOWAIT) && 367 (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | LK_SHARE_NONZERO))) { 368 error = EBUSY; 369 break; 370 } 371 /* 372 * Try to acquire the want_exclusive flag. 373 */ 374 error = acquire(lkp, extflags, (LK_HAVE_EXCL | LK_WANT_EXCL)); 375 if (error) 376 break; 377 lkp->lk_flags |= LK_WANT_EXCL; 378 /* 379 * Wait for shared locks and upgrades to finish. 380 */ 381 error = acquire(lkp, extflags, LK_WANT_UPGRADE | LK_SHARE_NONZERO); 382 lkp->lk_flags &= ~LK_WANT_EXCL; 383 if (error) 384 break; 385 lkp->lk_flags |= LK_HAVE_EXCL; 386 lkp->lk_lockholder = pid; 387 if (lkp->lk_exclusivecount != 0) 388 panic("lockmgr: non-zero exclusive count"); 389 lkp->lk_exclusivecount = 1; 390 #if defined(DEBUG_LOCKS) 391 lkp->lk_filename = file; 392 lkp->lk_lineno = line; 393 lkp->lk_lockername = name; 394 #endif 395 break; 396 397 case LK_RELEASE: 398 if (lkp->lk_exclusivecount != 0) { 399 if (lkp->lk_lockholder != pid && 400 lkp->lk_lockholder != LK_KERNPROC) { 401 panic("lockmgr: pid %d, not %s %d unlocking", 402 pid, "exclusive lock holder", 403 lkp->lk_lockholder); 404 } 405 if (lkp->lk_exclusivecount == 1) { 406 lkp->lk_flags &= ~LK_HAVE_EXCL; 407 lkp->lk_lockholder = LK_NOPROC; 408 lkp->lk_exclusivecount = 0; 409 } else { 410 lkp->lk_exclusivecount--; 411 } 412 } else if (lkp->lk_flags & LK_SHARE_NONZERO) 413 shareunlock(lkp, 1); 414 if (lkp->lk_flags & LK_WAIT_NONZERO) 415 wakeup((void *)lkp); 416 break; 417 418 case LK_DRAIN: 419 /* 420 * Check that we do not already hold the lock, as it can 421 * never drain if we do. Unfortunately, we have no way to 422 * check for holding a shared lock, but at least we can 423 * check for an exclusive one. 424 */ 425 if (lkp->lk_lockholder == pid) 426 panic("lockmgr: draining against myself"); 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 break; 440 441 default: 442 mtx_unlock(lkp->lk_interlock); 443 panic("lockmgr: unknown locktype request %d", 444 flags & LK_TYPE_MASK); 445 /* NOTREACHED */ 446 } 447 if ((lkp->lk_flags & LK_WAITDRAIN) && 448 (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | 449 LK_SHARE_NONZERO | LK_WAIT_NONZERO)) == 0) { 450 lkp->lk_flags &= ~LK_WAITDRAIN; 451 wakeup((void *)&lkp->lk_flags); 452 } 453 mtx_unlock(lkp->lk_interlock); 454 return (error); 455 } 456 457 static int 458 acquiredrain(struct lock *lkp, int extflags) { 459 int error; 460 461 if ((extflags & LK_NOWAIT) && (lkp->lk_flags & LK_ALL)) { 462 return EBUSY; 463 } 464 465 error = apause(lkp, LK_ALL); 466 if (error == 0) 467 return 0; 468 469 while (lkp->lk_flags & LK_ALL) { 470 lkp->lk_flags |= LK_WAITDRAIN; 471 error = msleep(&lkp->lk_flags, lkp->lk_interlock, lkp->lk_prio, 472 lkp->lk_wmesg, lkp->lk_timo); 473 if (error) 474 return error; 475 if (extflags & LK_SLEEPFAIL) { 476 return ENOLCK; 477 } 478 } 479 return 0; 480 } 481 482 /* 483 * Initialize a lock; required before use. 484 */ 485 void 486 lockinit(lkp, prio, wmesg, timo, flags) 487 struct lock *lkp; 488 int prio; 489 char *wmesg; 490 int timo; 491 int flags; 492 { 493 CTR5(KTR_LOCKMGR, "lockinit(): lkp == %p, prio == %d, wmesg == \"%s\", " 494 "timo == %d, flags = 0x%x\n", lkp, prio, wmesg, timo, flags); 495 496 if (lock_mtx_valid == 0) { 497 mtx_init(&lock_mtx, "lockmgr", MTX_DEF); 498 lock_mtx_valid = 1; 499 } 500 /* 501 * XXX cleanup - make sure mtxpool is always initialized before 502 * this is ever called. 503 */ 504 if (mtx_pool_valid) { 505 mtx_lock(&lock_mtx); 506 lkp->lk_interlock = mtx_pool_alloc(); 507 mtx_unlock(&lock_mtx); 508 } else { 509 lkp->lk_interlock = &lock_mtx; 510 } 511 lkp->lk_flags = (flags & LK_EXTFLG_MASK); 512 lkp->lk_sharecount = 0; 513 lkp->lk_waitcount = 0; 514 lkp->lk_exclusivecount = 0; 515 lkp->lk_prio = prio; 516 lkp->lk_wmesg = wmesg; 517 lkp->lk_timo = timo; 518 lkp->lk_lockholder = LK_NOPROC; 519 } 520 521 /* 522 * Destroy a lock. 523 */ 524 void 525 lockdestroy(lkp) 526 struct lock *lkp; 527 { 528 CTR2(KTR_LOCKMGR, "lockdestroy(): lkp == %p (lk_wmesg == \"%s\")", 529 lkp, lkp->lk_wmesg); 530 } 531 532 /* 533 * Determine the status of a lock. 534 */ 535 int 536 lockstatus(lkp, td) 537 struct lock *lkp; 538 struct thread *td; 539 { 540 int lock_type = 0; 541 542 mtx_lock(lkp->lk_interlock); 543 if (lkp->lk_exclusivecount != 0) { 544 if (td == NULL || lkp->lk_lockholder == td->td_proc->p_pid) 545 lock_type = LK_EXCLUSIVE; 546 else 547 lock_type = LK_EXCLOTHER; 548 } else if (lkp->lk_sharecount != 0) 549 lock_type = LK_SHARED; 550 mtx_unlock(lkp->lk_interlock); 551 return (lock_type); 552 } 553 554 /* 555 * Determine the number of holders of a lock. 556 */ 557 int 558 lockcount(lkp) 559 struct lock *lkp; 560 { 561 int count; 562 563 mtx_lock(lkp->lk_interlock); 564 count = lkp->lk_exclusivecount + lkp->lk_sharecount; 565 mtx_unlock(lkp->lk_interlock); 566 return (count); 567 } 568 569 /* 570 * Print out information about state of a lock. Used by VOP_PRINT 571 * routines to display status about contained locks. 572 */ 573 void 574 lockmgr_printinfo(lkp) 575 struct lock *lkp; 576 { 577 578 if (lkp->lk_sharecount) 579 printf(" lock type %s: SHARED (count %d)", lkp->lk_wmesg, 580 lkp->lk_sharecount); 581 else if (lkp->lk_flags & LK_HAVE_EXCL) 582 printf(" lock type %s: EXCL (count %d) by pid %d", 583 lkp->lk_wmesg, lkp->lk_exclusivecount, lkp->lk_lockholder); 584 if (lkp->lk_waitcount > 0) 585 printf(" with %d pending", lkp->lk_waitcount); 586 } 587