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 |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 20 | import shlex |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 21 | import subprocess |
| 22 | import sys |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 23 | import tarfile |
| 24 | import tempfile |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 25 | |
Alfsonso Gregory | f46f93b | 2021-11-12 18:53:50 | [diff] [blame] | 26 | from shlex import quote as cmd_quote |
Martin Storsjö | b8b23aa | 2021-03-04 08:37:02 | [diff] [blame] | 27 | |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 28 | def ssh(args, command): |
| 29 | cmd = ['ssh', '-oBatchMode=yes'] |
| 30 | if args.extra_ssh_args is not None: |
| 31 | cmd.extend(shlex.split(args.extra_ssh_args)) |
| 32 | return cmd + [args.host, command] |
| 33 | |
| 34 | |
| 35 | def scp(args, src, dst): |
| 36 | cmd = ['scp', '-q', '-oBatchMode=yes'] |
| 37 | if args.extra_scp_args is not None: |
| 38 | cmd.extend(shlex.split(args.extra_scp_args)) |
| 39 | return cmd + [src, '{}:{}'.format(args.host, dst)] |
| 40 | |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 41 | |
| 42 | def main(): |
| 43 | parser = argparse.ArgumentParser() |
| 44 | parser.add_argument('--host', type=str, required=True) |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 45 | parser.add_argument('--execdir', type=str, required=True) |
Martin Storsjö | 232fec9 | 2020-10-20 18:23:41 | [diff] [blame] | 46 | parser.add_argument('--tempdir', type=str, required=False, default='/tmp') |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 47 | parser.add_argument('--extra-ssh-args', type=str, required=False) |
| 48 | parser.add_argument('--extra-scp-args', type=str, required=False) |
Louis Dionne | ceb58ad | 2020-04-03 21:50:39 | [diff] [blame] | 49 | parser.add_argument('--codesign_identity', type=str, required=False, default=None) |
Martin Storsjö | ba3bddb | 2023-04-14 08:37:24 | [diff] [blame^] | 50 | parser.add_argument('--env', type=str, nargs='*', required=False, default=[]) |
| 51 | parser.add_argument('--prepend_env', type=str, nargs='*', required=False, default=[]) |
Alex Richardson | 3980e89 | 2020-07-21 07:35:47 | [diff] [blame] | 52 | parser.add_argument("command", nargs=argparse.ONE_OR_MORE) |
| 53 | args = parser.parse_args() |
| 54 | commandLine = args.command |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 55 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 56 | # Create a temporary directory where the test will be run. |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 57 | # That is effectively the value of %T on the remote host. |
Martin Storsjö | 232fec9 | 2020-10-20 18:23:41 | [diff] [blame] | 58 | tmp = subprocess.check_output(ssh(args, 'mktemp -d {}/libcxx.XXXXXXXXXX'.format(args.tempdir)), universal_newlines=True).strip() |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 59 | |
| 60 | # HACK: |
| 61 | # If an argument is a file that ends in `.tmp.exe`, assume it is the name |
| 62 | # of an executable generated by a test file. We call these test-executables |
| 63 | # below. This allows us to do custom processing like codesigning test-executables |
| 64 | # and changing their path when running on the remote host. It's also possible |
| 65 | # for there to be no such executable, for example in the case of a .sh.cpp |
| 66 | # test. |
| 67 | isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 68 | pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file)) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 69 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 70 | try: |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 71 | # Do any necessary codesigning of test-executables found in the command line. |
| 72 | if args.codesign_identity: |
| 73 | for exe in filter(isTestExe, commandLine): |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 74 | subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 75 | |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 76 | # tar up the execution directory (which contains everything that's needed |
| 77 | # to run the test), and copy the tarball over to the remote host. |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 78 | try: |
| 79 | tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 80 | with tarfile.open(fileobj=tmpTar, mode='w') as tarball: |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 81 | tarball.add(args.execdir, arcname=os.path.basename(args.execdir)) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 82 | |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 83 | # Make sure we close the file before we scp it, because accessing |
| 84 | # the temporary file while still open doesn't work on Windows. |
| 85 | tmpTar.close() |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 86 | remoteTarball = pathOnRemote(tmpTar.name) |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 87 | subprocess.check_call(scp(args, tmpTar.name, remoteTarball)) |
Louis Dionne | b00a874 | 2020-04-06 13:33:08 | [diff] [blame] | 88 | finally: |
| 89 | # Make sure we close the file in case an exception happens before |
| 90 | # we've closed it above -- otherwise close() is idempotent. |
| 91 | tmpTar.close() |
| 92 | os.remove(tmpTar.name) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 93 | |
| 94 | # Untar the dependencies in the temporary directory and remove the tarball. |
| 95 | remoteCommands = [ |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 96 | 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp), |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 97 | 'rm {}'.format(remoteTarball) |
| 98 | ] |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 99 | |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 100 | # Make sure all test-executables in the remote command line have 'execute' |
| 101 | # permissions on the remote host. The host that compiled the test-executable |
| 102 | # might not have a notion of 'executable' permissions. |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 103 | for exe in map(pathOnRemote, filter(isTestExe, commandLine)): |
| 104 | remoteCommands.append('chmod +x {}'.format(exe)) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 105 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 106 | # Execute the command through SSH in the temporary directory, with the |
Louis Dionne | 0489d39 | 2020-04-01 15:07:48 | [diff] [blame] | 107 | # correct environment. We tweak the command line to run it on the remote |
| 108 | # host by transforming the path of test-executables to their path in the |
Louis Dionne | 1fc5010 | 2020-06-10 18:41:47 | [diff] [blame] | 109 | # temporary directory on the remote host. |
Louis Dionne | 5eb8d45 | 2020-04-17 20:43:35 | [diff] [blame] | 110 | commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine) |
Louis Dionne | d98b9a4 | 2020-05-06 14:35:02 | [diff] [blame] | 111 | remoteCommands.append('cd {}'.format(tmp)) |
Martin Storsjö | ba3bddb | 2023-04-14 08:37:24 | [diff] [blame^] | 112 | |
| 113 | if args.prepend_env: |
| 114 | # We can't sensibly know the original value of the env vars |
| 115 | # in order to prepend to them, so just overwrite these variables. |
| 116 | args.env.extend(args.prepend_env) |
| 117 | |
Louis Dionne | d98b9a4 | 2020-05-06 14:35:02 | [diff] [blame] | 118 | if args.env: |
Martin Storsjö | eb5f9a5 | 2023-04-27 07:11:05 | [diff] [blame] | 119 | env = list(map(cmd_quote, args.env)) |
| 120 | remoteCommands.append('export {}'.format(' '.join(args.env))) |
Louis Dionne | d98b9a4 | 2020-05-06 14:35:02 | [diff] [blame] | 121 | remoteCommands.append(subprocess.list2cmdline(commandLine)) |
Louis Dionne | 92e563b | 2020-04-01 18:52:12 | [diff] [blame] | 122 | |
| 123 | # Finally, SSH to the remote host and execute all the commands. |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 124 | rc = subprocess.call(ssh(args, ' && '.join(remoteCommands))) |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 125 | return rc |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 126 | |
Louis Dionne | 64acef3 | 2020-04-01 14:21:31 | [diff] [blame] | 127 | finally: |
| 128 | # Make sure the temporary directory is removed when we're done. |
Alex Richardson | 04f908b | 2020-10-06 10:38:52 | [diff] [blame] | 129 | subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp))) |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 130 | |
Louis Dionne | 07e4625 | 2020-03-31 16:09:20 | [diff] [blame] | 131 | |
| 132 | if __name__ == '__main__': |
| 133 | exit(main()) |