I want run Valgrind in a jail that created before and copyied required file in Jail. We know Valgrind generate two files XML and TXT files. I want to run python script that can cache the results of Valgrind files (XML and TXT file) and carry them to out of Jail. For example we have a function that run Valgrind in the Jail. Below code show it:
import os
def run_valgrind_in_jail(chroot_path, command):
os.chdir(chroot_path)
os.chroot(chroot_path)
return subprocess.run(['valgrind', '--xml=yes','--leak-check=full', '--verbose',
'--xml-file={}_valgrind.xml'.format(command),
'--log-file={}_valgrind.txt'.format(command),command],
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
Valgrind generate two file XML and txt and I want to carry them to out of chroot (jail).
How can I get the output process of Valgrind and carry out to out of Jail.
You're putting your whole program in jail, not just the subprocess. Use a
preexec_fn
so only the subprocess is in the jail, not the rest of your Python program, and then you'll find your output files in thechroot_path
directory: