summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-02-09 11:37:56 +0000
committerPavel Labath <labath@google.com>2015-02-09 11:37:56 +0000
commitb4bf1c65b72fe68f59fb411b26f5875d1ca22b54 (patch)
tree2776e7d654fbc296913b4437ee85a85f3b42b0e6 /lldb
parentdd4f052db6ca4ee02f4fc564488a9a6ca5434003 (diff)
downloadbcm5719-llvm-b4bf1c65b72fe68f59fb411b26f5875d1ca22b54.tar.gz
bcm5719-llvm-b4bf1c65b72fe68f59fb411b26f5875d1ca22b54.zip
Fix descriptor leak in multi-target debugging
Summary: When debugging two targets concurrently, the pseude terminal master fd from the first one would leak into the second. This fixes the problem by setting O_CLOEXEC on the master fd. Test included. Reviewers: clayborg, vharron Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D7466 llvm-svn: 228570
Diffstat (limited to 'lldb')
-rw-r--r--lldb/source/Utility/PseudoTerminal.cpp5
-rw-r--r--lldb/test/functionalities/avoids-fd-leak/TestFdLeak.py23
2 files changed, 26 insertions, 2 deletions
diff --git a/lldb/source/Utility/PseudoTerminal.cpp b/lldb/source/Utility/PseudoTerminal.cpp
index e90955d37d4..55d4a9a1fc1 100644
--- a/lldb/source/Utility/PseudoTerminal.cpp
+++ b/lldb/source/Utility/PseudoTerminal.cpp
@@ -239,7 +239,7 @@ PseudoTerminal::Fork (char *error_str, size_t error_len)
error_str[0] = '\0';
pid_t pid = LLDB_INVALID_PROCESS_ID;
- if (OpenFirstAvailableMaster (O_RDWR, error_str, error_len))
+ if (OpenFirstAvailableMaster (O_RDWR | O_CLOEXEC, error_str, error_len))
{
// Successfully opened our master pseudo terminal
@@ -258,7 +258,8 @@ PseudoTerminal::Fork (char *error_str, size_t error_len)
if (OpenSlave (O_RDWR, error_str, error_len))
{
// Successfully opened slave
- // We are done with the master in the child process so lets close it
+
+ // Master FD should have O_CLOEXEC set, but let's close it just in case...
CloseMasterFileDescriptor ();
#if defined(TIOCSCTTY)
diff --git a/lldb/test/functionalities/avoids-fd-leak/TestFdLeak.py b/lldb/test/functionalities/avoids-fd-leak/TestFdLeak.py
index edc67ba632a..795b4e65192 100644
--- a/lldb/test/functionalities/avoids-fd-leak/TestFdLeak.py
+++ b/lldb/test/functionalities/avoids-fd-leak/TestFdLeak.py
@@ -36,6 +36,29 @@ class AvoidsFdLeakTestCase(TestBase):
self.assertTrue(process.GetExitStatus() == 0,
"Process returned non-zero status. Were incorrect file descriptors passed?")
+ @skipIfWindows # The check for descriptor leakage needs to be implemented differently here.
+ def test_fd_leak_multitarget (self):
+ self.buildDefault()
+ exe = os.path.join (os.getcwd(), "a.out")
+
+ target = self.dbg.CreateTarget(exe)
+
+ listener = lldb.SBListener()
+ error = lldb.SBError()
+ process1 = target.Launch (listener, None, None, None, None, None,
+ self.get_process_working_directory(), 0, True, # stop at entry
+ error)
+ self.assertTrue(process1, PROCESS_IS_VALID)
+ self.assertTrue(process1.GetState() == lldb.eStateStopped, "Process should have been stopped.")
+
+ target2 = self.dbg.CreateTarget(exe)
+ process2 = target2.LaunchSimple (None, None, self.get_process_working_directory())
+ self.assertTrue(process2, PROCESS_IS_VALID)
+
+ self.assertTrue(process2.GetState() == lldb.eStateExited, "Process should have exited.")
+ self.assertTrue(process2.GetExitStatus() == 0,
+ "Process returned non-zero status. Were incorrect file descriptors passed?")
+
if __name__ == '__main__':
import atexit
OpenPOWER on IntegriCloud