Initial import from FreeBSD RELENG_4:
[dragonfly.git] / share / man / man4 / ddb.4
1 .\"
2 .\" Mach Operating System
3 .\" Copyright (c) 1991,1990 Carnegie Mellon University
4 .\" All Rights Reserved.
5 .\"
6 .\" Permission to use, copy, modify and distribute this software and its
7 .\" documentation is hereby granted, provided that both the copyright
8 .\" notice and this permission notice appear in all copies of the
9 .\" software, derivative works or modified versions, and any portions
10 .\" thereof, and that both notices appear in supporting documentation.
11 .\"
12 .\" CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
13 .\" CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14 .\" ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15 .\"
16 .\" Carnegie Mellon requests users of this software to return to
17 .\"
18 .\"  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
19 .\"  School of Computer Science
20 .\"  Carnegie Mellon University
21 .\"  Pittsburgh PA 15213-3890
22 .\"
23 .\" any improvements or extensions that they make and grant Carnegie Mellon
24 .\" the rights to redistribute these changes.
25 .\"
26 .\" changed a \# to #, since groff choked on it.
27 .\"
28 .\" HISTORY
29 .\" ddb.4,v
30 .\" Revision 1.1  1993/07/15  18:41:02  brezak
31 .\" Man page for DDB
32 .\"
33 .\" Revision 2.6  92/04/08  08:52:57  rpd
34 .\"     Changes from OSF.
35 .\"     [92/01/17  14:19:22  jsb]
36 .\"     Changes for OSF debugger modifications.
37 .\"     [91/12/12            tak]
38 .\"
39 .\" Revision 2.5  91/06/25  13:50:22  rpd
40 .\"     Added some watchpoint explanation.
41 .\"     [91/06/25            rpd]
42 .\"
43 .\" Revision 2.4  91/06/17  15:47:31  jsb
44 .\"     Added documentation for continue/c, match, search, and watchpoints.
45 .\"     I've not actually explained what a watchpoint is; maybe Rich can
46 .\"     do that (hint, hint).
47 .\"     [91/06/17  10:58:08  jsb]
48 .\"
49 .\" Revision 2.3  91/05/14  17:04:23  mrt
50 .\"     Correcting copyright
51 .\"
52 .\" Revision 2.2  91/02/14  14:10:06  mrt
53 .\"     Changed to new Mach copyright
54 .\"     [91/02/12  18:10:12  mrt]
55 .\"
56 .\" Revision 2.2  90/08/30  14:23:15  dbg
57 .\"     Created.
58 .\"     [90/08/30            dbg]
59 .\"
60 .\" $FreeBSD: src/share/man/man4/ddb.4,v 1.7.2.6 2001/08/17 13:08:37 ru Exp $
61 .Dd January 16, 1996
62 .Dt DDB 4
63 .Os
64 .Sh NAME
65 .Nm ddb
66 .Nd interactive kernel debugger
67 .Sh SYNOPSIS
68 .Cd options DDB
69 .Pp
70 To prevent activation of the debugger on kernel
71 .Xr panic 9 :
72 .Cd options DDB_UNATTENDED
73 .Sh DESCRIPTION
74 The
75 .Nm
76 kernel debugger has most of the features of the old kdb,
77 but with a more rational syntax
78 inspired by
79 .Xr gdb 1 .
80 If linked into the running kernel,
81 it can be invoked locally with the
82 .Ql debug
83 .Xr keymap 5
84 action.
85 The debugger is also invoked on kernel
86 .Xr panic 9
87 if the
88 .Va debug.debugger_on_panic
89 .Xr sysctl 8
90 MIB variable is set non-zero,
91 which is the default
92 unless the
93 .Dv DDB_UNATTENDED
94 option is specified.
95 .Pp
96 The current location is called `dot'.  The `dot' is displayed with
97 a hexadecimal format at a prompt.
98 Examine and write commands update `dot' to the address of the last line
99 examined or the last location modified, and set `next' to the address of
100 the next location to be examined or changed.
101 Other commands don't change `dot', and set `next' to be the same as `dot'.
102 .Pp
103 The general command syntax is:
104 .Cm command Ns Op Li \&/ Ns Ar modifier
105 .Ar address Ns Op Li , Ns Ar count
106 .Pp
107 A blank line repeats the previous command from the address `next' with
108 count 1 and no modifiers.  Specifying
109 .Ar address
110 sets `dot' to the
111 address.  Omitting
112 .Ar address
113 uses `dot'.  A missing
114 .Ar count
115 is taken
116 to be 1 for printing commands or infinity for stack traces.
117 .Pp
118 The
119 .Nm
120 debugger has a feature like the
121 .Xr more 1
122 command
123 for the output.  If an output line exceeds the number set in the
124 .Li \&$lines
125 variable, it displays
126 .Dq Em --db_more--
127 and waits for a response.
128 The valid responses for it are:
129 .Pp
130 .Bl -tag -compact -width SPC
131 .It Li SPC
132 one more page
133 .It Li RET
134 one more line
135 .It Li q
136 abort the current command, and return to the command input mode
137 .El
138 .Pp
139 Finally,
140 .Nm
141 provides a small (currently 10 items) command history, and offers
142 simple emacs-style command line editing capabilities.  In addition to
143 the emacs control keys, the usual ANSI arrow keys might be used to
144 browse through the history buffer, and move the cursor within the
145 current line.
146 .Sh COMMANDS
147 .Bl -ohang
148 .It Cm examine
149 .It Cm x
150 Display the addressed locations according to the formats in the modifier.
151 Multiple modifier formats display multiple locations.
152 If no format is specified, the last formats specified for this command
153 is used.
154 .Pp
155 The format characters are:
156 .Bl -tag -compact -width indent
157 .It Li b
158 look at by bytes (8 bits)
159 .It Li h
160 look at by half words (16 bits)
161 .It Li l
162 look at by long words (32 bits)
163 .It Li a
164 print the location being displayed
165 .It Li A
166 print the location with a line number if possible
167 .It Li x
168 display in unsigned hex
169 .It Li z
170 display in signed hex
171 .It Li o
172 display in unsigned octal
173 .It Li d
174 display in signed decimal
175 .It Li u
176 display in unsigned decimal
177 .It Li r
178 display in current radix, signed
179 .It Li c
180 display low 8 bits as a character.
181 Non-printing characters are displayed as an octal escape code (e.g., `\e000').
182 .It Li s
183 display the null-terminated string at the location.
184 Non-printing characters are displayed as octal escapes.
185 .It Li m
186 display in unsigned hex with character dump at the end of each line.
187 The location is also displayed in hex at the beginning of each line.
188 .It Li i
189 display as an instruction
190 .It Li I
191 display as an instruction with possible alternate formats depending on the
192 machine:
193 .Bl -tag -width MIPS -compact
194 .It Tn VAX
195 don't assume that each external label is a procedure entry mask
196 .It Tn i386
197 don't round to the next long word boundary
198 .It Tn MIPS
199 print register contents
200 .El
201 .El
202 .It Cm xf
203 Examine forward:
204 Execute an examine command with the last specified parameters to it
205 except that the next address displayed by it is used as the start address.
206 .It Cm xb
207 Examine backward:
208 Execute an examine command with the last specified parameters to it
209 except that the last start address subtracted by the size displayed by it
210 is used as the start address.
211 .It Cm print Ns Op Cm /acdoruxz
212 Print
213 .Ar addr Ns s
214 according to the modifier character (as described above for
215 .Li examine ) .
216 Valid formats are:
217 .Li a ,
218 .Li x ,
219 .Li z ,
220 .Li o ,
221 .Li d ,
222 .Li u ,
223 .Li r ,
224 and
225 .Li c .
226 If no modifier is specified, the last one specified to it is used.
227 .Ar addr
228 can be a string, in which case it is printed as it is.  For example:
229 .Bd -literal -offset indent
230 print/x \&"eax = \&" $eax \&"\enecx = \&" $ecx \&"\en\&"
231 .Ed
232 .Pp
233 will print like:
234 .Bd -literal -offset indent
235 eax = xxxxxx
236 ecx = yyyyyy
237 .Ed
238 .It Xo
239 .Cm write Ns Op Cm /bhl
240 .Ar addr Ar expr1 Op Ar "expr2 ..."
241 .Xc
242 Write the expressions specified after
243 .Ar addr
244 on the command line at succeeding locations starting with
245 .Ar addr
246 The write unit size can be specified in the modifier with a letter
247 .Li b
248 (byte),
249 .Li h
250 (half word) or
251 .Li l
252 (long word) respectively.  If omitted,
253 long word is assumed.
254 .Pp
255 .Sy Warning :
256 since there is no delimiter between expressions, strange
257 things may happen.
258 It's best to enclose each expression in parentheses.
259 .It Xo
260 .Cm set
261 .Li \&$ Ns Ar variable
262 .Op Li =
263 .Ar expr
264 .Xc
265 Set the named variable or register with the value of
266 .Ar expr .
267 Valid variable names are described below.
268 .It Cm break Ns Op Cm /u
269 Set a break point at
270 .Ar addr .
271 If
272 .Ar count
273 is supplied, continues
274 .Ar count
275 - 1 times before stopping at the
276 break point.  If the break point is set, a break point number is
277 printed with
278 .Sq Li \&# .
279 This number can be used in deleting the break point
280 or adding conditions to it.
281 .Pp
282 If the
283 .Li u
284 modifier is specified, this command sets a break point in user space
285 address.  Without the
286 .Li u
287 option, the address is considered in the kernel
288 space, and wrong space address is rejected with an error message.
289 This modifier can be used only if it is supported by machine dependent
290 routines.
291 .Pp
292 .Sy Warning :
293 If a user text is shadowed by a normal user space debugger,
294 user space break points may not work correctly.  Setting a break
295 point at the low-level code paths may also cause strange behavior.
296 .It Cm delete Ar addr
297 .It Cm delete Li \&# Ns Ar number
298 Delete the break point.  The target break point can be specified by a
299 break point number with
300 .Li # ,
301 or by using the same
302 .Ar addr
303 specified in the original
304 .Cm break
305 command.
306 .It Cm step Ns Op Cm /p
307 Single step
308 .Ar count
309 times (the comma is a mandatory part of the syntax).
310 If the
311 .Li p
312 modifier is specified, print each instruction at each step.
313 Otherwise, only print the last instruction.
314 .Pp
315 .Sy Warning :
316 depending on machine type, it may not be possible to
317 single-step through some low-level code paths or user space code.
318 On machines with software-emulated single-stepping (e.g., pmax),
319 stepping through code executed by interrupt handlers will probably
320 do the wrong thing.
321 .It Cm continue Ns Op Cm /c
322 Continue execution until a breakpoint or watchpoint.
323 If the
324 .Li c
325 modifier is specified, count instructions while executing.
326 Some machines (e.g., pmax) also count loads and stores.
327 .Pp
328 .Sy Warning :
329 when counting, the debugger is really silently single-stepping.
330 This means that single-stepping on low-level code may cause strange
331 behavior.
332 .It Cm until Ns Op Cm /p
333 Stop at the next call or return instruction.
334 If the
335 .Li p
336 modifier is specified, print the call nesting depth and the
337 cumulative instruction count at each call or return.  Otherwise,
338 only print when the matching return is hit.
339 .It Cm next Ns Op Cm /p
340 .It Cm match Ns Op Cm /p
341 Stop at the matching return instruction.
342 If the
343 .Li p
344 modifier is specified, print the call nesting depth and the
345 cumulative instruction count at each call or return.  Otherwise,
346 only print when the matching return is hit.
347 .It Xo
348 .Cm trace Ns Op Cm /u
349 .Op Ar frame
350 .Op , Ns Ar count
351 .Xc
352 Stack trace.  The
353 .Li u
354 option traces user space; if omitted,
355 .Cm trace
356 only traces
357 kernel space.
358 .Ar count
359 is the number of frames to be traced.
360 If
361 .Ar count
362 is omitted, all frames are printed.
363 .Pp
364 .Sy Warning :
365 User space stack trace is valid
366 only if the machine dependent code supports it.
367 .It Xo
368 .Cm search Ns Op Cm /bhl
369 .Ar addr
370 .Ar value
371 .Op Ar mask
372 .Op , Ns Ar count
373 .Xc
374 Search memory for
375 .Ar value .
376 This command might fail in interesting
377 ways if it doesn't find the searched-for value.  This is because
378 ddb doesn't always recover from touching bad memory.  The optional
379 .Ar count
380 argument limits the search.
381 .It Cm show all procs Ns Op Cm /m
382 .It Cm ps Ns Op Cm /m
383 Display all process information.
384 The process information may not be shown if it is not
385 supported in the machine, or the bottom of the stack of the
386 target process is not in the main memory at that time.
387 The
388 .Li m
389 modifier will alter the display to show VM map
390 addresses for the process and not show other info.
391 .It Cm show registers Ns Op Cm /u
392 Display the register set.
393 If the
394 .Li u
395 option is specified, it displays user registers instead of
396 kernel or currently saved one.
397 .Pp
398 .Sy Warning :
399 The support of the
400 .Li u
401 modifier depends on the machine.  If
402 not supported, incorrect information will be displayed.
403 .It Xo
404 .Cm show map Ns Op Cm /f
405 .Ar addr
406 .Xc
407 Prints the VM map at
408 .Ar addr .
409 If the
410 .Li f
411 modifier is specified the
412 complete map is printed.
413 .It Xo
414 .Cm show object Ns Op Cm /f
415 .Ar addr
416 .Xc
417 Prints the VM object at
418 .Ar addr .
419 If the
420 .Li f
421 option is specified the
422 complete object is printed.
423 .It Cm "show watches"
424 Displays all watchpoints.
425 .It Xo
426 .Cm watch
427 .Ar addr Ns Li \&, Ns Ar size
428 .Xc
429 Set a watchpoint for a region.  Execution stops
430 when an attempt to modify the region occurs.
431 The
432 .Ar size
433 argument defaults to 4.
434 If you specify a wrong space address, the request is rejected
435 with an error message.
436 .Pp
437 .Sy Warning :
438 Attempts to watch wired kernel memory
439 may cause unrecoverable error in some systems such as i386.
440 Watchpoints on user addresses work best.
441 .It Cm gdb
442 Toggles between remote GDB and DDB mode.  In remote GDB mode, another
443 machine is required that runs
444 .Xr gdb 1
445 using the remote debug feature, with a connection to the serial
446 console port on the target machine.  Currently only available on the
447 .Em i386
448 architecture.
449 .It Cm help
450 Print a short summary of the available commands and command
451 abbreviations.
452 .El
453 .Sh VARIABLES
454 The debugger accesses registers and variables as
455 .Li \&$ Ns Em name .
456 Register names are as in the
457 .Dq Cm show registers
458 command.
459 Some variables are suffixed with numbers, and may have some modifier
460 following a colon immediately after the variable name.
461 For example, register variables can have a
462 .Li u
463 modifier to indicate user register (e.g.,
464 .Li $eax:u ) .
465 .Pp
466 Built-in variables currently supported are:
467 .Bl -tag -width tabstops -compact
468 .It Li radix
469 Input and output radix
470 .It Li maxoff
471 Addresses are printed as 'symbol'+offset unless offset is greater than maxoff.
472 .It Li maxwidth
473 The width of the displayed line.
474 .It Li lines
475 The number of lines.  It is used by "more" feature.
476 .It Li tabstops
477 Tab stop width.
478 .It Li work Ns Ar xx
479 Work variable.
480 .Ar xx
481 can be 0 to 31.
482 .El
483 .Sh EXPRESSIONS
484 Almost all expression operators in C are supported except
485 .Sq Li \&~ ,
486 .Sq Li \&^ ,
487 and unary
488 .Sq Li \&& .
489 Special rules in
490 .Nm
491 are:
492 .Bl -tag -width Identifiers
493 .It Em Identifiers
494 The name of a symbol is translated to the value of the symbol, which
495 is the address of the corresponding object.
496 .Sq Li \&.
497 and
498 .Sq Li \&:
499 can be used in the identifier.
500 If supported by an object format dependent routine,
501 .Sm off
502 .Oo Em filename : Oc Em func : lineno ,
503 .Sm on
504 .Oo Em filename : Oc Ns Em variable ,
505 and
506 .Oo Em filename : Oc Ns Em lineno
507 can be accepted as a symbol.
508 .It Em Numbers
509 Radix is determined by the first two letters:
510 .Li 0x :
511 hex,
512 .Li 0o :
513 octal,
514 .Li 0t :
515 decimal; otherwise, follow current radix.
516 .It Li \&.
517 `dot'
518 .It Li \&+
519 `next'
520 .It Li \&..
521 address of the start of the last line examined.
522 Unlike `dot' or `next', this is only changed by
523 .Dq Li examine
524 or
525 .Dq Li write
526 command.
527 .It Li \&'
528 last address explicitly specified.
529 .It Li \&$ Ns Em variable
530 Translated to the value of the specified variable.
531 It may be followed by a
532 .Li :
533 and modifiers as described above.
534 .It Em a Ns Li \&# Ns Em b
535 a binary operator which rounds up the left hand side to the next
536 multiple of right hand side.
537 .It Li \&* Ns Em expr
538 indirection.  It may be followed by a
539 .Sq Li :
540 and modifiers as described above.
541 .El
542 .Sh SEE ALSO
543 .Xr gdb 1
544 .Sh HISTORY
545 The
546 .Nm
547 debugger was developed for Mach, and ported to
548 .Bx 386 0.1 .
549 This manual page translated from
550 .Fl man
551 macros by Garrett Wollman.