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