1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2008 Isilon Systems, Inc. 5 * Copyright (c) 2008 Ilya Maykov <ivmaykov@gmail.com> 6 * Copyright (c) 1998 Berkeley Software Design, Inc. 7 * All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 3. Berkeley Software Design Inc's name may not be used to endorse or 18 * promote products derived from this software without specific prior 19 * written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY BERKELEY SOFTWARE DESIGN INC ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL BERKELEY SOFTWARE DESIGN INC BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $ 34 * and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $ 35 */ 36 37 /* 38 * Implementation of the `witness' lock verifier. Originally implemented for 39 * mutexes in BSD/OS. Extended to handle generic lock objects and lock 40 * classes in FreeBSD. 41 */ 42 43 /* 44 * Main Entry: witness 45 * Pronunciation: 'wit-n&s 46 * Function: noun 47 * Etymology: Middle English witnesse, from Old English witnes knowledge, 48 * testimony, witness, from 2wit 49 * Date: before 12th century 50 * 1 : attestation of a fact or event : TESTIMONY 51 * 2 : one that gives evidence; specifically : one who testifies in 52 * a cause or before a judicial tribunal 53 * 3 : one asked to be present at a transaction so as to be able to 54 * testify to its having taken place 55 * 4 : one who has personal knowledge of something 56 * 5 a : something serving as evidence or proof : SIGN 57 * b : public affirmation by word or example of usually 58 * religious faith or conviction <the heroic witness to divine 59 * life -- Pilot> 60 * 6 capitalized : a member of the Jehovah's Witnesses 61 */ 62 63 /* 64 * Special rules concerning Giant and lock orders: 65 * 66 * 1) Giant must be acquired before any other mutexes. Stated another way, 67 * no other mutex may be held when Giant is acquired. 68 * 69 * 2) Giant must be released when blocking on a sleepable lock. 70 * 71 * This rule is less obvious, but is a result of Giant providing the same 72 * semantics as spl(). Basically, when a thread sleeps, it must release 73 * Giant. When a thread blocks on a sleepable lock, it sleeps. Hence rule 74 * 2). 75 * 76 * 3) Giant may be acquired before or after sleepable locks. 77 * 78 * This rule is also not quite as obvious. Giant may be acquired after 79 * a sleepable lock because it is a non-sleepable lock and non-sleepable 80 * locks may always be acquired while holding a sleepable lock. The second 81 * case, Giant before a sleepable lock, follows from rule 2) above. Suppose 82 * you have two threads T1 and T2 and a sleepable lock X. Suppose that T1 83 * acquires X and blocks on Giant. Then suppose that T2 acquires Giant and 84 * blocks on X. When T2 blocks on X, T2 will release Giant allowing T1 to 85 * execute. Thus, acquiring Giant both before and after a sleepable lock 86 * will not result in a lock order reversal. 87 */ 88 89 #include <sys/cdefs.h> 90 __FBSDID("$FreeBSD$"); 91 92 #include "opt_ddb.h" 93 #include "opt_hwpmc_hooks.h" 94 #include "opt_stack.h" 95 #include "opt_witness.h" 96 97 #include <sys/param.h> 98 #include <sys/bus.h> 99 #include <sys/kdb.h> 100 #include <sys/kernel.h> 101 #include <sys/ktr.h> 102 #include <sys/lock.h> 103 #include <sys/malloc.h> 104 #include <sys/mutex.h> 105 #include <sys/priv.h> 106 #include <sys/proc.h> 107 #include <sys/sbuf.h> 108 #include <sys/sched.h> 109 #include <sys/stack.h> 110 #include <sys/sysctl.h> 111 #include <sys/syslog.h> 112 #include <sys/systm.h> 113 114 #ifdef DDB 115 #include <ddb/ddb.h> 116 #endif 117 118 #include <machine/stdarg.h> 119 120 #if !defined(DDB) && !defined(STACK) 121 #error "DDB or STACK options are required for WITNESS" 122 #endif 123 124 /* Note that these traces do not work with KTR_ALQ. */ 125 #if 0 126 #define KTR_WITNESS KTR_SUBSYS 127 #else 128 #define KTR_WITNESS 0 129 #endif 130 131 #define LI_RECURSEMASK 0x0000ffff /* Recursion depth of lock instance. */ 132 #define LI_EXCLUSIVE 0x00010000 /* Exclusive lock instance. */ 133 #define LI_NORELEASE 0x00020000 /* Lock not allowed to be released. */ 134 #define LI_SLEEPABLE 0x00040000 /* Lock may be held while sleeping. */ 135 136 #ifndef WITNESS_COUNT 137 #define WITNESS_COUNT 1536 138 #endif 139 #define WITNESS_HASH_SIZE 251 /* Prime, gives load factor < 2 */ 140 #define WITNESS_PENDLIST (512 + (MAXCPU * 4)) 141 142 /* Allocate 256 KB of stack data space */ 143 #define WITNESS_LO_DATA_COUNT 2048 144 145 /* Prime, gives load factor of ~2 at full load */ 146 #define WITNESS_LO_HASH_SIZE 1021 147 148 /* 149 * XXX: This is somewhat bogus, as we assume here that at most 2048 threads 150 * will hold LOCK_NCHILDREN locks. We handle failure ok, and we should 151 * probably be safe for the most part, but it's still a SWAG. 152 */ 153 #define LOCK_NCHILDREN 5 154 #define LOCK_CHILDCOUNT 2048 155 156 #define MAX_W_NAME 64 157 158 #define FULLGRAPH_SBUF_SIZE 512 159 160 /* 161 * These flags go in the witness relationship matrix and describe the 162 * relationship between any two struct witness objects. 163 */ 164 #define WITNESS_UNRELATED 0x00 /* No lock order relation. */ 165 #define WITNESS_PARENT 0x01 /* Parent, aka direct ancestor. */ 166 #define WITNESS_ANCESTOR 0x02 /* Direct or indirect ancestor. */ 167 #define WITNESS_CHILD 0x04 /* Child, aka direct descendant. */ 168 #define WITNESS_DESCENDANT 0x08 /* Direct or indirect descendant. */ 169 #define WITNESS_ANCESTOR_MASK (WITNESS_PARENT | WITNESS_ANCESTOR) 170 #define WITNESS_DESCENDANT_MASK (WITNESS_CHILD | WITNESS_DESCENDANT) 171 #define WITNESS_RELATED_MASK \ 172 (WITNESS_ANCESTOR_MASK | WITNESS_DESCENDANT_MASK) 173 #define WITNESS_REVERSAL 0x10 /* A lock order reversal has been 174 * observed. */ 175 #define WITNESS_RESERVED1 0x20 /* Unused flag, reserved. */ 176 #define WITNESS_RESERVED2 0x40 /* Unused flag, reserved. */ 177 #define WITNESS_LOCK_ORDER_KNOWN 0x80 /* This lock order is known. */ 178 179 /* Descendant to ancestor flags */ 180 #define WITNESS_DTOA(x) (((x) & WITNESS_RELATED_MASK) >> 2) 181 182 /* Ancestor to descendant flags */ 183 #define WITNESS_ATOD(x) (((x) & WITNESS_RELATED_MASK) << 2) 184 185 #define WITNESS_INDEX_ASSERT(i) \ 186 MPASS((i) > 0 && (i) <= w_max_used_index && (i) < witness_count) 187 188 static MALLOC_DEFINE(M_WITNESS, "Witness", "Witness"); 189 190 /* 191 * Lock instances. A lock instance is the data associated with a lock while 192 * it is held by witness. For example, a lock instance will hold the 193 * recursion count of a lock. Lock instances are held in lists. Spin locks 194 * are held in a per-cpu list while sleep locks are held in per-thread list. 195 */ 196 struct lock_instance { 197 struct lock_object *li_lock; 198 const char *li_file; 199 int li_line; 200 u_int li_flags; 201 }; 202 203 /* 204 * A simple list type used to build the list of locks held by a thread 205 * or CPU. We can't simply embed the list in struct lock_object since a 206 * lock may be held by more than one thread if it is a shared lock. Locks 207 * are added to the head of the list, so we fill up each list entry from 208 * "the back" logically. To ease some of the arithmetic, we actually fill 209 * in each list entry the normal way (children[0] then children[1], etc.) but 210 * when we traverse the list we read children[count-1] as the first entry 211 * down to children[0] as the final entry. 212 */ 213 struct lock_list_entry { 214 struct lock_list_entry *ll_next; 215 struct lock_instance ll_children[LOCK_NCHILDREN]; 216 u_int ll_count; 217 }; 218 219 /* 220 * The main witness structure. One of these per named lock type in the system 221 * (for example, "vnode interlock"). 222 */ 223 struct witness { 224 char w_name[MAX_W_NAME]; 225 uint32_t w_index; /* Index in the relationship matrix */ 226 struct lock_class *w_class; 227 STAILQ_ENTRY(witness) w_list; /* List of all witnesses. */ 228 STAILQ_ENTRY(witness) w_typelist; /* Witnesses of a type. */ 229 struct witness *w_hash_next; /* Linked list in hash buckets. */ 230 const char *w_file; /* File where last acquired */ 231 uint32_t w_line; /* Line where last acquired */ 232 uint32_t w_refcount; 233 uint16_t w_num_ancestors; /* direct/indirect 234 * ancestor count */ 235 uint16_t w_num_descendants; /* direct/indirect 236 * descendant count */ 237 int16_t w_ddb_level; 238 unsigned w_displayed:1; 239 unsigned w_reversed:1; 240 }; 241 242 STAILQ_HEAD(witness_list, witness); 243 244 /* 245 * The witness hash table. Keys are witness names (const char *), elements are 246 * witness objects (struct witness *). 247 */ 248 struct witness_hash { 249 struct witness *wh_array[WITNESS_HASH_SIZE]; 250 uint32_t wh_size; 251 uint32_t wh_count; 252 }; 253 254 /* 255 * Key type for the lock order data hash table. 256 */ 257 struct witness_lock_order_key { 258 uint16_t from; 259 uint16_t to; 260 }; 261 262 struct witness_lock_order_data { 263 struct stack wlod_stack; 264 struct witness_lock_order_key wlod_key; 265 struct witness_lock_order_data *wlod_next; 266 }; 267 268 /* 269 * The witness lock order data hash table. Keys are witness index tuples 270 * (struct witness_lock_order_key), elements are lock order data objects 271 * (struct witness_lock_order_data). 272 */ 273 struct witness_lock_order_hash { 274 struct witness_lock_order_data *wloh_array[WITNESS_LO_HASH_SIZE]; 275 u_int wloh_size; 276 u_int wloh_count; 277 }; 278 279 struct witness_blessed { 280 const char *b_lock1; 281 const char *b_lock2; 282 }; 283 284 struct witness_pendhelp { 285 const char *wh_type; 286 struct lock_object *wh_lock; 287 }; 288 289 struct witness_order_list_entry { 290 const char *w_name; 291 struct lock_class *w_class; 292 }; 293 294 /* 295 * Returns 0 if one of the locks is a spin lock and the other is not. 296 * Returns 1 otherwise. 297 */ 298 static __inline int 299 witness_lock_type_equal(struct witness *w1, struct witness *w2) 300 { 301 302 return ((w1->w_class->lc_flags & (LC_SLEEPLOCK | LC_SPINLOCK)) == 303 (w2->w_class->lc_flags & (LC_SLEEPLOCK | LC_SPINLOCK))); 304 } 305 306 static __inline int 307 witness_lock_order_key_equal(const struct witness_lock_order_key *a, 308 const struct witness_lock_order_key *b) 309 { 310 311 return (a->from == b->from && a->to == b->to); 312 } 313 314 static int _isitmyx(struct witness *w1, struct witness *w2, int rmask, 315 const char *fname); 316 static void adopt(struct witness *parent, struct witness *child); 317 static int blessed(struct witness *, struct witness *); 318 static void depart(struct witness *w); 319 static struct witness *enroll(const char *description, 320 struct lock_class *lock_class); 321 static struct lock_instance *find_instance(struct lock_list_entry *list, 322 const struct lock_object *lock); 323 static int isitmychild(struct witness *parent, struct witness *child); 324 static int isitmydescendant(struct witness *parent, struct witness *child); 325 static void itismychild(struct witness *parent, struct witness *child); 326 static int sysctl_debug_witness_badstacks(SYSCTL_HANDLER_ARGS); 327 static int sysctl_debug_witness_watch(SYSCTL_HANDLER_ARGS); 328 static int sysctl_debug_witness_fullgraph(SYSCTL_HANDLER_ARGS); 329 static int sysctl_debug_witness_channel(SYSCTL_HANDLER_ARGS); 330 static void witness_add_fullgraph(struct sbuf *sb, struct witness *parent); 331 #ifdef DDB 332 static void witness_ddb_compute_levels(void); 333 static void witness_ddb_display(int(*)(const char *fmt, ...)); 334 static void witness_ddb_display_descendants(int(*)(const char *fmt, ...), 335 struct witness *, int indent); 336 static void witness_ddb_display_list(int(*prnt)(const char *fmt, ...), 337 struct witness_list *list); 338 static void witness_ddb_level_descendants(struct witness *parent, int l); 339 static void witness_ddb_list(struct thread *td); 340 #endif 341 static void witness_enter_debugger(const char *msg); 342 static void witness_debugger(int cond, const char *msg); 343 static void witness_free(struct witness *m); 344 static struct witness *witness_get(void); 345 static uint32_t witness_hash_djb2(const uint8_t *key, uint32_t size); 346 static struct witness *witness_hash_get(const char *key); 347 static void witness_hash_put(struct witness *w); 348 static void witness_init_hash_tables(void); 349 static void witness_increment_graph_generation(void); 350 static void witness_lock_list_free(struct lock_list_entry *lle); 351 static struct lock_list_entry *witness_lock_list_get(void); 352 static int witness_lock_order_add(struct witness *parent, 353 struct witness *child); 354 static int witness_lock_order_check(struct witness *parent, 355 struct witness *child); 356 static struct witness_lock_order_data *witness_lock_order_get( 357 struct witness *parent, 358 struct witness *child); 359 static void witness_list_lock(struct lock_instance *instance, 360 int (*prnt)(const char *fmt, ...)); 361 static int witness_output(const char *fmt, ...) __printflike(1, 2); 362 static int witness_output_drain(void *arg __unused, const char *data, 363 int len); 364 static int witness_voutput(const char *fmt, va_list ap) __printflike(1, 0); 365 static void witness_setflag(struct lock_object *lock, int flag, int set); 366 367 FEATURE(witness, "kernel has witness(9) support"); 368 369 static SYSCTL_NODE(_debug, OID_AUTO, witness, CTLFLAG_RW | CTLFLAG_MPSAFE, NULL, 370 "Witness Locking"); 371 372 /* 373 * If set to 0, lock order checking is disabled. If set to -1, 374 * witness is completely disabled. Otherwise witness performs full 375 * lock order checking for all locks. At runtime, lock order checking 376 * may be toggled. However, witness cannot be reenabled once it is 377 * completely disabled. 378 */ 379 static int witness_watch = 1; 380 SYSCTL_PROC(_debug_witness, OID_AUTO, watch, 381 CTLFLAG_RWTUN | CTLTYPE_INT | CTLFLAG_MPSAFE, NULL, 0, 382 sysctl_debug_witness_watch, "I", 383 "witness is watching lock operations"); 384 385 #ifdef KDB 386 /* 387 * When KDB is enabled and witness_kdb is 1, it will cause the system 388 * to drop into kdebug() when: 389 * - a lock hierarchy violation occurs 390 * - locks are held when going to sleep. 391 */ 392 #ifdef WITNESS_KDB 393 int witness_kdb = 1; 394 #else 395 int witness_kdb = 0; 396 #endif 397 SYSCTL_INT(_debug_witness, OID_AUTO, kdb, CTLFLAG_RWTUN, &witness_kdb, 0, ""); 398 #endif /* KDB */ 399 400 #if defined(DDB) || defined(KDB) 401 /* 402 * When DDB or KDB is enabled and witness_trace is 1, it will cause the system 403 * to print a stack trace: 404 * - a lock hierarchy violation occurs 405 * - locks are held when going to sleep. 406 */ 407 int witness_trace = 1; 408 SYSCTL_INT(_debug_witness, OID_AUTO, trace, CTLFLAG_RWTUN, &witness_trace, 0, ""); 409 #endif /* DDB || KDB */ 410 411 #ifdef WITNESS_SKIPSPIN 412 int witness_skipspin = 1; 413 #else 414 int witness_skipspin = 0; 415 #endif 416 SYSCTL_INT(_debug_witness, OID_AUTO, skipspin, CTLFLAG_RDTUN, &witness_skipspin, 0, ""); 417 418 int badstack_sbuf_size; 419 420 int witness_count = WITNESS_COUNT; 421 SYSCTL_INT(_debug_witness, OID_AUTO, witness_count, CTLFLAG_RDTUN, 422 &witness_count, 0, ""); 423 424 /* 425 * Output channel for witness messages. By default we print to the console. 426 */ 427 enum witness_channel { 428 WITNESS_CONSOLE, 429 WITNESS_LOG, 430 WITNESS_NONE, 431 }; 432 433 static enum witness_channel witness_channel = WITNESS_CONSOLE; 434 SYSCTL_PROC(_debug_witness, OID_AUTO, output_channel, 435 CTLTYPE_STRING | CTLFLAG_RWTUN | CTLFLAG_MPSAFE, NULL, 0, 436 sysctl_debug_witness_channel, "A", 437 "Output channel for warnings"); 438 439 /* 440 * Call this to print out the relations between locks. 441 */ 442 SYSCTL_PROC(_debug_witness, OID_AUTO, fullgraph, 443 CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, 444 sysctl_debug_witness_fullgraph, "A", 445 "Show locks relation graphs"); 446 447 /* 448 * Call this to print out the witness faulty stacks. 449 */ 450 SYSCTL_PROC(_debug_witness, OID_AUTO, badstacks, 451 CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, 452 sysctl_debug_witness_badstacks, "A", 453 "Show bad witness stacks"); 454 455 static struct mtx w_mtx; 456 457 /* w_list */ 458 static struct witness_list w_free = STAILQ_HEAD_INITIALIZER(w_free); 459 static struct witness_list w_all = STAILQ_HEAD_INITIALIZER(w_all); 460 461 /* w_typelist */ 462 static struct witness_list w_spin = STAILQ_HEAD_INITIALIZER(w_spin); 463 static struct witness_list w_sleep = STAILQ_HEAD_INITIALIZER(w_sleep); 464 465 /* lock list */ 466 static struct lock_list_entry *w_lock_list_free = NULL; 467 static struct witness_pendhelp pending_locks[WITNESS_PENDLIST]; 468 static u_int pending_cnt; 469 470 static int w_free_cnt, w_spin_cnt, w_sleep_cnt; 471 SYSCTL_INT(_debug_witness, OID_AUTO, free_cnt, CTLFLAG_RD, &w_free_cnt, 0, ""); 472 SYSCTL_INT(_debug_witness, OID_AUTO, spin_cnt, CTLFLAG_RD, &w_spin_cnt, 0, ""); 473 SYSCTL_INT(_debug_witness, OID_AUTO, sleep_cnt, CTLFLAG_RD, &w_sleep_cnt, 0, 474 ""); 475 476 static struct witness *w_data; 477 static uint8_t **w_rmatrix; 478 static struct lock_list_entry w_locklistdata[LOCK_CHILDCOUNT]; 479 static struct witness_hash w_hash; /* The witness hash table. */ 480 481 /* The lock order data hash */ 482 static struct witness_lock_order_data w_lodata[WITNESS_LO_DATA_COUNT]; 483 static struct witness_lock_order_data *w_lofree = NULL; 484 static struct witness_lock_order_hash w_lohash; 485 static int w_max_used_index = 0; 486 static unsigned int w_generation = 0; 487 static const char w_notrunning[] = "Witness not running\n"; 488 static const char w_stillcold[] = "Witness is still cold\n"; 489 #ifdef __i386__ 490 static const char w_notallowed[] = "The sysctl is disabled on the arch\n"; 491 #endif 492 493 static struct witness_order_list_entry order_lists[] = { 494 /* 495 * sx locks 496 */ 497 { "proctree", &lock_class_sx }, 498 { "allproc", &lock_class_sx }, 499 { "allprison", &lock_class_sx }, 500 { NULL, NULL }, 501 /* 502 * Various mutexes 503 */ 504 { "Giant", &lock_class_mtx_sleep }, 505 { "pipe mutex", &lock_class_mtx_sleep }, 506 { "sigio lock", &lock_class_mtx_sleep }, 507 { "process group", &lock_class_mtx_sleep }, 508 #ifdef HWPMC_HOOKS 509 { "pmc-sleep", &lock_class_mtx_sleep }, 510 #endif 511 { "process lock", &lock_class_mtx_sleep }, 512 { "session", &lock_class_mtx_sleep }, 513 { "uidinfo hash", &lock_class_rw }, 514 { "time lock", &lock_class_mtx_sleep }, 515 { NULL, NULL }, 516 /* 517 * umtx 518 */ 519 { "umtx lock", &lock_class_mtx_sleep }, 520 { NULL, NULL }, 521 /* 522 * Sockets 523 */ 524 { "accept", &lock_class_mtx_sleep }, 525 { "so_snd", &lock_class_mtx_sleep }, 526 { "so_rcv", &lock_class_mtx_sleep }, 527 { "sellck", &lock_class_mtx_sleep }, 528 { NULL, NULL }, 529 /* 530 * Routing 531 */ 532 { "so_rcv", &lock_class_mtx_sleep }, 533 { "radix node head", &lock_class_rm }, 534 { "ifaddr", &lock_class_mtx_sleep }, 535 { NULL, NULL }, 536 /* 537 * IPv4 multicast: 538 * protocol locks before interface locks, after UDP locks. 539 */ 540 { "in_multi_sx", &lock_class_sx }, 541 { "udpinp", &lock_class_rw }, 542 { "in_multi_list_mtx", &lock_class_mtx_sleep }, 543 { "igmp_mtx", &lock_class_mtx_sleep }, 544 { "ifnet_rw", &lock_class_rw }, 545 { "if_addr_lock", &lock_class_mtx_sleep }, 546 { NULL, NULL }, 547 /* 548 * IPv6 multicast: 549 * protocol locks before interface locks, after UDP locks. 550 */ 551 { "in6_multi_sx", &lock_class_sx }, 552 { "udpinp", &lock_class_rw }, 553 { "in6_multi_list_mtx", &lock_class_mtx_sleep }, 554 { "mld_mtx", &lock_class_mtx_sleep }, 555 { "ifnet_rw", &lock_class_rw }, 556 { "if_addr_lock", &lock_class_mtx_sleep }, 557 { NULL, NULL }, 558 /* 559 * UNIX Domain Sockets 560 */ 561 { "unp_link_rwlock", &lock_class_rw }, 562 { "unp_list_lock", &lock_class_mtx_sleep }, 563 { "unp", &lock_class_mtx_sleep }, 564 { "so_snd", &lock_class_mtx_sleep }, 565 { NULL, NULL }, 566 /* 567 * UDP/IP 568 */ 569 { "udp", &lock_class_mtx_sleep }, 570 { "udpinp", &lock_class_rw }, 571 { "so_snd", &lock_class_mtx_sleep }, 572 { NULL, NULL }, 573 /* 574 * TCP/IP 575 */ 576 { "tcp", &lock_class_mtx_sleep }, 577 { "tcpinp", &lock_class_rw }, 578 { "so_snd", &lock_class_mtx_sleep }, 579 { NULL, NULL }, 580 /* 581 * BPF 582 */ 583 { "bpf global lock", &lock_class_sx }, 584 { "bpf cdev lock", &lock_class_mtx_sleep }, 585 { NULL, NULL }, 586 /* 587 * NFS server 588 */ 589 { "nfsd_mtx", &lock_class_mtx_sleep }, 590 { "so_snd", &lock_class_mtx_sleep }, 591 { NULL, NULL }, 592 593 /* 594 * IEEE 802.11 595 */ 596 { "802.11 com lock", &lock_class_mtx_sleep}, 597 { NULL, NULL }, 598 /* 599 * Network drivers 600 */ 601 { "network driver", &lock_class_mtx_sleep}, 602 { NULL, NULL }, 603 604 /* 605 * Netgraph 606 */ 607 { "ng_node", &lock_class_mtx_sleep }, 608 { "ng_worklist", &lock_class_mtx_sleep }, 609 { NULL, NULL }, 610 /* 611 * CDEV 612 */ 613 { "vm map (system)", &lock_class_mtx_sleep }, 614 { "vnode interlock", &lock_class_mtx_sleep }, 615 { "cdev", &lock_class_mtx_sleep }, 616 { "devthrd", &lock_class_mtx_sleep }, 617 { NULL, NULL }, 618 /* 619 * VM 620 */ 621 { "vm map (user)", &lock_class_sx }, 622 { "vm object", &lock_class_rw }, 623 { "vm page", &lock_class_mtx_sleep }, 624 { "pmap pv global", &lock_class_rw }, 625 { "pmap", &lock_class_mtx_sleep }, 626 { "pmap pv list", &lock_class_rw }, 627 { "vm page free queue", &lock_class_mtx_sleep }, 628 { "vm pagequeue", &lock_class_mtx_sleep }, 629 { NULL, NULL }, 630 /* 631 * kqueue/VFS interaction 632 */ 633 { "kqueue", &lock_class_mtx_sleep }, 634 { "struct mount mtx", &lock_class_mtx_sleep }, 635 { "vnode interlock", &lock_class_mtx_sleep }, 636 { NULL, NULL }, 637 /* 638 * VFS namecache 639 */ 640 { "ncvn", &lock_class_mtx_sleep }, 641 { "ncbuc", &lock_class_mtx_sleep }, 642 { "vnode interlock", &lock_class_mtx_sleep }, 643 { "ncneg", &lock_class_mtx_sleep }, 644 { NULL, NULL }, 645 /* 646 * ZFS locking 647 */ 648 { "dn->dn_mtx", &lock_class_sx }, 649 { "dr->dt.di.dr_mtx", &lock_class_sx }, 650 { "db->db_mtx", &lock_class_sx }, 651 { NULL, NULL }, 652 /* 653 * TCP log locks 654 */ 655 { "TCP ID tree", &lock_class_rw }, 656 { "tcp log id bucket", &lock_class_mtx_sleep }, 657 { "tcpinp", &lock_class_rw }, 658 { "TCP log expireq", &lock_class_mtx_sleep }, 659 { NULL, NULL }, 660 /* 661 * spin locks 662 */ 663 #ifdef SMP 664 { "ap boot", &lock_class_mtx_spin }, 665 #endif 666 { "rm.mutex_mtx", &lock_class_mtx_spin }, 667 { "sio", &lock_class_mtx_spin }, 668 #ifdef __i386__ 669 { "cy", &lock_class_mtx_spin }, 670 #endif 671 { "scc_hwmtx", &lock_class_mtx_spin }, 672 { "uart_hwmtx", &lock_class_mtx_spin }, 673 { "fast_taskqueue", &lock_class_mtx_spin }, 674 { "intr table", &lock_class_mtx_spin }, 675 { "process slock", &lock_class_mtx_spin }, 676 { "syscons video lock", &lock_class_mtx_spin }, 677 { "sleepq chain", &lock_class_mtx_spin }, 678 { "rm_spinlock", &lock_class_mtx_spin }, 679 { "turnstile chain", &lock_class_mtx_spin }, 680 { "turnstile lock", &lock_class_mtx_spin }, 681 { "sched lock", &lock_class_mtx_spin }, 682 { "td_contested", &lock_class_mtx_spin }, 683 { "callout", &lock_class_mtx_spin }, 684 { "entropy harvest mutex", &lock_class_mtx_spin }, 685 #ifdef SMP 686 { "smp rendezvous", &lock_class_mtx_spin }, 687 #endif 688 #ifdef __powerpc__ 689 { "tlb0", &lock_class_mtx_spin }, 690 #endif 691 { NULL, NULL }, 692 { "sched lock", &lock_class_mtx_spin }, 693 #ifdef HWPMC_HOOKS 694 { "pmc-per-proc", &lock_class_mtx_spin }, 695 #endif 696 { NULL, NULL }, 697 /* 698 * leaf locks 699 */ 700 { "intrcnt", &lock_class_mtx_spin }, 701 { "icu", &lock_class_mtx_spin }, 702 #ifdef __i386__ 703 { "allpmaps", &lock_class_mtx_spin }, 704 { "descriptor tables", &lock_class_mtx_spin }, 705 #endif 706 { "clk", &lock_class_mtx_spin }, 707 { "cpuset", &lock_class_mtx_spin }, 708 { "mprof lock", &lock_class_mtx_spin }, 709 { "zombie lock", &lock_class_mtx_spin }, 710 { "ALD Queue", &lock_class_mtx_spin }, 711 #if defined(__i386__) || defined(__amd64__) 712 { "pcicfg", &lock_class_mtx_spin }, 713 { "NDIS thread lock", &lock_class_mtx_spin }, 714 #endif 715 { "tw_osl_io_lock", &lock_class_mtx_spin }, 716 { "tw_osl_q_lock", &lock_class_mtx_spin }, 717 { "tw_cl_io_lock", &lock_class_mtx_spin }, 718 { "tw_cl_intr_lock", &lock_class_mtx_spin }, 719 { "tw_cl_gen_lock", &lock_class_mtx_spin }, 720 #ifdef HWPMC_HOOKS 721 { "pmc-leaf", &lock_class_mtx_spin }, 722 #endif 723 { "blocked lock", &lock_class_mtx_spin }, 724 { NULL, NULL }, 725 { NULL, NULL } 726 }; 727 728 /* 729 * Pairs of locks which have been blessed. Witness does not complain about 730 * order problems with blessed lock pairs. Please do not add an entry to the 731 * table without an explanatory comment. 732 */ 733 static struct witness_blessed blessed_list[] = { 734 /* 735 * See the comment in ufs_dirhash.c. Basically, a vnode lock serializes 736 * both lock orders, so a deadlock cannot happen as a result of this 737 * LOR. 738 */ 739 { "dirhash", "bufwait" }, 740 741 /* 742 * A UFS vnode may be locked in vget() while a buffer belonging to the 743 * parent directory vnode is locked. 744 */ 745 { "ufs", "bufwait" }, 746 }; 747 748 /* 749 * This global is set to 0 once it becomes safe to use the witness code. 750 */ 751 static int witness_cold = 1; 752 753 /* 754 * This global is set to 1 once the static lock orders have been enrolled 755 * so that a warning can be issued for any spin locks enrolled later. 756 */ 757 static int witness_spin_warn = 0; 758 759 /* Trim useless garbage from filenames. */ 760 static const char * 761 fixup_filename(const char *file) 762 { 763 764 if (file == NULL) 765 return (NULL); 766 while (strncmp(file, "../", 3) == 0) 767 file += 3; 768 return (file); 769 } 770 771 /* 772 * Calculate the size of early witness structures. 773 */ 774 int 775 witness_startup_count(void) 776 { 777 int sz; 778 779 sz = sizeof(struct witness) * witness_count; 780 sz += sizeof(*w_rmatrix) * (witness_count + 1); 781 sz += sizeof(*w_rmatrix[0]) * (witness_count + 1) * 782 (witness_count + 1); 783 784 return (sz); 785 } 786 787 /* 788 * The WITNESS-enabled diagnostic code. Note that the witness code does 789 * assume that the early boot is single-threaded at least until after this 790 * routine is completed. 791 */ 792 void 793 witness_startup(void *mem) 794 { 795 struct lock_object *lock; 796 struct witness_order_list_entry *order; 797 struct witness *w, *w1; 798 uintptr_t p; 799 int i; 800 801 p = (uintptr_t)mem; 802 w_data = (void *)p; 803 p += sizeof(struct witness) * witness_count; 804 805 w_rmatrix = (void *)p; 806 p += sizeof(*w_rmatrix) * (witness_count + 1); 807 808 for (i = 0; i < witness_count + 1; i++) { 809 w_rmatrix[i] = (void *)p; 810 p += sizeof(*w_rmatrix[i]) * (witness_count + 1); 811 } 812 badstack_sbuf_size = witness_count * 256; 813 814 /* 815 * We have to release Giant before initializing its witness 816 * structure so that WITNESS doesn't get confused. 817 */ 818 mtx_unlock(&Giant); 819 mtx_assert(&Giant, MA_NOTOWNED); 820 821 CTR1(KTR_WITNESS, "%s: initializing witness", __func__); 822 mtx_init(&w_mtx, "witness lock", NULL, MTX_SPIN | MTX_QUIET | 823 MTX_NOWITNESS | MTX_NOPROFILE); 824 for (i = witness_count - 1; i >= 0; i--) { 825 w = &w_data[i]; 826 memset(w, 0, sizeof(*w)); 827 w_data[i].w_index = i; /* Witness index never changes. */ 828 witness_free(w); 829 } 830 KASSERT(STAILQ_FIRST(&w_free)->w_index == 0, 831 ("%s: Invalid list of free witness objects", __func__)); 832 833 /* Witness with index 0 is not used to aid in debugging. */ 834 STAILQ_REMOVE_HEAD(&w_free, w_list); 835 w_free_cnt--; 836 837 for (i = 0; i < witness_count; i++) { 838 memset(w_rmatrix[i], 0, sizeof(*w_rmatrix[i]) * 839 (witness_count + 1)); 840 } 841 842 for (i = 0; i < LOCK_CHILDCOUNT; i++) 843 witness_lock_list_free(&w_locklistdata[i]); 844 witness_init_hash_tables(); 845 846 /* First add in all the specified order lists. */ 847 for (order = order_lists; order->w_name != NULL; order++) { 848 w = enroll(order->w_name, order->w_class); 849 if (w == NULL) 850 continue; 851 w->w_file = "order list"; 852 for (order++; order->w_name != NULL; order++) { 853 w1 = enroll(order->w_name, order->w_class); 854 if (w1 == NULL) 855 continue; 856 w1->w_file = "order list"; 857 itismychild(w, w1); 858 w = w1; 859 } 860 } 861 witness_spin_warn = 1; 862 863 /* Iterate through all locks and add them to witness. */ 864 for (i = 0; pending_locks[i].wh_lock != NULL; i++) { 865 lock = pending_locks[i].wh_lock; 866 KASSERT(lock->lo_flags & LO_WITNESS, 867 ("%s: lock %s is on pending list but not LO_WITNESS", 868 __func__, lock->lo_name)); 869 lock->lo_witness = enroll(pending_locks[i].wh_type, 870 LOCK_CLASS(lock)); 871 } 872 873 /* Mark the witness code as being ready for use. */ 874 witness_cold = 0; 875 876 mtx_lock(&Giant); 877 } 878 879 void 880 witness_init(struct lock_object *lock, const char *type) 881 { 882 struct lock_class *class; 883 884 /* Various sanity checks. */ 885 class = LOCK_CLASS(lock); 886 if ((lock->lo_flags & LO_RECURSABLE) != 0 && 887 (class->lc_flags & LC_RECURSABLE) == 0) 888 kassert_panic("%s: lock (%s) %s can not be recursable", 889 __func__, class->lc_name, lock->lo_name); 890 if ((lock->lo_flags & LO_SLEEPABLE) != 0 && 891 (class->lc_flags & LC_SLEEPABLE) == 0) 892 kassert_panic("%s: lock (%s) %s can not be sleepable", 893 __func__, class->lc_name, lock->lo_name); 894 if ((lock->lo_flags & LO_UPGRADABLE) != 0 && 895 (class->lc_flags & LC_UPGRADABLE) == 0) 896 kassert_panic("%s: lock (%s) %s can not be upgradable", 897 __func__, class->lc_name, lock->lo_name); 898 899 /* 900 * If we shouldn't watch this lock, then just clear lo_witness. 901 * Otherwise, if witness_cold is set, then it is too early to 902 * enroll this lock, so defer it to witness_initialize() by adding 903 * it to the pending_locks list. If it is not too early, then enroll 904 * the lock now. 905 */ 906 if (witness_watch < 1 || KERNEL_PANICKED() || 907 (lock->lo_flags & LO_WITNESS) == 0) 908 lock->lo_witness = NULL; 909 else if (witness_cold) { 910 pending_locks[pending_cnt].wh_lock = lock; 911 pending_locks[pending_cnt++].wh_type = type; 912 if (pending_cnt > WITNESS_PENDLIST) 913 panic("%s: pending locks list is too small, " 914 "increase WITNESS_PENDLIST\n", 915 __func__); 916 } else 917 lock->lo_witness = enroll(type, class); 918 } 919 920 void 921 witness_destroy(struct lock_object *lock) 922 { 923 struct lock_class *class; 924 struct witness *w; 925 926 class = LOCK_CLASS(lock); 927 928 if (witness_cold) 929 panic("lock (%s) %s destroyed while witness_cold", 930 class->lc_name, lock->lo_name); 931 932 /* XXX: need to verify that no one holds the lock */ 933 if ((lock->lo_flags & LO_WITNESS) == 0 || lock->lo_witness == NULL) 934 return; 935 w = lock->lo_witness; 936 937 mtx_lock_spin(&w_mtx); 938 MPASS(w->w_refcount > 0); 939 w->w_refcount--; 940 941 if (w->w_refcount == 0) 942 depart(w); 943 mtx_unlock_spin(&w_mtx); 944 } 945 946 #ifdef DDB 947 static void 948 witness_ddb_compute_levels(void) 949 { 950 struct witness *w; 951 952 /* 953 * First clear all levels. 954 */ 955 STAILQ_FOREACH(w, &w_all, w_list) 956 w->w_ddb_level = -1; 957 958 /* 959 * Look for locks with no parents and level all their descendants. 960 */ 961 STAILQ_FOREACH(w, &w_all, w_list) { 962 963 /* If the witness has ancestors (is not a root), skip it. */ 964 if (w->w_num_ancestors > 0) 965 continue; 966 witness_ddb_level_descendants(w, 0); 967 } 968 } 969 970 static void 971 witness_ddb_level_descendants(struct witness *w, int l) 972 { 973 int i; 974 975 if (w->w_ddb_level >= l) 976 return; 977 978 w->w_ddb_level = l; 979 l++; 980 981 for (i = 1; i <= w_max_used_index; i++) { 982 if (w_rmatrix[w->w_index][i] & WITNESS_PARENT) 983 witness_ddb_level_descendants(&w_data[i], l); 984 } 985 } 986 987 static void 988 witness_ddb_display_descendants(int(*prnt)(const char *fmt, ...), 989 struct witness *w, int indent) 990 { 991 int i; 992 993 for (i = 0; i < indent; i++) 994 prnt(" "); 995 prnt("%s (type: %s, depth: %d, active refs: %d)", 996 w->w_name, w->w_class->lc_name, 997 w->w_ddb_level, w->w_refcount); 998 if (w->w_displayed) { 999 prnt(" -- (already displayed)\n"); 1000 return; 1001 } 1002 w->w_displayed = 1; 1003 if (w->w_file != NULL && w->w_line != 0) 1004 prnt(" -- last acquired @ %s:%d\n", fixup_filename(w->w_file), 1005 w->w_line); 1006 else 1007 prnt(" -- never acquired\n"); 1008 indent++; 1009 WITNESS_INDEX_ASSERT(w->w_index); 1010 for (i = 1; i <= w_max_used_index; i++) { 1011 if (db_pager_quit) 1012 return; 1013 if (w_rmatrix[w->w_index][i] & WITNESS_PARENT) 1014 witness_ddb_display_descendants(prnt, &w_data[i], 1015 indent); 1016 } 1017 } 1018 1019 static void 1020 witness_ddb_display_list(int(*prnt)(const char *fmt, ...), 1021 struct witness_list *list) 1022 { 1023 struct witness *w; 1024 1025 STAILQ_FOREACH(w, list, w_typelist) { 1026 if (w->w_file == NULL || w->w_ddb_level > 0) 1027 continue; 1028 1029 /* This lock has no anscestors - display its descendants. */ 1030 witness_ddb_display_descendants(prnt, w, 0); 1031 if (db_pager_quit) 1032 return; 1033 } 1034 } 1035 1036 static void 1037 witness_ddb_display(int(*prnt)(const char *fmt, ...)) 1038 { 1039 struct witness *w; 1040 1041 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 1042 witness_ddb_compute_levels(); 1043 1044 /* Clear all the displayed flags. */ 1045 STAILQ_FOREACH(w, &w_all, w_list) 1046 w->w_displayed = 0; 1047 1048 /* 1049 * First, handle sleep locks which have been acquired at least 1050 * once. 1051 */ 1052 prnt("Sleep locks:\n"); 1053 witness_ddb_display_list(prnt, &w_sleep); 1054 if (db_pager_quit) 1055 return; 1056 1057 /* 1058 * Now do spin locks which have been acquired at least once. 1059 */ 1060 prnt("\nSpin locks:\n"); 1061 witness_ddb_display_list(prnt, &w_spin); 1062 if (db_pager_quit) 1063 return; 1064 1065 /* 1066 * Finally, any locks which have not been acquired yet. 1067 */ 1068 prnt("\nLocks which were never acquired:\n"); 1069 STAILQ_FOREACH(w, &w_all, w_list) { 1070 if (w->w_file != NULL || w->w_refcount == 0) 1071 continue; 1072 prnt("%s (type: %s, depth: %d)\n", w->w_name, 1073 w->w_class->lc_name, w->w_ddb_level); 1074 if (db_pager_quit) 1075 return; 1076 } 1077 } 1078 #endif /* DDB */ 1079 1080 int 1081 witness_defineorder(struct lock_object *lock1, struct lock_object *lock2) 1082 { 1083 1084 if (witness_watch == -1 || KERNEL_PANICKED()) 1085 return (0); 1086 1087 /* Require locks that witness knows about. */ 1088 if (lock1 == NULL || lock1->lo_witness == NULL || lock2 == NULL || 1089 lock2->lo_witness == NULL) 1090 return (EINVAL); 1091 1092 mtx_assert(&w_mtx, MA_NOTOWNED); 1093 mtx_lock_spin(&w_mtx); 1094 1095 /* 1096 * If we already have either an explicit or implied lock order that 1097 * is the other way around, then return an error. 1098 */ 1099 if (witness_watch && 1100 isitmydescendant(lock2->lo_witness, lock1->lo_witness)) { 1101 mtx_unlock_spin(&w_mtx); 1102 return (EDOOFUS); 1103 } 1104 1105 /* Try to add the new order. */ 1106 CTR3(KTR_WITNESS, "%s: adding %s as a child of %s", __func__, 1107 lock2->lo_witness->w_name, lock1->lo_witness->w_name); 1108 itismychild(lock1->lo_witness, lock2->lo_witness); 1109 mtx_unlock_spin(&w_mtx); 1110 return (0); 1111 } 1112 1113 void 1114 witness_checkorder(struct lock_object *lock, int flags, const char *file, 1115 int line, struct lock_object *interlock) 1116 { 1117 struct lock_list_entry *lock_list, *lle; 1118 struct lock_instance *lock1, *lock2, *plock; 1119 struct lock_class *class, *iclass; 1120 struct witness *w, *w1; 1121 struct thread *td; 1122 int i, j; 1123 1124 if (witness_cold || witness_watch < 1 || lock->lo_witness == NULL || 1125 KERNEL_PANICKED()) 1126 return; 1127 1128 w = lock->lo_witness; 1129 class = LOCK_CLASS(lock); 1130 td = curthread; 1131 1132 if (class->lc_flags & LC_SLEEPLOCK) { 1133 1134 /* 1135 * Since spin locks include a critical section, this check 1136 * implicitly enforces a lock order of all sleep locks before 1137 * all spin locks. 1138 */ 1139 if (td->td_critnest != 0 && !kdb_active) 1140 kassert_panic("acquiring blockable sleep lock with " 1141 "spinlock or critical section held (%s) %s @ %s:%d", 1142 class->lc_name, lock->lo_name, 1143 fixup_filename(file), line); 1144 1145 /* 1146 * If this is the first lock acquired then just return as 1147 * no order checking is needed. 1148 */ 1149 lock_list = td->td_sleeplocks; 1150 if (lock_list == NULL || lock_list->ll_count == 0) 1151 return; 1152 } else { 1153 1154 /* 1155 * If this is the first lock, just return as no order 1156 * checking is needed. Avoid problems with thread 1157 * migration pinning the thread while checking if 1158 * spinlocks are held. If at least one spinlock is held 1159 * the thread is in a safe path and it is allowed to 1160 * unpin it. 1161 */ 1162 sched_pin(); 1163 lock_list = PCPU_GET(spinlocks); 1164 if (lock_list == NULL || lock_list->ll_count == 0) { 1165 sched_unpin(); 1166 return; 1167 } 1168 sched_unpin(); 1169 } 1170 1171 /* 1172 * Check to see if we are recursing on a lock we already own. If 1173 * so, make sure that we don't mismatch exclusive and shared lock 1174 * acquires. 1175 */ 1176 lock1 = find_instance(lock_list, lock); 1177 if (lock1 != NULL) { 1178 if ((lock1->li_flags & LI_EXCLUSIVE) != 0 && 1179 (flags & LOP_EXCLUSIVE) == 0) { 1180 witness_output("shared lock of (%s) %s @ %s:%d\n", 1181 class->lc_name, lock->lo_name, 1182 fixup_filename(file), line); 1183 witness_output("while exclusively locked from %s:%d\n", 1184 fixup_filename(lock1->li_file), lock1->li_line); 1185 kassert_panic("excl->share"); 1186 } 1187 if ((lock1->li_flags & LI_EXCLUSIVE) == 0 && 1188 (flags & LOP_EXCLUSIVE) != 0) { 1189 witness_output("exclusive lock of (%s) %s @ %s:%d\n", 1190 class->lc_name, lock->lo_name, 1191 fixup_filename(file), line); 1192 witness_output("while share locked from %s:%d\n", 1193 fixup_filename(lock1->li_file), lock1->li_line); 1194 kassert_panic("share->excl"); 1195 } 1196 return; 1197 } 1198 1199 /* Warn if the interlock is not locked exactly once. */ 1200 if (interlock != NULL) { 1201 iclass = LOCK_CLASS(interlock); 1202 lock1 = find_instance(lock_list, interlock); 1203 if (lock1 == NULL) 1204 kassert_panic("interlock (%s) %s not locked @ %s:%d", 1205 iclass->lc_name, interlock->lo_name, 1206 fixup_filename(file), line); 1207 else if ((lock1->li_flags & LI_RECURSEMASK) != 0) 1208 kassert_panic("interlock (%s) %s recursed @ %s:%d", 1209 iclass->lc_name, interlock->lo_name, 1210 fixup_filename(file), line); 1211 } 1212 1213 /* 1214 * Find the previously acquired lock, but ignore interlocks. 1215 */ 1216 plock = &lock_list->ll_children[lock_list->ll_count - 1]; 1217 if (interlock != NULL && plock->li_lock == interlock) { 1218 if (lock_list->ll_count > 1) 1219 plock = 1220 &lock_list->ll_children[lock_list->ll_count - 2]; 1221 else { 1222 lle = lock_list->ll_next; 1223 1224 /* 1225 * The interlock is the only lock we hold, so 1226 * simply return. 1227 */ 1228 if (lle == NULL) 1229 return; 1230 plock = &lle->ll_children[lle->ll_count - 1]; 1231 } 1232 } 1233 1234 /* 1235 * Try to perform most checks without a lock. If this succeeds we 1236 * can skip acquiring the lock and return success. Otherwise we redo 1237 * the check with the lock held to handle races with concurrent updates. 1238 */ 1239 w1 = plock->li_lock->lo_witness; 1240 if (witness_lock_order_check(w1, w)) 1241 return; 1242 1243 mtx_lock_spin(&w_mtx); 1244 if (witness_lock_order_check(w1, w)) { 1245 mtx_unlock_spin(&w_mtx); 1246 return; 1247 } 1248 witness_lock_order_add(w1, w); 1249 1250 /* 1251 * Check for duplicate locks of the same type. Note that we only 1252 * have to check for this on the last lock we just acquired. Any 1253 * other cases will be caught as lock order violations. 1254 */ 1255 if (w1 == w) { 1256 i = w->w_index; 1257 if (!(lock->lo_flags & LO_DUPOK) && !(flags & LOP_DUPOK) && 1258 !(w_rmatrix[i][i] & WITNESS_REVERSAL)) { 1259 w_rmatrix[i][i] |= WITNESS_REVERSAL; 1260 w->w_reversed = 1; 1261 mtx_unlock_spin(&w_mtx); 1262 witness_output( 1263 "acquiring duplicate lock of same type: \"%s\"\n", 1264 w->w_name); 1265 witness_output(" 1st %s @ %s:%d\n", plock->li_lock->lo_name, 1266 fixup_filename(plock->li_file), plock->li_line); 1267 witness_output(" 2nd %s @ %s:%d\n", lock->lo_name, 1268 fixup_filename(file), line); 1269 witness_debugger(1, __func__); 1270 } else 1271 mtx_unlock_spin(&w_mtx); 1272 return; 1273 } 1274 mtx_assert(&w_mtx, MA_OWNED); 1275 1276 /* 1277 * If we know that the lock we are acquiring comes after 1278 * the lock we most recently acquired in the lock order tree, 1279 * then there is no need for any further checks. 1280 */ 1281 if (isitmychild(w1, w)) 1282 goto out; 1283 1284 for (j = 0, lle = lock_list; lle != NULL; lle = lle->ll_next) { 1285 for (i = lle->ll_count - 1; i >= 0; i--, j++) { 1286 struct stack pstack; 1287 bool pstackv, trace; 1288 1289 MPASS(j < LOCK_CHILDCOUNT * LOCK_NCHILDREN); 1290 lock1 = &lle->ll_children[i]; 1291 1292 /* 1293 * Ignore the interlock. 1294 */ 1295 if (interlock == lock1->li_lock) 1296 continue; 1297 1298 /* 1299 * If this lock doesn't undergo witness checking, 1300 * then skip it. 1301 */ 1302 w1 = lock1->li_lock->lo_witness; 1303 if (w1 == NULL) { 1304 KASSERT((lock1->li_lock->lo_flags & LO_WITNESS) == 0, 1305 ("lock missing witness structure")); 1306 continue; 1307 } 1308 1309 /* 1310 * If we are locking Giant and this is a sleepable 1311 * lock, then skip it. 1312 */ 1313 if ((lock1->li_flags & LI_SLEEPABLE) != 0 && 1314 lock == &Giant.lock_object) 1315 continue; 1316 1317 /* 1318 * If we are locking a sleepable lock and this lock 1319 * is Giant, then skip it. 1320 */ 1321 if ((lock->lo_flags & LO_SLEEPABLE) != 0 && 1322 (flags & LOP_NOSLEEP) == 0 && 1323 lock1->li_lock == &Giant.lock_object) 1324 continue; 1325 1326 /* 1327 * If we are locking a sleepable lock and this lock 1328 * isn't sleepable, we want to treat it as a lock 1329 * order violation to enfore a general lock order of 1330 * sleepable locks before non-sleepable locks. 1331 */ 1332 if ((lock->lo_flags & LO_SLEEPABLE) != 0 && 1333 (flags & LOP_NOSLEEP) == 0 && 1334 (lock1->li_flags & LI_SLEEPABLE) == 0) 1335 goto reversal; 1336 1337 /* 1338 * If we are locking Giant and this is a non-sleepable 1339 * lock, then treat it as a reversal. 1340 */ 1341 if ((lock1->li_flags & LI_SLEEPABLE) == 0 && 1342 lock == &Giant.lock_object) 1343 goto reversal; 1344 1345 /* 1346 * Check the lock order hierarchy for a reveresal. 1347 */ 1348 if (!isitmydescendant(w, w1)) 1349 continue; 1350 reversal: 1351 1352 /* 1353 * We have a lock order violation, check to see if it 1354 * is allowed or has already been yelled about. 1355 */ 1356 1357 /* Bail if this violation is known */ 1358 if (w_rmatrix[w1->w_index][w->w_index] & WITNESS_REVERSAL) 1359 goto out; 1360 1361 /* Record this as a violation */ 1362 w_rmatrix[w1->w_index][w->w_index] |= WITNESS_REVERSAL; 1363 w_rmatrix[w->w_index][w1->w_index] |= WITNESS_REVERSAL; 1364 w->w_reversed = w1->w_reversed = 1; 1365 witness_increment_graph_generation(); 1366 1367 /* 1368 * If the lock order is blessed, bail before logging 1369 * anything. We don't look for other lock order 1370 * violations though, which may be a bug. 1371 */ 1372 if (blessed(w, w1)) 1373 goto out; 1374 1375 trace = atomic_load_int(&witness_trace); 1376 if (trace) { 1377 struct witness_lock_order_data *data; 1378 1379 pstackv = false; 1380 data = witness_lock_order_get(w, w1); 1381 if (data != NULL) { 1382 stack_copy(&data->wlod_stack, 1383 &pstack); 1384 pstackv = true; 1385 } 1386 } 1387 mtx_unlock_spin(&w_mtx); 1388 1389 #ifdef WITNESS_NO_VNODE 1390 /* 1391 * There are known LORs between VNODE locks. They are 1392 * not an indication of a bug. VNODE locks are flagged 1393 * as such (LO_IS_VNODE) and we don't yell if the LOR 1394 * is between 2 VNODE locks. 1395 */ 1396 if ((lock->lo_flags & LO_IS_VNODE) != 0 && 1397 (lock1->li_lock->lo_flags & LO_IS_VNODE) != 0) 1398 return; 1399 #endif 1400 1401 /* 1402 * Ok, yell about it. 1403 */ 1404 if ((lock->lo_flags & LO_SLEEPABLE) != 0 && 1405 (flags & LOP_NOSLEEP) == 0 && 1406 (lock1->li_flags & LI_SLEEPABLE) == 0) 1407 witness_output( 1408 "lock order reversal: (sleepable after non-sleepable)\n"); 1409 else if ((lock1->li_flags & LI_SLEEPABLE) == 0 1410 && lock == &Giant.lock_object) 1411 witness_output( 1412 "lock order reversal: (Giant after non-sleepable)\n"); 1413 else 1414 witness_output("lock order reversal:\n"); 1415 1416 /* 1417 * Try to locate an earlier lock with 1418 * witness w in our list. 1419 */ 1420 do { 1421 lock2 = &lle->ll_children[i]; 1422 MPASS(lock2->li_lock != NULL); 1423 if (lock2->li_lock->lo_witness == w) 1424 break; 1425 if (i == 0 && lle->ll_next != NULL) { 1426 lle = lle->ll_next; 1427 i = lle->ll_count - 1; 1428 MPASS(i >= 0 && i < LOCK_NCHILDREN); 1429 } else 1430 i--; 1431 } while (i >= 0); 1432 if (i < 0) { 1433 witness_output(" 1st %p %s (%s, %s) @ %s:%d\n", 1434 lock1->li_lock, lock1->li_lock->lo_name, 1435 w1->w_name, w1->w_class->lc_name, 1436 fixup_filename(lock1->li_file), 1437 lock1->li_line); 1438 witness_output(" 2nd %p %s (%s, %s) @ %s:%d\n", 1439 lock, lock->lo_name, w->w_name, 1440 w->w_class->lc_name, fixup_filename(file), 1441 line); 1442 } else { 1443 struct witness *w2 = lock2->li_lock->lo_witness; 1444 1445 witness_output(" 1st %p %s (%s, %s) @ %s:%d\n", 1446 lock2->li_lock, lock2->li_lock->lo_name, 1447 w2->w_name, w2->w_class->lc_name, 1448 fixup_filename(lock2->li_file), 1449 lock2->li_line); 1450 witness_output(" 2nd %p %s (%s, %s) @ %s:%d\n", 1451 lock1->li_lock, lock1->li_lock->lo_name, 1452 w1->w_name, w1->w_class->lc_name, 1453 fixup_filename(lock1->li_file), 1454 lock1->li_line); 1455 witness_output(" 3rd %p %s (%s, %s) @ %s:%d\n", lock, 1456 lock->lo_name, w->w_name, 1457 w->w_class->lc_name, fixup_filename(file), 1458 line); 1459 } 1460 if (trace) { 1461 char buf[64]; 1462 struct sbuf sb; 1463 1464 sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN); 1465 sbuf_set_drain(&sb, witness_output_drain, 1466 NULL); 1467 1468 if (pstackv) { 1469 sbuf_printf(&sb, 1470 "lock order %s -> %s established at:\n", 1471 w->w_name, w1->w_name); 1472 stack_sbuf_print_flags(&sb, &pstack, 1473 M_NOWAIT, STACK_SBUF_FMT_LONG); 1474 } 1475 1476 sbuf_printf(&sb, 1477 "lock order %s -> %s attempted at:\n", 1478 w1->w_name, w->w_name); 1479 stack_save(&pstack); 1480 stack_sbuf_print_flags(&sb, &pstack, M_NOWAIT, 1481 STACK_SBUF_FMT_LONG); 1482 1483 sbuf_finish(&sb); 1484 sbuf_delete(&sb); 1485 } 1486 witness_enter_debugger(__func__); 1487 return; 1488 } 1489 } 1490 1491 /* 1492 * If requested, build a new lock order. However, don't build a new 1493 * relationship between a sleepable lock and Giant if it is in the 1494 * wrong direction. The correct lock order is that sleepable locks 1495 * always come before Giant. 1496 */ 1497 if (flags & LOP_NEWORDER && 1498 !(plock->li_lock == &Giant.lock_object && 1499 (lock->lo_flags & LO_SLEEPABLE) != 0 && 1500 (flags & LOP_NOSLEEP) == 0)) { 1501 CTR3(KTR_WITNESS, "%s: adding %s as a child of %s", __func__, 1502 w->w_name, plock->li_lock->lo_witness->w_name); 1503 itismychild(plock->li_lock->lo_witness, w); 1504 } 1505 out: 1506 mtx_unlock_spin(&w_mtx); 1507 } 1508 1509 void 1510 witness_lock(struct lock_object *lock, int flags, const char *file, int line) 1511 { 1512 struct lock_list_entry **lock_list, *lle; 1513 struct lock_instance *instance; 1514 struct witness *w; 1515 struct thread *td; 1516 1517 if (witness_cold || witness_watch == -1 || lock->lo_witness == NULL || 1518 KERNEL_PANICKED()) 1519 return; 1520 w = lock->lo_witness; 1521 td = curthread; 1522 1523 /* Determine lock list for this lock. */ 1524 if (LOCK_CLASS(lock)->lc_flags & LC_SLEEPLOCK) 1525 lock_list = &td->td_sleeplocks; 1526 else 1527 lock_list = PCPU_PTR(spinlocks); 1528 1529 /* Check to see if we are recursing on a lock we already own. */ 1530 instance = find_instance(*lock_list, lock); 1531 if (instance != NULL) { 1532 instance->li_flags++; 1533 CTR4(KTR_WITNESS, "%s: pid %d recursed on %s r=%d", __func__, 1534 td->td_proc->p_pid, lock->lo_name, 1535 instance->li_flags & LI_RECURSEMASK); 1536 instance->li_file = file; 1537 instance->li_line = line; 1538 return; 1539 } 1540 1541 /* Update per-witness last file and line acquire. */ 1542 w->w_file = file; 1543 w->w_line = line; 1544 1545 /* Find the next open lock instance in the list and fill it. */ 1546 lle = *lock_list; 1547 if (lle == NULL || lle->ll_count == LOCK_NCHILDREN) { 1548 lle = witness_lock_list_get(); 1549 if (lle == NULL) 1550 return; 1551 lle->ll_next = *lock_list; 1552 CTR3(KTR_WITNESS, "%s: pid %d added lle %p", __func__, 1553 td->td_proc->p_pid, lle); 1554 *lock_list = lle; 1555 } 1556 instance = &lle->ll_children[lle->ll_count++]; 1557 instance->li_lock = lock; 1558 instance->li_line = line; 1559 instance->li_file = file; 1560 instance->li_flags = 0; 1561 if ((flags & LOP_EXCLUSIVE) != 0) 1562 instance->li_flags |= LI_EXCLUSIVE; 1563 if ((lock->lo_flags & LO_SLEEPABLE) != 0 && (flags & LOP_NOSLEEP) == 0) 1564 instance->li_flags |= LI_SLEEPABLE; 1565 CTR4(KTR_WITNESS, "%s: pid %d added %s as lle[%d]", __func__, 1566 td->td_proc->p_pid, lock->lo_name, lle->ll_count - 1); 1567 } 1568 1569 void 1570 witness_upgrade(struct lock_object *lock, int flags, const char *file, int line) 1571 { 1572 struct lock_instance *instance; 1573 struct lock_class *class; 1574 1575 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 1576 if (lock->lo_witness == NULL || witness_watch == -1 || KERNEL_PANICKED()) 1577 return; 1578 class = LOCK_CLASS(lock); 1579 if (witness_watch) { 1580 if ((lock->lo_flags & LO_UPGRADABLE) == 0) 1581 kassert_panic( 1582 "upgrade of non-upgradable lock (%s) %s @ %s:%d", 1583 class->lc_name, lock->lo_name, 1584 fixup_filename(file), line); 1585 if ((class->lc_flags & LC_SLEEPLOCK) == 0) 1586 kassert_panic( 1587 "upgrade of non-sleep lock (%s) %s @ %s:%d", 1588 class->lc_name, lock->lo_name, 1589 fixup_filename(file), line); 1590 } 1591 instance = find_instance(curthread->td_sleeplocks, lock); 1592 if (instance == NULL) { 1593 kassert_panic("upgrade of unlocked lock (%s) %s @ %s:%d", 1594 class->lc_name, lock->lo_name, 1595 fixup_filename(file), line); 1596 return; 1597 } 1598 if (witness_watch) { 1599 if ((instance->li_flags & LI_EXCLUSIVE) != 0) 1600 kassert_panic( 1601 "upgrade of exclusive lock (%s) %s @ %s:%d", 1602 class->lc_name, lock->lo_name, 1603 fixup_filename(file), line); 1604 if ((instance->li_flags & LI_RECURSEMASK) != 0) 1605 kassert_panic( 1606 "upgrade of recursed lock (%s) %s r=%d @ %s:%d", 1607 class->lc_name, lock->lo_name, 1608 instance->li_flags & LI_RECURSEMASK, 1609 fixup_filename(file), line); 1610 } 1611 instance->li_flags |= LI_EXCLUSIVE; 1612 } 1613 1614 void 1615 witness_downgrade(struct lock_object *lock, int flags, const char *file, 1616 int line) 1617 { 1618 struct lock_instance *instance; 1619 struct lock_class *class; 1620 1621 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 1622 if (lock->lo_witness == NULL || witness_watch == -1 || KERNEL_PANICKED()) 1623 return; 1624 class = LOCK_CLASS(lock); 1625 if (witness_watch) { 1626 if ((lock->lo_flags & LO_UPGRADABLE) == 0) 1627 kassert_panic( 1628 "downgrade of non-upgradable lock (%s) %s @ %s:%d", 1629 class->lc_name, lock->lo_name, 1630 fixup_filename(file), line); 1631 if ((class->lc_flags & LC_SLEEPLOCK) == 0) 1632 kassert_panic( 1633 "downgrade of non-sleep lock (%s) %s @ %s:%d", 1634 class->lc_name, lock->lo_name, 1635 fixup_filename(file), line); 1636 } 1637 instance = find_instance(curthread->td_sleeplocks, lock); 1638 if (instance == NULL) { 1639 kassert_panic("downgrade of unlocked lock (%s) %s @ %s:%d", 1640 class->lc_name, lock->lo_name, 1641 fixup_filename(file), line); 1642 return; 1643 } 1644 if (witness_watch) { 1645 if ((instance->li_flags & LI_EXCLUSIVE) == 0) 1646 kassert_panic( 1647 "downgrade of shared lock (%s) %s @ %s:%d", 1648 class->lc_name, lock->lo_name, 1649 fixup_filename(file), line); 1650 if ((instance->li_flags & LI_RECURSEMASK) != 0) 1651 kassert_panic( 1652 "downgrade of recursed lock (%s) %s r=%d @ %s:%d", 1653 class->lc_name, lock->lo_name, 1654 instance->li_flags & LI_RECURSEMASK, 1655 fixup_filename(file), line); 1656 } 1657 instance->li_flags &= ~LI_EXCLUSIVE; 1658 } 1659 1660 void 1661 witness_unlock(struct lock_object *lock, int flags, const char *file, int line) 1662 { 1663 struct lock_list_entry **lock_list, *lle; 1664 struct lock_instance *instance; 1665 struct lock_class *class; 1666 struct thread *td; 1667 register_t s; 1668 int i, j; 1669 1670 if (witness_cold || lock->lo_witness == NULL || KERNEL_PANICKED()) 1671 return; 1672 td = curthread; 1673 class = LOCK_CLASS(lock); 1674 1675 /* Find lock instance associated with this lock. */ 1676 if (class->lc_flags & LC_SLEEPLOCK) 1677 lock_list = &td->td_sleeplocks; 1678 else 1679 lock_list = PCPU_PTR(spinlocks); 1680 lle = *lock_list; 1681 for (; *lock_list != NULL; lock_list = &(*lock_list)->ll_next) 1682 for (i = 0; i < (*lock_list)->ll_count; i++) { 1683 instance = &(*lock_list)->ll_children[i]; 1684 if (instance->li_lock == lock) 1685 goto found; 1686 } 1687 1688 /* 1689 * When disabling WITNESS through witness_watch we could end up in 1690 * having registered locks in the td_sleeplocks queue. 1691 * We have to make sure we flush these queues, so just search for 1692 * eventual register locks and remove them. 1693 */ 1694 if (witness_watch > 0) { 1695 kassert_panic("lock (%s) %s not locked @ %s:%d", class->lc_name, 1696 lock->lo_name, fixup_filename(file), line); 1697 return; 1698 } else { 1699 return; 1700 } 1701 found: 1702 1703 /* First, check for shared/exclusive mismatches. */ 1704 if ((instance->li_flags & LI_EXCLUSIVE) != 0 && witness_watch > 0 && 1705 (flags & LOP_EXCLUSIVE) == 0) { 1706 witness_output("shared unlock of (%s) %s @ %s:%d\n", 1707 class->lc_name, lock->lo_name, fixup_filename(file), line); 1708 witness_output("while exclusively locked from %s:%d\n", 1709 fixup_filename(instance->li_file), instance->li_line); 1710 kassert_panic("excl->ushare"); 1711 } 1712 if ((instance->li_flags & LI_EXCLUSIVE) == 0 && witness_watch > 0 && 1713 (flags & LOP_EXCLUSIVE) != 0) { 1714 witness_output("exclusive unlock of (%s) %s @ %s:%d\n", 1715 class->lc_name, lock->lo_name, fixup_filename(file), line); 1716 witness_output("while share locked from %s:%d\n", 1717 fixup_filename(instance->li_file), 1718 instance->li_line); 1719 kassert_panic("share->uexcl"); 1720 } 1721 /* If we are recursed, unrecurse. */ 1722 if ((instance->li_flags & LI_RECURSEMASK) > 0) { 1723 CTR4(KTR_WITNESS, "%s: pid %d unrecursed on %s r=%d", __func__, 1724 td->td_proc->p_pid, instance->li_lock->lo_name, 1725 instance->li_flags); 1726 instance->li_flags--; 1727 return; 1728 } 1729 /* The lock is now being dropped, check for NORELEASE flag */ 1730 if ((instance->li_flags & LI_NORELEASE) != 0 && witness_watch > 0) { 1731 witness_output("forbidden unlock of (%s) %s @ %s:%d\n", 1732 class->lc_name, lock->lo_name, fixup_filename(file), line); 1733 kassert_panic("lock marked norelease"); 1734 } 1735 1736 /* Otherwise, remove this item from the list. */ 1737 s = intr_disable(); 1738 CTR4(KTR_WITNESS, "%s: pid %d removed %s from lle[%d]", __func__, 1739 td->td_proc->p_pid, instance->li_lock->lo_name, 1740 (*lock_list)->ll_count - 1); 1741 for (j = i; j < (*lock_list)->ll_count - 1; j++) 1742 (*lock_list)->ll_children[j] = 1743 (*lock_list)->ll_children[j + 1]; 1744 (*lock_list)->ll_count--; 1745 intr_restore(s); 1746 1747 /* 1748 * In order to reduce contention on w_mtx, we want to keep always an 1749 * head object into lists so that frequent allocation from the 1750 * free witness pool (and subsequent locking) is avoided. 1751 * In order to maintain the current code simple, when the head 1752 * object is totally unloaded it means also that we do not have 1753 * further objects in the list, so the list ownership needs to be 1754 * hand over to another object if the current head needs to be freed. 1755 */ 1756 if ((*lock_list)->ll_count == 0) { 1757 if (*lock_list == lle) { 1758 if (lle->ll_next == NULL) 1759 return; 1760 } else 1761 lle = *lock_list; 1762 *lock_list = lle->ll_next; 1763 CTR3(KTR_WITNESS, "%s: pid %d removed lle %p", __func__, 1764 td->td_proc->p_pid, lle); 1765 witness_lock_list_free(lle); 1766 } 1767 } 1768 1769 void 1770 witness_thread_exit(struct thread *td) 1771 { 1772 struct lock_list_entry *lle; 1773 int i, n; 1774 1775 lle = td->td_sleeplocks; 1776 if (lle == NULL || KERNEL_PANICKED()) 1777 return; 1778 if (lle->ll_count != 0) { 1779 for (n = 0; lle != NULL; lle = lle->ll_next) 1780 for (i = lle->ll_count - 1; i >= 0; i--) { 1781 if (n == 0) 1782 witness_output( 1783 "Thread %p exiting with the following locks held:\n", td); 1784 n++; 1785 witness_list_lock(&lle->ll_children[i], 1786 witness_output); 1787 1788 } 1789 kassert_panic( 1790 "Thread %p cannot exit while holding sleeplocks\n", td); 1791 } 1792 witness_lock_list_free(lle); 1793 } 1794 1795 /* 1796 * Warn if any locks other than 'lock' are held. Flags can be passed in to 1797 * exempt Giant and sleepable locks from the checks as well. If any 1798 * non-exempt locks are held, then a supplied message is printed to the 1799 * output channel along with a list of the offending locks. If indicated in the 1800 * flags then a failure results in a panic as well. 1801 */ 1802 int 1803 witness_warn(int flags, struct lock_object *lock, const char *fmt, ...) 1804 { 1805 struct lock_list_entry *lock_list, *lle; 1806 struct lock_instance *lock1; 1807 struct thread *td; 1808 va_list ap; 1809 int i, n; 1810 1811 if (witness_cold || witness_watch < 1 || KERNEL_PANICKED()) 1812 return (0); 1813 n = 0; 1814 td = curthread; 1815 for (lle = td->td_sleeplocks; lle != NULL; lle = lle->ll_next) 1816 for (i = lle->ll_count - 1; i >= 0; i--) { 1817 lock1 = &lle->ll_children[i]; 1818 if (lock1->li_lock == lock) 1819 continue; 1820 if (flags & WARN_GIANTOK && 1821 lock1->li_lock == &Giant.lock_object) 1822 continue; 1823 if (flags & WARN_SLEEPOK && 1824 (lock1->li_flags & LI_SLEEPABLE) != 0) 1825 continue; 1826 if (n == 0) { 1827 va_start(ap, fmt); 1828 vprintf(fmt, ap); 1829 va_end(ap); 1830 printf(" with the following %slocks held:\n", 1831 (flags & WARN_SLEEPOK) != 0 ? 1832 "non-sleepable " : ""); 1833 } 1834 n++; 1835 witness_list_lock(lock1, printf); 1836 } 1837 1838 /* 1839 * Pin the thread in order to avoid problems with thread migration. 1840 * Once that all verifies are passed about spinlocks ownership, 1841 * the thread is in a safe path and it can be unpinned. 1842 */ 1843 sched_pin(); 1844 lock_list = PCPU_GET(spinlocks); 1845 if (lock_list != NULL && lock_list->ll_count != 0) { 1846 sched_unpin(); 1847 1848 /* 1849 * We should only have one spinlock and as long as 1850 * the flags cannot match for this locks class, 1851 * check if the first spinlock is the one curthread 1852 * should hold. 1853 */ 1854 lock1 = &lock_list->ll_children[lock_list->ll_count - 1]; 1855 if (lock_list->ll_count == 1 && lock_list->ll_next == NULL && 1856 lock1->li_lock == lock && n == 0) 1857 return (0); 1858 1859 va_start(ap, fmt); 1860 vprintf(fmt, ap); 1861 va_end(ap); 1862 printf(" with the following %slocks held:\n", 1863 (flags & WARN_SLEEPOK) != 0 ? "non-sleepable " : ""); 1864 n += witness_list_locks(&lock_list, printf); 1865 } else 1866 sched_unpin(); 1867 if (flags & WARN_PANIC && n) 1868 kassert_panic("%s", __func__); 1869 else 1870 witness_debugger(n, __func__); 1871 return (n); 1872 } 1873 1874 const char * 1875 witness_file(struct lock_object *lock) 1876 { 1877 struct witness *w; 1878 1879 if (witness_cold || witness_watch < 1 || lock->lo_witness == NULL) 1880 return ("?"); 1881 w = lock->lo_witness; 1882 return (w->w_file); 1883 } 1884 1885 int 1886 witness_line(struct lock_object *lock) 1887 { 1888 struct witness *w; 1889 1890 if (witness_cold || witness_watch < 1 || lock->lo_witness == NULL) 1891 return (0); 1892 w = lock->lo_witness; 1893 return (w->w_line); 1894 } 1895 1896 static struct witness * 1897 enroll(const char *description, struct lock_class *lock_class) 1898 { 1899 struct witness *w; 1900 1901 MPASS(description != NULL); 1902 1903 if (witness_watch == -1 || KERNEL_PANICKED()) 1904 return (NULL); 1905 if ((lock_class->lc_flags & LC_SPINLOCK)) { 1906 if (witness_skipspin) 1907 return (NULL); 1908 } else if ((lock_class->lc_flags & LC_SLEEPLOCK) == 0) { 1909 kassert_panic("lock class %s is not sleep or spin", 1910 lock_class->lc_name); 1911 return (NULL); 1912 } 1913 1914 mtx_lock_spin(&w_mtx); 1915 w = witness_hash_get(description); 1916 if (w) 1917 goto found; 1918 if ((w = witness_get()) == NULL) 1919 return (NULL); 1920 MPASS(strlen(description) < MAX_W_NAME); 1921 strcpy(w->w_name, description); 1922 w->w_class = lock_class; 1923 w->w_refcount = 1; 1924 STAILQ_INSERT_HEAD(&w_all, w, w_list); 1925 if (lock_class->lc_flags & LC_SPINLOCK) { 1926 STAILQ_INSERT_HEAD(&w_spin, w, w_typelist); 1927 w_spin_cnt++; 1928 } else if (lock_class->lc_flags & LC_SLEEPLOCK) { 1929 STAILQ_INSERT_HEAD(&w_sleep, w, w_typelist); 1930 w_sleep_cnt++; 1931 } 1932 1933 /* Insert new witness into the hash */ 1934 witness_hash_put(w); 1935 witness_increment_graph_generation(); 1936 mtx_unlock_spin(&w_mtx); 1937 return (w); 1938 found: 1939 w->w_refcount++; 1940 if (w->w_refcount == 1) 1941 w->w_class = lock_class; 1942 mtx_unlock_spin(&w_mtx); 1943 if (lock_class != w->w_class) 1944 kassert_panic( 1945 "lock (%s) %s does not match earlier (%s) lock", 1946 description, lock_class->lc_name, 1947 w->w_class->lc_name); 1948 return (w); 1949 } 1950 1951 static void 1952 depart(struct witness *w) 1953 { 1954 1955 MPASS(w->w_refcount == 0); 1956 if (w->w_class->lc_flags & LC_SLEEPLOCK) { 1957 w_sleep_cnt--; 1958 } else { 1959 w_spin_cnt--; 1960 } 1961 /* 1962 * Set file to NULL as it may point into a loadable module. 1963 */ 1964 w->w_file = NULL; 1965 w->w_line = 0; 1966 witness_increment_graph_generation(); 1967 } 1968 1969 static void 1970 adopt(struct witness *parent, struct witness *child) 1971 { 1972 int pi, ci, i, j; 1973 1974 if (witness_cold == 0) 1975 mtx_assert(&w_mtx, MA_OWNED); 1976 1977 /* If the relationship is already known, there's no work to be done. */ 1978 if (isitmychild(parent, child)) 1979 return; 1980 1981 /* When the structure of the graph changes, bump up the generation. */ 1982 witness_increment_graph_generation(); 1983 1984 /* 1985 * The hard part ... create the direct relationship, then propagate all 1986 * indirect relationships. 1987 */ 1988 pi = parent->w_index; 1989 ci = child->w_index; 1990 WITNESS_INDEX_ASSERT(pi); 1991 WITNESS_INDEX_ASSERT(ci); 1992 MPASS(pi != ci); 1993 w_rmatrix[pi][ci] |= WITNESS_PARENT; 1994 w_rmatrix[ci][pi] |= WITNESS_CHILD; 1995 1996 /* 1997 * If parent was not already an ancestor of child, 1998 * then we increment the descendant and ancestor counters. 1999 */ 2000 if ((w_rmatrix[pi][ci] & WITNESS_ANCESTOR) == 0) { 2001 parent->w_num_descendants++; 2002 child->w_num_ancestors++; 2003 } 2004 2005 /* 2006 * Find each ancestor of 'pi'. Note that 'pi' itself is counted as 2007 * an ancestor of 'pi' during this loop. 2008 */ 2009 for (i = 1; i <= w_max_used_index; i++) { 2010 if ((w_rmatrix[i][pi] & WITNESS_ANCESTOR_MASK) == 0 && 2011 (i != pi)) 2012 continue; 2013 2014 /* Find each descendant of 'i' and mark it as a descendant. */ 2015 for (j = 1; j <= w_max_used_index; j++) { 2016 2017 /* 2018 * Skip children that are already marked as 2019 * descendants of 'i'. 2020 */ 2021 if (w_rmatrix[i][j] & WITNESS_ANCESTOR_MASK) 2022 continue; 2023 2024 /* 2025 * We are only interested in descendants of 'ci'. Note 2026 * that 'ci' itself is counted as a descendant of 'ci'. 2027 */ 2028 if ((w_rmatrix[ci][j] & WITNESS_ANCESTOR_MASK) == 0 && 2029 (j != ci)) 2030 continue; 2031 w_rmatrix[i][j] |= WITNESS_ANCESTOR; 2032 w_rmatrix[j][i] |= WITNESS_DESCENDANT; 2033 w_data[i].w_num_descendants++; 2034 w_data[j].w_num_ancestors++; 2035 2036 /* 2037 * Make sure we aren't marking a node as both an 2038 * ancestor and descendant. We should have caught 2039 * this as a lock order reversal earlier. 2040 */ 2041 if ((w_rmatrix[i][j] & WITNESS_ANCESTOR_MASK) && 2042 (w_rmatrix[i][j] & WITNESS_DESCENDANT_MASK)) { 2043 printf("witness rmatrix paradox! [%d][%d]=%d " 2044 "both ancestor and descendant\n", 2045 i, j, w_rmatrix[i][j]); 2046 kdb_backtrace(); 2047 printf("Witness disabled.\n"); 2048 witness_watch = -1; 2049 } 2050 if ((w_rmatrix[j][i] & WITNESS_ANCESTOR_MASK) && 2051 (w_rmatrix[j][i] & WITNESS_DESCENDANT_MASK)) { 2052 printf("witness rmatrix paradox! [%d][%d]=%d " 2053 "both ancestor and descendant\n", 2054 j, i, w_rmatrix[j][i]); 2055 kdb_backtrace(); 2056 printf("Witness disabled.\n"); 2057 witness_watch = -1; 2058 } 2059 } 2060 } 2061 } 2062 2063 static void 2064 itismychild(struct witness *parent, struct witness *child) 2065 { 2066 int unlocked; 2067 2068 MPASS(child != NULL && parent != NULL); 2069 if (witness_cold == 0) 2070 mtx_assert(&w_mtx, MA_OWNED); 2071 2072 if (!witness_lock_type_equal(parent, child)) { 2073 if (witness_cold == 0) { 2074 unlocked = 1; 2075 mtx_unlock_spin(&w_mtx); 2076 } else { 2077 unlocked = 0; 2078 } 2079 kassert_panic( 2080 "%s: parent \"%s\" (%s) and child \"%s\" (%s) are not " 2081 "the same lock type", __func__, parent->w_name, 2082 parent->w_class->lc_name, child->w_name, 2083 child->w_class->lc_name); 2084 if (unlocked) 2085 mtx_lock_spin(&w_mtx); 2086 } 2087 adopt(parent, child); 2088 } 2089 2090 /* 2091 * Generic code for the isitmy*() functions. The rmask parameter is the 2092 * expected relationship of w1 to w2. 2093 */ 2094 static int 2095 _isitmyx(struct witness *w1, struct witness *w2, int rmask, const char *fname) 2096 { 2097 unsigned char r1, r2; 2098 int i1, i2; 2099 2100 i1 = w1->w_index; 2101 i2 = w2->w_index; 2102 WITNESS_INDEX_ASSERT(i1); 2103 WITNESS_INDEX_ASSERT(i2); 2104 r1 = w_rmatrix[i1][i2] & WITNESS_RELATED_MASK; 2105 r2 = w_rmatrix[i2][i1] & WITNESS_RELATED_MASK; 2106 2107 /* The flags on one better be the inverse of the flags on the other */ 2108 if (!((WITNESS_ATOD(r1) == r2 && WITNESS_DTOA(r2) == r1) || 2109 (WITNESS_DTOA(r1) == r2 && WITNESS_ATOD(r2) == r1))) { 2110 /* Don't squawk if we're potentially racing with an update. */ 2111 if (!mtx_owned(&w_mtx)) 2112 return (0); 2113 printf("%s: rmatrix mismatch between %s (index %d) and %s " 2114 "(index %d): w_rmatrix[%d][%d] == %hhx but " 2115 "w_rmatrix[%d][%d] == %hhx\n", 2116 fname, w1->w_name, i1, w2->w_name, i2, i1, i2, r1, 2117 i2, i1, r2); 2118 kdb_backtrace(); 2119 printf("Witness disabled.\n"); 2120 witness_watch = -1; 2121 } 2122 return (r1 & rmask); 2123 } 2124 2125 /* 2126 * Checks if @child is a direct child of @parent. 2127 */ 2128 static int 2129 isitmychild(struct witness *parent, struct witness *child) 2130 { 2131 2132 return (_isitmyx(parent, child, WITNESS_PARENT, __func__)); 2133 } 2134 2135 /* 2136 * Checks if @descendant is a direct or inderect descendant of @ancestor. 2137 */ 2138 static int 2139 isitmydescendant(struct witness *ancestor, struct witness *descendant) 2140 { 2141 2142 return (_isitmyx(ancestor, descendant, WITNESS_ANCESTOR_MASK, 2143 __func__)); 2144 } 2145 2146 static int 2147 blessed(struct witness *w1, struct witness *w2) 2148 { 2149 int i; 2150 struct witness_blessed *b; 2151 2152 for (i = 0; i < nitems(blessed_list); i++) { 2153 b = &blessed_list[i]; 2154 if (strcmp(w1->w_name, b->b_lock1) == 0) { 2155 if (strcmp(w2->w_name, b->b_lock2) == 0) 2156 return (1); 2157 continue; 2158 } 2159 if (strcmp(w1->w_name, b->b_lock2) == 0) 2160 if (strcmp(w2->w_name, b->b_lock1) == 0) 2161 return (1); 2162 } 2163 return (0); 2164 } 2165 2166 static struct witness * 2167 witness_get(void) 2168 { 2169 struct witness *w; 2170 int index; 2171 2172 if (witness_cold == 0) 2173 mtx_assert(&w_mtx, MA_OWNED); 2174 2175 if (witness_watch == -1) { 2176 mtx_unlock_spin(&w_mtx); 2177 return (NULL); 2178 } 2179 if (STAILQ_EMPTY(&w_free)) { 2180 witness_watch = -1; 2181 mtx_unlock_spin(&w_mtx); 2182 printf("WITNESS: unable to allocate a new witness object\n"); 2183 return (NULL); 2184 } 2185 w = STAILQ_FIRST(&w_free); 2186 STAILQ_REMOVE_HEAD(&w_free, w_list); 2187 w_free_cnt--; 2188 index = w->w_index; 2189 MPASS(index > 0 && index == w_max_used_index+1 && 2190 index < witness_count); 2191 bzero(w, sizeof(*w)); 2192 w->w_index = index; 2193 if (index > w_max_used_index) 2194 w_max_used_index = index; 2195 return (w); 2196 } 2197 2198 static void 2199 witness_free(struct witness *w) 2200 { 2201 2202 STAILQ_INSERT_HEAD(&w_free, w, w_list); 2203 w_free_cnt++; 2204 } 2205 2206 static struct lock_list_entry * 2207 witness_lock_list_get(void) 2208 { 2209 struct lock_list_entry *lle; 2210 2211 if (witness_watch == -1) 2212 return (NULL); 2213 mtx_lock_spin(&w_mtx); 2214 lle = w_lock_list_free; 2215 if (lle == NULL) { 2216 witness_watch = -1; 2217 mtx_unlock_spin(&w_mtx); 2218 printf("%s: witness exhausted\n", __func__); 2219 return (NULL); 2220 } 2221 w_lock_list_free = lle->ll_next; 2222 mtx_unlock_spin(&w_mtx); 2223 bzero(lle, sizeof(*lle)); 2224 return (lle); 2225 } 2226 2227 static void 2228 witness_lock_list_free(struct lock_list_entry *lle) 2229 { 2230 2231 mtx_lock_spin(&w_mtx); 2232 lle->ll_next = w_lock_list_free; 2233 w_lock_list_free = lle; 2234 mtx_unlock_spin(&w_mtx); 2235 } 2236 2237 static struct lock_instance * 2238 find_instance(struct lock_list_entry *list, const struct lock_object *lock) 2239 { 2240 struct lock_list_entry *lle; 2241 struct lock_instance *instance; 2242 int i; 2243 2244 for (lle = list; lle != NULL; lle = lle->ll_next) 2245 for (i = lle->ll_count - 1; i >= 0; i--) { 2246 instance = &lle->ll_children[i]; 2247 if (instance->li_lock == lock) 2248 return (instance); 2249 } 2250 return (NULL); 2251 } 2252 2253 static void 2254 witness_list_lock(struct lock_instance *instance, 2255 int (*prnt)(const char *fmt, ...)) 2256 { 2257 struct lock_object *lock; 2258 2259 lock = instance->li_lock; 2260 prnt("%s %s %s", (instance->li_flags & LI_EXCLUSIVE) != 0 ? 2261 "exclusive" : "shared", LOCK_CLASS(lock)->lc_name, lock->lo_name); 2262 if (lock->lo_witness->w_name != lock->lo_name) 2263 prnt(" (%s)", lock->lo_witness->w_name); 2264 prnt(" r = %d (%p) locked @ %s:%d\n", 2265 instance->li_flags & LI_RECURSEMASK, lock, 2266 fixup_filename(instance->li_file), instance->li_line); 2267 } 2268 2269 static int 2270 witness_output(const char *fmt, ...) 2271 { 2272 va_list ap; 2273 int ret; 2274 2275 va_start(ap, fmt); 2276 ret = witness_voutput(fmt, ap); 2277 va_end(ap); 2278 return (ret); 2279 } 2280 2281 static int 2282 witness_voutput(const char *fmt, va_list ap) 2283 { 2284 int ret; 2285 2286 ret = 0; 2287 switch (witness_channel) { 2288 case WITNESS_CONSOLE: 2289 ret = vprintf(fmt, ap); 2290 break; 2291 case WITNESS_LOG: 2292 vlog(LOG_NOTICE, fmt, ap); 2293 break; 2294 case WITNESS_NONE: 2295 break; 2296 } 2297 return (ret); 2298 } 2299 2300 #ifdef DDB 2301 static int 2302 witness_thread_has_locks(struct thread *td) 2303 { 2304 2305 if (td->td_sleeplocks == NULL) 2306 return (0); 2307 return (td->td_sleeplocks->ll_count != 0); 2308 } 2309 2310 static int 2311 witness_proc_has_locks(struct proc *p) 2312 { 2313 struct thread *td; 2314 2315 FOREACH_THREAD_IN_PROC(p, td) { 2316 if (witness_thread_has_locks(td)) 2317 return (1); 2318 } 2319 return (0); 2320 } 2321 #endif 2322 2323 int 2324 witness_list_locks(struct lock_list_entry **lock_list, 2325 int (*prnt)(const char *fmt, ...)) 2326 { 2327 struct lock_list_entry *lle; 2328 int i, nheld; 2329 2330 nheld = 0; 2331 for (lle = *lock_list; lle != NULL; lle = lle->ll_next) 2332 for (i = lle->ll_count - 1; i >= 0; i--) { 2333 witness_list_lock(&lle->ll_children[i], prnt); 2334 nheld++; 2335 } 2336 return (nheld); 2337 } 2338 2339 /* 2340 * This is a bit risky at best. We call this function when we have timed 2341 * out acquiring a spin lock, and we assume that the other CPU is stuck 2342 * with this lock held. So, we go groveling around in the other CPU's 2343 * per-cpu data to try to find the lock instance for this spin lock to 2344 * see when it was last acquired. 2345 */ 2346 void 2347 witness_display_spinlock(struct lock_object *lock, struct thread *owner, 2348 int (*prnt)(const char *fmt, ...)) 2349 { 2350 struct lock_instance *instance; 2351 struct pcpu *pc; 2352 2353 if (owner->td_critnest == 0 || owner->td_oncpu == NOCPU) 2354 return; 2355 pc = pcpu_find(owner->td_oncpu); 2356 instance = find_instance(pc->pc_spinlocks, lock); 2357 if (instance != NULL) 2358 witness_list_lock(instance, prnt); 2359 } 2360 2361 void 2362 witness_save(struct lock_object *lock, const char **filep, int *linep) 2363 { 2364 struct lock_list_entry *lock_list; 2365 struct lock_instance *instance; 2366 struct lock_class *class; 2367 2368 /* 2369 * This function is used independently in locking code to deal with 2370 * Giant, SCHEDULER_STOPPED() check can be removed here after Giant 2371 * is gone. 2372 */ 2373 if (SCHEDULER_STOPPED()) 2374 return; 2375 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 2376 if (lock->lo_witness == NULL || witness_watch == -1 || KERNEL_PANICKED()) 2377 return; 2378 class = LOCK_CLASS(lock); 2379 if (class->lc_flags & LC_SLEEPLOCK) 2380 lock_list = curthread->td_sleeplocks; 2381 else { 2382 if (witness_skipspin) 2383 return; 2384 lock_list = PCPU_GET(spinlocks); 2385 } 2386 instance = find_instance(lock_list, lock); 2387 if (instance == NULL) { 2388 kassert_panic("%s: lock (%s) %s not locked", __func__, 2389 class->lc_name, lock->lo_name); 2390 return; 2391 } 2392 *filep = instance->li_file; 2393 *linep = instance->li_line; 2394 } 2395 2396 void 2397 witness_restore(struct lock_object *lock, const char *file, int line) 2398 { 2399 struct lock_list_entry *lock_list; 2400 struct lock_instance *instance; 2401 struct lock_class *class; 2402 2403 /* 2404 * This function is used independently in locking code to deal with 2405 * Giant, SCHEDULER_STOPPED() check can be removed here after Giant 2406 * is gone. 2407 */ 2408 if (SCHEDULER_STOPPED()) 2409 return; 2410 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 2411 if (lock->lo_witness == NULL || witness_watch == -1 || KERNEL_PANICKED()) 2412 return; 2413 class = LOCK_CLASS(lock); 2414 if (class->lc_flags & LC_SLEEPLOCK) 2415 lock_list = curthread->td_sleeplocks; 2416 else { 2417 if (witness_skipspin) 2418 return; 2419 lock_list = PCPU_GET(spinlocks); 2420 } 2421 instance = find_instance(lock_list, lock); 2422 if (instance == NULL) 2423 kassert_panic("%s: lock (%s) %s not locked", __func__, 2424 class->lc_name, lock->lo_name); 2425 lock->lo_witness->w_file = file; 2426 lock->lo_witness->w_line = line; 2427 if (instance == NULL) 2428 return; 2429 instance->li_file = file; 2430 instance->li_line = line; 2431 } 2432 2433 void 2434 witness_assert(const struct lock_object *lock, int flags, const char *file, 2435 int line) 2436 { 2437 #ifdef INVARIANT_SUPPORT 2438 struct lock_instance *instance; 2439 struct lock_class *class; 2440 2441 if (lock->lo_witness == NULL || witness_watch < 1 || KERNEL_PANICKED()) 2442 return; 2443 class = LOCK_CLASS(lock); 2444 if ((class->lc_flags & LC_SLEEPLOCK) != 0) 2445 instance = find_instance(curthread->td_sleeplocks, lock); 2446 else if ((class->lc_flags & LC_SPINLOCK) != 0) 2447 instance = find_instance(PCPU_GET(spinlocks), lock); 2448 else { 2449 kassert_panic("Lock (%s) %s is not sleep or spin!", 2450 class->lc_name, lock->lo_name); 2451 return; 2452 } 2453 switch (flags) { 2454 case LA_UNLOCKED: 2455 if (instance != NULL) 2456 kassert_panic("Lock (%s) %s locked @ %s:%d.", 2457 class->lc_name, lock->lo_name, 2458 fixup_filename(file), line); 2459 break; 2460 case LA_LOCKED: 2461 case LA_LOCKED | LA_RECURSED: 2462 case LA_LOCKED | LA_NOTRECURSED: 2463 case LA_SLOCKED: 2464 case LA_SLOCKED | LA_RECURSED: 2465 case LA_SLOCKED | LA_NOTRECURSED: 2466 case LA_XLOCKED: 2467 case LA_XLOCKED | LA_RECURSED: 2468 case LA_XLOCKED | LA_NOTRECURSED: 2469 if (instance == NULL) { 2470 kassert_panic("Lock (%s) %s not locked @ %s:%d.", 2471 class->lc_name, lock->lo_name, 2472 fixup_filename(file), line); 2473 break; 2474 } 2475 if ((flags & LA_XLOCKED) != 0 && 2476 (instance->li_flags & LI_EXCLUSIVE) == 0) 2477 kassert_panic( 2478 "Lock (%s) %s not exclusively locked @ %s:%d.", 2479 class->lc_name, lock->lo_name, 2480 fixup_filename(file), line); 2481 if ((flags & LA_SLOCKED) != 0 && 2482 (instance->li_flags & LI_EXCLUSIVE) != 0) 2483 kassert_panic( 2484 "Lock (%s) %s exclusively locked @ %s:%d.", 2485 class->lc_name, lock->lo_name, 2486 fixup_filename(file), line); 2487 if ((flags & LA_RECURSED) != 0 && 2488 (instance->li_flags & LI_RECURSEMASK) == 0) 2489 kassert_panic("Lock (%s) %s not recursed @ %s:%d.", 2490 class->lc_name, lock->lo_name, 2491 fixup_filename(file), line); 2492 if ((flags & LA_NOTRECURSED) != 0 && 2493 (instance->li_flags & LI_RECURSEMASK) != 0) 2494 kassert_panic("Lock (%s) %s recursed @ %s:%d.", 2495 class->lc_name, lock->lo_name, 2496 fixup_filename(file), line); 2497 break; 2498 default: 2499 kassert_panic("Invalid lock assertion at %s:%d.", 2500 fixup_filename(file), line); 2501 2502 } 2503 #endif /* INVARIANT_SUPPORT */ 2504 } 2505 2506 static void 2507 witness_setflag(struct lock_object *lock, int flag, int set) 2508 { 2509 struct lock_list_entry *lock_list; 2510 struct lock_instance *instance; 2511 struct lock_class *class; 2512 2513 if (lock->lo_witness == NULL || witness_watch == -1 || KERNEL_PANICKED()) 2514 return; 2515 class = LOCK_CLASS(lock); 2516 if (class->lc_flags & LC_SLEEPLOCK) 2517 lock_list = curthread->td_sleeplocks; 2518 else { 2519 if (witness_skipspin) 2520 return; 2521 lock_list = PCPU_GET(spinlocks); 2522 } 2523 instance = find_instance(lock_list, lock); 2524 if (instance == NULL) { 2525 kassert_panic("%s: lock (%s) %s not locked", __func__, 2526 class->lc_name, lock->lo_name); 2527 return; 2528 } 2529 2530 if (set) 2531 instance->li_flags |= flag; 2532 else 2533 instance->li_flags &= ~flag; 2534 } 2535 2536 void 2537 witness_norelease(struct lock_object *lock) 2538 { 2539 2540 witness_setflag(lock, LI_NORELEASE, 1); 2541 } 2542 2543 void 2544 witness_releaseok(struct lock_object *lock) 2545 { 2546 2547 witness_setflag(lock, LI_NORELEASE, 0); 2548 } 2549 2550 #ifdef DDB 2551 static void 2552 witness_ddb_list(struct thread *td) 2553 { 2554 2555 KASSERT(witness_cold == 0, ("%s: witness_cold", __func__)); 2556 KASSERT(kdb_active, ("%s: not in the debugger", __func__)); 2557 2558 if (witness_watch < 1) 2559 return; 2560 2561 witness_list_locks(&td->td_sleeplocks, db_printf); 2562 2563 /* 2564 * We only handle spinlocks if td == curthread. This is somewhat broken 2565 * if td is currently executing on some other CPU and holds spin locks 2566 * as we won't display those locks. If we had a MI way of getting 2567 * the per-cpu data for a given cpu then we could use 2568 * td->td_oncpu to get the list of spinlocks for this thread 2569 * and "fix" this. 2570 * 2571 * That still wouldn't really fix this unless we locked the scheduler 2572 * lock or stopped the other CPU to make sure it wasn't changing the 2573 * list out from under us. It is probably best to just not try to 2574 * handle threads on other CPU's for now. 2575 */ 2576 if (td == curthread && PCPU_GET(spinlocks) != NULL) 2577 witness_list_locks(PCPU_PTR(spinlocks), db_printf); 2578 } 2579 2580 DB_SHOW_COMMAND(locks, db_witness_list) 2581 { 2582 struct thread *td; 2583 2584 if (have_addr) 2585 td = db_lookup_thread(addr, true); 2586 else 2587 td = kdb_thread; 2588 witness_ddb_list(td); 2589 } 2590 2591 DB_SHOW_ALL_COMMAND(locks, db_witness_list_all) 2592 { 2593 struct thread *td; 2594 struct proc *p; 2595 2596 /* 2597 * It would be nice to list only threads and processes that actually 2598 * held sleep locks, but that information is currently not exported 2599 * by WITNESS. 2600 */ 2601 FOREACH_PROC_IN_SYSTEM(p) { 2602 if (!witness_proc_has_locks(p)) 2603 continue; 2604 FOREACH_THREAD_IN_PROC(p, td) { 2605 if (!witness_thread_has_locks(td)) 2606 continue; 2607 db_printf("Process %d (%s) thread %p (%d)\n", p->p_pid, 2608 p->p_comm, td, td->td_tid); 2609 witness_ddb_list(td); 2610 if (db_pager_quit) 2611 return; 2612 } 2613 } 2614 } 2615 DB_SHOW_ALIAS(alllocks, db_witness_list_all) 2616 2617 DB_SHOW_COMMAND(witness, db_witness_display) 2618 { 2619 2620 witness_ddb_display(db_printf); 2621 } 2622 #endif 2623 2624 static void 2625 sbuf_print_witness_badstacks(struct sbuf *sb, size_t *oldidx) 2626 { 2627 struct witness_lock_order_data *data1, *data2, *tmp_data1, *tmp_data2; 2628 struct witness *tmp_w1, *tmp_w2, *w1, *w2; 2629 int generation, i, j; 2630 2631 tmp_data1 = NULL; 2632 tmp_data2 = NULL; 2633 tmp_w1 = NULL; 2634 tmp_w2 = NULL; 2635 2636 /* Allocate and init temporary storage space. */ 2637 tmp_w1 = malloc(sizeof(struct witness), M_TEMP, M_WAITOK | M_ZERO); 2638 tmp_w2 = malloc(sizeof(struct witness), M_TEMP, M_WAITOK | M_ZERO); 2639 tmp_data1 = malloc(sizeof(struct witness_lock_order_data), M_TEMP, 2640 M_WAITOK | M_ZERO); 2641 tmp_data2 = malloc(sizeof(struct witness_lock_order_data), M_TEMP, 2642 M_WAITOK | M_ZERO); 2643 stack_zero(&tmp_data1->wlod_stack); 2644 stack_zero(&tmp_data2->wlod_stack); 2645 2646 restart: 2647 mtx_lock_spin(&w_mtx); 2648 generation = w_generation; 2649 mtx_unlock_spin(&w_mtx); 2650 sbuf_printf(sb, "Number of known direct relationships is %d\n", 2651 w_lohash.wloh_count); 2652 for (i = 1; i < w_max_used_index; i++) { 2653 mtx_lock_spin(&w_mtx); 2654 if (generation != w_generation) { 2655 mtx_unlock_spin(&w_mtx); 2656 2657 /* The graph has changed, try again. */ 2658 *oldidx = 0; 2659 sbuf_clear(sb); 2660 goto restart; 2661 } 2662 2663 w1 = &w_data[i]; 2664 if (w1->w_reversed == 0) { 2665 mtx_unlock_spin(&w_mtx); 2666 continue; 2667 } 2668 2669 /* Copy w1 locally so we can release the spin lock. */ 2670 *tmp_w1 = *w1; 2671 mtx_unlock_spin(&w_mtx); 2672 2673 if (tmp_w1->w_reversed == 0) 2674 continue; 2675 for (j = 1; j < w_max_used_index; j++) { 2676 if ((w_rmatrix[i][j] & WITNESS_REVERSAL) == 0 || i > j) 2677 continue; 2678 2679 mtx_lock_spin(&w_mtx); 2680 if (generation != w_generation) { 2681 mtx_unlock_spin(&w_mtx); 2682 2683 /* The graph has changed, try again. */ 2684 *oldidx = 0; 2685 sbuf_clear(sb); 2686 goto restart; 2687 } 2688 2689 w2 = &w_data[j]; 2690 data1 = witness_lock_order_get(w1, w2); 2691 data2 = witness_lock_order_get(w2, w1); 2692 2693 /* 2694 * Copy information locally so we can release the 2695 * spin lock. 2696 */ 2697 *tmp_w2 = *w2; 2698 2699 if (data1) { 2700 stack_zero(&tmp_data1->wlod_stack); 2701 stack_copy(&data1->wlod_stack, 2702 &tmp_data1->wlod_stack); 2703 } 2704 if (data2 && data2 != data1) { 2705 stack_zero(&tmp_data2->wlod_stack); 2706 stack_copy(&data2->wlod_stack, 2707 &tmp_data2->wlod_stack); 2708 } 2709 mtx_unlock_spin(&w_mtx); 2710 2711 if (blessed(tmp_w1, tmp_w2)) 2712 continue; 2713 2714 sbuf_printf(sb, 2715 "\nLock order reversal between \"%s\"(%s) and \"%s\"(%s)!\n", 2716 tmp_w1->w_name, tmp_w1->w_class->lc_name, 2717 tmp_w2->w_name, tmp_w2->w_class->lc_name); 2718 if (data1) { 2719 sbuf_printf(sb, 2720 "Lock order \"%s\"(%s) -> \"%s\"(%s) first seen at:\n", 2721 tmp_w1->w_name, tmp_w1->w_class->lc_name, 2722 tmp_w2->w_name, tmp_w2->w_class->lc_name); 2723 stack_sbuf_print(sb, &tmp_data1->wlod_stack); 2724 sbuf_printf(sb, "\n"); 2725 } 2726 if (data2 && data2 != data1) { 2727 sbuf_printf(sb, 2728 "Lock order \"%s\"(%s) -> \"%s\"(%s) first seen at:\n", 2729 tmp_w2->w_name, tmp_w2->w_class->lc_name, 2730 tmp_w1->w_name, tmp_w1->w_class->lc_name); 2731 stack_sbuf_print(sb, &tmp_data2->wlod_stack); 2732 sbuf_printf(sb, "\n"); 2733 } 2734 } 2735 } 2736 mtx_lock_spin(&w_mtx); 2737 if (generation != w_generation) { 2738 mtx_unlock_spin(&w_mtx); 2739 2740 /* 2741 * The graph changed while we were printing stack data, 2742 * try again. 2743 */ 2744 *oldidx = 0; 2745 sbuf_clear(sb); 2746 goto restart; 2747 } 2748 mtx_unlock_spin(&w_mtx); 2749 2750 /* Free temporary storage space. */ 2751 free(tmp_data1, M_TEMP); 2752 free(tmp_data2, M_TEMP); 2753 free(tmp_w1, M_TEMP); 2754 free(tmp_w2, M_TEMP); 2755 } 2756 2757 static int 2758 sysctl_debug_witness_badstacks(SYSCTL_HANDLER_ARGS) 2759 { 2760 struct sbuf *sb; 2761 int error; 2762 2763 if (witness_watch < 1) { 2764 error = SYSCTL_OUT(req, w_notrunning, sizeof(w_notrunning)); 2765 return (error); 2766 } 2767 if (witness_cold) { 2768 error = SYSCTL_OUT(req, w_stillcold, sizeof(w_stillcold)); 2769 return (error); 2770 } 2771 error = 0; 2772 sb = sbuf_new(NULL, NULL, badstack_sbuf_size, SBUF_AUTOEXTEND); 2773 if (sb == NULL) 2774 return (ENOMEM); 2775 2776 sbuf_print_witness_badstacks(sb, &req->oldidx); 2777 2778 sbuf_finish(sb); 2779 error = SYSCTL_OUT(req, sbuf_data(sb), sbuf_len(sb) + 1); 2780 sbuf_delete(sb); 2781 2782 return (error); 2783 } 2784 2785 #ifdef DDB 2786 static int 2787 sbuf_db_printf_drain(void *arg __unused, const char *data, int len) 2788 { 2789 2790 return (db_printf("%.*s", len, data)); 2791 } 2792 2793 DB_SHOW_COMMAND(badstacks, db_witness_badstacks) 2794 { 2795 struct sbuf sb; 2796 char buffer[128]; 2797 size_t dummy; 2798 2799 sbuf_new(&sb, buffer, sizeof(buffer), SBUF_FIXEDLEN); 2800 sbuf_set_drain(&sb, sbuf_db_printf_drain, NULL); 2801 sbuf_print_witness_badstacks(&sb, &dummy); 2802 sbuf_finish(&sb); 2803 } 2804 #endif 2805 2806 static int 2807 sysctl_debug_witness_channel(SYSCTL_HANDLER_ARGS) 2808 { 2809 static const struct { 2810 enum witness_channel channel; 2811 const char *name; 2812 } channels[] = { 2813 { WITNESS_CONSOLE, "console" }, 2814 { WITNESS_LOG, "log" }, 2815 { WITNESS_NONE, "none" }, 2816 }; 2817 char buf[16]; 2818 u_int i; 2819 int error; 2820 2821 buf[0] = '\0'; 2822 for (i = 0; i < nitems(channels); i++) 2823 if (witness_channel == channels[i].channel) { 2824 snprintf(buf, sizeof(buf), "%s", channels[i].name); 2825 break; 2826 } 2827 2828 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 2829 if (error != 0 || req->newptr == NULL) 2830 return (error); 2831 2832 error = EINVAL; 2833 for (i = 0; i < nitems(channels); i++) 2834 if (strcmp(channels[i].name, buf) == 0) { 2835 witness_channel = channels[i].channel; 2836 error = 0; 2837 break; 2838 } 2839 return (error); 2840 } 2841 2842 static int 2843 sysctl_debug_witness_fullgraph(SYSCTL_HANDLER_ARGS) 2844 { 2845 struct witness *w; 2846 struct sbuf *sb; 2847 int error; 2848 2849 #ifdef __i386__ 2850 error = SYSCTL_OUT(req, w_notallowed, sizeof(w_notallowed)); 2851 return (error); 2852 #endif 2853 2854 if (witness_watch < 1) { 2855 error = SYSCTL_OUT(req, w_notrunning, sizeof(w_notrunning)); 2856 return (error); 2857 } 2858 if (witness_cold) { 2859 error = SYSCTL_OUT(req, w_stillcold, sizeof(w_stillcold)); 2860 return (error); 2861 } 2862 error = 0; 2863 2864 error = sysctl_wire_old_buffer(req, 0); 2865 if (error != 0) 2866 return (error); 2867 sb = sbuf_new_for_sysctl(NULL, NULL, FULLGRAPH_SBUF_SIZE, req); 2868 if (sb == NULL) 2869 return (ENOMEM); 2870 sbuf_printf(sb, "\n"); 2871 2872 mtx_lock_spin(&w_mtx); 2873 STAILQ_FOREACH(w, &w_all, w_list) 2874 w->w_displayed = 0; 2875 STAILQ_FOREACH(w, &w_all, w_list) 2876 witness_add_fullgraph(sb, w); 2877 mtx_unlock_spin(&w_mtx); 2878 2879 /* 2880 * Close the sbuf and return to userland. 2881 */ 2882 error = sbuf_finish(sb); 2883 sbuf_delete(sb); 2884 2885 return (error); 2886 } 2887 2888 static int 2889 sysctl_debug_witness_watch(SYSCTL_HANDLER_ARGS) 2890 { 2891 int error, value; 2892 2893 value = witness_watch; 2894 error = sysctl_handle_int(oidp, &value, 0, req); 2895 if (error != 0 || req->newptr == NULL) 2896 return (error); 2897 if (value > 1 || value < -1 || 2898 (witness_watch == -1 && value != witness_watch)) 2899 return (EINVAL); 2900 witness_watch = value; 2901 return (0); 2902 } 2903 2904 static void 2905 witness_add_fullgraph(struct sbuf *sb, struct witness *w) 2906 { 2907 int i; 2908 2909 if (w->w_displayed != 0 || (w->w_file == NULL && w->w_line == 0)) 2910 return; 2911 w->w_displayed = 1; 2912 2913 WITNESS_INDEX_ASSERT(w->w_index); 2914 for (i = 1; i <= w_max_used_index; i++) { 2915 if (w_rmatrix[w->w_index][i] & WITNESS_PARENT) { 2916 sbuf_printf(sb, "\"%s\",\"%s\"\n", w->w_name, 2917 w_data[i].w_name); 2918 witness_add_fullgraph(sb, &w_data[i]); 2919 } 2920 } 2921 } 2922 2923 /* 2924 * A simple hash function. Takes a key pointer and a key size. If size == 0, 2925 * interprets the key as a string and reads until the null 2926 * terminator. Otherwise, reads the first size bytes. Returns an unsigned 32-bit 2927 * hash value computed from the key. 2928 */ 2929 static uint32_t 2930 witness_hash_djb2(const uint8_t *key, uint32_t size) 2931 { 2932 unsigned int hash = 5381; 2933 int i; 2934 2935 /* hash = hash * 33 + key[i] */ 2936 if (size) 2937 for (i = 0; i < size; i++) 2938 hash = ((hash << 5) + hash) + (unsigned int)key[i]; 2939 else 2940 for (i = 0; key[i] != 0; i++) 2941 hash = ((hash << 5) + hash) + (unsigned int)key[i]; 2942 2943 return (hash); 2944 } 2945 2946 /* 2947 * Initializes the two witness hash tables. Called exactly once from 2948 * witness_initialize(). 2949 */ 2950 static void 2951 witness_init_hash_tables(void) 2952 { 2953 int i; 2954 2955 MPASS(witness_cold); 2956 2957 /* Initialize the hash tables. */ 2958 for (i = 0; i < WITNESS_HASH_SIZE; i++) 2959 w_hash.wh_array[i] = NULL; 2960 2961 w_hash.wh_size = WITNESS_HASH_SIZE; 2962 w_hash.wh_count = 0; 2963 2964 /* Initialize the lock order data hash. */ 2965 w_lofree = NULL; 2966 for (i = 0; i < WITNESS_LO_DATA_COUNT; i++) { 2967 memset(&w_lodata[i], 0, sizeof(w_lodata[i])); 2968 w_lodata[i].wlod_next = w_lofree; 2969 w_lofree = &w_lodata[i]; 2970 } 2971 w_lohash.wloh_size = WITNESS_LO_HASH_SIZE; 2972 w_lohash.wloh_count = 0; 2973 for (i = 0; i < WITNESS_LO_HASH_SIZE; i++) 2974 w_lohash.wloh_array[i] = NULL; 2975 } 2976 2977 static struct witness * 2978 witness_hash_get(const char *key) 2979 { 2980 struct witness *w; 2981 uint32_t hash; 2982 2983 MPASS(key != NULL); 2984 if (witness_cold == 0) 2985 mtx_assert(&w_mtx, MA_OWNED); 2986 hash = witness_hash_djb2(key, 0) % w_hash.wh_size; 2987 w = w_hash.wh_array[hash]; 2988 while (w != NULL) { 2989 if (strcmp(w->w_name, key) == 0) 2990 goto out; 2991 w = w->w_hash_next; 2992 } 2993 2994 out: 2995 return (w); 2996 } 2997 2998 static void 2999 witness_hash_put(struct witness *w) 3000 { 3001 uint32_t hash; 3002 3003 MPASS(w != NULL); 3004 MPASS(w->w_name != NULL); 3005 if (witness_cold == 0) 3006 mtx_assert(&w_mtx, MA_OWNED); 3007 KASSERT(witness_hash_get(w->w_name) == NULL, 3008 ("%s: trying to add a hash entry that already exists!", __func__)); 3009 KASSERT(w->w_hash_next == NULL, 3010 ("%s: w->w_hash_next != NULL", __func__)); 3011 3012 hash = witness_hash_djb2(w->w_name, 0) % w_hash.wh_size; 3013 w->w_hash_next = w_hash.wh_array[hash]; 3014 w_hash.wh_array[hash] = w; 3015 w_hash.wh_count++; 3016 } 3017 3018 static struct witness_lock_order_data * 3019 witness_lock_order_get(struct witness *parent, struct witness *child) 3020 { 3021 struct witness_lock_order_data *data = NULL; 3022 struct witness_lock_order_key key; 3023 unsigned int hash; 3024 3025 MPASS(parent != NULL && child != NULL); 3026 key.from = parent->w_index; 3027 key.to = child->w_index; 3028 WITNESS_INDEX_ASSERT(key.from); 3029 WITNESS_INDEX_ASSERT(key.to); 3030 if ((w_rmatrix[parent->w_index][child->w_index] 3031 & WITNESS_LOCK_ORDER_KNOWN) == 0) 3032 goto out; 3033 3034 hash = witness_hash_djb2((const char*)&key, 3035 sizeof(key)) % w_lohash.wloh_size; 3036 data = w_lohash.wloh_array[hash]; 3037 while (data != NULL) { 3038 if (witness_lock_order_key_equal(&data->wlod_key, &key)) 3039 break; 3040 data = data->wlod_next; 3041 } 3042 3043 out: 3044 return (data); 3045 } 3046 3047 /* 3048 * Verify that parent and child have a known relationship, are not the same, 3049 * and child is actually a child of parent. This is done without w_mtx 3050 * to avoid contention in the common case. 3051 */ 3052 static int 3053 witness_lock_order_check(struct witness *parent, struct witness *child) 3054 { 3055 3056 if (parent != child && 3057 w_rmatrix[parent->w_index][child->w_index] 3058 & WITNESS_LOCK_ORDER_KNOWN && 3059 isitmychild(parent, child)) 3060 return (1); 3061 3062 return (0); 3063 } 3064 3065 static int 3066 witness_lock_order_add(struct witness *parent, struct witness *child) 3067 { 3068 struct witness_lock_order_data *data = NULL; 3069 struct witness_lock_order_key key; 3070 unsigned int hash; 3071 3072 MPASS(parent != NULL && child != NULL); 3073 key.from = parent->w_index; 3074 key.to = child->w_index; 3075 WITNESS_INDEX_ASSERT(key.from); 3076 WITNESS_INDEX_ASSERT(key.to); 3077 if (w_rmatrix[parent->w_index][child->w_index] 3078 & WITNESS_LOCK_ORDER_KNOWN) 3079 return (1); 3080 3081 hash = witness_hash_djb2((const char*)&key, 3082 sizeof(key)) % w_lohash.wloh_size; 3083 w_rmatrix[parent->w_index][child->w_index] |= WITNESS_LOCK_ORDER_KNOWN; 3084 data = w_lofree; 3085 if (data == NULL) 3086 return (0); 3087 w_lofree = data->wlod_next; 3088 data->wlod_next = w_lohash.wloh_array[hash]; 3089 data->wlod_key = key; 3090 w_lohash.wloh_array[hash] = data; 3091 w_lohash.wloh_count++; 3092 stack_zero(&data->wlod_stack); 3093 stack_save(&data->wlod_stack); 3094 return (1); 3095 } 3096 3097 /* Call this whenever the structure of the witness graph changes. */ 3098 static void 3099 witness_increment_graph_generation(void) 3100 { 3101 3102 if (witness_cold == 0) 3103 mtx_assert(&w_mtx, MA_OWNED); 3104 w_generation++; 3105 } 3106 3107 static int 3108 witness_output_drain(void *arg __unused, const char *data, int len) 3109 { 3110 3111 witness_output("%.*s", len, data); 3112 return (len); 3113 } 3114 3115 static void 3116 witness_debugger(int cond, const char *msg) 3117 { 3118 char buf[32]; 3119 struct sbuf sb; 3120 struct stack st; 3121 3122 if (!cond) 3123 return; 3124 3125 if (witness_trace) { 3126 sbuf_new(&sb, buf, sizeof(buf), SBUF_FIXEDLEN); 3127 sbuf_set_drain(&sb, witness_output_drain, NULL); 3128 3129 stack_zero(&st); 3130 stack_save(&st); 3131 witness_output("stack backtrace:\n"); 3132 stack_sbuf_print_ddb(&sb, &st); 3133 3134 sbuf_finish(&sb); 3135 } 3136 3137 witness_enter_debugger(msg); 3138 } 3139 3140 static void 3141 witness_enter_debugger(const char *msg) 3142 { 3143 #ifdef KDB 3144 if (witness_kdb) 3145 kdb_enter(KDB_WHY_WITNESS, msg); 3146 #endif 3147 } 3148