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