]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/man/man4/ddb.4
MFC r326362:
[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 callout Ar addr
615 Show information about the callout structure
616 .Vt struct callout
617 present at
618 .Ar addr .
619 .\"
620 .Pp
621 .It Ic show Cm cbstat
622 Show brief information about the TTY subsystem.
623 .\"
624 .Pp
625 .It Ic show Cm cdev
626 Without argument, show the list of all created cdev's, consisting of devfs
627 node name and struct cdev address.
628 When address of cdev is supplied, show some internal devfs state of the cdev.
629 .\"
630 .Pp
631 .It Ic show Cm conifhk
632 Lists hooks currently waiting for completion in
633 run_interrupt_driven_config_hooks().
634 .\"
635 .Pp
636 .It Ic show Cm cpusets
637 Print numbered root and assigned CPU affinity sets.
638 See
639 .Xr cpuset 2
640 for more details.
641 .\"
642 .Pp
643 .It Ic show Cm cyrixreg
644 Show registers specific to the Cyrix processor.
645 .\"
646 .Pp
647 .It Ic show Cm domain Ar addr
648 Print protocol domain structure
649 .Vt struct domain
650 at address
651 .Ar addr .
652 See the
653 .Pa sys/domain.h
654 header file for more details on the exact meaning of the structure fields.
655 .\"
656 .Pp
657 .It Ic show Cm ffs Op Ar addr
658 Show brief information about ffs mount at the address
659 .Ar addr ,
660 if argument is given.
661 Otherwise, provides the summary about each ffs mount.
662 .\"
663 .Pp
664 .It Ic show Cm file Ar addr
665 Show information about the file structure
666 .Vt struct file
667 present at address
668 .Ar addr .
669 .\"
670 .Pp
671 .It Ic show Cm files
672 Show information about every file structure in the system.
673 .\"
674 .Pp
675 .It Ic show Cm freepages
676 Show the number of physical pages in each of the free lists.
677 .\"
678 .Pp
679 .It Ic show Cm geom Op Ar addr
680 If the
681 .Ar addr
682 argument is not given, displays the entire GEOM topology.
683 If
684 .Ar addr
685 is given, displays details about the given GEOM object (class, geom,
686 provider or consumer).
687 .\"
688 .Pp
689 .It Ic show Cm idt
690 Show IDT layout.
691 The first column specifies the IDT vector.
692 The second one is the name of the interrupt/trap handler.
693 Those functions are machine dependent.
694 .\"
695 .Pp
696 .It Ic show Cm inodedeps Op Ar addr
697 Show brief information about each inodedep structure.
698 If
699 .Ar addr
700 is given, only inodedeps belonging to the fs located at the
701 supplied address are shown.
702 .\"
703 .Pp
704 .It Ic show Cm inpcb Ar addr
705 Show information on IP Control Block
706 .Vt struct in_pcb
707 present at
708 .Ar addr .
709 .\"
710 .Pp
711 .It Ic show Cm intr
712 Dump information about interrupt handlers.
713 .\"
714 .Pp
715 .It Ic show Cm intrcnt
716 Dump the interrupt statistics.
717 .\"
718 .Pp
719 .It Ic show Cm irqs
720 Show interrupt lines and their respective kernel threads.
721 .\"
722 .Pp
723 .It Ic show Cm jails
724 Show the list of
725 .Xr jail 8
726 instances.
727 In addition to what
728 .Xr jls 8
729 shows, also list kernel internal details.
730 .\"
731 .Pp
732 .It Ic show Cm lapic
733 Show information from the local APIC registers for this CPU.
734 .\"
735 .Pp
736 .It Ic show Cm lock Ar addr
737 Show lock structure.
738 The output format is as follows:
739 .Bl -tag -width "flags"
740 .It Ic class:
741 Class of the lock.
742 Possible types include
743 .Xr mutex 9 ,
744 .Xr rmlock 9 ,
745 .Xr rwlock 9 ,
746 .Xr sx 9 .
747 .It Ic name:
748 Name of the lock.
749 .It Ic flags:
750 Flags passed to the lock initialization function.
751 For exact possibilities see manual pages of possible lock types.
752 .It Ic state:
753 Current state of a lock.
754 As well as
755 .Ic flags
756 it's lock-specific.
757 .It Ic owner:
758 Lock owner.
759 .El
760 .\"
761 .Pp
762 .It Ic show Cm lockchain Ar addr
763 Show all threads a particular thread at address
764 .Ar addr
765 is waiting on based on non-sleepable and non-spin locks.
766 .\"
767 .Pp
768 .It Ic show Cm lockedbufs
769 Show the same information as "show buf", but for every locked
770 .Vt struct buf
771 object.
772 .\"
773 .Pp
774 .It Ic show Cm lockedvnods
775 List all locked vnodes in the system.
776 .\"
777 .Pp
778 .It Ic show Cm locks
779 Prints all locks that are currently acquired.
780 This command is only available if
781 .Xr witness 4
782 is included in the kernel.
783 .\"
784 .Pp
785 .It Ic show Cm locktree
786 .\"
787 .Pp
788 .It Ic show Cm malloc
789 Prints
790 .Xr malloc 9
791 memory allocator statistics.
792 The output format is as follows:
793 .Pp
794 .Bl -tag -compact -offset indent -width "Requests"
795 .It Ic Type
796 Specifies a type of memory.
797 It is the same as a description string used while defining the
798 given memory type with
799 .Xr MALLOC_DECLARE 9 .
800 .It Ic InUse
801 Number of memory allocations of the given type, for which
802 .Xr free 9
803 has not been called yet.
804 .It Ic MemUse
805 Total memory consumed by the given allocation type.
806 .It Ic Requests
807 Number of memory allocation requests for the given
808 memory type.
809 .El
810 .Pp
811 The same information can be gathered in userspace with
812 .Dq Nm vmstat Fl m .
813 .\"
814 .Pp
815 .It Ic show Cm map Ns Oo Li / Ns Cm f Oc Ar addr
816 Prints the VM map at
817 .Ar addr .
818 If the
819 .Cm f
820 modifier is specified the
821 complete map is printed.
822 .\"
823 .Pp
824 .It Ic show Cm msgbuf
825 Print the system's message buffer.
826 It is the same output as in the
827 .Dq Nm dmesg
828 case.
829 It is useful if you got a kernel panic, attached a serial cable
830 to the machine and want to get the boot messages from before the
831 system hang.
832 .\"
833 .It Ic show Cm mount
834 Displays short info about all currently mounted file systems.
835 .Pp
836 .It Ic show Cm mount Ar addr
837 Displays details about the given mount point.
838 .\"
839 .Pp
840 .It Ic show Cm object Ns Oo Li / Ns Cm f Oc Ar addr
841 Prints the VM object at
842 .Ar addr .
843 If the
844 .Cm f
845 option is specified the
846 complete object is printed.
847 .\"
848 .Pp
849 .It Ic show Cm panic
850 Print the panic message if set.
851 .\"
852 .Pp
853 .It Ic show Cm page
854 Show statistics on VM pages.
855 .\"
856 .Pp
857 .It Ic show Cm pageq
858 Show statistics on VM page queues.
859 .\"
860 .Pp
861 .It Ic show Cm pciregs
862 Print PCI bus registers.
863 The same information can be gathered in userspace by running
864 .Dq Nm pciconf Fl lv .
865 .\"
866 .Pp
867 .It Ic show Cm pcpu
868 Print current processor state.
869 The output format is as follows:
870 .Pp
871 .Bl -tag -compact -offset indent -width "spin locks held:"
872 .It Ic cpuid
873 Processor identifier.
874 .It Ic curthread
875 Thread pointer, process identifier and the name of the process.
876 .It Ic curpcb
877 Control block pointer.
878 .It Ic fpcurthread
879 FPU thread pointer.
880 .It Ic idlethread
881 Idle thread pointer.
882 .It Ic APIC ID
883 CPU identifier coming from APIC.
884 .It Ic currentldt
885 LDT pointer.
886 .It Ic spin locks held
887 Names of spin locks held.
888 .El
889 .\"
890 .Pp
891 .It Ic show Cm pgrpdump
892 Dump process groups present within the system.
893 .\"
894 .Pp
895 .It Ic show Cm proc Op Ar addr
896 If no
897 .Op Ar addr
898 is specified, print information about the current process.
899 Otherwise, show information about the process at address
900 .Ar addr .
901 .\"
902 .Pp
903 .It Ic show Cm procvm
904 Show process virtual memory layout.
905 .\"
906 .Pp
907 .It Ic show Cm protosw Ar addr
908 Print protocol switch structure
909 .Vt struct protosw
910 at address
911 .Ar addr .
912 .\"
913 .Pp
914 .It Ic show Cm registers Ns Op Li / Ns Cm u
915 Display the register set.
916 If the
917 .Cm u
918 modifier is specified, it displays user registers instead of
919 kernel registers or the currently saved one.
920 .Pp
921 .Sy Warning :
922 The support of the
923 .Cm u
924 modifier depends on the machine.
925 If not supported, incorrect information will be displayed.
926 .\"
927 .Pp
928 .It Ic show Cm rman Ar addr
929 Show resource manager object
930 .Vt struct rman
931 at address
932 .Ar addr .
933 Addresses of particular pointers can be gathered with "show allrman"
934 command.
935 .\"
936 .Pp
937 .It Ic show Cm rtc
938 Show real time clock value.
939 Useful for long debugging sessions.
940 .\"
941 .Pp
942 .It Ic show Cm sleepchain
943 Show all the threads a particular thread is waiting on based on
944 sleepable locks.
945 .\"
946 .Pp
947 .It Ic show Cm sleepq
948 .It Ic show Cm sleepqueue
949 Both commands provide the same functionality.
950 They show sleepqueue
951 .Vt struct sleepqueue
952 structure.
953 Sleepqueues are used within the
954 .Fx
955 kernel to implement sleepable
956 synchronization primitives (thread holding a lock might sleep or
957 be context switched), which at the time of writing are:
958 .Xr condvar 9 ,
959 .Xr sx 9
960 and standard
961 .Xr msleep 9
962 interface.
963 .\"
964 .Pp
965 .It Ic show Cm sockbuf Ar addr
966 .It Ic show Cm socket Ar addr
967 Those commands print
968 .Vt struct sockbuf
969 and
970 .Vt struct socket
971 objects placed at
972 .Ar addr .
973 Output consists of all values present in structures mentioned.
974 For exact interpretation and more details, visit
975 .Pa sys/socket.h
976 header file.
977 .\"
978 .Pp
979 .It Ic show Cm sysregs
980 Show system registers (e.g.,
981 .Li cr0-4
982 on i386.)
983 Not present on some platforms.
984 .\"
985 .Pp
986 .It Ic show Cm tcpcb Ar addr
987 Print TCP control block
988 .Vt struct tcpcb
989 lying at address
990 .Ar addr .
991 For exact interpretation of output, visit
992 .Pa netinet/tcp.h
993 header file.
994 .\"
995 .Pp
996 .It Ic show Cm thread Op Ar addr
997 If no
998 .Ar addr
999 is specified, show detailed information about current thread.
1000 Otherwise, information about thread at
1001 .Ar addr
1002 is printed.
1003 .\"
1004 .Pp
1005 .It Ic show Cm threads
1006 Show all threads within the system.
1007 Output format is as follows:
1008 .Pp
1009 .Bl -tag -compact -offset indent -width "Second column"
1010 .It Ic First column
1011 Thread identifier (TID)
1012 .It Ic Second column
1013 Thread structure address
1014 .It Ic Third column
1015 Backtrace.
1016 .El
1017 .\"
1018 .Pp
1019 .It Ic show Cm tty Ar addr
1020 Display the contents of a TTY structure in a readable form.
1021 .\"
1022 .Pp
1023 .It Ic show Cm turnstile Ar addr
1024 Show turnstile
1025 .Vt struct turnstile
1026 structure at address
1027 .Ar addr .
1028 Turnstiles are structures used within the
1029 .Fx
1030 kernel to implement
1031 synchronization primitives which, while holding a specific type of lock, cannot
1032 sleep or context switch to another thread.
1033 Currently, those are:
1034 .Xr mutex 9 ,
1035 .Xr rwlock 9 ,
1036 .Xr rmlock 9 .
1037 .\"
1038 .Pp
1039 .It Ic show Cm uma
1040 Show UMA allocator statistics.
1041 Output consists five columns:
1042 .Pp
1043 .Bl -tag -compact -offset indent -width "Requests"
1044 .It Cm "Zone"
1045 Name of the UMA zone.
1046 The same string that was passed to
1047 .Xr uma_zcreate 9
1048 as a first argument.
1049 .It Cm "Size"
1050 Size of a given memory object (slab).
1051 .It Cm "Used"
1052 Number of slabs being currently used.
1053 .It Cm "Free"
1054 Number of free slabs within the UMA zone.
1055 .It Cm "Requests"
1056 Number of allocations requests to the given zone.
1057 .El
1058 .Pp
1059 The very same information might be gathered in the userspace
1060 with the help of
1061 .Dq Nm vmstat Fl z .
1062 .\"
1063 .Pp
1064 .It Ic show Cm unpcb Ar addr
1065 Shows UNIX domain socket private control block
1066 .Vt struct unpcb
1067 present at the address
1068 .Ar addr .
1069 .\"
1070 .Pp
1071 .It Ic show Cm vmochk
1072 Prints, whether the internal VM objects are in a map somewhere
1073 and none have zero ref counts.
1074 .\"
1075 .Pp
1076 .It Ic show Cm vmopag
1077 This is supposed to show physical addresses consumed by a
1078 VM object.
1079 Currently, it is not possible to use this command when
1080 .Xr witness 4
1081 is compiled in the kernel.
1082 .\"
1083 .Pp
1084 .It Ic show Cm vnode Op Ar addr
1085 Prints vnode
1086 .Vt struct vnode
1087 structure lying at
1088 .Op Ar addr .
1089 For the exact interpretation of the output, look at the
1090 .Pa sys/vnode.h
1091 header file.
1092 .\"
1093 .Pp
1094 .It Ic show Cm vnodebufs Ar addr
1095 Shows clean/dirty buffer lists of the vnode located at
1096 .Ar addr .
1097 .\"
1098 .Pp
1099 .It Ic show Cm watches
1100 Displays all watchpoints.
1101 Shows watchpoints set with "watch" command.
1102 .\"
1103 .Pp
1104 .It Ic show Cm witness
1105 Shows information about lock acquisition coming from the
1106 .Xr witness 4
1107 subsystem.
1108 .\"
1109 .Pp
1110 .It Ic gdb
1111 Toggles between remote GDB and DDB mode.
1112 In remote GDB mode, another machine is required that runs
1113 .Xr gdb 1
1114 using the remote debug feature, with a connection to the serial
1115 console port on the target machine.
1116 Currently only available on the
1117 i386
1118 architecture.
1119 .Pp
1120 .It Ic halt
1121 Halt the system.
1122 .Pp
1123 .It Ic kill Ar sig pid
1124 Send signal
1125 .Ar sig
1126 to process
1127 .Ar pid .
1128 The signal is acted on upon returning from the debugger.
1129 This command can be used to kill a process causing resource contention
1130 in the case of a hung system.
1131 See
1132 .Xr signal 3
1133 for a list of signals.
1134 Note that the arguments are reversed relative to
1135 .Xr kill 2 .
1136 .Pp
1137 .It Ic reboot Op Ar seconds
1138 .It Ic reset Op Ar seconds
1139 Hard reset the system.
1140 If the optional argument
1141 .Ar seconds
1142 is given, the debugger will wait for this long, at most a week,
1143 before rebooting.
1144 .Pp
1145 .It Ic help
1146 Print a short summary of the available commands and command
1147 abbreviations.
1148 .Pp
1149 .It Ic capture on
1150 .It Ic capture off
1151 .It Ic capture reset
1152 .It Ic capture status
1153 .Nm
1154 supports a basic output capture facility, which can be used to retrieve the
1155 results of debugging commands from userpsace using
1156 .Xr sysctl 2 .
1157 .Ic capture on
1158 enables output capture;
1159 .Ic capture off
1160 disables capture.
1161 .Ic capture reset
1162 will clear the capture buffer and disable capture.
1163 .Ic capture status
1164 will report current buffer use, buffer size, and disposition of output
1165 capture.
1166 .Pp
1167 Userspace processes may inspect and manage
1168 .Nm
1169 capture state using
1170 .Xr sysctl 8 :
1171 .Pp
1172 .Dv debug.ddb.capture.bufsize
1173 may be used to query or set the current capture buffer size.
1174 .Pp
1175 .Dv debug.ddb.capture.maxbufsize
1176 may be used to query the compile-time limit on the capture buffer size.
1177 .Pp
1178 .Dv debug.ddb.capture.bytes
1179 may be used to query the number of bytes of output currently in the capture
1180 buffer.
1181 .Pp
1182 .Dv debug.ddb.capture.data
1183 returns the contents of the buffer as a string to an appropriately privileged
1184 process.
1185 .Pp
1186 This facility is particularly useful in concert with the scripting and
1187 .Xr textdump 4
1188 facilities, allowing scripted debugging output to be captured and
1189 committed to disk as part of a textdump for later analysis.
1190 The contents of the capture buffer may also be inspected in a kernel core dump
1191 using
1192 .Xr kgdb 1 .
1193 .Pp
1194 .It Ic run
1195 .It Ic script
1196 .It Ic scripts
1197 .It Ic unscript
1198 Run, define, list, and delete scripts.
1199 See the
1200 .Sx SCRIPTING
1201 section for more information on the scripting facility.
1202 .Pp
1203 .It Ic textdump dump
1204 .It Ic textdump set
1205 .It Ic textdump status
1206 .It Ic textdump unset
1207 Use the
1208 .Ic textdump dump
1209 command to immediately perform a textdump.
1210 More information may be found in
1211 .Xr textdump 4 .
1212 The
1213 .Ic textdump set
1214 command may be used to force the next kernel core dump to be a textdump
1215 rather than a traditional memory dump or minidump.
1216 .Ic textdump status
1217 reports whether a textdump has been scheduled.
1218 .Ic textdump unset
1219 cancels a request to perform a textdump as the next kernel core dump.
1220 .El
1221 .Sh VARIABLES
1222 The debugger accesses registers and variables as
1223 .Li $ Ns Ar name .
1224 Register names are as in the
1225 .Dq Ic show Cm registers
1226 command.
1227 Some variables are suffixed with numbers, and may have some modifier
1228 following a colon immediately after the variable name.
1229 For example, register variables can have a
1230 .Cm u
1231 modifier to indicate user register (e.g.,
1232 .Dq Li $eax:u ) .
1233 .Pp
1234 Built-in variables currently supported are:
1235 .Pp
1236 .Bl -tag -width ".Va tabstops" -compact
1237 .It Va radix
1238 Input and output radix.
1239 .It Va maxoff
1240 Addresses are printed as
1241 .Dq Ar symbol Ns Li + Ns Ar offset
1242 unless
1243 .Ar offset
1244 is greater than
1245 .Va maxoff .
1246 .It Va maxwidth
1247 The width of the displayed line.
1248 .It Va lines
1249 The number of lines.
1250 It is used by the built-in pager.
1251 .It Va tabstops
1252 Tab stop width.
1253 .It Va work Ns Ar xx
1254 Work variable;
1255 .Ar xx
1256 can take values from 0 to 31.
1257 .El
1258 .Sh EXPRESSIONS
1259 Most expression operators in C are supported except
1260 .Ql ~ ,
1261 .Ql ^ ,
1262 and unary
1263 .Ql & .
1264 Special rules in
1265 .Nm
1266 are:
1267 .Bl -tag -width ".No Identifiers"
1268 .It Identifiers
1269 The name of a symbol is translated to the value of the symbol, which
1270 is the address of the corresponding object.
1271 .Ql \&.
1272 and
1273 .Ql \&:
1274 can be used in the identifier.
1275 If supported by an object format dependent routine,
1276 .Sm off
1277 .Oo Ar filename : Oc Ar func : lineno ,
1278 .Sm on
1279 .Oo Ar filename : Oc Ns Ar variable ,
1280 and
1281 .Oo Ar filename : Oc Ns Ar lineno
1282 can be accepted as a symbol.
1283 .It Numbers
1284 Radix is determined by the first two letters:
1285 .Ql 0x :
1286 hex,
1287 .Ql 0o :
1288 octal,
1289 .Ql 0t :
1290 decimal; otherwise, follow current radix.
1291 .It Li \&.
1292 .Va dot
1293 .It Li +
1294 .Va next
1295 .It Li ..
1296 address of the start of the last line examined.
1297 Unlike
1298 .Va dot
1299 or
1300 .Va next ,
1301 this is only changed by
1302 .Ic examine
1303 or
1304 .Ic write
1305 command.
1306 .It Li '
1307 last address explicitly specified.
1308 .It Li $ Ns Ar variable
1309 Translated to the value of the specified variable.
1310 It may be followed by a
1311 .Ql \&:
1312 and modifiers as described above.
1313 .It Ar a Ns Li # Ns Ar b
1314 A binary operator which rounds up the left hand side to the next
1315 multiple of right hand side.
1316 .It Li * Ns Ar expr
1317 Indirection.
1318 It may be followed by a
1319 .Ql \&:
1320 and modifiers as described above.
1321 .El
1322 .Sh SCRIPTING
1323 .Nm
1324 supports a basic scripting facility to allow automating tasks or responses to
1325 specific events.
1326 Each script consists of a list of DDB commands to be executed sequentially,
1327 and is assigned a unique name.
1328 Certain script names have special meaning, and will be automatically run on
1329 various
1330 .Nm
1331 events if scripts by those names have been defined.
1332 .Pp
1333 The
1334 .Ic script
1335 command may be used to define a script by name.
1336 Scripts consist of a series of
1337 .Nm
1338 commands separated with the
1339 .Ql \&;
1340 character.
1341 For example:
1342 .Bd -literal -offset indent
1343 script kdb.enter.panic=bt; show pcpu
1344 script lockinfo=show alllocks; show lockedvnods
1345 .Ed
1346 .Pp
1347 The
1348 .Ic scripts
1349 command lists currently defined scripts.
1350 .Pp
1351 The
1352 .Ic run
1353 command execute a script by name.
1354 For example:
1355 .Bd -literal -offset indent
1356 run lockinfo
1357 .Ed
1358 .Pp
1359 The
1360 .Ic unscript
1361 command may be used to delete a script by name.
1362 For example:
1363 .Bd -literal -offset indent
1364 unscript kdb.enter.panic
1365 .Ed
1366 .Pp
1367 These functions may also be performed from userspace using the
1368 .Xr ddb 8
1369 command.
1370 .Pp
1371 Certain scripts are run automatically, if defined, for specific
1372 .Nm
1373 events.
1374 The follow scripts are run when various events occur:
1375 .Bl -tag -width kdb.enter.powerfail
1376 .It Dv kdb.enter.acpi
1377 The kernel debugger was entered as a result of an
1378 .Xr acpi 4
1379 event.
1380 .It Dv kdb.enter.bootflags
1381 The kernel debugger was entered at boot as a result of the debugger boot
1382 flag being set.
1383 .It Dv kdb.enter.break
1384 The kernel debugger was entered as a result of a serial or console break.
1385 .It Dv kdb.enter.cam
1386 The kernel debugger was entered as a result of a
1387 .Xr CAM 4
1388 event.
1389 .It Dv kdb.enter.mac
1390 The kernel debugger was entered as a result of an assertion failure in the
1391 .Xr mac_test 4
1392 module of the
1393 TrustedBSD MAC Framework.
1394 .It Dv kdb.enter.ndis
1395 The kernel debugger was entered as a result of an
1396 .Xr ndis 4
1397 breakpoint event.
1398 .It Dv kdb.enter.netgraph
1399 The kernel debugger was entered as a result of a
1400 .Xr netgraph 4
1401 event.
1402 .It Dv kdb.enter.panic
1403 .Xr panic 9
1404 was called.
1405 .It Dv kdb.enter.powerfail
1406 The kernel debugger was entered as a result of a powerfail NMI on the sparc64
1407 platform.
1408 .It Dv kdb.enter.powerpc
1409 The kernel debugger was entered as a result of an unimplemented interrupt
1410 type on the powerpc platform.
1411 .It Dv kdb.enter.sysctl
1412 The kernel debugger was entered as a result of the
1413 .Dv debug.kdb.enter
1414 sysctl being set.
1415 .It Dv kdb.enter.trapsig
1416 The kernel debugger was entered as a result of a trapsig event on the sparc64
1417 platform.
1418 .It Dv kdb.enter.unionfs
1419 The kernel debugger was entered as a result of an assertion failure in the
1420 union file system.
1421 .It Dv kdb.enter.unknown
1422 The kernel debugger was entered, but no reason has been set.
1423 .It Dv kdb.enter.vfslock
1424 The kernel debugger was entered as a result of a VFS lock violation.
1425 .It Dv kdb.enter.watchdog
1426 The kernel debugger was entered as a result of a watchdog firing.
1427 .It Dv kdb.enter.witness
1428 The kernel debugger was entered as a result of a
1429 .Xr witness 4
1430 violation.
1431 .El
1432 .Pp
1433 In the event that none of these scripts is found,
1434 .Nm
1435 will attempt to execute a default script:
1436 .Bl -tag -width kdb.enter.powerfail
1437 .It Dv kdb.enter.default
1438 The kernel debugger was entered, but a script exactly matching the reason for
1439 entering was not defined.
1440 This can be used as a catch-all to handle cases not specifically of interest;
1441 for example,
1442 .Dv kdb.enter.witness
1443 might be defined to have special handling, and
1444 .Dv kdb.enter.default
1445 might be defined to simply panic and reboot.
1446 .El
1447 .Sh HINTS
1448 On machines with an ISA expansion bus, a simple NMI generation card can be
1449 constructed by connecting a push button between the A01 and B01 (CHCHK# and
1450 GND) card fingers.
1451 Momentarily shorting these two fingers together may cause the bridge chipset to
1452 generate an NMI, which causes the kernel to pass control to
1453 .Nm .
1454 Some bridge chipsets do not generate a NMI on CHCHK#, so your mileage may vary.
1455 The NMI allows one to break into the debugger on a wedged machine to
1456 diagnose problems.
1457 Other bus' bridge chipsets may be able to generate NMI using bus specific
1458 methods.
1459 .Sh FILES
1460 Header files mention in this manual page can be found below
1461 .Pa /usr/include
1462 directory.
1463 .Pp
1464 .Bl -dash -compact
1465 .It
1466 .Pa sys/buf.h
1467 .It
1468 .Pa sys/domain.h
1469 .It
1470 .Pa netinet/in_pcb.h
1471 .It
1472 .Pa sys/socket.h
1473 .It
1474 .Pa sys/vnode.h
1475 .El
1476 .Sh SEE ALSO
1477 .Xr gdb 1 ,
1478 .Xr kgdb 1 ,
1479 .Xr acpi 4 ,
1480 .Xr CAM 4 ,
1481 .Xr mac_test 4 ,
1482 .Xr ndis 4 ,
1483 .Xr netgraph 4 ,
1484 .Xr textdump 4 ,
1485 .Xr witness 4 ,
1486 .Xr ddb 8 ,
1487 .Xr sysctl 8 ,
1488 .Xr panic 9
1489 .Sh HISTORY
1490 The
1491 .Nm
1492 debugger was developed for Mach, and ported to
1493 .Bx 386 0.1 .
1494 This manual page translated from
1495 .Xr man 7
1496 macros by
1497 .An Garrett Wollman .
1498 .Pp
1499 .An Robert N. M. Watson
1500 added support for
1501 .Nm
1502 output capture,
1503 .Xr textdump 4
1504 and scripting in
1505 .Fx 7.1 .