Commit | Line | Data |
---|---|---|
f1aea813 | 1 | /* Base/prototype target for default child (native) targets. |
5bf970f9 | 2 | |
ecd75fc8 | 3 | Copyright (C) 1988-2014 Free Software Foundation, Inc. |
5bf970f9 AC |
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 | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
5bf970f9 AC |
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 | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
5bf970f9 | 19 | |
f1aea813 PA |
20 | /* This file provides a common base class/target that all native |
21 | target implementations extend, by calling inf_child_target to get a | |
22 | new prototype target and then overriding target methods as | |
23 | necessary. */ | |
24 | ||
5bf970f9 AC |
25 | #include "defs.h" |
26 | #include "regcache.h" | |
27 | #include "memattr.h" | |
28 | #include "symtab.h" | |
29 | #include "target.h" | |
30 | #include "inferior.h" | |
0e9f083f | 31 | #include <string.h> |
53ce3c39 | 32 | #include <sys/stat.h> |
2c0b251b | 33 | #include "inf-child.h" |
7313baad | 34 | #include "gdb/fileio.h" |
5808517f | 35 | #include "agent.h" |
dab06dbe | 36 | #include "gdb_wait.h" |
614c279d | 37 | #include "filestuff.h" |
7313baad UW |
38 | |
39 | #include <sys/types.h> | |
7313baad UW |
40 | #include <fcntl.h> |
41 | #include <unistd.h> | |
5bf970f9 | 42 | |
6a3cb8e8 PA |
43 | /* A pointer to what is returned by inf_child_target. Used by |
44 | inf_child_open to push the most-derived target in reaction to | |
45 | "target native". */ | |
46 | static struct target_ops *inf_child_ops = NULL; | |
47 | ||
dab06dbe PA |
48 | /* Helper function for child_wait and the derivatives of child_wait. |
49 | HOSTSTATUS is the waitstatus from wait() or the equivalent; store our | |
50 | translation of that in OURSTATUS. */ | |
51 | void | |
52 | store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus) | |
53 | { | |
54 | if (WIFEXITED (hoststatus)) | |
55 | { | |
56 | ourstatus->kind = TARGET_WAITKIND_EXITED; | |
57 | ourstatus->value.integer = WEXITSTATUS (hoststatus); | |
58 | } | |
59 | else if (!WIFSTOPPED (hoststatus)) | |
60 | { | |
61 | ourstatus->kind = TARGET_WAITKIND_SIGNALLED; | |
2ea28649 | 62 | ourstatus->value.sig = gdb_signal_from_host (WTERMSIG (hoststatus)); |
dab06dbe PA |
63 | } |
64 | else | |
65 | { | |
66 | ourstatus->kind = TARGET_WAITKIND_STOPPED; | |
2ea28649 | 67 | ourstatus->value.sig = gdb_signal_from_host (WSTOPSIG (hoststatus)); |
dab06dbe PA |
68 | } |
69 | } | |
70 | ||
5bf970f9 AC |
71 | /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this |
72 | for all registers. */ | |
73 | ||
74 | static void | |
28439f5e PA |
75 | inf_child_fetch_inferior_registers (struct target_ops *ops, |
76 | struct regcache *regcache, int regnum) | |
5bf970f9 AC |
77 | { |
78 | if (regnum == -1) | |
79 | { | |
b1a653ae UW |
80 | for (regnum = 0; |
81 | regnum < gdbarch_num_regs (get_regcache_arch (regcache)); | |
82 | regnum++) | |
56be3814 | 83 | regcache_raw_supply (regcache, regnum, NULL); |
5bf970f9 AC |
84 | } |
85 | else | |
56be3814 | 86 | regcache_raw_supply (regcache, regnum, NULL); |
5bf970f9 AC |
87 | } |
88 | ||
89 | /* Store register REGNUM back into the inferior. If REGNUM is -1, do | |
90 | this for all registers (including the floating point registers). */ | |
91 | ||
92 | static void | |
28439f5e PA |
93 | inf_child_store_inferior_registers (struct target_ops *ops, |
94 | struct regcache *regcache, int regnum) | |
5bf970f9 AC |
95 | { |
96 | } | |
97 | ||
5bf970f9 | 98 | static void |
f045800c | 99 | inf_child_post_attach (struct target_ops *self, int pid) |
5bf970f9 | 100 | { |
f1aea813 PA |
101 | /* This target doesn't require a meaningful "post attach" operation |
102 | by a debugger. */ | |
5bf970f9 AC |
103 | } |
104 | ||
105 | /* Get ready to modify the registers array. On machines which store | |
106 | individual registers, this doesn't need to do anything. On | |
107 | machines which store all the registers in one fell swoop, this | |
108 | makes sure that registers contains all the registers from the | |
109 | program being debugged. */ | |
110 | ||
111 | static void | |
f32dbf8c MM |
112 | inf_child_prepare_to_store (struct target_ops *self, |
113 | struct regcache *regcache) | |
5bf970f9 AC |
114 | { |
115 | } | |
116 | ||
6a3cb8e8 PA |
117 | /* True if the user did "target native". In that case, we won't |
118 | unpush the child target automatically when the last inferior is | |
119 | gone. */ | |
120 | static int inf_child_explicitly_opened; | |
121 | ||
122 | /* See inf-child.h. */ | |
123 | ||
124 | void | |
125 | inf_child_open_target (struct target_ops *target, char *arg, int from_tty) | |
126 | { | |
127 | target_preopen (from_tty); | |
128 | push_target (target); | |
129 | inf_child_explicitly_opened = 1; | |
130 | if (from_tty) | |
131 | printf_filtered ("Done. Use the \"run\" command to start a process.\n"); | |
132 | } | |
133 | ||
5bf970f9 AC |
134 | static void |
135 | inf_child_open (char *arg, int from_tty) | |
136 | { | |
6a3cb8e8 PA |
137 | inf_child_open_target (inf_child_ops, arg, from_tty); |
138 | } | |
139 | ||
140 | /* Implement the to_disconnect target_ops method. */ | |
141 | ||
142 | static void | |
fee354ee | 143 | inf_child_disconnect (struct target_ops *target, const char *args, int from_tty) |
6a3cb8e8 PA |
144 | { |
145 | if (args != NULL) | |
146 | error (_("Argument given to \"disconnect\".")); | |
147 | ||
148 | /* This offers to detach/kill current inferiors, and then pops all | |
149 | targets. */ | |
150 | target_preopen (from_tty); | |
151 | } | |
152 | ||
153 | /* Implement the to_close target_ops method. */ | |
154 | ||
155 | static void | |
156 | inf_child_close (struct target_ops *target) | |
157 | { | |
158 | /* In case we were forcibly closed. */ | |
159 | inf_child_explicitly_opened = 0; | |
160 | } | |
161 | ||
c1ee2fb3 PA |
162 | void |
163 | inf_child_mourn_inferior (struct target_ops *ops) | |
164 | { | |
165 | generic_mourn_inferior (); | |
166 | inf_child_maybe_unpush_target (ops); | |
167 | } | |
168 | ||
6a3cb8e8 PA |
169 | /* See inf-child.h. */ |
170 | ||
171 | void | |
172 | inf_child_maybe_unpush_target (struct target_ops *ops) | |
173 | { | |
174 | if (!inf_child_explicitly_opened && !have_inferiors ()) | |
175 | unpush_target (ops); | |
5bf970f9 AC |
176 | } |
177 | ||
178 | static void | |
2e97a79e | 179 | inf_child_post_startup_inferior (struct target_ops *self, ptid_t ptid) |
5bf970f9 | 180 | { |
f1aea813 PA |
181 | /* This target doesn't require a meaningful "post startup inferior" |
182 | operation by a debugger. */ | |
5bf970f9 AC |
183 | } |
184 | ||
5bf970f9 | 185 | static int |
07107ca6 LM |
186 | inf_child_follow_fork (struct target_ops *ops, int follow_child, |
187 | int detach_fork) | |
5bf970f9 | 188 | { |
f1aea813 | 189 | /* This target doesn't support following fork or vfork events. */ |
5bf970f9 AC |
190 | return 0; |
191 | } | |
192 | ||
5bf970f9 | 193 | static int |
da82bd6b | 194 | inf_child_can_run (struct target_ops *self) |
5bf970f9 AC |
195 | { |
196 | return 1; | |
197 | } | |
198 | ||
5bf970f9 | 199 | static char * |
8dd27370 | 200 | inf_child_pid_to_exec_file (struct target_ops *self, int pid) |
5bf970f9 | 201 | { |
f1aea813 PA |
202 | /* This target doesn't support translation of a process ID to the |
203 | filename of the executable file. */ | |
5bf970f9 AC |
204 | return NULL; |
205 | } | |
206 | ||
7313baad UW |
207 | |
208 | /* Target file operations. */ | |
209 | ||
210 | static int | |
211 | inf_child_fileio_open_flags_to_host (int fileio_open_flags, int *open_flags_p) | |
212 | { | |
213 | int open_flags = 0; | |
214 | ||
215 | if (fileio_open_flags & ~FILEIO_O_SUPPORTED) | |
216 | return -1; | |
217 | ||
218 | if (fileio_open_flags & FILEIO_O_CREAT) | |
219 | open_flags |= O_CREAT; | |
220 | if (fileio_open_flags & FILEIO_O_EXCL) | |
221 | open_flags |= O_EXCL; | |
222 | if (fileio_open_flags & FILEIO_O_TRUNC) | |
223 | open_flags |= O_TRUNC; | |
224 | if (fileio_open_flags & FILEIO_O_APPEND) | |
225 | open_flags |= O_APPEND; | |
226 | if (fileio_open_flags & FILEIO_O_RDONLY) | |
227 | open_flags |= O_RDONLY; | |
228 | if (fileio_open_flags & FILEIO_O_WRONLY) | |
229 | open_flags |= O_WRONLY; | |
230 | if (fileio_open_flags & FILEIO_O_RDWR) | |
231 | open_flags |= O_RDWR; | |
232 | /* On systems supporting binary and text mode, always open files in | |
233 | binary mode. */ | |
234 | #ifdef O_BINARY | |
235 | open_flags |= O_BINARY; | |
236 | #endif | |
237 | ||
238 | *open_flags_p = open_flags; | |
239 | return 0; | |
240 | } | |
241 | ||
242 | static int | |
243 | inf_child_errno_to_fileio_error (int errnum) | |
244 | { | |
245 | switch (errnum) | |
246 | { | |
247 | case EPERM: | |
248 | return FILEIO_EPERM; | |
249 | case ENOENT: | |
250 | return FILEIO_ENOENT; | |
251 | case EINTR: | |
252 | return FILEIO_EINTR; | |
253 | case EIO: | |
254 | return FILEIO_EIO; | |
255 | case EBADF: | |
256 | return FILEIO_EBADF; | |
257 | case EACCES: | |
258 | return FILEIO_EACCES; | |
259 | case EFAULT: | |
260 | return FILEIO_EFAULT; | |
261 | case EBUSY: | |
262 | return FILEIO_EBUSY; | |
263 | case EEXIST: | |
264 | return FILEIO_EEXIST; | |
265 | case ENODEV: | |
266 | return FILEIO_ENODEV; | |
267 | case ENOTDIR: | |
268 | return FILEIO_ENOTDIR; | |
269 | case EISDIR: | |
270 | return FILEIO_EISDIR; | |
271 | case EINVAL: | |
272 | return FILEIO_EINVAL; | |
273 | case ENFILE: | |
274 | return FILEIO_ENFILE; | |
275 | case EMFILE: | |
276 | return FILEIO_EMFILE; | |
277 | case EFBIG: | |
278 | return FILEIO_EFBIG; | |
279 | case ENOSPC: | |
280 | return FILEIO_ENOSPC; | |
281 | case ESPIPE: | |
282 | return FILEIO_ESPIPE; | |
283 | case EROFS: | |
284 | return FILEIO_EROFS; | |
285 | case ENOSYS: | |
286 | return FILEIO_ENOSYS; | |
287 | case ENAMETOOLONG: | |
288 | return FILEIO_ENAMETOOLONG; | |
289 | } | |
290 | return FILEIO_EUNKNOWN; | |
291 | } | |
292 | ||
293 | /* Open FILENAME on the target, using FLAGS and MODE. Return a | |
294 | target file descriptor, or -1 if an error occurs (and set | |
295 | *TARGET_ERRNO). */ | |
296 | static int | |
cd897586 TT |
297 | inf_child_fileio_open (struct target_ops *self, |
298 | const char *filename, int flags, int mode, | |
7313baad UW |
299 | int *target_errno) |
300 | { | |
301 | int nat_flags; | |
302 | int fd; | |
303 | ||
304 | if (inf_child_fileio_open_flags_to_host (flags, &nat_flags) == -1) | |
305 | { | |
306 | *target_errno = FILEIO_EINVAL; | |
307 | return -1; | |
308 | } | |
309 | ||
310 | /* We do not need to convert MODE, since the fileio protocol uses | |
311 | the standard values. */ | |
614c279d | 312 | fd = gdb_open_cloexec (filename, nat_flags, mode); |
7313baad UW |
313 | if (fd == -1) |
314 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
315 | ||
316 | return fd; | |
317 | } | |
318 | ||
319 | /* Write up to LEN bytes from WRITE_BUF to FD on the target. | |
320 | Return the number of bytes written, or -1 if an error occurs | |
321 | (and set *TARGET_ERRNO). */ | |
322 | static int | |
0d866f62 TT |
323 | inf_child_fileio_pwrite (struct target_ops *self, |
324 | int fd, const gdb_byte *write_buf, int len, | |
7313baad UW |
325 | ULONGEST offset, int *target_errno) |
326 | { | |
327 | int ret; | |
328 | ||
329 | #ifdef HAVE_PWRITE | |
330 | ret = pwrite (fd, write_buf, len, (long) offset); | |
331 | #else | |
7c3270ae | 332 | ret = -1; |
7313baad | 333 | #endif |
7c3270ae UW |
334 | /* If we have no pwrite or it failed for this file, use lseek/write. */ |
335 | if (ret == -1) | |
336 | { | |
337 | ret = lseek (fd, (long) offset, SEEK_SET); | |
338 | if (ret != -1) | |
339 | ret = write (fd, write_buf, len); | |
340 | } | |
7313baad UW |
341 | |
342 | if (ret == -1) | |
343 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
344 | ||
345 | return ret; | |
346 | } | |
347 | ||
348 | /* Read up to LEN bytes FD on the target into READ_BUF. | |
349 | Return the number of bytes read, or -1 if an error occurs | |
350 | (and set *TARGET_ERRNO). */ | |
351 | static int | |
a3be983c TT |
352 | inf_child_fileio_pread (struct target_ops *self, |
353 | int fd, gdb_byte *read_buf, int len, | |
7313baad UW |
354 | ULONGEST offset, int *target_errno) |
355 | { | |
356 | int ret; | |
357 | ||
358 | #ifdef HAVE_PREAD | |
359 | ret = pread (fd, read_buf, len, (long) offset); | |
360 | #else | |
7c3270ae | 361 | ret = -1; |
7313baad | 362 | #endif |
7c3270ae UW |
363 | /* If we have no pread or it failed for this file, use lseek/read. */ |
364 | if (ret == -1) | |
365 | { | |
366 | ret = lseek (fd, (long) offset, SEEK_SET); | |
367 | if (ret != -1) | |
368 | ret = read (fd, read_buf, len); | |
369 | } | |
7313baad UW |
370 | |
371 | if (ret == -1) | |
372 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
373 | ||
374 | return ret; | |
375 | } | |
376 | ||
377 | /* Close FD on the target. Return 0, or -1 if an error occurs | |
378 | (and set *TARGET_ERRNO). */ | |
379 | static int | |
df39ea25 | 380 | inf_child_fileio_close (struct target_ops *self, int fd, int *target_errno) |
7313baad UW |
381 | { |
382 | int ret; | |
383 | ||
384 | ret = close (fd); | |
385 | if (ret == -1) | |
386 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
387 | ||
388 | return ret; | |
389 | } | |
390 | ||
391 | /* Unlink FILENAME on the target. Return 0, or -1 if an error | |
392 | occurs (and set *TARGET_ERRNO). */ | |
393 | static int | |
dbbca37d TT |
394 | inf_child_fileio_unlink (struct target_ops *self, |
395 | const char *filename, int *target_errno) | |
7313baad UW |
396 | { |
397 | int ret; | |
398 | ||
399 | ret = unlink (filename); | |
400 | if (ret == -1) | |
401 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
402 | ||
403 | return ret; | |
404 | } | |
405 | ||
b9e7b9c3 UW |
406 | /* Read value of symbolic link FILENAME on the target. Return a |
407 | null-terminated string allocated via xmalloc, or NULL if an error | |
408 | occurs (and set *TARGET_ERRNO). */ | |
409 | static char * | |
fab5aa7c TT |
410 | inf_child_fileio_readlink (struct target_ops *self, |
411 | const char *filename, int *target_errno) | |
b9e7b9c3 UW |
412 | { |
413 | /* We support readlink only on systems that also provide a compile-time | |
d8d2a3ee PA |
414 | maximum path length (PATH_MAX), at least for now. */ |
415 | #if defined (HAVE_READLINK) && defined (PATH_MAX) | |
416 | char buf[PATH_MAX]; | |
b9e7b9c3 UW |
417 | int len; |
418 | char *ret; | |
419 | ||
420 | len = readlink (filename, buf, sizeof buf); | |
421 | if (len < 0) | |
422 | { | |
423 | *target_errno = inf_child_errno_to_fileio_error (errno); | |
424 | return NULL; | |
425 | } | |
426 | ||
427 | ret = xmalloc (len + 1); | |
428 | memcpy (ret, buf, len); | |
429 | ret[len] = '\0'; | |
430 | return ret; | |
431 | #else | |
432 | *target_errno = FILEIO_ENOSYS; | |
433 | return NULL; | |
434 | #endif | |
435 | } | |
436 | ||
5808517f | 437 | static int |
2c152180 | 438 | inf_child_use_agent (struct target_ops *self, int use) |
5808517f YQ |
439 | { |
440 | if (agent_loaded_p ()) | |
441 | { | |
442 | use_agent = use; | |
443 | return 1; | |
444 | } | |
445 | else | |
446 | return 0; | |
447 | } | |
448 | ||
449 | static int | |
fe38f897 | 450 | inf_child_can_use_agent (struct target_ops *self) |
5808517f YQ |
451 | { |
452 | return agent_loaded_p (); | |
453 | } | |
7313baad | 454 | |
b3ccfe11 TT |
455 | /* Default implementation of the to_can_async_p and |
456 | to_supports_non_stop methods. */ | |
457 | ||
458 | static int | |
459 | return_zero (struct target_ops *ignore) | |
460 | { | |
461 | return 0; | |
462 | } | |
463 | ||
5bf970f9 AC |
464 | struct target_ops * |
465 | inf_child_target (void) | |
466 | { | |
41bf6aca | 467 | struct target_ops *t = XCNEW (struct target_ops); |
abbb1732 | 468 | |
4ebfc96e PA |
469 | t->to_shortname = "native"; |
470 | t->to_longname = "Native process"; | |
471 | t->to_doc = "Native process (started by the \"run\" command)."; | |
5bf970f9 | 472 | t->to_open = inf_child_open; |
6a3cb8e8 PA |
473 | t->to_close = inf_child_close; |
474 | t->to_disconnect = inf_child_disconnect; | |
5bf970f9 | 475 | t->to_post_attach = inf_child_post_attach; |
7681f339 AC |
476 | t->to_fetch_registers = inf_child_fetch_inferior_registers; |
477 | t->to_store_registers = inf_child_store_inferior_registers; | |
5bf970f9 AC |
478 | t->to_prepare_to_store = inf_child_prepare_to_store; |
479 | t->to_insert_breakpoint = memory_insert_breakpoint; | |
480 | t->to_remove_breakpoint = memory_remove_breakpoint; | |
d6b64346 PA |
481 | t->to_terminal_init = child_terminal_init; |
482 | t->to_terminal_inferior = child_terminal_inferior; | |
483 | t->to_terminal_ours_for_output = child_terminal_ours_for_output; | |
484 | t->to_terminal_save_ours = child_terminal_save_ours; | |
485 | t->to_terminal_ours = child_terminal_ours; | |
5bf970f9 AC |
486 | t->to_terminal_info = child_terminal_info; |
487 | t->to_post_startup_inferior = inf_child_post_startup_inferior; | |
5bf970f9 | 488 | t->to_follow_fork = inf_child_follow_fork; |
5bf970f9 | 489 | t->to_can_run = inf_child_can_run; |
b3ccfe11 TT |
490 | /* We must default these because they must be implemented by any |
491 | target that can run. */ | |
492 | t->to_can_async_p = return_zero; | |
493 | t->to_supports_non_stop = return_zero; | |
5bf970f9 AC |
494 | t->to_pid_to_exec_file = inf_child_pid_to_exec_file; |
495 | t->to_stratum = process_stratum; | |
c35b1492 PA |
496 | t->to_has_all_memory = default_child_has_all_memory; |
497 | t->to_has_memory = default_child_has_memory; | |
498 | t->to_has_stack = default_child_has_stack; | |
499 | t->to_has_registers = default_child_has_registers; | |
500 | t->to_has_execution = default_child_has_execution; | |
7313baad UW |
501 | t->to_fileio_open = inf_child_fileio_open; |
502 | t->to_fileio_pwrite = inf_child_fileio_pwrite; | |
503 | t->to_fileio_pread = inf_child_fileio_pread; | |
504 | t->to_fileio_close = inf_child_fileio_close; | |
505 | t->to_fileio_unlink = inf_child_fileio_unlink; | |
b9e7b9c3 | 506 | t->to_fileio_readlink = inf_child_fileio_readlink; |
5bf970f9 | 507 | t->to_magic = OPS_MAGIC; |
5808517f YQ |
508 | t->to_use_agent = inf_child_use_agent; |
509 | t->to_can_use_agent = inf_child_can_use_agent; | |
6a3cb8e8 PA |
510 | |
511 | /* Store a pointer so we can push the most-derived target from | |
512 | inf_child_open. */ | |
513 | inf_child_ops = t; | |
514 | ||
5bf970f9 AC |
515 | return t; |
516 | } |