1
# Copyright (C) 2007, 2009, 2010 Canonical Ltd
1
# Copyright (C) 2007 Canonical Ltd
2
2
# Authors: Robert Collins <robert.collins@canonical.com>
4
4
# This program is free software; you can redistribute it and/or modify
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
"""Support for running strace against the current process."""
26
from bzrlib import errors
29
26
# this is currently test-focused, so importing bzrlib.tests is ok. We might
30
27
# want to move feature to its own module though.
31
from bzrlib.tests.features import Feature
28
from bzrlib.tests import Feature
34
31
def strace(function, *args, **kwargs):
37
34
:return: a tuple: function-result, a StraceResult.
39
return strace_detailed(function, args, kwargs)
42
def strace_detailed(function, args, kwargs, follow_children=True):
43
# FIXME: strace is buggy
44
# (https://bugs.launchpad.net/ubuntu/+source/strace/+bug/103133) and the
45
# test suite hangs if the '-f' is given to strace *and* more than one
46
# thread is running. Using follow_children=False allows the test suite to
47
# disable fork following to work around the bug.
49
36
# capture strace output to a file
50
37
log_file = tempfile.NamedTemporaryFile()
51
38
log_file_fd = log_file.fileno()
52
err_file = tempfile.NamedTemporaryFile()
55
strace_cmd = ['strace', '-r', '-tt', '-p', str(pid), '-o', log_file.name]
57
strace_args.append('-f')
58
# need to catch both stdout and stderr to work around
60
proc = subprocess.Popen(strace_cmd,
61
stdout=subprocess.PIPE,
62
stderr=err_file.fileno())
41
proc = subprocess.Popen(['strace',
42
'-f', '-r', '-tt', '-p', str(pid), '-o', log_file.name
44
stdout=subprocess.PIPE,
45
stderr=subprocess.STDOUT)
63
46
# Wait for strace to attach
64
47
attached_notice = proc.stdout.readline()
65
48
# Run the function to strace
72
55
log = log_file.read()
76
err_messages = err_file.read()
79
if err_messages.startswith("attach: ptrace(PTRACE_ATTACH,"):
80
raise StraceError(err_messages=err_messages)
81
return result, StraceResult(log, err_messages)
84
class StraceError(errors.BzrError):
86
_fmt = "strace failed: %(err_messages)s"
57
return result, StraceResult(log)
89
60
class StraceResult(object):
90
61
"""The result of stracing a function."""
92
def __init__(self, raw_log, err_messages):
63
def __init__(self, raw_log):
93
64
"""Create a StraceResult.
95
66
:param raw_log: The output that strace created.
97
68
self.raw_log = raw_log
98
self.err_messages = err_messages
71
class _StraceFeature(Feature):
75
proc = subprocess.Popen(['strace'],
76
stderr=subprocess.PIPE,
77
stdout=subprocess.PIPE)
81
if e.errno == errno.ENOENT:
82
# strace is not installed
87
def feature_name(self):
90
StraceFeature = _StraceFeature()