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