]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/ddb.4
Merge ^/head r357368 through r357388.
[FreeBSD/FreeBSD.git] / share / man / man4 / ddb.4
1 .\"
2 .\" Mach Operating System
3 .\" Copyright (c) 1991,1990 Carnegie Mellon University
4 .\" Copyright (c) 2007 Robert N. M. Watson
5 .\" All Rights Reserved.
6 .\"
7 .\" Permission to use, copy, modify and distribute this software and its
8 .\" documentation is hereby granted, provided that both the copyright
9 .\" notice and this permission notice appear in all copies of the
10 .\" software, derivative works or modified versions, and any portions
11 .\" thereof, and that both notices appear in supporting documentation.
12 .\"
13 .\" CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
14 .\" CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
15 .\" ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
16 .\"
17 .\" Carnegie Mellon requests users of this software to return to
18 .\"
19 .\"  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
20 .\"  School of Computer Science
21 .\"  Carnegie Mellon University
22 .\"  Pittsburgh PA 15213-3890
23 .\"
24 .\" any improvements or extensions that they make and grant Carnegie Mellon
25 .\" the rights to redistribute these changes.
26 .\"
27 .\" $FreeBSD$
28 .\"
29 .Dd October 17, 2019
30 .Dt DDB 4
31 .Os
32 .Sh NAME
33 .Nm ddb
34 .Nd interactive kernel debugger
35 .Sh SYNOPSIS
36 In order to enable kernel debugging facilities include:
37 .Bd -ragged -offset indent
38 .Cd options KDB
39 .Cd options DDB
40 .Ed
41 .Pp
42 To prevent activation of the debugger on kernel
43 .Xr panic 9 :
44 .Bd -ragged -offset indent
45 .Cd options KDB_UNATTENDED
46 .Ed
47 .Pp
48 In order to print a stack trace of the current thread on the console
49 for a panic:
50 .Bd -ragged -offset indent
51 .Cd options KDB_TRACE
52 .Ed
53 .Pp
54 To print the numerical value of symbols in addition to the symbolic
55 representation, define:
56 .Bd -ragged -offset indent
57 .Cd options DDB_NUMSYM
58 .Ed
59 .Pp
60 To enable the
61 .Xr gdb 1
62 backend, so that remote debugging with
63 .Xr kgdb 1
64 is possible, include:
65 .Bd -ragged -offset indent
66 .Cd options GDB
67 .Ed
68 .Sh DESCRIPTION
69 The
70 .Nm
71 kernel debugger is an interactive debugger with a syntax inspired by
72 .Xr gdb 1 .
73 If linked into the running kernel,
74 it can be invoked locally with the
75 .Ql debug
76 .Xr keymap 5
77 action, usually mapped to Ctrl+Alt+Esc, or by setting the
78 .Va debug.kdb.enter
79 sysctl to 1.
80 The debugger is also invoked on kernel
81 .Xr panic 9
82 if the
83 .Va debug.debugger_on_panic
84 .Xr sysctl 8
85 MIB variable is set non-zero,
86 which is the default
87 unless the
88 .Dv KDB_UNATTENDED
89 option is specified.
90 .Pp
91 The current location is called
92 .Va dot .
93 The
94 .Va dot
95 is displayed with
96 a hexadecimal format at a prompt.
97 The commands
98 .Ic examine
99 and
100 .Ic write
101 update
102 .Va dot
103 to the address of the last line
104 examined or the last location modified, and set
105 .Va next
106 to the address of
107 the next location to be examined or changed.
108 Other commands do not change
109 .Va dot ,
110 and set
111 .Va next
112 to be the same as
113 .Va dot .
114 .Pp
115 The general command syntax is:
116 .Ar command Ns Op Li / Ns Ar modifier
117 .Oo Ar addr Oc Ns Op , Ns Ar count
118 .Pp
119 A blank line repeats the previous command from the address
120 .Va next
121 with
122 count 1 and no modifiers.
123 Specifying
124 .Ar addr
125 sets
126 .Va dot
127 to the address.
128 Omitting
129 .Ar addr
130 uses
131 .Va dot .
132 A missing
133 .Ar count
134 is taken
135 to be 1 for printing commands or infinity for stack traces.
136 A
137 .Ar count
138 of -1 is equivalent to a missing
139 .Ar count .
140 Options that are supplied but not supported by the given
141 .Ar command
142 are usually ignored.
143 .Pp
144 The
145 .Nm
146 debugger has a pager feature (like the
147 .Xr more 1
148 command)
149 for the output.
150 If an output line exceeds the number set in the
151 .Va lines
152 variable, it displays
153 .Dq Li --More--
154 and waits for a response.
155 The valid responses for it are:
156 .Pp
157 .Bl -tag -compact -width ".Li SPC"
158 .It Li SPC
159 one more page
160 .It Li RET
161 one more line
162 .It Li q
163 abort the current command, and return to the command input mode
164 .El
165 .Pp
166 Finally,
167 .Nm
168 provides a small (currently 10 items) command history, and offers
169 simple
170 .Nm emacs Ns -style
171 command line editing capabilities.
172 In addition to
173 the
174 .Nm emacs
175 control keys, the usual
176 .Tn ANSI
177 arrow keys may be used to
178 browse through the history buffer, and move the cursor within the
179 current line.
180 .Sh COMMANDS
181 .Ss COMMON DEBUGGER COMMANDS
182 .Bl -tag -width indent -compact
183 .It Ic help
184 Print a short summary of the available commands and command
185 abbreviations.
186 .Pp
187 .It Xo
188 .Ic examine Ns Op Li / Ns Cm AISabcdghilmorsuxz ...
189 .Oo Ar addr Oc Ns Op , Ns Ar count
190 .Xc
191 .It Xo
192 .Ic x       Ns Op Li / Ns Cm AISabcdghilmorsuxz ...
193 .Oo Ar addr Oc Ns Op , Ns Ar count
194 .Xc
195 Display the addressed locations according to the formats in the modifier.
196 Multiple modifier formats display multiple locations.
197 If no format is specified, the last format specified for this command
198 is used.
199 .Pp
200 The format characters are:
201 .Bl -tag -compact -width indent
202 .It Cm b
203 look at by bytes (8 bits)
204 .It Cm h
205 look at by half words (16 bits)
206 .It Cm l
207 look at by long words (32 bits)
208 .It Cm g
209 look at by quad words (64 bits)
210 .It Cm a
211 print the location being displayed
212 .It Cm A
213 print the location with a line number if possible
214 .It Cm x
215 display in unsigned hex
216 .It Cm z
217 display in signed hex
218 .It Cm o
219 display in unsigned octal
220 .It Cm d
221 display in signed decimal
222 .It Cm u
223 display in unsigned decimal
224 .It Cm r
225 display in current radix, signed
226 .It Cm c
227 display low 8 bits as a character.
228 Non-printing characters are displayed as an octal escape code (e.g.,
229 .Ql \e000 ) .
230 .It Cm s
231 display the null-terminated string at the location.
232 Non-printing characters are displayed as octal escapes.
233 .It Cm m
234 display in unsigned hex with character dump at the end of each line.
235 The location is also displayed in hex at the beginning of each line.
236 .It Cm i
237 display as a disassembled instruction
238 .It Cm I
239 display as an disassembled instruction with possible alternate formats depending on the
240 machine.
241 On i386, this selects the alternate format for the instruction decoding
242 (16 bits in a 32-bit code segment and vice versa).
243 .It Cm S
244 display a symbol name for the pointer stored at the address
245 .El
246 .Pp
247 .It Ic xf
248 Examine forward:
249 execute an
250 .Ic examine
251 command with the last specified parameters to it
252 except that the next address displayed by it is used as the start address.
253 .Pp
254 .It Ic xb
255 Examine backward:
256 execute an
257 .Ic examine
258 command with the last specified parameters to it
259 except that the last start address subtracted by the size displayed by it
260 is used as the start address.
261 .Pp
262 .It Ic print Ns Op Li / Ns Cm acdoruxz
263 .It Ic p Ns Op Li / Ns Cm acdoruxz
264 Print
265 .Ar addr Ns s
266 according to the modifier character (as described above for
267 .Cm examine ) .
268 Valid formats are:
269 .Cm a , x , z , o , d , u , r ,
270 and
271 .Cm c .
272 If no modifier is specified, the last one specified to it is used.
273 The argument
274 .Ar addr
275 can be a string, in which case it is printed as it is.
276 For example:
277 .Bd -literal -offset indent
278 print/x "eax = " $eax "\enecx = " $ecx "\en"
279 .Ed
280 .Pp
281 will print like:
282 .Bd -literal -offset indent
283 eax = xxxxxx
284 ecx = yyyyyy
285 .Ed
286 .Pp
287 .It Xo
288 .Ic write Ns Op Li / Ns Cm bhl
289 .Ar addr expr1 Op Ar expr2 ...
290 .Xc
291 .It Xo
292 .Ic w Ns Op Li / Ns Cm bhl
293 .Ar addr expr1 Op Ar expr2 ...
294 .Xc
295 Write the expressions specified after
296 .Ar addr
297 on the command line at succeeding locations starting with
298 .Ar addr .
299 The write unit size can be specified in the modifier with a letter
300 .Cm b
301 (byte),
302 .Cm h
303 (half word) or
304 .Cm l
305 (long word) respectively.
306 If omitted,
307 long word is assumed.
308 .Pp
309 .Sy Warning :
310 since there is no delimiter between expressions, strange
311 things may happen.
312 It is best to enclose each expression in parentheses.
313 .Pp
314 .It Ic set Li $ Ns Ar variable Oo Li = Oc Ar expr
315 Set the named variable or register with the value of
316 .Ar expr .
317 Valid variable names are described below.
318 .Pp
319 .It Ic break Ns Oo Li / Ns Cm u Oc Oo Ar addr Oc Ns Op , Ns Ar count
320 .It Ic b     Ns Oo Li / Ns Cm u Oc Oo Ar addr Oc Ns Op , Ns Ar count
321 Set a break point at
322 .Ar addr .
323 If
324 .Ar count
325 is supplied, the
326 .Ic continue
327 command will not stop at this break point on the first
328 .Ar count
329 \- 1 times that it is hit.
330 If the break point is set, a break point number is
331 printed with
332 .Ql # .
333 This number can be used in deleting the break point
334 or adding conditions to it.
335 .Pp
336 If the
337 .Cm u
338 modifier is specified, this command sets a break point in user
339 address space.
340 Without the
341 .Cm u
342 option, the address is considered to be in the kernel
343 space, and a wrong space address is rejected with an error message.
344 This modifier can be used only if it is supported by machine dependent
345 routines.
346 .Pp
347 .Sy Warning :
348 If a user text is shadowed by a normal user space debugger,
349 user space break points may not work correctly.
350 Setting a break
351 point at the low-level code paths may also cause strange behavior.
352 .Pp
353 .It Ic delete Op Ar addr
354 .It Ic d      Op Ar addr
355 .It Ic delete Li # Ns Ar number
356 .It Ic d      Li # Ns Ar number
357 Delete the specified break point.
358 The break point can be specified by a
359 break point number with
360 .Ql # ,
361 or by using the same
362 .Ar addr
363 specified in the original
364 .Ic break
365 command, or by omitting
366 .Ar addr
367 to get the default address of
368 .Va dot .
369 .Pp
370 .It Ic halt
371 Halt the system.
372 .Pp
373 .It Ic watch Oo Ar addr Oc Ns Op , Ns Ar size
374 Set a watchpoint for a region.
375 Execution stops when an attempt to modify the region occurs.
376 The
377 .Ar size
378 argument defaults to 4.
379 If you specify a wrong space address, the request is rejected
380 with an error message.
381 .Pp
382 .Sy Warning :
383 Attempts to watch wired kernel memory
384 may cause unrecoverable error in some systems such as i386.
385 Watchpoints on user addresses work best.
386 .Pp
387 .It Ic hwatch Oo Ar addr Oc Ns Op , Ns Ar size
388 Set a hardware watchpoint for a region if supported by the
389 architecture.
390 Execution stops when an attempt to modify the region occurs.
391 The
392 .Ar size
393 argument defaults to 4.
394 .Pp
395 .Sy Warning :
396 The hardware debug facilities do not have a concept of separate
397 address spaces like the watch command does.
398 Use
399 .Ic hwatch
400 for setting watchpoints on kernel address locations only, and avoid
401 its use on user mode address spaces.
402 .Pp
403 .It Ic dhwatch Oo Ar addr Oc Ns Op , Ns Ar size
404 Delete specified hardware watchpoint.
405 .Pp
406 .It Ic kill Ar sig pid
407 Send signal
408 .Ar sig
409 to process
410 .Ar pid .
411 The signal is acted on upon returning from the debugger.
412 This command can be used to kill a process causing resource contention
413 in the case of a hung system.
414 See
415 .Xr signal 3
416 for a list of signals.
417 Note that the arguments are reversed relative to
418 .Xr kill 2 .
419 .Pp
420 .It Ic step Ns Oo Li / Ns Cm p Oc Ns Op , Ns Ar count
421 .It Ic s    Ns Oo Li / Ns Cm p Oc Ns Op , Ns Ar count
422 Single step
423 .Ar count
424 times.
425 If the
426 .Cm p
427 modifier is specified, print each instruction at each step.
428 Otherwise, only print the last instruction.
429 .Pp
430 .Sy Warning :
431 depending on machine type, it may not be possible to
432 single-step through some low-level code paths or user space code.
433 On machines with software-emulated single-stepping (e.g., pmax),
434 stepping through code executed by interrupt handlers will probably
435 do the wrong thing.
436 .Pp
437 .It Ic continue Ns Op Li / Ns Cm c
438 .It Ic c Ns Op Li / Ns Cm c
439 Continue execution until a breakpoint or watchpoint.
440 If the
441 .Cm c
442 modifier is specified, count instructions while executing.
443 Some machines (e.g., pmax) also count loads and stores.
444 .Pp
445 .Sy Warning :
446 when counting, the debugger is really silently single-stepping.
447 This means that single-stepping on low-level code may cause strange
448 behavior.
449 .Pp
450 .It Ic until Ns Op Li / Ns Cm p
451 Stop at the next call or return instruction.
452 If the
453 .Cm p
454 modifier is specified, print the call nesting depth and the
455 cumulative instruction count at each call or return.
456 Otherwise,
457 only print when the matching return is hit.
458 .Pp
459 .It Ic next Ns Op Li / Ns Cm p
460 .It Ic match Ns Op Li / Ns Cm p
461 Stop at the matching return instruction.
462 If the
463 .Cm p
464 modifier is specified, print the call nesting depth and the
465 cumulative instruction count at each call or return.
466 Otherwise, only print when the matching return is hit.
467 .Pp
468 .It Xo
469 .Ic trace Ns Op Li / Ns Cm u
470 .Op Ar pid | tid Ns
471 .Op , Ns Ar count
472 .Xc
473 .It Xo
474 .Ic t Ns Op Li / Ns Cm u
475 .Op Ar pid | tid Ns
476 .Op , Ns Ar count
477 .Xc
478 .It Xo
479 .Ic where Ns Op Li / Ns Cm u
480 .Op Ar pid | tid Ns
481 .Op , Ns Ar count
482 .Xc
483 .It Xo
484 .Ic bt Ns Op Li / Ns Cm u
485 .Op Ar pid | tid Ns
486 .Op , Ns Ar count
487 .Xc
488 Stack trace.
489 The
490 .Cm u
491 option traces user space; if omitted,
492 .Ic trace
493 only traces
494 kernel space.
495 The optional argument
496 .Ar count
497 is the number of frames to be traced.
498 If
499 .Ar count
500 is omitted, all frames are printed.
501 .Pp
502 .Sy Warning :
503 User space stack trace is valid
504 only if the machine dependent code supports it.
505 .Pp
506 .It Xo
507 .Ic search Ns Op Li / Ns Cm bhl
508 .Ar addr
509 .Ar value
510 .Op Ar mask Ns
511 .Op , Ns Ar count
512 .Xc
513 Search memory for
514 .Ar value .
515 The optional
516 .Ar count
517 argument limits the search.
518 .\"
519 .Pp
520 .It Ic reboot Op Ar seconds
521 .It Ic reset Op Ar seconds
522 Hard reset the system.
523 If the optional argument
524 .Ar seconds
525 is given, the debugger will wait for this long, at most a week,
526 before rebooting.
527 .Pp
528 .It Ic thread Ar addr | tid
529 Switch the debugger to the thread with ID
530 .Ar tid ,
531 if the argument is a decimal number, or address
532 .Ar addr ,
533 otherwise.
534 .El
535 .Pp
536 .Ss SPECIALIZED HELPER COMMANDS
537 .Pp
538 .Bl -tag -width indent -compact
539 .It Xo
540 .Ic findstack
541 .Ar addr
542 .Xc
543 Prints the thread address for a thread kernel-mode stack of which contains the
544 specified address.
545 If the thread is not found, search the thread stack cache and prints the
546 cached stack address.
547 Otherwise, prints nothing.
548 .Pp
549 .It Ic show Cm all procs Ns Op Li / Ns Cm a
550 .It Ic ps Ns Op Li / Ns Cm a
551 Display all process information.
552 The process information may not be shown if it is not
553 supported in the machine, or the bottom of the stack of the
554 target process is not in the main memory at that time.
555 The
556 .Cm a
557 modifier will print command line arguments for each process.
558 .\"
559 .Pp
560 .It Ic show Cm all trace
561 .It Ic alltrace
562 Show a stack trace for every thread in the system.
563 .Pp
564 .It Ic show Cm all ttys
565 Show all TTY's within the system.
566 Output is similar to
567 .Xr pstat 8 ,
568 but also includes the address of the TTY structure.
569 .\"
570 .Pp
571 .It Ic show Cm all vnets
572 Show the same output as "show vnet" does, but lists all
573 virtualized network stacks within the system.
574 .\"
575 .Pp
576 .It Ic show Cm allchains
577 Show the same information like "show lockchain" does, but
578 for every thread in the system.
579 .\"
580 .Pp
581 .It Ic show Cm alllocks
582 Show all locks that are currently held.
583 This command is only available if
584 .Xr witness 4
585 is included in the kernel.
586 .\"
587 .Pp
588 .It Ic show Cm allpcpu
589 The same as "show pcpu", but for every CPU present in the system.
590 .\"
591 .Pp
592 .It Ic show Cm allrman
593 Show information related with resource management, including
594 interrupt request lines, DMA request lines, I/O ports, I/O memory
595 addresses, and Resource IDs.
596 .\"
597 .Pp
598 .It Ic show Cm apic
599 Dump data about APIC IDT vector mappings.
600 .\"
601 .Pp
602 .It Ic show Cm breaks
603 Show breakpoints set with the "break" command.
604 .\"
605 .Pp
606 .It Ic show Cm bio Ar addr
607 Show information about the bio structure
608 .Vt struct bio
609 present at
610 .Ar addr .
611 See the
612 .Pa sys/bio.h
613 header file and
614 .Xr g_bio 9
615 for more details on the exact meaning of the structure fields.
616 .\"
617 .Pp
618 .It Ic show Cm buffer Ar addr
619 Show information about the buf structure
620 .Vt struct buf
621 present at
622 .Ar addr .
623 See the
624 .Pa sys/buf.h
625 header file for more details on the exact meaning of the structure fields.
626 .\"
627 .Pp
628 .It Ic show Cm callout Ar addr
629 Show information about the callout structure
630 .Vt struct callout
631 present at
632 .Ar addr .
633 .\"
634 .Pp
635 .It Ic show Cm cbstat
636 Show brief information about the TTY subsystem.
637 .\"
638 .Pp
639 .It Ic show Cm cdev
640 Without argument, show the list of all created cdev's, consisting of devfs
641 node name and struct cdev address.
642 When address of cdev is supplied, show some internal devfs state of the cdev.
643 .\"
644 .Pp
645 .It Ic show Cm conifhk
646 Lists hooks currently waiting for completion in
647 run_interrupt_driven_config_hooks().
648 .\"
649 .Pp
650 .It Ic show Cm cpusets
651 Print numbered root and assigned CPU affinity sets.
652 See
653 .Xr cpuset 2
654 for more details.
655 .\"
656 .Pp
657 .It Ic show Cm cyrixreg
658 Show registers specific to the Cyrix processor.
659 .\"
660 .Pp
661 .It Ic show Cm devmap
662 Prints the contents of the static device mapping table.
663 Currently only available on the
664 ARM
665 architecture.
666 .\"
667 .Pp
668 .It Ic show Cm domain Ar addr
669 Print protocol domain structure
670 .Vt struct domain
671 at address
672 .Ar addr .
673 See the
674 .Pa sys/domain.h
675 header file for more details on the exact meaning of the structure fields.
676 .\"
677 .Pp
678 .It Ic show Cm ffs Op Ar addr
679 Show brief information about ffs mount at the address
680 .Ar addr ,
681 if argument is given.
682 Otherwise, provides the summary about each ffs mount.
683 .\"
684 .Pp
685 .It Ic show Cm file Ar addr
686 Show information about the file structure
687 .Vt struct file
688 present at address
689 .Ar addr .
690 .\"
691 .Pp
692 .It Ic show Cm files
693 Show information about every file structure in the system.
694 .\"
695 .Pp
696 .It Ic show Cm freepages
697 Show the number of physical pages in each of the free lists.
698 .\"
699 .Pp
700 .It Ic show Cm geom Op Ar addr
701 If the
702 .Ar addr
703 argument is not given, displays the entire GEOM topology.
704 If
705 .Ar addr
706 is given, displays details about the given GEOM object (class, geom,
707 provider or consumer).
708 .\"
709 .Pp
710 .It Ic show Cm idt
711 Show IDT layout.
712 The first column specifies the IDT vector.
713 The second one is the name of the interrupt/trap handler.
714 Those functions are machine dependent.
715 .\"
716 .Pp
717 .It Ic show Cm igi_list Ar addr
718 Show information about the IGMP structure
719 .Vt struct igmp_ifsoftc
720 present at
721 .Ar addr .
722 .\"
723 .Pp
724 .It Ic show Cm inodedeps Op Ar addr
725 Show brief information about each inodedep structure.
726 If
727 .Ar addr
728 is given, only inodedeps belonging to the fs located at the
729 supplied address are shown.
730 .\"
731 .Pp
732 .It Ic show Cm inpcb Ar addr
733 Show information on IP Control Block
734 .Vt struct in_pcb
735 present at
736 .Ar addr .
737 .\"
738 .Pp
739 .It Ic show Cm intr
740 Dump information about interrupt handlers.
741 .\"
742 .Pp
743 .It Ic show Cm intrcnt
744 Dump the interrupt statistics.
745 .\"
746 .Pp
747 .It Ic show Cm irqs
748 Show interrupt lines and their respective kernel threads.
749 .\"
750 .Pp
751 .It Ic show Cm jails
752 Show the list of
753 .Xr jail 8
754 instances.
755 In addition to what
756 .Xr jls 8
757 shows, also list kernel internal details.
758 .\"
759 .Pp
760 .It Ic show Cm lapic
761 Show information from the local APIC registers for this CPU.
762 .\"
763 .Pp
764 .It Ic show Cm lock Ar addr
765 Show lock structure.
766 The output format is as follows:
767 .Bl -tag -width "flags"
768 .It Ic class:
769 Class of the lock.
770 Possible types include
771 .Xr mutex 9 ,
772 .Xr rmlock 9 ,
773 .Xr rwlock 9 ,
774 .Xr sx 9 .
775 .It Ic name:
776 Name of the lock.
777 .It Ic flags:
778 Flags passed to the lock initialization function.
779 .Em flags
780 values are lock class specific.
781 .It Ic state:
782 Current state of a lock.
783 .Em state
784 values are lock class specific.
785 .It Ic owner:
786 Lock owner.
787 .El
788 .\"
789 .Pp
790 .It Ic show Cm lockchain Ar addr
791 Show all threads a particular thread at address
792 .Ar addr
793 is waiting on based on non-spin locks.
794 .\"
795 .Pp
796 .It Ic show Cm lockedbufs
797 Show the same information as "show buf", but for every locked
798 .Vt struct buf
799 object.
800 .\"
801 .Pp
802 .It Ic show Cm lockedvnods
803 List all locked vnodes in the system.
804 .\"
805 .Pp
806 .It Ic show Cm locks
807 Prints all locks that are currently acquired.
808 This command is only available if
809 .Xr witness 4
810 is included in the kernel.
811 .\"
812 .Pp
813 .It Ic show Cm locktree
814 .\"
815 .Pp
816 .It Ic show Cm malloc Ns Op Li / Ns Cm i
817 Prints
818 .Xr malloc 9
819 memory allocator statistics.
820 If the
821 .Cm i
822 modifier is specified, format output as machine-parseable comma-separated
823 values ("CSV").
824 The output columns are as follows:
825 .Pp
826 .Bl -tag -compact -offset indent -width "Requests"
827 .It Ic Type
828 Specifies a type of memory.
829 It is the same as a description string used while defining the
830 given memory type with
831 .Xr MALLOC_DECLARE 9 .
832 .It Ic InUse
833 Number of memory allocations of the given type, for which
834 .Xr free 9
835 has not been called yet.
836 .It Ic MemUse
837 Total memory consumed by the given allocation type.
838 .It Ic Requests
839 Number of memory allocation requests for the given
840 memory type.
841 .El
842 .Pp
843 The same information can be gathered in userspace with
844 .Dq Nm vmstat Fl m .
845 .\"
846 .Pp
847 .It Ic show Cm map Ns Oo Li / Ns Cm f Oc Ar addr
848 Prints the VM map at
849 .Ar addr .
850 If the
851 .Cm f
852 modifier is specified the
853 complete map is printed.
854 .\"
855 .Pp
856 .It Ic show Cm msgbuf
857 Print the system's message buffer.
858 It is the same output as in the
859 .Dq Nm dmesg
860 case.
861 It is useful if you got a kernel panic, attached a serial cable
862 to the machine and want to get the boot messages from before the
863 system hang.
864 .\"
865 .It Ic show Cm mount
866 Displays short info about all currently mounted file systems.
867 .Pp
868 .It Ic show Cm mount Ar addr
869 Displays details about the given mount point.
870 .\"
871 .Pp
872 .It Ic show Cm object Ns Oo Li / Ns Cm f Oc Ar addr
873 Prints the VM object at
874 .Ar addr .
875 If the
876 .Cm f
877 option is specified the
878 complete object is printed.
879 .\"
880 .Pp
881 .It Ic show Cm panic
882 Print the panic message if set.
883 .\"
884 .Pp
885 .It Ic show Cm page
886 Show statistics on VM pages.
887 .\"
888 .Pp
889 .It Ic show Cm pageq
890 Show statistics on VM page queues.
891 .\"
892 .Pp
893 .It Ic show Cm pciregs
894 Print PCI bus registers.
895 The same information can be gathered in userspace by running
896 .Dq Nm pciconf Fl lv .
897 .\"
898 .Pp
899 .It Ic show Cm pcpu
900 Print current processor state.
901 The output format is as follows:
902 .Pp
903 .Bl -tag -compact -offset indent -width "spin locks held:"
904 .It Ic cpuid
905 Processor identifier.
906 .It Ic curthread
907 Thread pointer, process identifier and the name of the process.
908 .It Ic curpcb
909 Control block pointer.
910 .It Ic fpcurthread
911 FPU thread pointer.
912 .It Ic idlethread
913 Idle thread pointer.
914 .It Ic APIC ID
915 CPU identifier coming from APIC.
916 .It Ic currentldt
917 LDT pointer.
918 .It Ic spin locks held
919 Names of spin locks held.
920 .El
921 .\"
922 .Pp
923 .It Ic show Cm pgrpdump
924 Dump process groups present within the system.
925 .\"
926 .Pp
927 .It Ic show Cm proc Op Ar addr
928 If no
929 .Op Ar addr
930 is specified, print information about the current process.
931 Otherwise, show information about the process at address
932 .Ar addr .
933 .\"
934 .Pp
935 .It Ic show Cm procvm
936 Show process virtual memory layout.
937 .\"
938 .Pp
939 .It Ic show Cm protosw Ar addr
940 Print protocol switch structure
941 .Vt struct protosw
942 at address
943 .Ar addr .
944 .\"
945 .Pp
946 .It Ic show Cm registers Ns Op Li / Ns Cm u
947 Display the register set.
948 If the
949 .Cm u
950 modifier is specified, it displays user registers instead of
951 kernel registers or the currently saved one.
952 .Pp
953 .Sy Warning :
954 The support of the
955 .Cm u
956 modifier depends on the machine.
957 If not supported, incorrect information will be displayed.
958 .\"
959 .Pp
960 .It Ic show Cm rman Ar addr
961 Show resource manager object
962 .Vt struct rman
963 at address
964 .Ar addr .
965 Addresses of particular pointers can be gathered with "show allrman"
966 command.
967 .\"
968 .Pp
969 .It Ic show Cm route Ar addr
970 Show route table result for destination
971 .Ar addr .
972 At this time, INET and INET6 formatted addresses are supported.
973 .\"
974 .Pp
975 .It Ic show Cm routetable Oo Ar af Oc
976 Show full route table or tables.
977 If
978 .Ar af
979 is specified, show only routes for the given numeric address family.
980 If no argument is specified, dump the route table for all address families.
981 .\"
982 .Pp
983 .It Ic show Cm rtc
984 Show real time clock value.
985 Useful for long debugging sessions.
986 .\"
987 .Pp
988 .It Ic show Cm sleepchain
989 Deprecated.
990 Now an alias for
991 .Ic show Cm lockchain .
992 .\"
993 .Pp
994 .It Ic show Cm sleepq
995 .It Ic show Cm sleepqueue
996 Both commands provide the same functionality.
997 They show sleepqueue
998 .Vt struct sleepqueue
999 structure.
1000 Sleepqueues are used within the
1001 .Fx
1002 kernel to implement sleepable
1003 synchronization primitives (thread holding a lock might sleep or
1004 be context switched), which at the time of writing are:
1005 .Xr condvar 9 ,
1006 .Xr sx 9
1007 and standard
1008 .Xr msleep 9
1009 interface.
1010 .\"
1011 .Pp
1012 .It Ic show Cm sockbuf Ar addr
1013 .It Ic show Cm socket Ar addr
1014 Those commands print
1015 .Vt struct sockbuf
1016 and
1017 .Vt struct socket
1018 objects placed at
1019 .Ar addr .
1020 Output consists of all values present in structures mentioned.
1021 For exact interpretation and more details, visit
1022 .Pa sys/socket.h
1023 header file.
1024 .\"
1025 .Pp
1026 .It Ic show Cm sysregs
1027 Show system registers (e.g.,
1028 .Li cr0-4
1029 on i386.)
1030 Not present on some platforms.
1031 .\"
1032 .Pp
1033 .It Ic show Cm tcpcb Ar addr
1034 Print TCP control block
1035 .Vt struct tcpcb
1036 lying at address
1037 .Ar addr .
1038 For exact interpretation of output, visit
1039 .Pa netinet/tcp.h
1040 header file.
1041 .\"
1042 .Pp
1043 .It Ic show Cm thread Op Ar addr | tid
1044 If no
1045 .Ar addr
1046 or
1047 .Ar tid
1048 is specified, show detailed information about current thread.
1049 Otherwise, print information about the thread with ID
1050 .Ar tid
1051 or kernel address
1052 .Ar addr .
1053 (If the argument is a decimal number, it is assumed to be a tid.)
1054 .\"
1055 .Pp
1056 .It Ic show Cm threads
1057 Show all threads within the system.
1058 Output format is as follows:
1059 .Pp
1060 .Bl -tag -compact -offset indent -width "Second column"
1061 .It Ic First column
1062 Thread identifier (TID)
1063 .It Ic Second column
1064 Thread structure address
1065 .It Ic Third column
1066 Backtrace.
1067 .El
1068 .\"
1069 .Pp
1070 .It Ic show Cm tty Ar addr
1071 Display the contents of a TTY structure in a readable form.
1072 .\"
1073 .Pp
1074 .It Ic show Cm turnstile Ar addr
1075 Show turnstile
1076 .Vt struct turnstile
1077 structure at address
1078 .Ar addr .
1079 Turnstiles are structures used within the
1080 .Fx
1081 kernel to implement
1082 synchronization primitives which, while holding a specific type of lock, cannot
1083 sleep or context switch to another thread.
1084 Currently, those are:
1085 .Xr mutex 9 ,
1086 .Xr rwlock 9 ,
1087 .Xr rmlock 9 .
1088 .\"
1089 .Pp
1090 .It Ic show Cm uma Ns Op Li / Ns Cm i
1091 Show UMA allocator statistics.
1092 If the
1093 .Cm i
1094 modifier is specified, format output as machine-parseable comma-separated
1095 values ("CSV").
1096 The output contains the following columns:
1097 .Pp
1098 .Bl -tag -compact -offset indent -width "Total Mem"
1099 .It Cm "Zone"
1100 Name of the UMA zone.
1101 The same string that was passed to
1102 .Xr uma_zcreate 9
1103 as a first argument.
1104 .It Cm "Size"
1105 Size of a given memory object (slab).
1106 .It Cm "Used"
1107 Number of slabs being currently used.
1108 .It Cm "Free"
1109 Number of free slabs within the UMA zone.
1110 .It Cm "Requests"
1111 Number of allocations requests to the given zone.
1112 .It Cm "Total Mem"
1113 Total memory in use (either allocated or free) by a zone, in bytes.
1114 .It Cm "XFree"
1115 Number of free slabs within the UMA zone that were freed on a different NUMA
1116 domain than allocated.
1117 (The count in the
1118 .Cm "Free"
1119 column is inclusive of
1120 .Cm "XFree" . )
1121 .El
1122 .Pp
1123 The same information might be gathered in the userspace
1124 with the help of
1125 .Dq Nm vmstat Fl z .
1126 .\"
1127 .Pp
1128 .It Ic show Cm unpcb Ar addr
1129 Shows UNIX domain socket private control block
1130 .Vt struct unpcb
1131 present at the address
1132 .Ar addr .
1133 .\"
1134 .Pp
1135 .It Ic show Cm vmochk
1136 Prints, whether the internal VM objects are in a map somewhere
1137 and none have zero ref counts.
1138 .\"
1139 .Pp
1140 .It Ic show Cm vmopag
1141 This is supposed to show physical addresses consumed by a
1142 VM object.
1143 Currently, it is not possible to use this command when
1144 .Xr witness 4
1145 is compiled in the kernel.
1146 .\"
1147 .Pp
1148 .It Ic show Cm vnet Ar addr
1149 Prints virtualized network stack
1150 .Vt struct vnet
1151 structure present at the address
1152 .Ar addr .
1153 .\"
1154 .Pp
1155 .It Ic show Cm vnode Op Ar addr
1156 Prints vnode
1157 .Vt struct vnode
1158 structure lying at
1159 .Op Ar addr .
1160 For the exact interpretation of the output, look at the
1161 .Pa sys/vnode.h
1162 header file.
1163 .\"
1164 .Pp
1165 .It Ic show Cm vnodebufs Ar addr
1166 Shows clean/dirty buffer lists of the vnode located at
1167 .Ar addr .
1168 .\"
1169 .Pp
1170 .It Ic show Cm vpath Ar addr
1171 Walk the namecache to lookup the pathname of the vnode located at
1172 .Ar addr .
1173 .\"
1174 .Pp
1175 .It Ic show Cm watches
1176 Displays all watchpoints.
1177 Shows watchpoints set with "watch" command.
1178 .\"
1179 .Pp
1180 .It Ic show Cm witness
1181 Shows information about lock acquisition coming from the
1182 .Xr witness 4
1183 subsystem.
1184 .El
1185 .Pp
1186 .Ss OFFLINE DEBUGGING COMMANDS
1187 .Bl -tag -width indent -compact
1188 .It Ic gdb
1189 Switches to remote GDB mode.
1190 In remote GDB mode, another machine is required that runs
1191 .Xr gdb 1
1192 using the remote debug feature, with a connection to the serial
1193 console port on the target machine.
1194 .Pp
1195 .It Ic netdump Fl s Ar server Oo Fl g Ar gateway Fl c Ar client Fl i Ar iface Oc
1196 Configure
1197 .Xr netdump 4
1198 with the provided parameters, and immediately perform a netdump.
1199 .Pp
1200 There are some known limitations.
1201 Principally,
1202 .Xr netdump 4
1203 only supports IPv4 at this time.
1204 The address arguments to the
1205 .Ic netdump
1206 command must be dotted decimal IPv4 addresses.
1207 (Hostnames are not supported.)
1208 At present, the command only works if the machine is in a panic state.
1209 Finally, the
1210 .Nm
1211 .Ic netdump
1212 command does not provide any way to configure compression or encryption.
1213 .Pp
1214 .It Ic netgdb Fl s Ar server Oo Fl g Ar gateway Fl c Ar client Fl i Ar iface Oc
1215 Initiate a
1216 .Xr netgdb 4
1217 session with the provided parameters.
1218 .Pp
1219 .Ic netgdb
1220 has identical limitations to
1221 .Ic netdump .
1222 .Pp
1223 .It Ic capture on
1224 .It Ic capture off
1225 .It Ic capture reset
1226 .It Ic capture status
1227 .Nm
1228 supports a basic output capture facility, which can be used to retrieve the
1229 results of debugging commands from userspace using
1230 .Xr sysctl 3 .
1231 .Ic capture on
1232 enables output capture;
1233 .Ic capture off
1234 disables capture.
1235 .Ic capture reset
1236 will clear the capture buffer and disable capture.
1237 .Ic capture status
1238 will report current buffer use, buffer size, and disposition of output
1239 capture.
1240 .Pp
1241 Userspace processes may inspect and manage
1242 .Nm
1243 capture state using
1244 .Xr sysctl 8 :
1245 .Pp
1246 .Va debug.ddb.capture.bufsize
1247 may be used to query or set the current capture buffer size.
1248 .Pp
1249 .Va debug.ddb.capture.maxbufsize
1250 may be used to query the compile-time limit on the capture buffer size.
1251 .Pp
1252 .Va debug.ddb.capture.bytes
1253 may be used to query the number of bytes of output currently in the capture
1254 buffer.
1255 .Pp
1256 .Va debug.ddb.capture.data
1257 returns the contents of the buffer as a string to an appropriately privileged
1258 process.
1259 .Pp
1260 This facility is particularly useful in concert with the scripting and
1261 .Xr textdump 4
1262 facilities, allowing scripted debugging output to be captured and
1263 committed to disk as part of a textdump for later analysis.
1264 The contents of the capture buffer may also be inspected in a kernel core dump
1265 using
1266 .Xr kgdb 1 .
1267 .Pp
1268 .It Ic run
1269 .It Ic script
1270 .It Ic scripts
1271 .It Ic unscript
1272 Run, define, list, and delete scripts.
1273 See the
1274 .Sx SCRIPTING
1275 section for more information on the scripting facility.
1276 .Pp
1277 .It Ic textdump dump
1278 .It Ic textdump set
1279 .It Ic textdump status
1280 .It Ic textdump unset
1281 Use the
1282 .Ic textdump dump
1283 command to immediately perform a textdump.
1284 More information may be found in
1285 .Xr textdump 4 .
1286 The
1287 .Ic textdump set
1288 command may be used to force the next kernel core dump to be a textdump
1289 rather than a traditional memory dump or minidump.
1290 .Ic textdump status
1291 reports whether a textdump has been scheduled.
1292 .Ic textdump unset
1293 cancels a request to perform a textdump as the next kernel core dump.
1294 .El
1295 .Sh VARIABLES
1296 The debugger accesses registers and variables as
1297 .Li $ Ns Ar name .
1298 Register names are as in the
1299 .Dq Ic show Cm registers
1300 command.
1301 Some variables are suffixed with numbers, and may have some modifier
1302 following a colon immediately after the variable name.
1303 For example, register variables can have a
1304 .Cm u
1305 modifier to indicate user register (e.g.,
1306 .Dq Li $eax:u ) .
1307 .Pp
1308 Built-in variables currently supported are:
1309 .Pp
1310 .Bl -tag -width ".Va tabstops" -compact
1311 .It Va radix
1312 Input and output radix.
1313 .It Va maxoff
1314 Addresses are printed as
1315 .Dq Ar symbol Ns Li + Ns Ar offset
1316 unless
1317 .Ar offset
1318 is greater than
1319 .Va maxoff .
1320 .It Va maxwidth
1321 The width of the displayed line.
1322 .It Va lines
1323 The number of lines.
1324 It is used by the built-in pager.
1325 Setting it to 0 disables paging.
1326 .It Va tabstops
1327 Tab stop width.
1328 .It Va work Ns Ar xx
1329 Work variable;
1330 .Ar xx
1331 can take values from 0 to 31.
1332 .El
1333 .Sh EXPRESSIONS
1334 Most expression operators in C are supported except
1335 .Ql ~ ,
1336 .Ql ^ ,
1337 and unary
1338 .Ql & .
1339 Special rules in
1340 .Nm
1341 are:
1342 .Bl -tag -width ".No Identifiers"
1343 .It Identifiers
1344 The name of a symbol is translated to the value of the symbol, which
1345 is the address of the corresponding object.
1346 .Ql \&.
1347 and
1348 .Ql \&:
1349 can be used in the identifier.
1350 If supported by an object format dependent routine,
1351 .Sm off
1352 .Oo Ar filename : Oc Ar func : lineno ,
1353 .Sm on
1354 .Oo Ar filename : Oc Ns Ar variable ,
1355 and
1356 .Oo Ar filename : Oc Ns Ar lineno
1357 can be accepted as a symbol.
1358 .It Numbers
1359 Radix is determined by the first two letters:
1360 .Ql 0x :
1361 hex,
1362 .Ql 0o :
1363 octal,
1364 .Ql 0t :
1365 decimal; otherwise, follow current radix.
1366 .It Li \&.
1367 .Va dot
1368 .It Li +
1369 .Va next
1370 .It Li ..
1371 address of the start of the last line examined.
1372 Unlike
1373 .Va dot
1374 or
1375 .Va next ,
1376 this is only changed by
1377 .Ic examine
1378 or
1379 .Ic write
1380 command.
1381 .It Li '
1382 last address explicitly specified.
1383 .It Li $ Ns Ar variable
1384 Translated to the value of the specified variable.
1385 It may be followed by a
1386 .Ql \&:
1387 and modifiers as described above.
1388 .It Ar a Ns Li # Ns Ar b
1389 A binary operator which rounds up the left hand side to the next
1390 multiple of right hand side.
1391 .It Li * Ns Ar expr
1392 Indirection.
1393 It may be followed by a
1394 .Ql \&:
1395 and modifiers as described above.
1396 .El
1397 .Sh SCRIPTING
1398 .Nm
1399 supports a basic scripting facility to allow automating tasks or responses to
1400 specific events.
1401 Each script consists of a list of DDB commands to be executed sequentially,
1402 and is assigned a unique name.
1403 Certain script names have special meaning, and will be automatically run on
1404 various
1405 .Nm
1406 events if scripts by those names have been defined.
1407 .Pp
1408 The
1409 .Ic script
1410 command may be used to define a script by name.
1411 Scripts consist of a series of
1412 .Nm
1413 commands separated with the
1414 .Ql \&;
1415 character.
1416 For example:
1417 .Bd -literal -offset indent
1418 script kdb.enter.panic=bt; show pcpu
1419 script lockinfo=show alllocks; show lockedvnods
1420 .Ed
1421 .Pp
1422 The
1423 .Ic scripts
1424 command lists currently defined scripts.
1425 .Pp
1426 The
1427 .Ic run
1428 command execute a script by name.
1429 For example:
1430 .Bd -literal -offset indent
1431 run lockinfo
1432 .Ed
1433 .Pp
1434 The
1435 .Ic unscript
1436 command may be used to delete a script by name.
1437 For example:
1438 .Bd -literal -offset indent
1439 unscript kdb.enter.panic
1440 .Ed
1441 .Pp
1442 These functions may also be performed from userspace using the
1443 .Xr ddb 8
1444 command.
1445 .Pp
1446 Certain scripts are run automatically, if defined, for specific
1447 .Nm
1448 events.
1449 The follow scripts are run when various events occur:
1450 .Bl -tag -width kdb.enter.powerfail
1451 .It Va kdb.enter.acpi
1452 The kernel debugger was entered as a result of an
1453 .Xr acpi 4
1454 event.
1455 .It Va kdb.enter.bootflags
1456 The kernel debugger was entered at boot as a result of the debugger boot
1457 flag being set.
1458 .It Va kdb.enter.break
1459 The kernel debugger was entered as a result of a serial or console break.
1460 .It Va kdb.enter.cam
1461 The kernel debugger was entered as a result of a
1462 .Xr CAM 4
1463 event.
1464 .It Va kdb.enter.mac
1465 The kernel debugger was entered as a result of an assertion failure in the
1466 .Xr mac_test 4
1467 module of the
1468 TrustedBSD MAC Framework.
1469 .It Va kdb.enter.ndis
1470 The kernel debugger was entered as a result of an
1471 .Xr ndis 4
1472 breakpoint event.
1473 .It Va kdb.enter.netgraph
1474 The kernel debugger was entered as a result of a
1475 .Xr netgraph 4
1476 event.
1477 .It Va kdb.enter.panic
1478 .Xr panic 9
1479 was called.
1480 .It Va kdb.enter.powerfail
1481 The kernel debugger was entered as a result of a powerfail NMI on the sparc64
1482 platform.
1483 .It Va kdb.enter.powerpc
1484 The kernel debugger was entered as a result of an unimplemented interrupt
1485 type on the powerpc platform.
1486 .It Va kdb.enter.sysctl
1487 The kernel debugger was entered as a result of the
1488 .Va debug.kdb.enter
1489 sysctl being set.
1490 .It Va kdb.enter.trapsig
1491 The kernel debugger was entered as a result of a trapsig event on the sparc64
1492 platform.
1493 .It Va kdb.enter.unionfs
1494 The kernel debugger was entered as a result of an assertion failure in the
1495 union file system.
1496 .It Va kdb.enter.unknown
1497 The kernel debugger was entered, but no reason has been set.
1498 .It Va kdb.enter.vfslock
1499 The kernel debugger was entered as a result of a VFS lock violation.
1500 .It Va kdb.enter.watchdog
1501 The kernel debugger was entered as a result of a watchdog firing.
1502 .It Va kdb.enter.witness
1503 The kernel debugger was entered as a result of a
1504 .Xr witness 4
1505 violation.
1506 .El
1507 .Pp
1508 In the event that none of these scripts is found,
1509 .Nm
1510 will attempt to execute a default script:
1511 .Bl -tag -width kdb.enter.powerfail
1512 .It Va kdb.enter.default
1513 The kernel debugger was entered, but a script exactly matching the reason for
1514 entering was not defined.
1515 This can be used as a catch-all to handle cases not specifically of interest;
1516 for example,
1517 .Va kdb.enter.witness
1518 might be defined to have special handling, and
1519 .Va kdb.enter.default
1520 might be defined to simply panic and reboot.
1521 .El
1522 .Sh HINTS
1523 On machines with an ISA expansion bus, a simple NMI generation card can be
1524 constructed by connecting a push button between the A01 and B01 (CHCHK# and
1525 GND) card fingers.
1526 Momentarily shorting these two fingers together may cause the bridge chipset to
1527 generate an NMI, which causes the kernel to pass control to
1528 .Nm .
1529 Some bridge chipsets do not generate a NMI on CHCHK#, so your mileage may vary.
1530 The NMI allows one to break into the debugger on a wedged machine to
1531 diagnose problems.
1532 Other bus' bridge chipsets may be able to generate NMI using bus specific
1533 methods.
1534 There are many PCI and PCIe add-in cards which can generate NMI for
1535 debugging.
1536 Modern server systems typically use IPMI to generate signals to enter the
1537 debugger.
1538 The
1539 .Va devel/ipmitool
1540 port can be used to send the
1541 .Cd chassis power diag
1542 command which delivers an NMI to the processor.
1543 Embedded systems often use JTAG for debugging, but rarely use it in
1544 combination with
1545 .Nm .
1546 .Pp
1547 For serial consoles, you can enter the debugger by sending a BREAK
1548 condition on the serial line if
1549 .Cd options BREAK_TO_DEBUGGER
1550 is specified in the kernel.
1551 Most terminal emulation programs can send a break sequence with a
1552 special key sequence or via a menu item.
1553 However, in some setups, sending the break can be difficult to arrange
1554 or happens spuriously, so if the kernel contains
1555 .Cd options ALT_BREAK_TO_DEBUGGER
1556 then the sequence of CR TILDE CTRL-B enters the debugger;
1557 CR TILDE CTRL-P causes a panic instead of entering the
1558 debugger; and
1559 CR TILDE CTRL-R causes an immediate reboot.
1560 In all the above sequences, CR is a Carriage Return and is usually
1561 sent by hitting the Enter or Return key.
1562 TILDE is the ASCII tilde character (~).
1563 CTRL-x is Control x created by hitting the control key and then x
1564 and then releasing both.
1565 .Pp
1566 The break to enter the debugger behavior may be enabled at run-time
1567 by setting the
1568 .Xr sysctl 8
1569 .Va debug.kdb.break_to_debugger
1570 to 1.
1571 The alternate sequence to enter the debugger behavior may be enabled
1572 at run-time by setting the
1573 .Xr sysctl 8
1574 .Va debug.kdb.alt_break_to_debugger
1575 to 1.
1576 The debugger may be entered by setting the
1577 .Xr sysctl 8
1578 .Va debug.kdb.enter
1579 to 1.
1580 .Sh FILES
1581 Header files mentioned in this manual page can be found below
1582 .Pa /usr/include
1583 directory.
1584 .Pp
1585 .Bl -dash -compact
1586 .It
1587 .Pa sys/buf.h
1588 .It
1589 .Pa sys/domain.h
1590 .It
1591 .Pa netinet/in_pcb.h
1592 .It
1593 .Pa sys/socket.h
1594 .It
1595 .Pa sys/vnode.h
1596 .El
1597 .Sh SEE ALSO
1598 .Xr gdb 1 ,
1599 .Xr kgdb 1 ,
1600 .Xr acpi 4 ,
1601 .Xr CAM 4 ,
1602 .Xr mac_test 4 ,
1603 .Xr ndis 4 ,
1604 .Xr netgraph 4 ,
1605 .Xr textdump 4 ,
1606 .Xr witness 4 ,
1607 .Xr ddb 8 ,
1608 .Xr sysctl 8 ,
1609 .Xr panic 9
1610 .Sh HISTORY
1611 The
1612 .Nm
1613 debugger was developed for Mach, and ported to
1614 .Bx 386 0.1 .
1615 This manual page translated from
1616 .Xr man 7
1617 macros by
1618 .An Garrett Wollman .
1619 .Pp
1620 .An Robert N. M. Watson
1621 added support for
1622 .Nm
1623 output capture,
1624 .Xr textdump 4
1625 and scripting in
1626 .Fx 7.1 .