Remove linux_proc_pid_get_ns
[deliverable/binutils-gdb.git] / gdb / inf-child.c
CommitLineData
f1aea813 1/* Base/prototype target for default child (native) targets.
5bf970f9 2
32d0add0 3 Copyright (C) 1988-2015 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"
53ce3c39 31#include <sys/stat.h>
2c0b251b 32#include "inf-child.h"
7823a941 33#include "fileio.h"
5808517f 34#include "agent.h"
dab06dbe 35#include "gdb_wait.h"
614c279d 36#include "filestuff.h"
7313baad
UW
37
38#include <sys/types.h>
7313baad
UW
39#include <fcntl.h>
40#include <unistd.h>
5bf970f9 41
6a3cb8e8
PA
42/* A pointer to what is returned by inf_child_target. Used by
43 inf_child_open to push the most-derived target in reaction to
44 "target native". */
45static struct target_ops *inf_child_ops = NULL;
46
dab06dbe
PA
47/* Helper function for child_wait and the derivatives of child_wait.
48 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
49 translation of that in OURSTATUS. */
50void
51store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
52{
53 if (WIFEXITED (hoststatus))
54 {
55 ourstatus->kind = TARGET_WAITKIND_EXITED;
56 ourstatus->value.integer = WEXITSTATUS (hoststatus);
57 }
58 else if (!WIFSTOPPED (hoststatus))
59 {
60 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2ea28649 61 ourstatus->value.sig = gdb_signal_from_host (WTERMSIG (hoststatus));
dab06dbe
PA
62 }
63 else
64 {
65 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2ea28649 66 ourstatus->value.sig = gdb_signal_from_host (WSTOPSIG (hoststatus));
dab06dbe
PA
67 }
68}
69
5bf970f9
AC
70/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
71 for all registers. */
72
73static void
28439f5e
PA
74inf_child_fetch_inferior_registers (struct target_ops *ops,
75 struct regcache *regcache, int regnum)
5bf970f9
AC
76{
77 if (regnum == -1)
78 {
b1a653ae
UW
79 for (regnum = 0;
80 regnum < gdbarch_num_regs (get_regcache_arch (regcache));
81 regnum++)
56be3814 82 regcache_raw_supply (regcache, regnum, NULL);
5bf970f9
AC
83 }
84 else
56be3814 85 regcache_raw_supply (regcache, regnum, NULL);
5bf970f9
AC
86}
87
88/* Store register REGNUM back into the inferior. If REGNUM is -1, do
89 this for all registers (including the floating point registers). */
90
91static void
28439f5e
PA
92inf_child_store_inferior_registers (struct target_ops *ops,
93 struct regcache *regcache, int regnum)
5bf970f9
AC
94{
95}
96
5bf970f9 97static void
f045800c 98inf_child_post_attach (struct target_ops *self, int pid)
5bf970f9 99{
f1aea813
PA
100 /* This target doesn't require a meaningful "post attach" operation
101 by a debugger. */
5bf970f9
AC
102}
103
104/* Get ready to modify the registers array. On machines which store
105 individual registers, this doesn't need to do anything. On
106 machines which store all the registers in one fell swoop, this
107 makes sure that registers contains all the registers from the
108 program being debugged. */
109
110static void
f32dbf8c
MM
111inf_child_prepare_to_store (struct target_ops *self,
112 struct regcache *regcache)
5bf970f9
AC
113{
114}
115
6a3cb8e8
PA
116/* True if the user did "target native". In that case, we won't
117 unpush the child target automatically when the last inferior is
118 gone. */
119static int inf_child_explicitly_opened;
120
121/* See inf-child.h. */
122
123void
0d5f0dbe
TT
124inf_child_open_target (struct target_ops *target, const char *arg,
125 int from_tty)
6a3cb8e8
PA
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 134static void
014f9477 135inf_child_open (const char *arg, int from_tty)
5bf970f9 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
142static void
fee354ee 143inf_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
155static void
156inf_child_close (struct target_ops *target)
157{
158 /* In case we were forcibly closed. */
159 inf_child_explicitly_opened = 0;
160}
161
c1ee2fb3
PA
162void
163inf_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
171void
172inf_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
178static void
2e97a79e 179inf_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 185static int
07107ca6
LM
186inf_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 193static int
da82bd6b 194inf_child_can_run (struct target_ops *self)
5bf970f9
AC
195{
196 return 1;
197}
198
5bf970f9 199static char *
8dd27370 200inf_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/* Open FILENAME on the target, using FLAGS and MODE. Return a
208 target file descriptor, or -1 if an error occurs (and set
209 *TARGET_ERRNO). */
210static int
cd897586
TT
211inf_child_fileio_open (struct target_ops *self,
212 const char *filename, int flags, int mode,
7313baad
UW
213 int *target_errno)
214{
215 int nat_flags;
3ac2e371 216 mode_t nat_mode;
7313baad
UW
217 int fd;
218
3ac2e371
GB
219 if (fileio_to_host_openflags (flags, &nat_flags) == -1
220 || fileio_to_host_mode (mode, &nat_mode) == -1)
7313baad
UW
221 {
222 *target_errno = FILEIO_EINVAL;
223 return -1;
224 }
225
3ac2e371 226 fd = gdb_open_cloexec (filename, nat_flags, nat_mode);
7313baad 227 if (fd == -1)
7823a941 228 *target_errno = host_to_fileio_error (errno);
7313baad
UW
229
230 return fd;
231}
232
233/* Write up to LEN bytes from WRITE_BUF to FD on the target.
234 Return the number of bytes written, or -1 if an error occurs
235 (and set *TARGET_ERRNO). */
236static int
0d866f62
TT
237inf_child_fileio_pwrite (struct target_ops *self,
238 int fd, const gdb_byte *write_buf, int len,
7313baad
UW
239 ULONGEST offset, int *target_errno)
240{
241 int ret;
242
243#ifdef HAVE_PWRITE
244 ret = pwrite (fd, write_buf, len, (long) offset);
245#else
7c3270ae 246 ret = -1;
7313baad 247#endif
7c3270ae
UW
248 /* If we have no pwrite or it failed for this file, use lseek/write. */
249 if (ret == -1)
250 {
251 ret = lseek (fd, (long) offset, SEEK_SET);
252 if (ret != -1)
253 ret = write (fd, write_buf, len);
254 }
7313baad
UW
255
256 if (ret == -1)
7823a941 257 *target_errno = host_to_fileio_error (errno);
7313baad
UW
258
259 return ret;
260}
261
262/* Read up to LEN bytes FD on the target into READ_BUF.
263 Return the number of bytes read, or -1 if an error occurs
264 (and set *TARGET_ERRNO). */
265static int
a3be983c
TT
266inf_child_fileio_pread (struct target_ops *self,
267 int fd, gdb_byte *read_buf, int len,
7313baad
UW
268 ULONGEST offset, int *target_errno)
269{
270 int ret;
271
272#ifdef HAVE_PREAD
273 ret = pread (fd, read_buf, len, (long) offset);
274#else
7c3270ae 275 ret = -1;
7313baad 276#endif
7c3270ae
UW
277 /* If we have no pread or it failed for this file, use lseek/read. */
278 if (ret == -1)
279 {
280 ret = lseek (fd, (long) offset, SEEK_SET);
281 if (ret != -1)
282 ret = read (fd, read_buf, len);
283 }
7313baad
UW
284
285 if (ret == -1)
7823a941 286 *target_errno = host_to_fileio_error (errno);
7313baad
UW
287
288 return ret;
289}
290
9b15c1f0
GB
291/* Implementation of to_fileio_fstat. */
292static int
293inf_child_fileio_fstat (struct target_ops *self, int fd,
294 struct stat *sb, int *target_errno)
295{
296 int ret;
297
298 ret = fstat (fd, sb);
299 if (ret == -1)
7823a941 300 *target_errno = host_to_fileio_error (errno);
9b15c1f0
GB
301
302 return ret;
303}
304
7313baad
UW
305/* Close FD on the target. Return 0, or -1 if an error occurs
306 (and set *TARGET_ERRNO). */
307static int
df39ea25 308inf_child_fileio_close (struct target_ops *self, int fd, int *target_errno)
7313baad
UW
309{
310 int ret;
311
312 ret = close (fd);
313 if (ret == -1)
7823a941 314 *target_errno = host_to_fileio_error (errno);
7313baad
UW
315
316 return ret;
317}
318
319/* Unlink FILENAME on the target. Return 0, or -1 if an error
320 occurs (and set *TARGET_ERRNO). */
321static int
dbbca37d
TT
322inf_child_fileio_unlink (struct target_ops *self,
323 const char *filename, int *target_errno)
7313baad
UW
324{
325 int ret;
326
327 ret = unlink (filename);
328 if (ret == -1)
7823a941 329 *target_errno = host_to_fileio_error (errno);
7313baad
UW
330
331 return ret;
332}
333
b9e7b9c3
UW
334/* Read value of symbolic link FILENAME on the target. Return a
335 null-terminated string allocated via xmalloc, or NULL if an error
336 occurs (and set *TARGET_ERRNO). */
337static char *
fab5aa7c
TT
338inf_child_fileio_readlink (struct target_ops *self,
339 const char *filename, int *target_errno)
b9e7b9c3
UW
340{
341 /* We support readlink only on systems that also provide a compile-time
d8d2a3ee 342 maximum path length (PATH_MAX), at least for now. */
bdca27a2 343#if defined (PATH_MAX)
d8d2a3ee 344 char buf[PATH_MAX];
b9e7b9c3
UW
345 int len;
346 char *ret;
347
348 len = readlink (filename, buf, sizeof buf);
349 if (len < 0)
350 {
7823a941 351 *target_errno = host_to_fileio_error (errno);
b9e7b9c3
UW
352 return NULL;
353 }
354
355 ret = xmalloc (len + 1);
356 memcpy (ret, buf, len);
357 ret[len] = '\0';
358 return ret;
359#else
360 *target_errno = FILEIO_ENOSYS;
361 return NULL;
362#endif
363}
364
5808517f 365static int
2c152180 366inf_child_use_agent (struct target_ops *self, int use)
5808517f
YQ
367{
368 if (agent_loaded_p ())
369 {
370 use_agent = use;
371 return 1;
372 }
373 else
374 return 0;
375}
376
377static int
fe38f897 378inf_child_can_use_agent (struct target_ops *self)
5808517f
YQ
379{
380 return agent_loaded_p ();
381}
7313baad 382
b3ccfe11
TT
383/* Default implementation of the to_can_async_p and
384 to_supports_non_stop methods. */
385
386static int
387return_zero (struct target_ops *ignore)
388{
389 return 0;
390}
391
5bf970f9
AC
392struct target_ops *
393inf_child_target (void)
394{
41bf6aca 395 struct target_ops *t = XCNEW (struct target_ops);
abbb1732 396
4ebfc96e
PA
397 t->to_shortname = "native";
398 t->to_longname = "Native process";
399 t->to_doc = "Native process (started by the \"run\" command).";
5bf970f9 400 t->to_open = inf_child_open;
6a3cb8e8
PA
401 t->to_close = inf_child_close;
402 t->to_disconnect = inf_child_disconnect;
5bf970f9 403 t->to_post_attach = inf_child_post_attach;
7681f339
AC
404 t->to_fetch_registers = inf_child_fetch_inferior_registers;
405 t->to_store_registers = inf_child_store_inferior_registers;
5bf970f9
AC
406 t->to_prepare_to_store = inf_child_prepare_to_store;
407 t->to_insert_breakpoint = memory_insert_breakpoint;
408 t->to_remove_breakpoint = memory_remove_breakpoint;
d6b64346
PA
409 t->to_terminal_init = child_terminal_init;
410 t->to_terminal_inferior = child_terminal_inferior;
411 t->to_terminal_ours_for_output = child_terminal_ours_for_output;
d6b64346 412 t->to_terminal_ours = child_terminal_ours;
5bf970f9
AC
413 t->to_terminal_info = child_terminal_info;
414 t->to_post_startup_inferior = inf_child_post_startup_inferior;
5bf970f9 415 t->to_follow_fork = inf_child_follow_fork;
5bf970f9 416 t->to_can_run = inf_child_can_run;
b3ccfe11
TT
417 /* We must default these because they must be implemented by any
418 target that can run. */
419 t->to_can_async_p = return_zero;
420 t->to_supports_non_stop = return_zero;
5bf970f9
AC
421 t->to_pid_to_exec_file = inf_child_pid_to_exec_file;
422 t->to_stratum = process_stratum;
c35b1492
PA
423 t->to_has_all_memory = default_child_has_all_memory;
424 t->to_has_memory = default_child_has_memory;
425 t->to_has_stack = default_child_has_stack;
426 t->to_has_registers = default_child_has_registers;
427 t->to_has_execution = default_child_has_execution;
7313baad
UW
428 t->to_fileio_open = inf_child_fileio_open;
429 t->to_fileio_pwrite = inf_child_fileio_pwrite;
430 t->to_fileio_pread = inf_child_fileio_pread;
9b15c1f0 431 t->to_fileio_fstat = inf_child_fileio_fstat;
7313baad
UW
432 t->to_fileio_close = inf_child_fileio_close;
433 t->to_fileio_unlink = inf_child_fileio_unlink;
b9e7b9c3 434 t->to_fileio_readlink = inf_child_fileio_readlink;
5bf970f9 435 t->to_magic = OPS_MAGIC;
5808517f
YQ
436 t->to_use_agent = inf_child_use_agent;
437 t->to_can_use_agent = inf_child_can_use_agent;
6a3cb8e8
PA
438
439 /* Store a pointer so we can push the most-derived target from
440 inf_child_open. */
441 inf_child_ops = t;
442
5bf970f9
AC
443 return t;
444}
This page took 0.903877 seconds and 4 git commands to generate.