1999-07-13 02:08:43 +08:00
|
|
|
/* Serial interface for a pipe to a separate program
|
2015-01-01 17:32:14 +08:00
|
|
|
Copyright (C) 1999-2015 Free Software Foundation, Inc.
|
1999-07-13 02:08:43 +08:00
|
|
|
|
|
|
|
Contributed by Cygnus Solutions.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-24 02:08:50 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-13 02:08:43 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-24 02:08:50 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-07-13 02:08:43 +08:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "serial.h"
|
2005-03-26 03:47:23 +08:00
|
|
|
#include "ser-base.h"
|
1999-09-22 11:28:34 +08:00
|
|
|
#include "ser-unix.h"
|
|
|
|
|
2001-01-31 10:08:23 +08:00
|
|
|
#include "gdb_vfork.h"
|
|
|
|
|
1999-07-13 02:08:43 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <fcntl.h>
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-23 00:46:15 +08:00
|
|
|
#include "filestuff.h"
|
1999-07-13 02:08:43 +08:00
|
|
|
|
2001-02-06 12:17:03 +08:00
|
|
|
#include <signal.h>
|
1999-07-13 02:08:43 +08:00
|
|
|
|
2001-07-12 01:52:32 +08:00
|
|
|
static int pipe_open (struct serial *scb, const char *name);
|
|
|
|
static void pipe_close (struct serial *scb);
|
1999-07-20 07:30:11 +08:00
|
|
|
|
1999-09-22 11:28:34 +08:00
|
|
|
extern void _initialize_ser_pipe (void);
|
1999-07-20 07:30:11 +08:00
|
|
|
|
|
|
|
struct pipe_state
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
};
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Open up a raw pipe. */
|
1999-07-13 02:08:43 +08:00
|
|
|
|
|
|
|
static int
|
2001-07-12 01:52:32 +08:00
|
|
|
pipe_open (struct serial *scb, const char *name)
|
1999-07-13 02:08:43 +08:00
|
|
|
{
|
1999-10-06 07:13:56 +08:00
|
|
|
#if !HAVE_SOCKETPAIR
|
1999-07-13 02:08:43 +08:00
|
|
|
return -1;
|
|
|
|
#else
|
1999-07-20 07:30:11 +08:00
|
|
|
struct pipe_state *state;
|
1999-07-13 02:08:43 +08:00
|
|
|
/* This chunk: */
|
|
|
|
/* Copyright (c) 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software written by Ken Arnold and
|
|
|
|
* published in UNIX Review, Vol. 6, No. 8.
|
|
|
|
*/
|
|
|
|
int pdes[2];
|
2007-04-08 23:20:07 +08:00
|
|
|
int err_pdes[2];
|
1999-07-13 02:08:43 +08:00
|
|
|
int pid;
|
2010-05-17 07:49:58 +08:00
|
|
|
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-23 00:46:15 +08:00
|
|
|
if (gdb_socketpair_cloexec (AF_UNIX, SOCK_STREAM, 0, pdes) < 0)
|
1999-07-13 02:08:43 +08:00
|
|
|
return -1;
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-23 00:46:15 +08:00
|
|
|
if (gdb_socketpair_cloexec (AF_UNIX, SOCK_STREAM, 0, err_pdes) < 0)
|
2010-04-20 13:52:07 +08:00
|
|
|
{
|
|
|
|
close (pdes[0]);
|
|
|
|
close (pdes[1]);
|
|
|
|
return -1;
|
|
|
|
}
|
1999-07-13 02:08:43 +08:00
|
|
|
|
2001-04-09 02:26:03 +08:00
|
|
|
/* Create the child process to run the command in. Note that the
|
|
|
|
apparent call to vfork() below *might* actually be a call to
|
|
|
|
fork() due to the fact that autoconf will ``#define vfork fork''
|
|
|
|
on certain platforms. */
|
1999-07-20 07:30:11 +08:00
|
|
|
pid = vfork ();
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Error. */
|
1999-07-20 07:30:11 +08:00
|
|
|
if (pid == -1)
|
1999-07-13 02:08:43 +08:00
|
|
|
{
|
|
|
|
close (pdes[0]);
|
|
|
|
close (pdes[1]);
|
2007-04-08 23:20:07 +08:00
|
|
|
close (err_pdes[0]);
|
|
|
|
close (err_pdes[1]);
|
1999-07-13 02:08:43 +08:00
|
|
|
return -1;
|
1999-07-20 07:30:11 +08:00
|
|
|
}
|
|
|
|
|
2007-04-08 23:20:07 +08:00
|
|
|
if (fcntl (err_pdes[0], F_SETFL, O_NONBLOCK) == -1)
|
|
|
|
{
|
|
|
|
close (err_pdes[0]);
|
|
|
|
close (err_pdes[1]);
|
|
|
|
err_pdes[0] = err_pdes[1] = -1;
|
|
|
|
}
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Child. */
|
1999-07-20 07:30:11 +08:00
|
|
|
if (pid == 0)
|
|
|
|
{
|
2010-05-26 00:00:09 +08:00
|
|
|
/* We don't want ^c to kill the connection. */
|
|
|
|
#ifdef HAVE_SETSID
|
|
|
|
pid_t sid = setsid ();
|
|
|
|
if (sid == -1)
|
|
|
|
signal (SIGINT, SIG_IGN);
|
|
|
|
#else
|
|
|
|
signal (SIGINT, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Re-wire pdes[1] to stdin/stdout. */
|
1999-07-13 02:08:43 +08:00
|
|
|
close (pdes[0]);
|
|
|
|
if (pdes[1] != STDOUT_FILENO)
|
|
|
|
{
|
|
|
|
dup2 (pdes[1], STDOUT_FILENO);
|
|
|
|
close (pdes[1]);
|
|
|
|
}
|
|
|
|
dup2 (STDOUT_FILENO, STDIN_FILENO);
|
2007-04-08 23:20:07 +08:00
|
|
|
|
|
|
|
if (err_pdes[0] != -1)
|
|
|
|
{
|
|
|
|
close (err_pdes[0]);
|
|
|
|
dup2 (err_pdes[1], STDERR_FILENO);
|
|
|
|
close (err_pdes[1]);
|
|
|
|
}
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-23 00:46:15 +08:00
|
|
|
|
|
|
|
close_most_fds ();
|
2004-01-23 06:20:39 +08:00
|
|
|
execl ("/bin/sh", "sh", "-c", name, (char *) 0);
|
1999-07-13 02:08:43 +08:00
|
|
|
_exit (127);
|
|
|
|
}
|
|
|
|
|
2011-01-12 05:53:25 +08:00
|
|
|
/* Parent. */
|
1999-07-13 02:08:43 +08:00
|
|
|
close (pdes[1]);
|
2010-04-20 13:52:07 +08:00
|
|
|
if (err_pdes[1] != -1)
|
|
|
|
close (err_pdes[1]);
|
1999-07-20 07:30:11 +08:00
|
|
|
/* :end chunk */
|
2013-12-29 06:31:23 +08:00
|
|
|
state = XNEW (struct pipe_state);
|
1999-07-20 07:30:11 +08:00
|
|
|
state->pid = pid;
|
1999-07-13 02:08:43 +08:00
|
|
|
scb->fd = pdes[0];
|
2007-04-08 23:20:07 +08:00
|
|
|
scb->error_fd = err_pdes[0];
|
1999-07-20 07:30:11 +08:00
|
|
|
scb->state = state;
|
1999-07-13 02:08:43 +08:00
|
|
|
|
|
|
|
/* If we don't do this, GDB simply exits when the remote side dies. */
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-07-12 01:52:32 +08:00
|
|
|
pipe_close (struct serial *scb)
|
1999-07-13 02:08:43 +08:00
|
|
|
{
|
1999-07-20 07:30:11 +08:00
|
|
|
struct pipe_state *state = scb->state;
|
2010-05-17 07:49:58 +08:00
|
|
|
|
2010-08-21 02:49:20 +08:00
|
|
|
close (scb->fd);
|
|
|
|
scb->fd = -1;
|
|
|
|
|
1999-07-20 07:30:11 +08:00
|
|
|
if (state != NULL)
|
|
|
|
{
|
2011-12-15 04:53:57 +08:00
|
|
|
int wait_result, status;
|
|
|
|
|
|
|
|
/* Don't kill the task right away, give it a chance to shut down cleanly.
|
|
|
|
But don't wait forever though. */
|
|
|
|
#define PIPE_CLOSE_TIMEOUT 5
|
|
|
|
|
2010-09-03 01:12:38 +08:00
|
|
|
/* Assume the program will exit after SIGTERM. Might be
|
|
|
|
useful to print any remaining stderr output from
|
|
|
|
scb->error_fd while waiting. */
|
2011-12-15 04:53:57 +08:00
|
|
|
#define SIGTERM_TIMEOUT INT_MAX
|
|
|
|
|
|
|
|
wait_result = -1;
|
|
|
|
#ifdef HAVE_WAITPID
|
|
|
|
wait_result = wait_to_die_with_timeout (state->pid, &status,
|
|
|
|
PIPE_CLOSE_TIMEOUT);
|
2010-09-03 01:12:38 +08:00
|
|
|
#endif
|
2011-12-15 04:53:57 +08:00
|
|
|
if (wait_result == -1)
|
|
|
|
{
|
|
|
|
kill (state->pid, SIGTERM);
|
|
|
|
#ifdef HAVE_WAITPID
|
|
|
|
wait_to_die_with_timeout (state->pid, &status, SIGTERM_TIMEOUT);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-04-20 13:52:07 +08:00
|
|
|
if (scb->error_fd != -1)
|
|
|
|
close (scb->error_fd);
|
|
|
|
scb->error_fd = -1;
|
2000-12-15 09:01:51 +08:00
|
|
|
xfree (state);
|
1999-07-20 07:30:11 +08:00
|
|
|
scb->state = NULL;
|
|
|
|
}
|
1999-07-13 02:08:43 +08:00
|
|
|
}
|
|
|
|
|
2010-08-21 02:49:20 +08:00
|
|
|
int
|
|
|
|
gdb_pipe (int pdes[2])
|
|
|
|
{
|
|
|
|
#if !HAVE_SOCKETPAIR
|
|
|
|
errno = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
#else
|
|
|
|
|
PR gdb/7912:
* Makefile.in (SFILES): Add filestuff.c
(COMMON_OBS): Add filestuff.o.
(filestuff.o): New target.
* auto-load.c (auto_load_objfile_script_1): Use
gdb_fopen_cloexec.
* auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
* cli/cli-cmds.c (shell_escape): Call close_most_fds.
* cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
* common/agent.c (gdb_connect_sync_socket): Use
gdb_socket_cloexec.
* common/filestuff.c: New file.
* common/filestuff.h: New file.
* common/linux-osdata.c (linux_common_core_of_thread)
(command_from_pid, commandline_from_pid, print_source_lines)
(linux_xfer_osdata_shm, linux_xfer_osdata_sem)
(linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
gdb_fopen_cloexec.
* common/linux-procfs.c (linux_proc_get_int)
(linux_proc_pid_has_state): Use gdb_fopen_cloexec.
* config.in, configure: Rebuild.
* configure.ac: Don't check for sys/socket.h. Check for
fdwalk, pipe2.
* corelow.c (core_open): Use gdb_open_cloexec.
* dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
* fork-child.c (fork_inferior): Call close_most_fds.
* gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
* inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
* linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
Use gdb_fopen_cloexec.
(linux_proc_xfer_partial, linux_proc_xfer_spu): Use
gdb_open_cloexec.
(linux_async_pipe): Use gdb_pipe_cloexec.
* remote-fileio.c (remote_fileio_func_open): Use
gdb_open_cloexec.
* remote.c (remote_file_put, remote_file_get): Use
gdb_fopen_cloexec.
* ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
close_most_fds.
* ser-tcp.c (net_open): Use gdb_socket_cloexec.
* ser-unix.c (hardwire_open): Use gdb_open_cloexec.
* solib.c (solib_find): Use gdb_open_cloexec.
* source.c (openp, find_and_open_source): Use gdb_open_cloexec.
* tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
(tfile_open): Use gdb_open_cloexec.
* tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
* ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
* xml-support.c (xml_fetch_content_from_file): Use
gdb_fopen_cloexec.
* main.c (captured_main): Call notice_open_fds.
gdbserver
* Makefile.in (SFILES): Add filestuff.c.
(OBS): Add filestuff.o.
(filestuff.o): New target.
* config.in, configure: Rebuild.
* configure.ac: Check for fdwalk, pipe2.
2013-04-23 00:46:15 +08:00
|
|
|
if (gdb_socketpair_cloexec (AF_UNIX, SOCK_STREAM, 0, pdes) < 0)
|
2010-08-21 02:49:20 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* If we don't do this, GDB simply exits when the remote side
|
|
|
|
dies. */
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-12-07 02:34:49 +08:00
|
|
|
static const struct serial_ops pipe_ops =
|
|
|
|
{
|
|
|
|
"pipe",
|
|
|
|
pipe_open,
|
|
|
|
pipe_close,
|
|
|
|
NULL,
|
|
|
|
ser_base_readchar,
|
|
|
|
ser_base_write,
|
|
|
|
ser_base_flush_output,
|
|
|
|
ser_base_flush_input,
|
|
|
|
ser_base_send_break,
|
|
|
|
ser_base_raw,
|
|
|
|
ser_base_get_tty_state,
|
|
|
|
ser_base_copy_tty_state,
|
|
|
|
ser_base_set_tty_state,
|
|
|
|
ser_base_print_tty_state,
|
|
|
|
ser_base_noflush_set_tty_state,
|
|
|
|
ser_base_setbaudrate,
|
|
|
|
ser_base_setstopbits,
|
|
|
|
ser_base_drain_output,
|
|
|
|
ser_base_async,
|
|
|
|
ser_unix_read_prim,
|
|
|
|
ser_unix_write_prim
|
|
|
|
};
|
|
|
|
|
1999-07-13 02:08:43 +08:00
|
|
|
void
|
1999-09-22 11:28:34 +08:00
|
|
|
_initialize_ser_pipe (void)
|
1999-07-13 02:08:43 +08:00
|
|
|
{
|
2013-12-07 02:34:49 +08:00
|
|
|
serial_add_interface (&pipe_ops);
|
1999-07-13 02:08:43 +08:00
|
|
|
}
|