summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-12-06 11:00:34 +0000
committerZac Medico <zmedico@gentoo.org>2009-12-06 11:00:34 +0000
commit33bd7f8e97f165fb2f1e4ff93e2ababbe7c51679 (patch)
tree5c8228fa2d65d5c91d24c0e5193fbadb9868176b /pym/_emerge
parent684427f2fd0fe54b5515b470384156adf52921aa (diff)
downloadportage-33bd7f8e97f165fb2f1e4ff93e2ababbe7c51679.tar.gz
portage-33bd7f8e97f165fb2f1e4ff93e2ababbe7c51679.tar.bz2
portage-33bd7f8e97f165fb2f1e4ff93e2ababbe7c51679.zip
Bug #162404 - Automatically disable logging if sesandbox is enabled and a
pty is not available for some reason (currently they are never available with python3). (trunk r14928) svn path=/main/branches/2.1.7/; revision=14942
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/EbuildProcess.py7
-rw-r--r--pym/_emerge/SpawnProcess.py8
2 files changed, 14 insertions, 1 deletions
diff --git a/pym/_emerge/EbuildProcess.py b/pym/_emerge/EbuildProcess.py
index 86a63282f..a6a0b362b 100644
--- a/pym/_emerge/EbuildProcess.py
+++ b/pym/_emerge/EbuildProcess.py
@@ -24,6 +24,13 @@ class EbuildProcess(SpawnProcess):
portage._create_pty_or_pipe(copy_term_size=stdout_pipe)
return (master_fd, slave_fd)
+ def _can_log(self, slave_fd):
+ # With sesandbox, logging works through a pty but not through a
+ # normal pipe. So, disable logging if ptys are broken.
+ # See Bug #162404.
+ return not ('sesandbox' in self.settings.features \
+ and self.settings.selinux_enabled()) or os.isatty(slave_fd)
+
def _spawn(self, args, **kwargs):
root_config = self.pkg.root_config
diff --git a/pym/_emerge/SpawnProcess.py b/pym/_emerge/SpawnProcess.py
index 1486e6773..67fb17e29 100644
--- a/pym/_emerge/SpawnProcess.py
+++ b/pym/_emerge/SpawnProcess.py
@@ -49,7 +49,6 @@ class SpawnProcess(SubProcess):
if fd == sys.stderr.fileno():
sys.stderr.flush()
- logfile = self.logfile
self._files = self._files_dict()
files = self._files
@@ -57,6 +56,10 @@ class SpawnProcess(SubProcess):
fcntl.fcntl(master_fd, fcntl.F_SETFL,
fcntl.fcntl(master_fd, fcntl.F_GETFL) | os.O_NONBLOCK)
+ logfile = None
+ if self._can_log(slave_fd):
+ logfile = self.logfile
+
null_input = None
fd_pipes_orig = fd_pipes.copy()
if self.background:
@@ -125,6 +128,9 @@ class SpawnProcess(SubProcess):
self.pid = retval[0]
portage.process.spawned_pids.remove(self.pid)
+ def _can_log(self, slave_fd):
+ return True
+
def _pipe(self, fd_pipes):
"""
@type fd_pipes: dict