Louis Dionne | f998e0d | 2020-06-12 14:28:19 | [diff] [blame^] | 1 | #!/usr/bin/env python |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [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 | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 19 | import posixpath |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 20 | import subprocess |
| 21 | import sys |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 22 | import tarfile |
| 23 | import tempfile |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 24 | |
| 25 | |
| 26 | def main(): |
| 27 | parser = argparse.ArgumentParser() |
| 28 | parser.add_argument('--host', type=str, required=True) |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 29 | parser.add_argument('--execdir', type=str, required=True) |
Louis Dionne | ceb58ad | 2020-04-03 21:50:39 | [diff] [blame] | 30 | parser.add_argument('--codesign_identity', type=str, required=False, default=None) |
Louis Dionne | ceb58ad | 2020-04-03 21:50:39 | [diff] [blame] | 31 | parser.add_argument('--env', type=str, nargs='*', required=False, default=dict()) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 32 | (args, remaining) = parser.parse_known_args(sys.argv[1:]) |
| 33 | |
| 34 | if len(remaining) < 2: |
| 35 | sys.stderr.write('Missing actual commands to run') |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 36 | return 1 |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 37 | |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 38 | commandLine = remaining[1:] # Skip the '--' |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 39 | |
| 40 | ssh = lambda command: ['ssh', '-oBatchMode=yes', args.host, command] |
Louis Dionne | 7f48246 | 2020-04-24 18:47:09 | [diff] [blame] | 41 | scp = lambda src, dst: ['scp', '-q', '-oBatchMode=yes', src, '{}:{}'.format(args.host, dst)] |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 42 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 43 | # Create a temporary directory where the test will be run. |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 44 | # That is effectively the value of %T on the remote host. |
Sergej Jaskiewicz | fee0026 | 2020-04-01 14:02:55 | [diff] [blame] | 45 | 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] | 46 | |
| 47 | # HACK: |
| 48 | # If an argument is a file that ends in `.tmp.exe`, assume it is the name |
| 49 | # of an executable generated by a test file. We call these test-executables |
| 50 | # below. This allows us to do custom processing like codesigning test-executables |
| 51 | # and changing their path when running on the remote host. It's also possible |
| 52 | # for there to be no such executable, for example in the case of a .sh.cpp |
| 53 | # test. |
| 54 | isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 55 | pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file)) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 56 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 57 | try: |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 58 | # Do any necessary codesigning of test-executables found in the command line. |
| 59 | if args.codesign_identity: |
| 60 | for exe in filter(isTestExe, commandLine): |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 61 | subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 62 | |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 63 | # tar up the execution directory (which contains everything that's needed |
| 64 | # to run the test), and copy the tarball over to the remote host. |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 65 | try: |
| 66 | tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 67 | with tarfile.open(fileobj=tmpTar, mode='w') as tarball: |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 68 | tarball.add(args.execdir, arcname=os.path.basename(args.execdir)) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 69 | |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 70 | # Make sure we close the file before we scp it, because accessing |
| 71 | # the temporary file while still open doesn't work on Windows. |
| 72 | tmpTar.close() |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 73 | remoteTarball = pathOnRemote(tmpTar.name) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 74 | subprocess.check_call(scp(tmpTar.name, remoteTarball)) |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 75 | finally: |
| 76 | # Make sure we close the file in case an exception happens before |
| 77 | # we've closed it above -- otherwise close() is idempotent. |
| 78 | tmpTar.close() |
| 79 | os.remove(tmpTar.name) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 80 | |
| 81 | # Untar the dependencies in the temporary directory and remove the tarball. |
| 82 | remoteCommands = [ |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 83 | 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp), |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 84 | 'rm {}'.format(remoteTarball) |
| 85 | ] |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 86 | |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 87 | # Make sure all test-executables in the remote command line have 'execute' |
| 88 | # permissions on the remote host. The host that compiled the test-executable |
| 89 | # might not have a notion of 'executable' permissions. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 90 | for exe in map(pathOnRemote, filter(isTestExe, commandLine)): |
| 91 | remoteCommands.append('chmod +x {}'.format(exe)) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 92 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 93 | # Execute the command through SSH in the temporary directory, with the |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 94 | # correct environment. We tweak the command line to run it on the remote |
| 95 | # host by transforming the path of test-executables to their path in the |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 96 | # temporary directory on the remote host. |
Louis Dionne | 5eb8d45 | 2020-04-17 20:43:35 | [diff] [blame] | 97 | commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine) |
Louis Dionne | d98b9a4 | 2020-05-06 14:35:02 | [diff] [blame] | 98 | remoteCommands.append('cd {}'.format(tmp)) |
| 99 | if args.env: |
| 100 | remoteCommands.append('export {}'.format(' '.join(args.env))) |
| 101 | remoteCommands.append(subprocess.list2cmdline(commandLine)) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 102 | |
| 103 | # Finally, SSH to the remote host and execute all the commands. |
| 104 | rc = subprocess.call(ssh(' && '.join(remoteCommands))) |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 105 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 106 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 107 | finally: |
| 108 | # Make sure the temporary directory is removed when we're done. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 109 | subprocess.check_call(ssh('rm -r {}'.format(tmp))) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 110 | |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 111 | |
| 112 | if __name__ == '__main__': |
| 113 | exit(main()) |