Louis Dionne | 1c28a70 | 2020-06-12 10:28:19 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 2 | #===----------------------------------------------------------------------===## |
| 3 | # |
| 4 | # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 5 | # See https://llvm.org/LICENSE.txt for license information. |
| 6 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 7 | # |
| 8 | #===----------------------------------------------------------------------===## |
| 9 | |
| 10 | """ |
| 11 | Runs an executable on a remote host. |
| 12 | |
| 13 | This is meant to be used as an executor when running the C++ Standard Library |
| 14 | conformance test suite. |
| 15 | """ |
| 16 | |
| 17 | import argparse |
| 18 | import os |
Sergej Jaskiewicz | 97627cc | 2020-04-01 10:02:55 -0400 | [diff] [blame] | 19 | import posixpath |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 20 | import subprocess |
| 21 | import sys |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 22 | import tarfile |
| 23 | import tempfile |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 24 | |
| 25 | |
| 26 | def main(): |
| 27 | parser = argparse.ArgumentParser() |
| 28 | parser.add_argument('--host', type=str, required=True) |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 29 | parser.add_argument('--execdir', type=str, required=True) |
Louis Dionne | 00fddf4 | 2020-04-03 17:50:39 -0400 | [diff] [blame] | 30 | parser.add_argument('--codesign_identity', type=str, required=False, default=None) |
Louis Dionne | 00fddf4 | 2020-04-03 17:50:39 -0400 | [diff] [blame] | 31 | parser.add_argument('--env', type=str, nargs='*', required=False, default=dict()) |
Alex Richardson | 5b312d2 | 2020-07-21 08:35:47 +0100 | [diff] [blame^] | 32 | parser.add_argument("command", nargs=argparse.ONE_OR_MORE) |
| 33 | args = parser.parse_args() |
| 34 | commandLine = args.command |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 35 | |
| 36 | ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command] |
Louis Dionne | 2a51847 | 2020-04-24 14:47:09 -0400 | [diff] [blame] | 37 | scp = lambda src, dst: ['scp', '-q', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)] |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 38 | |
Louis Dionne | 234dcdf | 2020-04-01 10:21:31 -0400 | [diff] [blame] | 39 | # Create a temporary directory where the test will be run. |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 40 | # That is effectively the value of %T on the remote host. |
Sergej Jaskiewicz | 97627cc | 2020-04-01 10:02:55 -0400 | [diff] [blame] | 41 | tmp = subprocess.check_output(ssh('mktemp -d /tmp/libcxx.XXXXXXXXXX'), universal_newlines=True).strip() |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 42 | |
| 43 | # HACK: |
| 44 | # If an argument is a file that ends in `.tmp.exe`, assume it is the name |
| 45 | # of an executable generated by a test file. We call these test-executables |
| 46 | # below. This allows us to do custom processing like codesigning test-executables |
| 47 | # and changing their path when running on the remote host. It's also possible |
| 48 | # for there to be no such executable, for example in the case of a .sh.cpp |
| 49 | # test. |
| 50 | isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 51 | pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file)) |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 52 | |
Louis Dionne | 234dcdf | 2020-04-01 10:21:31 -0400 | [diff] [blame] | 53 | try: |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 54 | # Do any necessary codesigning of test-executables found in the command line. |
| 55 | if args.codesign_identity: |
| 56 | for exe in filter(isTestExe, commandLine): |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 57 | subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 58 | |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 59 | # tar up the execution directory (which contains everything that's needed |
| 60 | # to run the test), and copy the tarball over to the remote host. |
Louis Dionne | 91a1bbb | 2020-04-06 09:33:08 -0400 | [diff] [blame] | 61 | try: |
| 62 | tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 63 | with tarfile.open(fileobj=tmpTar, mode='w') as tarball: |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 64 | tarball.add(args.execdir, arcname=os.path.basename(args.execdir)) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 65 | |
Louis Dionne | 91a1bbb | 2020-04-06 09:33:08 -0400 | [diff] [blame] | 66 | # Make sure we close the file before we scp it, because accessing |
| 67 | # the temporary file while still open doesn't work on Windows. |
| 68 | tmpTar.close() |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 69 | remoteTarball = pathOnRemote(tmpTar.name) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 70 | subprocess.check_call(scp(tmpTar.name, remoteTarball)) |
Louis Dionne | 91a1bbb | 2020-04-06 09:33:08 -0400 | [diff] [blame] | 71 | finally: |
| 72 | # Make sure we close the file in case an exception happens before |
| 73 | # we've closed it above -- otherwise close() is idempotent. |
| 74 | tmpTar.close() |
| 75 | os.remove(tmpTar.name) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 76 | |
| 77 | # Untar the dependencies in the temporary directory and remove the tarball. |
| 78 | remoteCommands = [ |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 79 | 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp), |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 80 | 'rm {}'.format(remoteTarball) |
| 81 | ] |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 82 | |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 83 | # Make sure all test-executables in the remote command line have 'execute' |
| 84 | # permissions on the remote host. The host that compiled the test-executable |
| 85 | # might not have a notion of 'executable' permissions. |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 86 | for exe in map(pathOnRemote, filter(isTestExe, commandLine)): |
| 87 | remoteCommands.append('chmod +x {}'.format(exe)) |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 88 | |
Louis Dionne | 234dcdf | 2020-04-01 10:21:31 -0400 | [diff] [blame] | 89 | # Execute the command through SSH in the temporary directory, with the |
Louis Dionne | 30ce386 | 2020-04-01 11:07:48 -0400 | [diff] [blame] | 90 | # correct environment. We tweak the command line to run it on the remote |
| 91 | # host by transforming the path of test-executables to their path in the |
Louis Dionne | f3fe5f3 | 2020-06-10 14:41:47 -0400 | [diff] [blame] | 92 | # temporary directory on the remote host. |
Louis Dionne | ac78e5b | 2020-04-17 16:43:35 -0400 | [diff] [blame] | 93 | commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine) |
Louis Dionne | 6ef8d1b | 2020-05-06 10:35:02 -0400 | [diff] [blame] | 94 | remoteCommands.append('cd {}'.format(tmp)) |
| 95 | if args.env: |
| 96 | remoteCommands.append('export {}'.format(' '.join(args.env))) |
| 97 | remoteCommands.append(subprocess.list2cmdline(commandLine)) |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 98 | |
| 99 | # Finally, SSH to the remote host and execute all the commands. |
| 100 | rc = subprocess.call(ssh(' && '.join(remoteCommands))) |
Louis Dionne | 234dcdf | 2020-04-01 10:21:31 -0400 | [diff] [blame] | 101 | return rc |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 102 | |
Louis Dionne | 234dcdf | 2020-04-01 10:21:31 -0400 | [diff] [blame] | 103 | finally: |
| 104 | # Make sure the temporary directory is removed when we're done. |
Louis Dionne | e78c592 | 2020-04-01 14:52:12 -0400 | [diff] [blame] | 105 | subprocess.check_call(ssh('rm -r {}'.format(tmp))) |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 106 | |
Louis Dionne | 00170d8 | 2020-03-31 12:09:20 -0400 | [diff] [blame] | 107 | |
| 108 | if __name__ == '__main__': |
| 109 | exit(main()) |