Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / bsd-kvm.c
blobf38e0fb421000a129aca222029144e3ec63e0aa5
1 /* BSD Kernel Data Access Library (libkvm) interface.
3 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 #include "defs.h"
23 #include "cli/cli-cmds.h"
24 #include "command.h"
25 #include "frame.h"
26 #include "regcache.h"
27 #include "target.h"
28 #include "value.h"
29 #include "gdbcore.h" /* for get_exec_file */
31 #include "gdb_assert.h"
32 #include <fcntl.h>
33 #include <kvm.h>
34 #ifdef HAVE_NLIST_H
35 #include <nlist.h>
36 #endif
37 #include <paths.h>
38 #include "readline/readline.h"
39 #include <sys/param.h>
40 #include <sys/proc.h>
41 #include <sys/user.h>
43 #include "bsd-kvm.h"
45 /* Kernel memory device file. */
46 static const char *bsd_kvm_corefile;
48 /* Kernel memory interface descriptor. */
49 static kvm_t *core_kd;
51 /* Address of process control block. */
52 static struct pcb *bsd_kvm_paddr;
54 /* Pointer to architecture-specific function that reconstructs the
55 register state from PCB and supplies it to REGCACHE. */
56 static int (*bsd_kvm_supply_pcb)(struct regcache *regcache, struct pcb *pcb);
58 /* Target ops for libkvm interface. */
59 static struct target_ops bsd_kvm_ops;
61 static void
62 bsd_kvm_open (char *filename, int from_tty)
64 char errbuf[_POSIX2_LINE_MAX];
65 char *execfile = NULL;
66 kvm_t *temp_kd;
68 target_preopen (from_tty);
70 if (filename)
72 char *temp;
74 filename = tilde_expand (filename);
75 if (filename[0] != '/')
77 temp = concat (current_directory, "/", filename, (char *)NULL);
78 xfree (filename);
79 filename = temp;
83 execfile = get_exec_file (0);
84 temp_kd = kvm_openfiles (execfile, filename, NULL,
85 write_files ? O_RDWR: O_RDONLY, errbuf);
86 if (temp_kd == NULL)
87 error (("%s"), errbuf);
89 bsd_kvm_corefile = filename;
90 unpush_target (&bsd_kvm_ops);
91 core_kd = temp_kd;
92 push_target (&bsd_kvm_ops);
94 target_fetch_registers (-1);
96 flush_cached_frames ();
97 select_frame (get_current_frame ());
98 print_stack_frame (get_selected_frame (NULL), -1, 1);
101 static void
102 bsd_kvm_close (int quitting)
104 if (core_kd)
106 if (kvm_close (core_kd) == -1)
107 warning (("%s"), kvm_geterr(core_kd));
108 core_kd = NULL;
112 static LONGEST
113 bsd_kvm_xfer_memory (CORE_ADDR addr, ULONGEST len,
114 gdb_byte *readbuf, const gdb_byte *writebuf)
116 ssize_t nbytes = len;
118 if (readbuf)
119 nbytes = kvm_read (core_kd, addr, readbuf, nbytes);
120 if (writebuf && nbytes > 0)
121 nbytes = kvm_write (core_kd, addr, writebuf, nbytes);
122 return nbytes;
125 static LONGEST
126 bsd_kvm_xfer_partial (struct target_ops *ops, enum target_object object,
127 const char *annex, gdb_byte *readbuf,
128 const gdb_byte *writebuf,
129 ULONGEST offset, LONGEST len)
131 switch (object)
133 case TARGET_OBJECT_MEMORY:
134 return bsd_kvm_xfer_memory (offset, len, readbuf, writebuf);
136 default:
137 return -1;
141 static void
142 bsd_kvm_files_info (struct target_ops *ops)
144 if (bsd_kvm_corefile && strcmp (bsd_kvm_corefile, _PATH_MEM) != 0)
145 printf_filtered (_("\tUsing the kernel crash dump %s.\n"),
146 bsd_kvm_corefile);
147 else
148 printf_filtered (_("\tUsing the currently running kernel.\n"));
151 /* Fetch process control block at address PADDR. */
153 static int
154 bsd_kvm_fetch_pcb (struct pcb *paddr)
156 struct pcb pcb;
158 if (kvm_read (core_kd, (unsigned long) paddr, &pcb, sizeof pcb) == -1)
159 error (("%s"), kvm_geterr (core_kd));
161 gdb_assert (bsd_kvm_supply_pcb);
162 return bsd_kvm_supply_pcb (current_regcache, &pcb);
165 static void
166 bsd_kvm_fetch_registers (int regnum)
168 struct nlist nl[2];
170 if (bsd_kvm_paddr)
172 bsd_kvm_fetch_pcb (bsd_kvm_paddr);
173 return;
176 /* On dumping core, BSD kernels store the faulting context (PCB)
177 in the variable "dumppcb". */
178 memset (nl, 0, sizeof nl);
179 nl[0].n_name = "_dumppcb";
181 if (kvm_nlist (core_kd, nl) == -1)
182 error (("%s"), kvm_geterr (core_kd));
184 if (nl[0].n_value != 0)
186 /* Found dumppcb. If it contains a valid context, return
187 immediately. */
188 if (bsd_kvm_fetch_pcb ((struct pcb *) nl[0].n_value))
189 return;
192 /* Traditional BSD kernels have a process proc0 that should always
193 be present. The address of proc0's PCB is stored in the variable
194 "proc0paddr". */
196 memset (nl, 0, sizeof nl);
197 nl[0].n_name = "_proc0paddr";
199 if (kvm_nlist (core_kd, nl) == -1)
200 error (("%s"), kvm_geterr (core_kd));
202 if (nl[0].n_value != 0)
204 struct pcb *paddr;
206 /* Found proc0paddr. */
207 if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1)
208 error (("%s"), kvm_geterr (core_kd));
210 bsd_kvm_fetch_pcb (paddr);
211 return;
214 #if 1 /* TODO: HAVE_STRUCT_LWP_L_ADDR */
215 memset (nl, 0, sizeof nl);
216 nl[0].n_name = "_lwp0";
218 if (kvm_nlist (core_kd, nl) == -1)
219 error (("%s"), kvm_geterr (core_kd));
221 if (nl[0].n_value != 0)
223 struct pcb *paddr;
225 /* Found lwp0. */
226 nl[0].n_value += offsetof (struct lwp, l_addr);
227 if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1)
228 error (("%s"), kvm_geterr (core_kd));
230 bsd_kvm_fetch_pcb (paddr);
231 return;
233 #endif
235 #ifdef HAVE_STRUCT_THREAD_TD_PCB
236 /* In FreeBSD kernels for 5.0-RELEASE and later, the PCB no longer
237 lives in `struct proc' but in `struct thread'. The `struct
238 thread' for the initial thread for proc0 can be found in the
239 variable "thread0". */
241 memset (nl, 0, sizeof nl);
242 nl[0].n_name = "_thread0";
244 if (kvm_nlist (core_kd, nl) == -1)
245 error (("%s"), kvm_geterr (core_kd));
247 if (nl[0].n_value != 0)
249 struct pcb *paddr;
251 /* Found thread0. */
252 nl[0].n_value += offsetof (struct thread, td_pcb);
253 if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1)
254 error (("%s"), kvm_geterr (core_kd));
256 bsd_kvm_fetch_pcb (paddr);
257 return;
259 #endif
261 /* i18n: PCB == "Process Control Block" */
262 error (_("Cannot find a valid PCB"));
266 /* Kernel memory interface commands. */
267 struct cmd_list_element *bsd_kvm_cmdlist;
269 static void
270 bsd_kvm_cmd (char *arg, int fromtty)
272 /* ??? Should this become an alias for "target kvm"? */
275 #ifndef HAVE_STRUCT_THREAD_TD_PCB
277 static void
278 bsd_kvm_proc_cmd (char *arg, int fromtty)
280 CORE_ADDR addr;
282 if (arg == NULL)
283 error_no_arg (_("proc address"));
285 if (core_kd == NULL)
286 error (_("No kernel memory image."));
288 addr = parse_and_eval_address (arg);
289 #ifdef HAVE_STRUCT_LWP
290 addr += offsetof (struct lwp, l_addr);
291 #else
292 addr += offsetof (struct proc, p_addr);
293 #endif
295 if (kvm_read (core_kd, addr, &bsd_kvm_paddr, sizeof bsd_kvm_paddr) == -1)
296 error (("%s"), kvm_geterr (core_kd));
298 target_fetch_registers (-1);
300 flush_cached_frames ();
301 select_frame (get_current_frame ());
302 print_stack_frame (get_selected_frame (NULL), -1, 1);
305 #endif
307 static void
308 bsd_kvm_pcb_cmd (char *arg, int fromtty)
310 if (arg == NULL)
311 /* i18n: PCB == "Process Control Block" */
312 error_no_arg (_("pcb address"));
314 if (core_kd == NULL)
315 error (_("No kernel memory image."));
317 bsd_kvm_paddr = (struct pcb *)(u_long) parse_and_eval_address (arg);
319 target_fetch_registers (-1);
321 flush_cached_frames ();
322 select_frame (get_current_frame ());
323 print_stack_frame (get_selected_frame (NULL), -1, 1);
326 /* Add the libkvm interface to the list of all possible targets and
327 register CUPPLY_PCB as the architecture-specific process control
328 block interpreter. */
330 void
331 bsd_kvm_add_target (int (*supply_pcb)(struct regcache *, struct pcb *))
333 gdb_assert (bsd_kvm_supply_pcb == NULL);
334 bsd_kvm_supply_pcb = supply_pcb;
336 bsd_kvm_ops.to_shortname = "kvm";
337 bsd_kvm_ops.to_longname = _("Kernel memory interface");
338 bsd_kvm_ops.to_doc = _("Use a kernel virtual memory image as a target.\n\
339 Optionally specify the filename of a core dump.");
340 bsd_kvm_ops.to_open = bsd_kvm_open;
341 bsd_kvm_ops.to_close = bsd_kvm_close;
342 bsd_kvm_ops.to_fetch_registers = bsd_kvm_fetch_registers;
343 bsd_kvm_ops.to_xfer_partial = bsd_kvm_xfer_partial;
344 bsd_kvm_ops.to_files_info = bsd_kvm_files_info;
345 bsd_kvm_ops.to_stratum = process_stratum;
346 bsd_kvm_ops.to_has_memory = 1;
347 bsd_kvm_ops.to_has_stack = 1;
348 bsd_kvm_ops.to_has_registers = 1;
349 bsd_kvm_ops.to_magic = OPS_MAGIC;
351 add_target (&bsd_kvm_ops);
353 add_prefix_cmd ("kvm", class_obscure, bsd_kvm_cmd, _("\
354 Generic command for manipulating the kernel memory interface."),
355 &bsd_kvm_cmdlist, "kvm ", 0, &cmdlist);
357 #ifndef HAVE_STRUCT_THREAD_TD_PCB
358 add_cmd ("proc", class_obscure, bsd_kvm_proc_cmd,
359 _("Set current context from proc address"), &bsd_kvm_cmdlist);
360 #endif
361 add_cmd ("pcb", class_obscure, bsd_kvm_pcb_cmd,
362 /* i18n: PCB == "Process Control Block" */
363 _("Set current context from pcb address"), &bsd_kvm_cmdlist);