Commit | Line | Data |
---|---|---|
2e0c3539 MK |
1 | /* BSD Kernel Data Access Library (libkvm) interface. |
2 | ||
961cb7b5 | 3 | Copyright 2004, 2005 Free Software Foundation, Inc. |
2e0c3539 MK |
4 | |
5 | This file is part of GDB. | |
6 | ||
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. | |
11 | ||
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. | |
16 | ||
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., 59 Temple Place - Suite 330, | |
20 | Boston, MA 02111-1307, USA. */ | |
21 | ||
22 | #include "defs.h" | |
963c4174 MK |
23 | #include "cli/cli-cmds.h" |
24 | #include "command.h" | |
2e0c3539 MK |
25 | #include "frame.h" |
26 | #include "regcache.h" | |
27 | #include "target.h" | |
963c4174 | 28 | #include "value.h" |
7f245d65 | 29 | #include "gdbcore.h" /* for get_exec_file */ |
2e0c3539 MK |
30 | |
31 | #include "gdb_assert.h" | |
32 | #include <fcntl.h> | |
33 | #include <kvm.h> | |
ac5754fa | 34 | #ifdef HAVE_NLIST_H |
2e0c3539 | 35 | #include <nlist.h> |
ac5754fa | 36 | #endif |
2e5a5020 | 37 | #include <paths.h> |
2e0c3539 MK |
38 | #include "readline/readline.h" |
39 | #include <sys/param.h> | |
963c4174 | 40 | #include <sys/proc.h> |
2e0c3539 MK |
41 | #include <sys/user.h> |
42 | ||
43 | #include "bsd-kvm.h" | |
44 | ||
2e5a5020 MK |
45 | /* Kernel memory device file. */ |
46 | static const char *bsd_kvm_corefile; | |
47 | ||
2e0c3539 | 48 | /* Kernel memory interface descriptor. */ |
2e5a5020 | 49 | static kvm_t *core_kd; |
2e0c3539 MK |
50 | |
51 | /* Address of process control block. */ | |
2e5a5020 | 52 | static struct pcb *bsd_kvm_paddr; |
2e0c3539 MK |
53 | |
54 | /* Pointer to architecture-specific function that reconstructs the | |
55 | register state from PCB and supplies it to REGCACHE. */ | |
2e5a5020 | 56 | static int (*bsd_kvm_supply_pcb)(struct regcache *regcache, struct pcb *pcb); |
2e0c3539 MK |
57 | |
58 | /* Target ops for libkvm interface. */ | |
2e5a5020 | 59 | static struct target_ops bsd_kvm_ops; |
2e0c3539 MK |
60 | |
61 | static void | |
62 | bsd_kvm_open (char *filename, int from_tty) | |
63 | { | |
64 | char errbuf[_POSIX2_LINE_MAX]; | |
65 | char *execfile = NULL; | |
66 | kvm_t *temp_kd; | |
67 | ||
68 | target_preopen (from_tty); | |
69 | ||
70 | if (filename) | |
71 | { | |
72 | char *temp; | |
73 | ||
74 | filename = tilde_expand (filename); | |
75 | if (filename[0] != '/') | |
76 | { | |
1754f103 | 77 | temp = concat (current_directory, "/", filename, (char *)NULL); |
2e0c3539 MK |
78 | xfree (filename); |
79 | filename = temp; | |
80 | } | |
81 | } | |
82 | ||
7f245d65 | 83 | execfile = get_exec_file (0); |
2e0c3539 MK |
84 | temp_kd = kvm_openfiles (execfile, filename, NULL, O_RDONLY, errbuf); |
85 | if (temp_kd == NULL) | |
8a3fe4f8 | 86 | error (("%s"), errbuf); |
2e0c3539 | 87 | |
2e5a5020 | 88 | bsd_kvm_corefile = filename; |
2e0c3539 MK |
89 | unpush_target (&bsd_kvm_ops); |
90 | core_kd = temp_kd; | |
91 | push_target (&bsd_kvm_ops); | |
92 | ||
93 | target_fetch_registers (-1); | |
94 | ||
95 | flush_cached_frames (); | |
96 | select_frame (get_current_frame ()); | |
b04f3ab4 | 97 | print_stack_frame (get_selected_frame (NULL), -1, 1); |
2e0c3539 MK |
98 | } |
99 | ||
100 | static void | |
101 | bsd_kvm_close (int quitting) | |
102 | { | |
103 | if (core_kd) | |
104 | { | |
105 | if (kvm_close (core_kd) == -1) | |
8a3fe4f8 | 106 | warning (("%s"), kvm_geterr(core_kd)); |
2e0c3539 MK |
107 | core_kd = NULL; |
108 | } | |
109 | } | |
110 | ||
961cb7b5 MK |
111 | static LONGEST |
112 | bsd_kvm_xfer_memory (CORE_ADDR addr, ULONGEST len, | |
113 | gdb_byte *readbuf, const gdb_byte *writebuf) | |
2e0c3539 | 114 | { |
961cb7b5 MK |
115 | ssize_t nbytes = len; |
116 | ||
117 | if (readbuf) | |
118 | nbytes = kvm_read (core_kd, addr, readbuf, nbytes); | |
119 | if (writebuf && nbytes > 0) | |
120 | nbytes = kvm_write (core_kd, addr, writebuf, nbytes); | |
121 | return nbytes; | |
122 | } | |
2e0c3539 | 123 | |
961cb7b5 MK |
124 | static LONGEST |
125 | bsd_kvm_xfer_partial (struct target_ops *ops, enum target_object object, | |
126 | const char *annex, gdb_byte *readbuf, | |
127 | const gdb_byte *writebuf, | |
128 | ULONGEST offset, LONGEST len) | |
129 | { | |
130 | switch (object) | |
131 | { | |
132 | case TARGET_OBJECT_MEMORY: | |
133 | return bsd_kvm_xfer_memory (offset, len, readbuf, writebuf); | |
134 | ||
135 | default: | |
136 | return -1; | |
137 | } | |
2e0c3539 MK |
138 | } |
139 | ||
2e5a5020 MK |
140 | static void |
141 | bsd_kvm_files_info (struct target_ops *ops) | |
142 | { | |
143 | if (bsd_kvm_corefile && strcmp (bsd_kvm_corefile, _PATH_MEM) != 0) | |
144 | printf_filtered (_("\tUsing the kernel crash dump %s.\n"), | |
145 | bsd_kvm_corefile); | |
146 | else | |
147 | printf_filtered (_("\tUsing the currently running kernel.\n")); | |
148 | } | |
149 | ||
2e0c3539 MK |
150 | /* Fetch process control block at address PADDR. */ |
151 | ||
152 | static int | |
153 | bsd_kvm_fetch_pcb (struct pcb *paddr) | |
154 | { | |
155 | struct pcb pcb; | |
156 | ||
157 | if (kvm_read (core_kd, (unsigned long) paddr, &pcb, sizeof pcb) == -1) | |
8a3fe4f8 | 158 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
159 | |
160 | gdb_assert (bsd_kvm_supply_pcb); | |
161 | return bsd_kvm_supply_pcb (current_regcache, &pcb); | |
162 | } | |
163 | ||
164 | static void | |
165 | bsd_kvm_fetch_registers (int regnum) | |
166 | { | |
167 | struct nlist nl[2]; | |
168 | ||
169 | if (bsd_kvm_paddr) | |
efe1d7b9 MK |
170 | { |
171 | bsd_kvm_fetch_pcb (bsd_kvm_paddr); | |
172 | return; | |
173 | } | |
2e0c3539 MK |
174 | |
175 | /* On dumping core, BSD kernels store the faulting context (PCB) | |
176 | in the variable "dumppcb". */ | |
177 | memset (nl, 0, sizeof nl); | |
178 | nl[0].n_name = "_dumppcb"; | |
179 | ||
180 | if (kvm_nlist (core_kd, nl) == -1) | |
8a3fe4f8 | 181 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
182 | |
183 | if (nl[0].n_value != 0) | |
184 | { | |
185 | /* Found dumppcb. If it contains a valid context, return | |
186 | immediately. */ | |
187 | if (bsd_kvm_fetch_pcb ((struct pcb *) nl[0].n_value)) | |
188 | return; | |
189 | } | |
190 | ||
191 | /* Traditional BSD kernels have a process proc0 that should always | |
192 | be present. The address of proc0's PCB is stored in the variable | |
193 | "proc0paddr". */ | |
194 | ||
195 | memset (nl, 0, sizeof nl); | |
196 | nl[0].n_name = "_proc0paddr"; | |
197 | ||
198 | if (kvm_nlist (core_kd, nl) == -1) | |
8a3fe4f8 | 199 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
200 | |
201 | if (nl[0].n_value != 0) | |
202 | { | |
203 | struct pcb *paddr; | |
204 | ||
205 | /* Found proc0paddr. */ | |
206 | if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1) | |
8a3fe4f8 | 207 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
208 | |
209 | bsd_kvm_fetch_pcb (paddr); | |
210 | return; | |
211 | } | |
212 | ||
213 | #ifdef HAVE_STRUCT_THREAD_TD_PCB | |
214 | /* In FreeBSD kernels for 5.0-RELEASE and later, the PCB no longer | |
215 | lives in `struct proc' but in `struct thread'. The `struct | |
216 | thread' for the initial thread for proc0 can be found in the | |
217 | variable "thread0". */ | |
218 | ||
219 | memset (nl, 0, sizeof nl); | |
220 | nl[0].n_name = "_thread0"; | |
221 | ||
222 | if (kvm_nlist (core_kd, nl) == -1) | |
8a3fe4f8 | 223 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
224 | |
225 | if (nl[0].n_value != 0) | |
226 | { | |
227 | struct pcb *paddr; | |
228 | ||
229 | /* Found thread0. */ | |
efe1d7b9 MK |
230 | nl[0].n_value += offsetof (struct thread, td_pcb); |
231 | if (kvm_read (core_kd, nl[0].n_value, &paddr, sizeof paddr) == -1) | |
8a3fe4f8 | 232 | error (("%s"), kvm_geterr (core_kd)); |
2e0c3539 MK |
233 | |
234 | bsd_kvm_fetch_pcb (paddr); | |
235 | return; | |
236 | } | |
237 | #endif | |
238 | ||
3d263c1d BI |
239 | /* i18n: PCB == "Process Control Block" */ |
240 | error (_("Cannot find a valid PCB")); | |
2e0c3539 MK |
241 | } |
242 | \f | |
243 | ||
963c4174 | 244 | /* Kernel memory interface commands. */ |
fdb1bf9d | 245 | struct cmd_list_element *bsd_kvm_cmdlist; |
963c4174 MK |
246 | |
247 | static void | |
248 | bsd_kvm_cmd (char *arg, int fromtty) | |
249 | { | |
250 | /* ??? Should this become an alias for "target kvm"? */ | |
251 | } | |
252 | ||
253 | #ifndef HAVE_STRUCT_THREAD_TD_PCB | |
254 | ||
255 | static void | |
256 | bsd_kvm_proc_cmd (char *arg, int fromtty) | |
257 | { | |
258 | CORE_ADDR addr; | |
259 | ||
260 | if (arg == NULL) | |
3d263c1d | 261 | error_no_arg (_("proc address")); |
963c4174 MK |
262 | |
263 | if (core_kd == NULL) | |
3d263c1d | 264 | error (_("No kernel memory image.")); |
963c4174 MK |
265 | |
266 | addr = parse_and_eval_address (arg); | |
da7d81e3 NW |
267 | #ifdef HAVE_STRUCT_LWP |
268 | addr += offsetof (struct lwp, l_addr); | |
269 | #else | |
963c4174 | 270 | addr += offsetof (struct proc, p_addr); |
da7d81e3 | 271 | #endif |
963c4174 MK |
272 | |
273 | if (kvm_read (core_kd, addr, &bsd_kvm_paddr, sizeof bsd_kvm_paddr) == -1) | |
8a3fe4f8 | 274 | error (("%s"), kvm_geterr (core_kd)); |
963c4174 MK |
275 | |
276 | target_fetch_registers (-1); | |
277 | ||
278 | flush_cached_frames (); | |
279 | select_frame (get_current_frame ()); | |
b04f3ab4 | 280 | print_stack_frame (get_selected_frame (NULL), -1, 1); |
963c4174 MK |
281 | } |
282 | ||
283 | #endif | |
284 | ||
285 | static void | |
286 | bsd_kvm_pcb_cmd (char *arg, int fromtty) | |
287 | { | |
288 | if (arg == NULL) | |
3d263c1d BI |
289 | /* i18n: PCB == "Process Control Block" */ |
290 | error_no_arg (_("pcb address")); | |
963c4174 MK |
291 | |
292 | if (core_kd == NULL) | |
3d263c1d | 293 | error (_("No kernel memory image.")); |
963c4174 | 294 | |
57ac95b8 | 295 | bsd_kvm_paddr = (struct pcb *)(u_long) parse_and_eval_address (arg); |
963c4174 MK |
296 | |
297 | target_fetch_registers (-1); | |
298 | ||
299 | flush_cached_frames (); | |
300 | select_frame (get_current_frame ()); | |
b04f3ab4 | 301 | print_stack_frame (get_selected_frame (NULL), -1, 1); |
963c4174 MK |
302 | } |
303 | ||
2e0c3539 MK |
304 | /* Add the libkvm interface to the list of all possible targets and |
305 | register CUPPLY_PCB as the architecture-specific process control | |
306 | block interpreter. */ | |
307 | ||
308 | void | |
309 | bsd_kvm_add_target (int (*supply_pcb)(struct regcache *, struct pcb *)) | |
310 | { | |
311 | gdb_assert (bsd_kvm_supply_pcb == NULL); | |
312 | bsd_kvm_supply_pcb = supply_pcb; | |
313 | ||
314 | bsd_kvm_ops.to_shortname = "kvm"; | |
3d263c1d BI |
315 | bsd_kvm_ops.to_longname = _("Kernel memory interface"); |
316 | bsd_kvm_ops.to_doc = _("Use a kernel virtual memory image as a target.\n\ | |
317 | Optionally specify the filename of a core dump."); | |
2e0c3539 MK |
318 | bsd_kvm_ops.to_open = bsd_kvm_open; |
319 | bsd_kvm_ops.to_close = bsd_kvm_close; | |
320 | bsd_kvm_ops.to_fetch_registers = bsd_kvm_fetch_registers; | |
961cb7b5 | 321 | bsd_kvm_ops.to_xfer_partial = bsd_kvm_xfer_partial; |
2e5a5020 | 322 | bsd_kvm_ops.to_files_info = bsd_kvm_files_info; |
2e0c3539 MK |
323 | bsd_kvm_ops.to_stratum = process_stratum; |
324 | bsd_kvm_ops.to_has_memory = 1; | |
325 | bsd_kvm_ops.to_has_stack = 1; | |
326 | bsd_kvm_ops.to_has_registers = 1; | |
327 | bsd_kvm_ops.to_magic = OPS_MAGIC; | |
328 | ||
329 | add_target (&bsd_kvm_ops); | |
963c4174 | 330 | |
3d263c1d BI |
331 | add_prefix_cmd ("kvm", class_obscure, bsd_kvm_cmd, _("\ |
332 | Generic command for manipulating the kernel memory interface."), | |
963c4174 MK |
333 | &bsd_kvm_cmdlist, "kvm ", 0, &cmdlist); |
334 | ||
335 | #ifndef HAVE_STRUCT_THREAD_TD_PCB | |
336 | add_cmd ("proc", class_obscure, bsd_kvm_proc_cmd, | |
3d263c1d | 337 | _("Set current context from proc address"), &bsd_kvm_cmdlist); |
963c4174 MK |
338 | #endif |
339 | add_cmd ("pcb", class_obscure, bsd_kvm_pcb_cmd, | |
3d263c1d BI |
340 | /* i18n: PCB == "Process Control Block" */ |
341 | _("Set current context from pcb address"), &bsd_kvm_cmdlist); | |
2e0c3539 | 342 | } |