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