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