1 /* Default child (native) target interface, for GDB when running under
4 Copyright (C) 1988-2013 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 #include "gdb_string.h"
29 #include "inf-child.h"
30 #include "gdb/fileio.h"
34 #ifdef HAVE_SYS_PARAM_H
35 #include <sys/param.h> /* for MAXPATHLEN */
37 #include <sys/types.h>
41 /* Helper function for child_wait and the derivatives of child_wait.
42 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
43 translation of that in OURSTATUS. */
45 store_waitstatus (struct target_waitstatus
*ourstatus
, int hoststatus
)
47 if (WIFEXITED (hoststatus
))
49 ourstatus
->kind
= TARGET_WAITKIND_EXITED
;
50 ourstatus
->value
.integer
= WEXITSTATUS (hoststatus
);
52 else if (!WIFSTOPPED (hoststatus
))
54 ourstatus
->kind
= TARGET_WAITKIND_SIGNALLED
;
55 ourstatus
->value
.sig
= gdb_signal_from_host (WTERMSIG (hoststatus
));
59 ourstatus
->kind
= TARGET_WAITKIND_STOPPED
;
60 ourstatus
->value
.sig
= gdb_signal_from_host (WSTOPSIG (hoststatus
));
64 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
68 inf_child_fetch_inferior_registers (struct target_ops
*ops
,
69 struct regcache
*regcache
, int regnum
)
74 regnum
< gdbarch_num_regs (get_regcache_arch (regcache
));
76 regcache_raw_supply (regcache
, regnum
, NULL
);
79 regcache_raw_supply (regcache
, regnum
, NULL
);
82 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
83 this for all registers (including the floating point registers). */
86 inf_child_store_inferior_registers (struct target_ops
*ops
,
87 struct regcache
*regcache
, int regnum
)
92 inf_child_post_attach (int pid
)
94 /* This version of Unix doesn't require a meaningful "post attach"
95 operation by a debugger. */
98 /* Get ready to modify the registers array. On machines which store
99 individual registers, this doesn't need to do anything. On
100 machines which store all the registers in one fell swoop, this
101 makes sure that registers contains all the registers from the
102 program being debugged. */
105 inf_child_prepare_to_store (struct regcache
*regcache
)
110 inf_child_open (char *arg
, int from_tty
)
112 error (_("Use the \"run\" command to start a Unix child process."));
116 inf_child_post_startup_inferior (ptid_t ptid
)
118 /* This version of Unix doesn't require a meaningful "post startup
119 inferior" operation by a debugger. */
123 inf_child_follow_fork (struct target_ops
*ops
, int follow_child
)
125 /* This version of Unix doesn't support following fork or vfork
131 inf_child_can_run (void)
137 inf_child_pid_to_exec_file (int pid
)
139 /* This version of Unix doesn't support translation of a process ID
140 to the filename of the executable file. */
145 /* Target file operations. */
148 inf_child_fileio_open_flags_to_host (int fileio_open_flags
, int *open_flags_p
)
152 if (fileio_open_flags
& ~FILEIO_O_SUPPORTED
)
155 if (fileio_open_flags
& FILEIO_O_CREAT
)
156 open_flags
|= O_CREAT
;
157 if (fileio_open_flags
& FILEIO_O_EXCL
)
158 open_flags
|= O_EXCL
;
159 if (fileio_open_flags
& FILEIO_O_TRUNC
)
160 open_flags
|= O_TRUNC
;
161 if (fileio_open_flags
& FILEIO_O_APPEND
)
162 open_flags
|= O_APPEND
;
163 if (fileio_open_flags
& FILEIO_O_RDONLY
)
164 open_flags
|= O_RDONLY
;
165 if (fileio_open_flags
& FILEIO_O_WRONLY
)
166 open_flags
|= O_WRONLY
;
167 if (fileio_open_flags
& FILEIO_O_RDWR
)
168 open_flags
|= O_RDWR
;
169 /* On systems supporting binary and text mode, always open files in
172 open_flags
|= O_BINARY
;
175 *open_flags_p
= open_flags
;
180 inf_child_errno_to_fileio_error (int errnum
)
187 return FILEIO_ENOENT
;
195 return FILEIO_EACCES
;
197 return FILEIO_EFAULT
;
201 return FILEIO_EEXIST
;
203 return FILEIO_ENODEV
;
205 return FILEIO_ENOTDIR
;
207 return FILEIO_EISDIR
;
209 return FILEIO_EINVAL
;
211 return FILEIO_ENFILE
;
213 return FILEIO_EMFILE
;
217 return FILEIO_ENOSPC
;
219 return FILEIO_ESPIPE
;
223 return FILEIO_ENOSYS
;
225 return FILEIO_ENAMETOOLONG
;
227 return FILEIO_EUNKNOWN
;
230 /* Open FILENAME on the target, using FLAGS and MODE. Return a
231 target file descriptor, or -1 if an error occurs (and set
234 inf_child_fileio_open (const char *filename
, int flags
, int mode
,
240 if (inf_child_fileio_open_flags_to_host (flags
, &nat_flags
) == -1)
242 *target_errno
= FILEIO_EINVAL
;
246 /* We do not need to convert MODE, since the fileio protocol uses
247 the standard values. */
248 fd
= open (filename
, nat_flags
, mode
);
250 *target_errno
= inf_child_errno_to_fileio_error (errno
);
255 /* Write up to LEN bytes from WRITE_BUF to FD on the target.
256 Return the number of bytes written, or -1 if an error occurs
257 (and set *TARGET_ERRNO). */
259 inf_child_fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
260 ULONGEST offset
, int *target_errno
)
265 ret
= pwrite (fd
, write_buf
, len
, (long) offset
);
269 /* If we have no pwrite or it failed for this file, use lseek/write. */
272 ret
= lseek (fd
, (long) offset
, SEEK_SET
);
274 ret
= write (fd
, write_buf
, len
);
278 *target_errno
= inf_child_errno_to_fileio_error (errno
);
283 /* Read up to LEN bytes FD on the target into READ_BUF.
284 Return the number of bytes read, or -1 if an error occurs
285 (and set *TARGET_ERRNO). */
287 inf_child_fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
288 ULONGEST offset
, int *target_errno
)
293 ret
= pread (fd
, read_buf
, len
, (long) offset
);
297 /* If we have no pread or it failed for this file, use lseek/read. */
300 ret
= lseek (fd
, (long) offset
, SEEK_SET
);
302 ret
= read (fd
, read_buf
, len
);
306 *target_errno
= inf_child_errno_to_fileio_error (errno
);
311 /* Close FD on the target. Return 0, or -1 if an error occurs
312 (and set *TARGET_ERRNO). */
314 inf_child_fileio_close (int fd
, int *target_errno
)
320 *target_errno
= inf_child_errno_to_fileio_error (errno
);
325 /* Unlink FILENAME on the target. Return 0, or -1 if an error
326 occurs (and set *TARGET_ERRNO). */
328 inf_child_fileio_unlink (const char *filename
, int *target_errno
)
332 ret
= unlink (filename
);
334 *target_errno
= inf_child_errno_to_fileio_error (errno
);
339 /* Read value of symbolic link FILENAME on the target. Return a
340 null-terminated string allocated via xmalloc, or NULL if an error
341 occurs (and set *TARGET_ERRNO). */
343 inf_child_fileio_readlink (const char *filename
, int *target_errno
)
345 /* We support readlink only on systems that also provide a compile-time
346 maximum path length (MAXPATHLEN), at least for now. */
347 #if defined (HAVE_READLINK) && defined (MAXPATHLEN)
348 char buf
[MAXPATHLEN
- 1];
352 len
= readlink (filename
, buf
, sizeof buf
);
355 *target_errno
= inf_child_errno_to_fileio_error (errno
);
359 ret
= xmalloc (len
+ 1);
360 memcpy (ret
, buf
, len
);
364 *target_errno
= FILEIO_ENOSYS
;
370 inf_child_use_agent (int use
)
372 if (agent_loaded_p ())
382 inf_child_can_use_agent (void)
384 return agent_loaded_p ();
388 inf_child_target (void)
390 struct target_ops
*t
= XZALLOC (struct target_ops
);
392 t
->to_shortname
= "child";
393 t
->to_longname
= "Unix child process";
394 t
->to_doc
= "Unix child process (started by the \"run\" command).";
395 t
->to_open
= inf_child_open
;
396 t
->to_post_attach
= inf_child_post_attach
;
397 t
->to_fetch_registers
= inf_child_fetch_inferior_registers
;
398 t
->to_store_registers
= inf_child_store_inferior_registers
;
399 t
->to_prepare_to_store
= inf_child_prepare_to_store
;
400 t
->to_insert_breakpoint
= memory_insert_breakpoint
;
401 t
->to_remove_breakpoint
= memory_remove_breakpoint
;
402 t
->to_terminal_init
= terminal_init_inferior
;
403 t
->to_terminal_inferior
= terminal_inferior
;
404 t
->to_terminal_ours_for_output
= terminal_ours_for_output
;
405 t
->to_terminal_save_ours
= terminal_save_ours
;
406 t
->to_terminal_ours
= terminal_ours
;
407 t
->to_terminal_info
= child_terminal_info
;
408 t
->to_post_startup_inferior
= inf_child_post_startup_inferior
;
409 t
->to_follow_fork
= inf_child_follow_fork
;
410 t
->to_can_run
= inf_child_can_run
;
411 t
->to_pid_to_exec_file
= inf_child_pid_to_exec_file
;
412 t
->to_stratum
= process_stratum
;
413 t
->to_has_all_memory
= default_child_has_all_memory
;
414 t
->to_has_memory
= default_child_has_memory
;
415 t
->to_has_stack
= default_child_has_stack
;
416 t
->to_has_registers
= default_child_has_registers
;
417 t
->to_has_execution
= default_child_has_execution
;
418 t
->to_fileio_open
= inf_child_fileio_open
;
419 t
->to_fileio_pwrite
= inf_child_fileio_pwrite
;
420 t
->to_fileio_pread
= inf_child_fileio_pread
;
421 t
->to_fileio_close
= inf_child_fileio_close
;
422 t
->to_fileio_unlink
= inf_child_fileio_unlink
;
423 t
->to_fileio_readlink
= inf_child_fileio_readlink
;
424 t
->to_magic
= OPS_MAGIC
;
425 t
->to_use_agent
= inf_child_use_agent
;
426 t
->to_can_use_agent
= inf_child_can_use_agent
;