blob: f39e41355261246c4d374f8a021897aa68cbeb2b [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
Alfsonso Gregoryf46f93b2021-11-12 18:53:5026from shlex import quote as cmd_quote
Martin Storsjöb8b23aa2021-03-04 08:37:0227
Tobias Hieta7bfaa0f2023-05-17 09:09:2928
Alex Richardson04f908b2020-10-06 10:38:5229def ssh(args, command):
Tobias Hieta7bfaa0f2023-05-17 09:09:2930 cmd = ["ssh", "-oBatchMode=yes"]
Alex Richardson04f908b2020-10-06 10:38:5231 if args.extra_ssh_args is not None:
32 cmd.extend(shlex.split(args.extra_ssh_args))
33 return cmd + [args.host, command]
34
35
36def scp(args, src, dst):
Tobias Hieta7bfaa0f2023-05-17 09:09:2937 cmd = ["scp", "-q", "-oBatchMode=yes"]
Alex Richardson04f908b2020-10-06 10:38:5238 if args.extra_scp_args is not None:
39 cmd.extend(shlex.split(args.extra_scp_args))
Tobias Hieta7bfaa0f2023-05-17 09:09:2940 return cmd + [src, "{}:{}".format(args.host, dst)]
Alex Richardson04f908b2020-10-06 10:38:5241
Louis Dionne77d8ce52023-09-21 17:31:3242def runCommand(command, *args, **kwargs):
43 return subprocess.run(command, *args, **kwargs)
Louis Dionne07e46252020-03-31 16:09:2044
45def main():
46 parser = argparse.ArgumentParser()
Tobias Hieta7bfaa0f2023-05-17 09:09:2947 parser.add_argument("--host", type=str, required=True)
48 parser.add_argument("--execdir", type=str, required=True)
49 parser.add_argument("--tempdir", type=str, required=False, default="/tmp")
50 parser.add_argument("--extra-ssh-args", type=str, required=False)
51 parser.add_argument("--extra-scp-args", type=str, required=False)
52 parser.add_argument("--codesign_identity", type=str, required=False, default=None)
53 parser.add_argument("--env", type=str, nargs="*", required=False, default=[])
Louis Dionne77d8ce52023-09-21 17:31:3254 parser.add_argument("--prepend_env", type=str, nargs="*", required=False, default=[])
55 parser.add_argument("-v", "--verbose", action='store_true')
Alex Richardson3980e892020-07-21 07:35:4756 parser.add_argument("command", nargs=argparse.ONE_OR_MORE)
57 args = parser.parse_args()
58 commandLine = args.command
Louis Dionne07e46252020-03-31 16:09:2059
Louis Dionne77d8ce52023-09-21 17:31:3260 def runCommand(command, *args_, **kwargs):
61 if args.verbose:
62 print(f"$ {' '.join(command)}")
63 return subprocess.run(command, *args_, **kwargs)
64
Louis Dionne64acef32020-04-01 14:21:3165 # Create a temporary directory where the test will be run.
Louis Dionne1fc50102020-06-10 18:41:4766 # That is effectively the value of %T on the remote host.
Louis Dionne77d8ce52023-09-21 17:31:3267 tmp = runCommand(
Tobias Hieta7bfaa0f2023-05-17 09:09:2968 ssh(args, "mktemp -d {}/libcxx.XXXXXXXXXX".format(args.tempdir)),
69 universal_newlines=True,
Louis Dionne77d8ce52023-09-21 17:31:3270 check=True,
71 capture_output=True
72 ).stdout.strip()
Louis Dionne0489d392020-04-01 15:07:4873
74 # HACK:
75 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
76 # of an executable generated by a test file. We call these test-executables
77 # below. This allows us to do custom processing like codesigning test-executables
78 # and changing their path when running on the remote host. It's also possible
79 # for there to be no such executable, for example in the case of a .sh.cpp
80 # test.
Tobias Hieta7bfaa0f2023-05-17 09:09:2981 isTestExe = lambda exe: exe.endswith(".tmp.exe") and os.path.exists(exe)
Louis Dionne92e563b2020-04-01 18:52:1282 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne0489d392020-04-01 15:07:4883
Louis Dionne64acef32020-04-01 14:21:3184 try:
Louis Dionne0489d392020-04-01 15:07:4885 # Do any necessary codesigning of test-executables found in the command line.
86 if args.codesign_identity:
87 for exe in filter(isTestExe, commandLine):
Louis Dionned2b71c72023-09-21 17:34:4588 codesign = ["codesign", "-f", "-s", args.codesign_identity, exe]
Louis Dionne77d8ce52023-09-21 17:31:3289 runCommand(codesign, env={}, check=True)
Louis Dionne0489d392020-04-01 15:07:4890
Louis Dionne1fc50102020-06-10 18:41:4791 # tar up the execution directory (which contains everything that's needed
92 # to run the test), and copy the tarball over to the remote host.
Louis Dionneb00a8742020-04-06 13:33:0893 try:
Tobias Hieta7bfaa0f2023-05-17 09:09:2994 tmpTar = tempfile.NamedTemporaryFile(suffix=".tar", delete=False)
95 with tarfile.open(fileobj=tmpTar, mode="w") as tarball:
Louis Dionne1fc50102020-06-10 18:41:4796 tarball.add(args.execdir, arcname=os.path.basename(args.execdir))
Louis Dionne92e563b2020-04-01 18:52:1297
Louis Dionneb00a8742020-04-06 13:33:0898 # Make sure we close the file before we scp it, because accessing
99 # the temporary file while still open doesn't work on Windows.
100 tmpTar.close()
Louis Dionne92e563b2020-04-01 18:52:12101 remoteTarball = pathOnRemote(tmpTar.name)
Louis Dionne77d8ce52023-09-21 17:31:32102 runCommand(scp(args, tmpTar.name, remoteTarball), check=True)
Louis Dionneb00a8742020-04-06 13:33:08103 finally:
104 # Make sure we close the file in case an exception happens before
105 # we've closed it above -- otherwise close() is idempotent.
106 tmpTar.close()
107 os.remove(tmpTar.name)
Louis Dionne92e563b2020-04-01 18:52:12108
109 # Untar the dependencies in the temporary directory and remove the tarball.
110 remoteCommands = [
Tobias Hieta7bfaa0f2023-05-17 09:09:29111 "tar -xf {} -C {} --strip-components 1".format(remoteTarball, tmp),
112 "rm {}".format(remoteTarball),
Louis Dionne92e563b2020-04-01 18:52:12113 ]
Louis Dionne07e46252020-03-31 16:09:20114
Louis Dionne0489d392020-04-01 15:07:48115 # Make sure all test-executables in the remote command line have 'execute'
116 # permissions on the remote host. The host that compiled the test-executable
117 # might not have a notion of 'executable' permissions.
Louis Dionne92e563b2020-04-01 18:52:12118 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
Tobias Hieta7bfaa0f2023-05-17 09:09:29119 remoteCommands.append("chmod +x {}".format(exe))
Louis Dionne07e46252020-03-31 16:09:20120
Louis Dionne64acef32020-04-01 14:21:31121 # Execute the command through SSH in the temporary directory, with the
Louis Dionne0489d392020-04-01 15:07:48122 # correct environment. We tweak the command line to run it on the remote
123 # host by transforming the path of test-executables to their path in the
Louis Dionne1fc50102020-06-10 18:41:47124 # temporary directory on the remote host.
Louis Dionne5eb8d452020-04-17 20:43:35125 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Tobias Hieta7bfaa0f2023-05-17 09:09:29126 remoteCommands.append("cd {}".format(tmp))
Martin Storsjöba3bddb2023-04-14 08:37:24127
128 if args.prepend_env:
129 # We can't sensibly know the original value of the env vars
130 # in order to prepend to them, so just overwrite these variables.
131 args.env.extend(args.prepend_env)
132
Louis Dionned98b9a42020-05-06 14:35:02133 if args.env:
Martin Storsjöeb5f9a52023-04-27 07:11:05134 env = list(map(cmd_quote, args.env))
Tobias Hieta7bfaa0f2023-05-17 09:09:29135 remoteCommands.append("export {}".format(" ".join(args.env)))
Louis Dionned98b9a42020-05-06 14:35:02136 remoteCommands.append(subprocess.list2cmdline(commandLine))
Louis Dionne92e563b2020-04-01 18:52:12137
138 # Finally, SSH to the remote host and execute all the commands.
Louis Dionne77d8ce52023-09-21 17:31:32139 rc = runCommand(ssh(args, " && ".join(remoteCommands))).returncode
Louis Dionne64acef32020-04-01 14:21:31140 return rc
Louis Dionne07e46252020-03-31 16:09:20141
Louis Dionne64acef32020-04-01 14:21:31142 finally:
143 # Make sure the temporary directory is removed when we're done.
Louis Dionne77d8ce52023-09-21 17:31:32144 runCommand(ssh(args, "rm -r {}".format(tmp)), check=True)
Louis Dionne07e46252020-03-31 16:09:20145
Louis Dionne07e46252020-03-31 16:09:20146
Tobias Hieta7bfaa0f2023-05-17 09:09:29147if __name__ == "__main__":
Louis Dionne07e46252020-03-31 16:09:20148 exit(main())