blob: 314b13b0da10bd212801dc64a4c86fbf0de8e1d7 [file] [log] [blame]
Louis Dionne00170d82020-03-31 12:09:20 -04001#===----------------------------------------------------------------------===##
2#
3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6#
7#===----------------------------------------------------------------------===##
8
9"""
10Runs an executable on a remote host.
11
12This is meant to be used as an executor when running the C++ Standard Library
13conformance test suite.
14"""
15
16import argparse
17import os
Sergej Jaskiewicz97627cc2020-04-01 10:02:55 -040018import posixpath
Louis Dionne00170d82020-03-31 12:09:20 -040019import subprocess
20import sys
Louis Dionnee78c5922020-04-01 14:52:12 -040021import tarfile
22import tempfile
Louis Dionne00170d82020-03-31 12:09:20 -040023
24
25def main():
26 parser = argparse.ArgumentParser()
27 parser.add_argument('--host', type=str, required=True)
Louis Dionnef3fe5f32020-06-10 14:41:47 -040028 parser.add_argument('--execdir', type=str, required=True)
Louis Dionne00fddf42020-04-03 17:50:39 -040029 parser.add_argument('--codesign_identity', type=str, required=False, default=None)
Louis Dionne00fddf42020-04-03 17:50:39 -040030 parser.add_argument('--env', type=str, nargs='*', required=False, default=dict())
Louis Dionne00170d82020-03-31 12:09:20 -040031 (args, remaining) = parser.parse_known_args(sys.argv[1:])
32
33 if len(remaining) < 2:
34 sys.stderr.write('Missing actual commands to run')
Louis Dionne234dcdf2020-04-01 10:21:31 -040035 return 1
Louis Dionne00170d82020-03-31 12:09:20 -040036
Louis Dionne30ce3862020-04-01 11:07:48 -040037 commandLine = remaining[1:] # Skip the '--'
Louis Dionne00170d82020-03-31 12:09:20 -040038
39 ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command]
Louis Dionne2a518472020-04-24 14:47:09 -040040 scp = lambda src, dst: ['scp', '-q', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)]
Louis Dionne00170d82020-03-31 12:09:20 -040041
Louis Dionne234dcdf2020-04-01 10:21:31 -040042 # Create a temporary directory where the test will be run.
Louis Dionnef3fe5f32020-06-10 14:41:47 -040043 # That is effectively the value of %T on the remote host.
Sergej Jaskiewicz97627cc2020-04-01 10:02:55 -040044 tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip()
Louis Dionne30ce3862020-04-01 11:07:48 -040045
46 # HACK:
47 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
48 # of an executable generated by a test file. We call these test-executables
49 # below. This allows us to do custom processing like codesigning test-executables
50 # and changing their path when running on the remote host. It's also possible
51 # for there to be no such executable, for example in the case of a .sh.cpp
52 # test.
53 isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe)
Louis Dionnee78c5922020-04-01 14:52:12 -040054 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne30ce3862020-04-01 11:07:48 -040055
Louis Dionne234dcdf2020-04-01 10:21:31 -040056 try:
Louis Dionne30ce3862020-04-01 11:07:48 -040057 # Do any necessary codesigning of test-executables found in the command line.
58 if args.codesign_identity:
59 for exe in filter(isTestExe, commandLine):
Louis Dionnee78c5922020-04-01 14:52:12 -040060 subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
Louis Dionne30ce3862020-04-01 11:07:48 -040061
Louis Dionnef3fe5f32020-06-10 14:41:47 -040062 # tar up the execution directory (which contains everything that's needed
63 # to run the test), and copy the tarball over to the remote host.
Louis Dionne91a1bbb2020-04-06 09:33:08 -040064 try:
65 tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False)
Louis Dionnee78c5922020-04-01 14:52:12 -040066 with tarfile.open(fileobj=tmpTar, mode='w') as tarball:
Louis Dionnef3fe5f32020-06-10 14:41:47 -040067 tarball.add(args.execdir, arcname=os.path.basename(args.execdir))
Louis Dionnee78c5922020-04-01 14:52:12 -040068
Louis Dionne91a1bbb2020-04-06 09:33:08 -040069 # Make sure we close the file before we scp it, because accessing
70 # the temporary file while still open doesn't work on Windows.
71 tmpTar.close()
Louis Dionnee78c5922020-04-01 14:52:12 -040072 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionnee78c5922020-04-01 14:52:12 -040073 subprocess.check_call(scp(tmpTar.name, remoteTarball))
Louis Dionne91a1bbb2020-04-06 09:33:08 -040074 finally:
75 # Make sure we close the file in case an exception happens before
76 # we've closed it above -- otherwise close() is idempotent.
77 tmpTar.close()
78 os.remove(tmpTar.name)
Louis Dionnee78c5922020-04-01 14:52:12 -040079
80 # Untar the dependencies in the temporary directory and remove the tarball.
81 remoteCommands = [
Louis Dionnef3fe5f32020-06-10 14:41:47 -040082 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp),
Louis Dionnee78c5922020-04-01 14:52:12 -040083 'rm {}'.format(remoteTarball)
84 ]
Louis Dionne00170d82020-03-31 12:09:20 -040085
Louis Dionne30ce3862020-04-01 11:07:48 -040086 # Make sure all test-executables in the remote command line have 'execute'
87 # permissions on the remote host. The host that compiled the test-executable
88 # might not have a notion of 'executable' permissions.
Louis Dionnee78c5922020-04-01 14:52:12 -040089 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
90 remoteCommands.append('chmod +x {}'.format(exe))
Louis Dionne00170d82020-03-31 12:09:20 -040091
Louis Dionne234dcdf2020-04-01 10:21:31 -040092 # Execute the command through SSH in the temporary directory, with the
Louis Dionne30ce3862020-04-01 11:07:48 -040093 # correct environment. We tweak the command line to run it on the remote
94 # host by transforming the path of test-executables to their path in the
Louis Dionnef3fe5f32020-06-10 14:41:47 -040095 # temporary directory on the remote host.
Louis Dionneac78e5b2020-04-17 16:43:35 -040096 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionne6ef8d1b2020-05-06 10:35:02 -040097 remoteCommands.append('cd {}'.format(tmp))
98 if args.env:
99 remoteCommands.append('export {}'.format(' '.join(args.env)))
100 remoteCommands.append(subprocess.list2cmdline(commandLine))
Louis Dionnee78c5922020-04-01 14:52:12 -0400101
102 # Finally, SSH to the remote host and execute all the commands.
103 rc = subprocess.call(ssh(' && '.join(remoteCommands)))
Louis Dionne234dcdf2020-04-01 10:21:31 -0400104 return rc
Louis Dionne00170d82020-03-31 12:09:20 -0400105
Louis Dionne234dcdf2020-04-01 10:21:31 -0400106 finally:
107 # Make sure the temporary directory is removed when we're done.
Louis Dionnee78c5922020-04-01 14:52:12 -0400108 subprocess.check_call(ssh('rm -r {}'.format(tmp)))
Louis Dionne00170d82020-03-31 12:09:20 -0400109
Louis Dionne00170d82020-03-31 12:09:20 -0400110
111if __name__ == '__main__':
112 exit(main())