diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2014-11-21 16:18:57 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2014-11-21 16:18:57 +0000 |
commit | ff9a07203ea5cfd4af3a6d30178ede5d66be1386 (patch) | |
tree | 241b02fbdeda0c1c21d8183e7483d9ae082d5e2c /lldb/source/Host/posix/PipePosix.cpp | |
parent | ce5a26b0e779afa1a001e5182fd47fa1f2cc658a (diff) | |
download | bcm5719-llvm-ff9a07203ea5cfd4af3a6d30178ede5d66be1386.tar.gz bcm5719-llvm-ff9a07203ea5cfd4af3a6d30178ede5d66be1386.zip |
Extend PipePosix with child_processes_inherit support - to control whether pipe handles should be inherited by a child process.
http://reviews.llvm.org/D6348
llvm-svn: 222541
Diffstat (limited to 'lldb/source/Host/posix/PipePosix.cpp')
-rw-r--r-- | lldb/source/Host/posix/PipePosix.cpp | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/lldb/source/Host/posix/PipePosix.cpp b/lldb/source/Host/posix/PipePosix.cpp index ebc2033268e..bf6863c5411 100644 --- a/lldb/source/Host/posix/PipePosix.cpp +++ b/lldb/source/Host/posix/PipePosix.cpp @@ -10,6 +10,7 @@ #include "lldb/Host/posix/PipePosix.h" #include <unistd.h> +#include <fcntl.h> using namespace lldb_private; @@ -17,6 +18,25 @@ int Pipe::kInvalidDescriptor = -1; enum PIPES { READ, WRITE }; // Constants 0 and 1 for READ and WRITE +// pipe2 is supported by Linux, FreeBSD v10 and higher. +// TODO: Add more platforms that support pipe2. +#define PIPE2_SUPPORTED defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD__ >= 10) + +namespace +{ + +#if defined(FD_CLOEXEC) && !PIPE2_SUPPORTED +bool SetCloexecFlag(int fd) +{ + int flags = ::fcntl(fd, F_GETFD); + if (flags == -1) + return false; + return (::fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == 0); +} +#endif + +} + Pipe::Pipe() { m_fds[READ] = Pipe::kInvalidDescriptor; @@ -29,13 +49,30 @@ Pipe::~Pipe() } bool -Pipe::Open() +Pipe::Open(bool child_processes_inherit) { if (IsValid()) return true; +#if PIPE2_SUPPORTED + if (::pipe2(m_fds, (child_processes_inherit) ? 0 : O_CLOEXEC) == 0) + return true; +#else if (::pipe(m_fds) == 0) + { +#ifdef FD_CLOEXEC + if (!child_processes_inherit) + { + if (!SetCloexecFlag(m_fds[0]) || !SetCloexecFlag(m_fds[1])) + { + Close(); + return false; + } + } +#endif return true; + } +#endif m_fds[READ] = Pipe::kInvalidDescriptor; m_fds[WRITE] = Pipe::kInvalidDescriptor; |