Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 1 | #===----------------------------------------------------------------------===## |
| 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 | """ |
| 10 | Runs an executable on a remote host. |
| 11 | |
| 12 | This is meant to be used as an executor when running the C++ Standard Library |
| 13 | conformance test suite. |
| 14 | """ |
| 15 | |
| 16 | import argparse |
| 17 | import os |
Sergej Jaskiewicz | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 18 | import posixpath |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 19 | import subprocess |
| 20 | import sys |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 21 | import tarfile |
| 22 | import tempfile |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 23 | |
| 24 | |
| 25 | def main(): |
| 26 | parser = argparse.ArgumentParser() |
| 27 | parser.add_argument('--host', type=str, required=True) |
| 28 | parser.add_argument('--codesign_identity', type=str, required=False) |
| 29 | parser.add_argument('--dependencies', type=str, nargs='*', required=True) |
| 30 | parser.add_argument('--env', type=str, nargs='*', required=True) |
| 31 | (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 Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 35 | return 1 |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 36 | |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 37 | commandLine = remaining[1:] # Skip the '--' |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 38 | |
| 39 | ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command] |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 40 | scp = lambda src, dst: ['scp', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)] |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 41 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 42 | # Create a temporary directory where the test will be run. |
Sergej Jaskiewicz | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 43 | tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip() |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 44 | |
| 45 | # HACK: |
| 46 | # If an argument is a file that ends in `.tmp.exe`, assume it is the name |
| 47 | # of an executable generated by a test file. We call these test-executables |
| 48 | # below. This allows us to do custom processing like codesigning test-executables |
| 49 | # and changing their path when running on the remote host. It's also possible |
| 50 | # for there to be no such executable, for example in the case of a .sh.cpp |
| 51 | # test. |
| 52 | isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 53 | pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file)) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 54 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 55 | try: |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 56 | # Do any necessary codesigning of test-executables found in the command line. |
| 57 | if args.codesign_identity: |
| 58 | for exe in filter(isTestExe, commandLine): |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 59 | subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 60 | |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 61 | # Ensure the test dependencies exist, tar them up and copy the tarball |
| 62 | # over to the remote host. |
| 63 | with tempfile.NamedTemporaryFile(suffix='.tar') as tmpTar: |
| 64 | with tarfile.open(fileobj=tmpTar, mode='w') as tarball: |
| 65 | for dep in args.dependencies: |
| 66 | if not os.path.exists(dep): |
| 67 | sys.stderr.write('Missing file or directory "{}" marked as a dependency of a test'.format(dep)) |
| 68 | return 1 |
| 69 | tarball.add(dep, arcname=os.path.basename(dep)) |
| 70 | |
| 71 | remoteTarball = pathOnRemote(tmpTar.name) |
| 72 | tmpTar.flush() |
| 73 | subprocess.check_call(scp(tmpTar.name, remoteTarball)) |
| 74 | |
| 75 | # Untar the dependencies in the temporary directory and remove the tarball. |
| 76 | remoteCommands = [ |
| 77 | 'tar -xf {} -C {}'.format(remoteTarball, tmp), |
| 78 | 'rm {}'.format(remoteTarball) |
| 79 | ] |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 80 | |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 81 | # Make sure all test-executables in the remote command line have 'execute' |
| 82 | # permissions on the remote host. The host that compiled the test-executable |
| 83 | # might not have a notion of 'executable' permissions. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 84 | for exe in map(pathOnRemote, filter(isTestExe, commandLine)): |
| 85 | remoteCommands.append('chmod +x {}'.format(exe)) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 86 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 87 | # Execute the command through SSH in the temporary directory, with the |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 88 | # correct environment. We tweak the command line to run it on the remote |
| 89 | # host by transforming the path of test-executables to their path in the |
| 90 | # temporary directory, where we know they have been copied when we handled |
| 91 | # test dependencies above. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 92 | remoteCommands += [ |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 93 | 'cd {}'.format(tmp), |
| 94 | 'export {}'.format(' '.join(args.env)), |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 95 | ' '.join(pathOnRemote(x) if isTestExe(x) else x for x in commandLine) |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 96 | ] |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 97 | |
| 98 | # Finally, SSH to the remote host and execute all the commands. |
| 99 | rc = subprocess.call(ssh(' && '.join(remoteCommands))) |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 100 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 101 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 102 | finally: |
| 103 | # Make sure the temporary directory is removed when we're done. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame^] | 104 | subprocess.check_call(ssh('rm -r {}'.format(tmp))) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 105 | |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 106 | |
| 107 | if __name__ == '__main__': |
| 108 | exit(main()) |