blob: e1eaa5aae067e79a43894ffaadc9cb75d4f936dc [file] [log] [blame]
Louis Dionnef998e0d2020-06-12 14:28:191#!/usr/bin/env python
Tobias Hieta7bfaa0f2023-05-17 09:09:292# ===----------------------------------------------------------------------===##
Louis Dionne07e46252020-03-31 16:09:203#
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 Hieta7bfaa0f2023-05-17 09:09:298# ===----------------------------------------------------------------------===##
Louis Dionne07e46252020-03-31 16:09:209
10"""
11Runs an executable on a remote host.
12
13This is meant to be used as an executor when running the C++ Standard Library
14conformance test suite.
15"""
16
17import argparse
18import os
Sergej Jaskiewiczfee00262020-04-01 14:02:5519import posixpath
Alex Richardson04f908b2020-10-06 10:38:5220import shlex
Louis Dionne07e46252020-03-31 16:09:2021import subprocess
22import sys
Louis Dionne92e563b2020-04-01 18:52:1223import tarfile
24import tempfile
Louis Dionne07e46252020-03-31 16:09:2025
Louis Dionne07e46252020-03-31 16:09:2026
27def main():
28 parser = argparse.ArgumentParser()
Tobias Hieta7bfaa0f2023-05-17 09:09:2929 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 Dionne77d8ce52023-09-21 17:31:3236 parser.add_argument("--prepend_env", type=str, nargs="*", required=False, default=[])
37 parser.add_argument("-v", "--verbose", action='store_true')
Alex Richardson3980e892020-07-21 07:35:4738 parser.add_argument("command", nargs=argparse.ONE_OR_MORE)
39 args = parser.parse_args()
40 commandLine = args.command
Louis Dionne07e46252020-03-31 16:09:2041
Louis Dionne1ce70132023-09-21 20:16:5642 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 Dionne77d8ce52023-09-21 17:31:3254 def runCommand(command, *args_, **kwargs):
55 if args.verbose:
Louis Dionne2ab31b62023-09-21 20:37:0156 print(f"$ {' '.join(command)}", file=sys.stderr)
Louis Dionne77d8ce52023-09-21 17:31:3257 return subprocess.run(command, *args_, **kwargs)
58
Louis Dionne64acef32020-04-01 14:21:3159 # Create a temporary directory where the test will be run.
Louis Dionne1fc50102020-06-10 18:41:4760 # That is effectively the value of %T on the remote host.
Louis Dionne77d8ce52023-09-21 17:31:3261 tmp = runCommand(
Louis Dionne1ce70132023-09-21 20:16:5662 ssh("mktemp -d {}/libcxx.XXXXXXXXXX".format(args.tempdir)),
Tobias Hieta7bfaa0f2023-05-17 09:09:2963 universal_newlines=True,
Louis Dionne77d8ce52023-09-21 17:31:3264 check=True,
65 capture_output=True
66 ).stdout.strip()
Louis Dionne0489d392020-04-01 15:07:4867
68 # HACK:
69 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
70 # of an executable generated by a test file. We call these test-executables
71 # below. This allows us to do custom processing like codesigning test-executables
72 # and changing their path when running on the remote host. It's also possible
73 # for there to be no such executable, for example in the case of a .sh.cpp
74 # test.
Tobias Hieta7bfaa0f2023-05-17 09:09:2975 isTestExe = lambda exe: exe.endswith(".tmp.exe") and os.path.exists(exe)
Louis Dionne92e563b2020-04-01 18:52:1276 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne0489d392020-04-01 15:07:4877
Louis Dionne64acef32020-04-01 14:21:3178 try:
Louis Dionne0489d392020-04-01 15:07:4879 # Do any necessary codesigning of test-executables found in the command line.
80 if args.codesign_identity:
81 for exe in filter(isTestExe, commandLine):
Louis Dionned2b71c72023-09-21 17:34:4582 codesign = ["codesign", "-f", "-s", args.codesign_identity, exe]
Louis Dionne77d8ce52023-09-21 17:31:3283 runCommand(codesign, env={}, check=True)
Louis Dionne0489d392020-04-01 15:07:4884
Louis Dionne1fc50102020-06-10 18:41:4785 # tar up the execution directory (which contains everything that's needed
86 # to run the test), and copy the tarball over to the remote host.
Louis Dionneb00a8742020-04-06 13:33:0887 try:
Tobias Hieta7bfaa0f2023-05-17 09:09:2988 tmpTar = tempfile.NamedTemporaryFile(suffix=".tar", delete=False)
89 with tarfile.open(fileobj=tmpTar, mode="w") as tarball:
Louis Dionne1fc50102020-06-10 18:41:4790 tarball.add(args.execdir, arcname=os.path.basename(args.execdir))
Louis Dionne92e563b2020-04-01 18:52:1291
Louis Dionneb00a8742020-04-06 13:33:0892 # Make sure we close the file before we scp it, because accessing
93 # the temporary file while still open doesn't work on Windows.
94 tmpTar.close()
Louis Dionne92e563b2020-04-01 18:52:1295 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionne1ce70132023-09-21 20:16:5696 runCommand(scp(tmpTar.name, remoteTarball), check=True)
Louis Dionneb00a8742020-04-06 13:33:0897 finally:
98 # Make sure we close the file in case an exception happens before
99 # we've closed it above -- otherwise close() is idempotent.
100 tmpTar.close()
101 os.remove(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:12102
103 # Untar the dependencies in the temporary directory and remove the tarball.
104 remoteCommands = [
Tobias Hieta7bfaa0f2023-05-17 09:09:29105 "tar -xf {} -C {} --strip-components 1".format(remoteTarball, tmp),
106 "rm {}".format(remoteTarball),
Louis Dionne92e563b2020-04-01 18:52:12107 ]
Louis Dionne07e46252020-03-31 16:09:20108
Louis Dionne0489d392020-04-01 15:07:48109 # Make sure all test-executables in the remote command line have 'execute'
110 # permissions on the remote host. The host that compiled the test-executable
111 # might not have a notion of 'executable' permissions.
Louis Dionne92e563b2020-04-01 18:52:12112 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
Tobias Hieta7bfaa0f2023-05-17 09:09:29113 remoteCommands.append("chmod +x {}".format(exe))
Louis Dionne07e46252020-03-31 16:09:20114
Louis Dionne64acef32020-04-01 14:21:31115 # Execute the command through SSH in the temporary directory, with the
Louis Dionne0489d392020-04-01 15:07:48116 # correct environment. We tweak the command line to run it on the remote
117 # host by transforming the path of test-executables to their path in the
Louis Dionne1fc50102020-06-10 18:41:47118 # temporary directory on the remote host.
Louis Dionne5eb8d452020-04-17 20:43:35119 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Tobias Hieta7bfaa0f2023-05-17 09:09:29120 remoteCommands.append("cd {}".format(tmp))
Martin Storsjöba3bddb2023-04-14 08:37:24121
122 if args.prepend_env:
123 # We can't sensibly know the original value of the env vars
124 # in order to prepend to them, so just overwrite these variables.
125 args.env.extend(args.prepend_env)
126
Louis Dionned98b9a42020-05-06 14:35:02127 if args.env:
Louis Dionne1ce70132023-09-21 20:16:56128 env = list(map(shlex.quote, args.env))
Tobias Hieta7bfaa0f2023-05-17 09:09:29129 remoteCommands.append("export {}".format(" ".join(args.env)))
Louis Dionned98b9a42020-05-06 14:35:02130 remoteCommands.append(subprocess.list2cmdline(commandLine))
Louis Dionne92e563b2020-04-01 18:52:12131
132 # Finally, SSH to the remote host and execute all the commands.
Louis Dionne1ce70132023-09-21 20:16:56133 rc = runCommand(ssh(" && ".join(remoteCommands))).returncode
Louis Dionne64acef32020-04-01 14:21:31134 return rc
Louis Dionne07e46252020-03-31 16:09:20135
Louis Dionne64acef32020-04-01 14:21:31136 finally:
137 # Make sure the temporary directory is removed when we're done.
Louis Dionne1ce70132023-09-21 20:16:56138 runCommand(ssh("rm -r {}".format(tmp)), check=True)
Louis Dionne07e46252020-03-31 16:09:20139
Louis Dionne07e46252020-03-31 16:09:20140
Tobias Hieta7bfaa0f2023-05-17 09:09:29141if __name__ == "__main__":
Louis Dionne07e46252020-03-31 16:09:20142 exit(main())