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