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 November 19, 2020 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 62backend, so that remote debugging with 63.Xr kgdb 1 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 . 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, it displays user registers instead of 959kernel registers or the currently saved one. 960.Pp 961.Sy Warning : 962The support of the 963.Cm u 964modifier depends on the machine. 965If not supported, incorrect information will be displayed. 966.\" 967.Pp 968.It Ic show Cm rman Ar addr 969Show resource manager object 970.Vt struct rman 971at address 972.Ar addr . 973Addresses of particular pointers can be gathered with "show allrman" 974command. 975.\" 976.Pp 977.It Ic show Cm route Ar addr 978Show route table result for destination 979.Ar addr . 980At this time, INET and INET6 formatted addresses are supported. 981.\" 982.Pp 983.It Ic show Cm routetable Oo Ar af Oc 984Show full route table or tables. 985If 986.Ar af 987is specified, show only routes for the given numeric address family. 988If no argument is specified, dump the route table for all address families. 989.\" 990.Pp 991.It Ic show Cm rtc 992Show real time clock value. 993Useful for long debugging sessions. 994.\" 995.Pp 996.It Ic show Cm sleepchain 997Deprecated. 998Now an alias for 999.Ic show Cm lockchain . 1000.\" 1001.Pp 1002.It Ic show Cm sleepq 1003.It Ic show Cm sleepqueue 1004Both commands provide the same functionality. 1005They show sleepqueue 1006.Vt struct sleepqueue 1007structure. 1008Sleepqueues are used within the 1009.Fx 1010kernel to implement sleepable 1011synchronization primitives (thread holding a lock might sleep or 1012be context switched), which at the time of writing are: 1013.Xr condvar 9 , 1014.Xr sx 9 1015and standard 1016.Xr msleep 9 1017interface. 1018.\" 1019.Pp 1020.It Ic show Cm sockbuf Ar addr 1021.It Ic show Cm socket Ar addr 1022Those commands print 1023.Vt struct sockbuf 1024and 1025.Vt struct socket 1026objects placed at 1027.Ar addr . 1028Output consists of all values present in structures mentioned. 1029For exact interpretation and more details, visit 1030.Pa sys/socket.h 1031header file. 1032.\" 1033.Pp 1034.It Ic show Cm sysregs 1035Show system registers (e.g., 1036.Li cr0-4 1037on i386.) 1038Not present on some platforms. 1039.\" 1040.Pp 1041.It Ic show Cm tcpcb Ar addr 1042Print TCP control block 1043.Vt struct tcpcb 1044lying at address 1045.Ar addr . 1046For exact interpretation of output, visit 1047.Pa netinet/tcp.h 1048header file. 1049.\" 1050.Pp 1051.It Ic show Cm thread Op Ar addr | tid 1052If no 1053.Ar addr 1054or 1055.Ar tid 1056is specified, show detailed information about current thread. 1057Otherwise, print information about the thread with ID 1058.Ar tid 1059or kernel address 1060.Ar addr . 1061(If the argument is a decimal number, it is assumed to be a tid.) 1062.\" 1063.Pp 1064.It Ic show Cm threads 1065Show all threads within the system. 1066Output format is as follows: 1067.Pp 1068.Bl -tag -compact -offset indent -width "Second column" 1069.It Ic First column 1070Thread identifier (TID) 1071.It Ic Second column 1072Thread structure address 1073.It Ic Third column 1074Backtrace. 1075.El 1076.\" 1077.Pp 1078.It Ic show Cm tty Ar addr 1079Display the contents of a TTY structure in a readable form. 1080.\" 1081.Pp 1082.It Ic show Cm turnstile Ar addr 1083Show turnstile 1084.Vt struct turnstile 1085structure at address 1086.Ar addr . 1087Turnstiles are structures used within the 1088.Fx 1089kernel to implement 1090synchronization primitives which, while holding a specific type of lock, cannot 1091sleep or context switch to another thread. 1092Currently, those are: 1093.Xr mutex 9 , 1094.Xr rwlock 9 , 1095.Xr rmlock 9 . 1096.\" 1097.Pp 1098.It Ic show Cm uma Ns Op Li / Ns Cm i 1099Show UMA allocator statistics. 1100If the 1101.Cm i 1102modifier is specified, format output as machine-parseable comma-separated 1103values ("CSV"). 1104The output contains the following columns: 1105.Pp 1106.Bl -tag -compact -offset indent -width "Total Mem" 1107.It Cm "Zone" 1108Name of the UMA zone. 1109The same string that was passed to 1110.Xr uma_zcreate 9 1111as a first argument. 1112.It Cm "Size" 1113Size of a given memory object (slab). 1114.It Cm "Used" 1115Number of slabs being currently used. 1116.It Cm "Free" 1117Number of free slabs within the UMA zone. 1118.It Cm "Requests" 1119Number of allocations requests to the given zone. 1120.It Cm "Total Mem" 1121Total memory in use (either allocated or free) by a zone, in bytes. 1122.It Cm "XFree" 1123Number of free slabs within the UMA zone that were freed on a different NUMA 1124domain than allocated. 1125(The count in the 1126.Cm "Free" 1127column is inclusive of 1128.Cm "XFree" . ) 1129.El 1130.Pp 1131The same information might be gathered in the userspace 1132with the help of 1133.Dq Nm vmstat Fl z . 1134.\" 1135.Pp 1136.It Ic show Cm unpcb Ar addr 1137Shows UNIX domain socket private control block 1138.Vt struct unpcb 1139present at the address 1140.Ar addr . 1141.\" 1142.Pp 1143.It Ic show Cm vmochk 1144Prints, whether the internal VM objects are in a map somewhere 1145and none have zero ref counts. 1146.\" 1147.Pp 1148.It Ic show Cm vmopag 1149This is supposed to show physical addresses consumed by a 1150VM object. 1151Currently, it is not possible to use this command when 1152.Xr witness 4 1153is compiled in the kernel. 1154.\" 1155.Pp 1156.It Ic show Cm vnet Ar addr 1157Prints virtualized network stack 1158.Vt struct vnet 1159structure present at the address 1160.Ar addr . 1161.\" 1162.Pp 1163.It Ic show Cm vnode Op Ar addr 1164Prints vnode 1165.Vt struct vnode 1166structure lying at 1167.Op Ar addr . 1168For the exact interpretation of the output, look at the 1169.Pa sys/vnode.h 1170header file. 1171.\" 1172.Pp 1173.It Ic show Cm vnodebufs Ar addr 1174Shows clean/dirty buffer lists of the vnode located at 1175.Ar addr . 1176.\" 1177.Pp 1178.It Ic show Cm vpath Ar addr 1179Walk the namecache to lookup the pathname of the vnode located at 1180.Ar addr . 1181.\" 1182.Pp 1183.It Ic show Cm watches 1184Displays all watchpoints. 1185Shows watchpoints set with "watch" command. 1186.\" 1187.Pp 1188.It Ic show Cm witness 1189Shows information about lock acquisition coming from the 1190.Xr witness 4 1191subsystem. 1192.El 1193.Pp 1194.Ss OFFLINE DEBUGGING COMMANDS 1195.Bl -tag -width indent -compact 1196.It Ic gdb 1197Switches to remote GDB mode. 1198In remote GDB mode, another machine is required that runs 1199.Xr gdb 1 1200using the remote debug feature, with a connection to the serial 1201console port on the target machine. 1202.Pp 1203.It Ic netdump Fl s Ar server Oo Fl g Ar gateway Fl c Ar client Fl i Ar iface Oc 1204Configure 1205.Xr netdump 4 1206with the provided parameters, and immediately perform a netdump. 1207.Pp 1208There are some known limitations. 1209Principally, 1210.Xr netdump 4 1211only supports IPv4 at this time. 1212The address arguments to the 1213.Ic netdump 1214command must be dotted decimal IPv4 addresses. 1215(Hostnames are not supported.) 1216At present, the command only works if the machine is in a panic state. 1217Finally, the 1218.Nm 1219.Ic netdump 1220command does not provide any way to configure compression or encryption. 1221.Pp 1222.It Ic netgdb Fl s Ar server Oo Fl g Ar gateway Fl c Ar client Fl i Ar iface Oc 1223Initiate a 1224.Xr netgdb 4 1225session with the provided parameters. 1226.Pp 1227.Ic netgdb 1228has identical limitations to 1229.Ic netdump . 1230.Pp 1231.It Ic capture on 1232.It Ic capture off 1233.It Ic capture reset 1234.It Ic capture status 1235.Nm 1236supports a basic output capture facility, which can be used to retrieve the 1237results of debugging commands from userspace using 1238.Xr sysctl 3 . 1239.Ic capture on 1240enables output capture; 1241.Ic capture off 1242disables capture. 1243.Ic capture reset 1244will clear the capture buffer and disable capture. 1245.Ic capture status 1246will report current buffer use, buffer size, and disposition of output 1247capture. 1248.Pp 1249Userspace processes may inspect and manage 1250.Nm 1251capture state using 1252.Xr sysctl 8 : 1253.Pp 1254.Va debug.ddb.capture.bufsize 1255may be used to query or set the current capture buffer size. 1256.Pp 1257.Va debug.ddb.capture.maxbufsize 1258may be used to query the compile-time limit on the capture buffer size. 1259.Pp 1260.Va debug.ddb.capture.bytes 1261may be used to query the number of bytes of output currently in the capture 1262buffer. 1263.Pp 1264.Va debug.ddb.capture.data 1265returns the contents of the buffer as a string to an appropriately privileged 1266process. 1267.Pp 1268This facility is particularly useful in concert with the scripting and 1269.Xr textdump 4 1270facilities, allowing scripted debugging output to be captured and 1271committed to disk as part of a textdump for later analysis. 1272The contents of the capture buffer may also be inspected in a kernel core dump 1273using 1274.Xr kgdb 1 . 1275.Pp 1276.It Ic run 1277.It Ic script 1278.It Ic scripts 1279.It Ic unscript 1280Run, define, list, and delete scripts. 1281See the 1282.Sx SCRIPTING 1283section for more information on the scripting facility. 1284.Pp 1285.It Ic textdump dump 1286.It Ic textdump set 1287.It Ic textdump status 1288.It Ic textdump unset 1289Use the 1290.Ic textdump dump 1291command to immediately perform a textdump. 1292More information may be found in 1293.Xr textdump 4 . 1294The 1295.Ic textdump set 1296command may be used to force the next kernel core dump to be a textdump 1297rather than a traditional memory dump or minidump. 1298.Ic textdump status 1299reports whether a textdump has been scheduled. 1300.Ic textdump unset 1301cancels a request to perform a textdump as the next kernel core dump. 1302.El 1303.Sh VARIABLES 1304The debugger accesses registers and variables as 1305.Li $ Ns Ar name . 1306Register names are as in the 1307.Dq Ic show Cm registers 1308command. 1309Some variables are suffixed with numbers, and may have some modifier 1310following a colon immediately after the variable name. 1311For example, register variables can have a 1312.Cm u 1313modifier to indicate user register (e.g., 1314.Dq Li $eax:u ) . 1315.Pp 1316Built-in variables currently supported are: 1317.Pp 1318.Bl -tag -width ".Va tabstops" -compact 1319.It Va radix 1320Input and output radix. 1321.It Va maxoff 1322Addresses are printed as 1323.Dq Ar symbol Ns Li + Ns Ar offset 1324unless 1325.Ar offset 1326is greater than 1327.Va maxoff . 1328.It Va maxwidth 1329The width of the displayed line. 1330.It Va lines 1331The number of lines. 1332It is used by the built-in pager. 1333Setting it to 0 disables paging. 1334.It Va tabstops 1335Tab stop width. 1336.It Va work Ns Ar xx 1337Work variable; 1338.Ar xx 1339can take values from 0 to 31. 1340.El 1341.Sh EXPRESSIONS 1342Most expression operators in C are supported except 1343.Ql ~ , 1344.Ql ^ , 1345and unary 1346.Ql & . 1347Special rules in 1348.Nm 1349are: 1350.Bl -tag -width ".No Identifiers" 1351.It Identifiers 1352The name of a symbol is translated to the value of the symbol, which 1353is the address of the corresponding object. 1354.Ql \&. 1355and 1356.Ql \&: 1357can be used in the identifier. 1358If supported by an object format dependent routine, 1359.Sm off 1360.Oo Ar filename : Oc Ar func : lineno , 1361.Sm on 1362.Oo Ar filename : Oc Ns Ar variable , 1363and 1364.Oo Ar filename : Oc Ns Ar lineno 1365can be accepted as a symbol. 1366.It Numbers 1367Radix is determined by the first two letters: 1368.Ql 0x : 1369hex, 1370.Ql 0o : 1371octal, 1372.Ql 0t : 1373decimal; otherwise, follow current radix. 1374.It Li \&. 1375.Va dot 1376.It Li + 1377.Va next 1378.It Li .. 1379address of the start of the last line examined. 1380Unlike 1381.Va dot 1382or 1383.Va next , 1384this is only changed by 1385.Ic examine 1386or 1387.Ic write 1388command. 1389.It Li ' 1390last address explicitly specified. 1391.It Li $ Ns Ar variable 1392Translated to the value of the specified variable. 1393It may be followed by a 1394.Ql \&: 1395and modifiers as described above. 1396.It Ar a Ns Li # Ns Ar b 1397A binary operator which rounds up the left hand side to the next 1398multiple of right hand side. 1399.It Li * Ns Ar expr 1400Indirection. 1401It may be followed by a 1402.Ql \&: 1403and modifiers as described above. 1404.El 1405.Sh SCRIPTING 1406.Nm 1407supports a basic scripting facility to allow automating tasks or responses to 1408specific events. 1409Each script consists of a list of DDB commands to be executed sequentially, 1410and is assigned a unique name. 1411Certain script names have special meaning, and will be automatically run on 1412various 1413.Nm 1414events if scripts by those names have been defined. 1415.Pp 1416The 1417.Ic script 1418command may be used to define a script by name. 1419Scripts consist of a series of 1420.Nm 1421commands separated with the 1422.Ql \&; 1423character. 1424For example: 1425.Bd -literal -offset indent 1426script kdb.enter.panic=bt; show pcpu 1427script lockinfo=show alllocks; show lockedvnods 1428.Ed 1429.Pp 1430The 1431.Ic scripts 1432command lists currently defined scripts. 1433.Pp 1434The 1435.Ic run 1436command execute a script by name. 1437For example: 1438.Bd -literal -offset indent 1439run lockinfo 1440.Ed 1441.Pp 1442The 1443.Ic unscript 1444command may be used to delete a script by name. 1445For example: 1446.Bd -literal -offset indent 1447unscript kdb.enter.panic 1448.Ed 1449.Pp 1450These functions may also be performed from userspace using the 1451.Xr ddb 8 1452command. 1453.Pp 1454Certain scripts are run automatically, if defined, for specific 1455.Nm 1456events. 1457The follow scripts are run when various events occur: 1458.Bl -tag -width kdb.enter.powerfail 1459.It Va kdb.enter.acpi 1460The kernel debugger was entered as a result of an 1461.Xr acpi 4 1462event. 1463.It Va kdb.enter.bootflags 1464The kernel debugger was entered at boot as a result of the debugger boot 1465flag being set. 1466.It Va kdb.enter.break 1467The kernel debugger was entered as a result of a serial or console break. 1468.It Va kdb.enter.cam 1469The kernel debugger was entered as a result of a 1470.Xr CAM 4 1471event. 1472.It Va kdb.enter.mac 1473The kernel debugger was entered as a result of an assertion failure in the 1474.Xr mac_test 4 1475module of the 1476TrustedBSD MAC Framework. 1477.It Va kdb.enter.ndis 1478The kernel debugger was entered as a result of an 1479.Xr ndis 4 1480breakpoint event. 1481.It Va kdb.enter.netgraph 1482The kernel debugger was entered as a result of a 1483.Xr netgraph 4 1484event. 1485.It Va kdb.enter.panic 1486.Xr panic 9 1487was called. 1488.It Va kdb.enter.powerpc 1489The kernel debugger was entered as a result of an unimplemented interrupt 1490type on the powerpc platform. 1491.It Va kdb.enter.sysctl 1492The kernel debugger was entered as a result of the 1493.Va debug.kdb.enter 1494sysctl being set. 1495.It Va kdb.enter.unionfs 1496The kernel debugger was entered as a result of an assertion failure in the 1497union file system. 1498.It Va kdb.enter.unknown 1499The kernel debugger was entered, but no reason has been set. 1500.It Va kdb.enter.vfslock 1501The kernel debugger was entered as a result of a VFS lock violation. 1502.It Va kdb.enter.watchdog 1503The kernel debugger was entered as a result of a watchdog firing. 1504.It Va kdb.enter.witness 1505The kernel debugger was entered as a result of a 1506.Xr witness 4 1507violation. 1508.El 1509.Pp 1510In the event that none of these scripts is found, 1511.Nm 1512will attempt to execute a default script: 1513.Bl -tag -width kdb.enter.powerfail 1514.It Va kdb.enter.default 1515The kernel debugger was entered, but a script exactly matching the reason for 1516entering was not defined. 1517This can be used as a catch-all to handle cases not specifically of interest; 1518for example, 1519.Va kdb.enter.witness 1520might be defined to have special handling, and 1521.Va kdb.enter.default 1522might be defined to simply panic and reboot. 1523.El 1524.Sh HINTS 1525On machines with an ISA expansion bus, a simple NMI generation card can be 1526constructed by connecting a push button between the A01 and B01 (CHCHK# and 1527GND) card fingers. 1528Momentarily shorting these two fingers together may cause the bridge chipset to 1529generate an NMI, which causes the kernel to pass control to 1530.Nm . 1531Some bridge chipsets do not generate a NMI on CHCHK#, so your mileage may vary. 1532The NMI allows one to break into the debugger on a wedged machine to 1533diagnose problems. 1534Other bus' bridge chipsets may be able to generate NMI using bus specific 1535methods. 1536There are many PCI and PCIe add-in cards which can generate NMI for 1537debugging. 1538Modern server systems typically use IPMI to generate signals to enter the 1539debugger. 1540The 1541.Va devel/ipmitool 1542port can be used to send the 1543.Cd chassis power diag 1544command which delivers an NMI to the processor. 1545Embedded systems often use JTAG for debugging, but rarely use it in 1546combination with 1547.Nm . 1548.Pp 1549For serial consoles, you can enter the debugger by sending a BREAK 1550condition on the serial line if 1551.Cd options BREAK_TO_DEBUGGER 1552is specified in the kernel. 1553Most terminal emulation programs can send a break sequence with a 1554special key sequence or via a menu item. 1555However, in some setups, sending the break can be difficult to arrange 1556or happens spuriously, so if the kernel contains 1557.Cd options ALT_BREAK_TO_DEBUGGER 1558then the sequence of CR TILDE CTRL-B enters the debugger; 1559CR TILDE CTRL-P causes a panic instead of entering the 1560debugger; and 1561CR TILDE CTRL-R causes an immediate reboot. 1562In all the above sequences, CR is a Carriage Return and is usually 1563sent by hitting the Enter or Return key. 1564TILDE is the ASCII tilde character (~). 1565CTRL-x is Control x created by hitting the control key and then x 1566and then releasing both. 1567.Pp 1568The break to enter the debugger behavior may be enabled at run-time 1569by setting the 1570.Xr sysctl 8 1571.Va debug.kdb.break_to_debugger 1572to 1. 1573The alternate sequence to enter the debugger behavior may be enabled 1574at run-time by setting the 1575.Xr sysctl 8 1576.Va debug.kdb.alt_break_to_debugger 1577to 1. 1578The debugger may be entered by setting the 1579.Xr sysctl 8 1580.Va debug.kdb.enter 1581to 1. 1582.Sh FILES 1583Header files mentioned in this manual page can be found below 1584.Pa /usr/include 1585directory. 1586.Pp 1587.Bl -dash -compact 1588.It 1589.Pa sys/buf.h 1590.It 1591.Pa sys/domain.h 1592.It 1593.Pa netinet/in_pcb.h 1594.It 1595.Pa sys/socket.h 1596.It 1597.Pa sys/vnode.h 1598.El 1599.Sh SEE ALSO 1600.Xr gdb 1 , 1601.Xr kgdb 1 , 1602.Xr acpi 4 , 1603.Xr CAM 4 , 1604.Xr mac_test 4 , 1605.Xr ndis 4 , 1606.Xr netgraph 4 , 1607.Xr textdump 4 , 1608.Xr witness 4 , 1609.Xr ddb 8 , 1610.Xr sysctl 8 , 1611.Xr panic 9 1612.Sh HISTORY 1613The 1614.Nm 1615debugger was developed for Mach, and ported to 1616.Bx 386 0.1 . 1617This manual page translated from 1618.Xr man 7 1619macros by 1620.An Garrett Wollman . 1621.Pp 1622.An Robert N. M. Watson 1623added support for 1624.Nm 1625output capture, 1626.Xr textdump 4 1627and scripting in 1628.Fx 7.1 . 1629