blob: 6c1d706984dd8ace25721c69ab8f2a76b4cd6ad2 [file] [log] [blame]
Louis Dionne1c28a702020-06-12 10:28:19 -04001#!/usr/bin/env python
Louis Dionne00170d82020-03-31 12:09:20 -04002#===----------------------------------------------------------------------===##
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"""
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 Jaskiewicz97627cc2020-04-01 10:02:55 -040019import posixpath
Alex Richardson0e1d09e2020-10-06 11:38:52 +010020import shlex
Louis Dionne00170d82020-03-31 12:09:20 -040021import subprocess
22import sys
Louis Dionnee78c5922020-04-01 14:52:12 -040023import tarfile
24import tempfile
Louis Dionne00170d82020-03-31 12:09:20 -040025
Alfsonso Gregorybfb57972021-11-12 13:53:50 -050026from shlex import quote as cmd_quote
Martin Storsjö8d14bd82021-03-04 10:37:02 +020027
Alex Richardson0e1d09e2020-10-06 11:38:52 +010028def 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
35def 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 Dionne00170d82020-03-31 12:09:20 -040041
42def main():
43 parser = argparse.ArgumentParser()
44 parser.add_argument('--host', type=str, required=True)
Louis Dionnef3fe5f32020-06-10 14:41:47 -040045 parser.add_argument('--execdir', type=str, required=True)
Martin Storsjöad216be2020-10-20 21:23:41 +030046 parser.add_argument('--tempdir', type=str, required=False, default='/tmp')
Alex Richardson0e1d09e2020-10-06 11:38:52 +010047 parser.add_argument('--extra-ssh-args', type=str, required=False)
48 parser.add_argument('--extra-scp-args', type=str, required=False)
Louis Dionne00fddf42020-04-03 17:50:39 -040049 parser.add_argument('--codesign_identity', type=str, required=False, default=None)
Louis Dionne00fddf42020-04-03 17:50:39 -040050 parser.add_argument('--env', type=str, nargs='*', required=False, default=dict())
Alex Richardson5b312d22020-07-21 08:35:47 +010051 parser.add_argument("command", nargs=argparse.ONE_OR_MORE)
52 args = parser.parse_args()
53 commandLine = args.command
Louis Dionne00170d82020-03-31 12:09:20 -040054
Louis Dionne234dcdf2020-04-01 10:21:31 -040055 # Create a temporary directory where the test will be run.
Louis Dionnef3fe5f32020-06-10 14:41:47 -040056 # That is effectively the value of %T on the remote host.
Martin Storsjöad216be2020-10-20 21:23:41 +030057 tmp = subprocess.check_output(ssh(args, 'mktemp -d {}/libcxx.XXXXXXXXXX'.format(args.tempdir)), universal_newlines=True).strip()
Louis Dionne30ce3862020-04-01 11:07:48 -040058
59 # HACK:
60 # If an argument is a file that ends in `.tmp.exe`, assume it is the name
61 # of an executable generated by a test file. We call these test-executables
62 # below. This allows us to do custom processing like codesigning test-executables
63 # and changing their path when running on the remote host. It's also possible
64 # for there to be no such executable, for example in the case of a .sh.cpp
65 # test.
66 isTestExe = lambda exe: exe.endswith('.tmp.exe') and os.path.exists(exe)
Louis Dionnee78c5922020-04-01 14:52:12 -040067 pathOnRemote = lambda file: posixpath.join(tmp, os.path.basename(file))
Louis Dionne30ce3862020-04-01 11:07:48 -040068
Louis Dionne234dcdf2020-04-01 10:21:31 -040069 try:
Louis Dionne30ce3862020-04-01 11:07:48 -040070 # Do any necessary codesigning of test-executables found in the command line.
71 if args.codesign_identity:
72 for exe in filter(isTestExe, commandLine):
Louis Dionnee78c5922020-04-01 14:52:12 -040073 subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
Louis Dionne30ce3862020-04-01 11:07:48 -040074
Louis Dionnef3fe5f32020-06-10 14:41:47 -040075 # tar up the execution directory (which contains everything that's needed
76 # to run the test), and copy the tarball over to the remote host.
Louis Dionne91a1bbb2020-04-06 09:33:08 -040077 try:
78 tmpTar = tempfile.NamedTemporaryFile(suffix='.tar', delete=False)
Louis Dionnee78c5922020-04-01 14:52:12 -040079 with tarfile.open(fileobj=tmpTar, mode='w') as tarball:
Louis Dionnef3fe5f32020-06-10 14:41:47 -040080 tarball.add(args.execdir, arcname=os.path.basename(args.execdir))
Louis Dionnee78c5922020-04-01 14:52:12 -040081
Louis Dionne91a1bbb2020-04-06 09:33:08 -040082 # Make sure we close the file before we scp it, because accessing
83 # the temporary file while still open doesn't work on Windows.
84 tmpTar.close()
Louis Dionnee78c5922020-04-01 14:52:12 -040085 remoteTarball = pathOnRemote(tmpTar.name)
Alex Richardson0e1d09e2020-10-06 11:38:52 +010086 subprocess.check_call(scp(args, tmpTar.name, remoteTarball))
Louis Dionne91a1bbb2020-04-06 09:33:08 -040087 finally:
88 # Make sure we close the file in case an exception happens before
89 # we've closed it above -- otherwise close() is idempotent.
90 tmpTar.close()
91 os.remove(tmpTar.name)
Louis Dionnee78c5922020-04-01 14:52:12 -040092
93 # Untar the dependencies in the temporary directory and remove the tarball.
94 remoteCommands = [
Louis Dionnef3fe5f32020-06-10 14:41:47 -040095 'tar -xf {} -C {} --strip-components 1'.format(remoteTarball, tmp),
Louis Dionnee78c5922020-04-01 14:52:12 -040096 'rm {}'.format(remoteTarball)
97 ]
Louis Dionne00170d82020-03-31 12:09:20 -040098
Louis Dionne30ce3862020-04-01 11:07:48 -040099 # Make sure all test-executables in the remote command line have 'execute'
100 # permissions on the remote host. The host that compiled the test-executable
101 # might not have a notion of 'executable' permissions.
Louis Dionnee78c5922020-04-01 14:52:12 -0400102 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
103 remoteCommands.append('chmod +x {}'.format(exe))
Louis Dionne00170d82020-03-31 12:09:20 -0400104
Louis Dionne234dcdf2020-04-01 10:21:31 -0400105 # Execute the command through SSH in the temporary directory, with the
Louis Dionne30ce3862020-04-01 11:07:48 -0400106 # correct environment. We tweak the command line to run it on the remote
107 # host by transforming the path of test-executables to their path in the
Louis Dionnef3fe5f32020-06-10 14:41:47 -0400108 # temporary directory on the remote host.
Louis Dionneac78e5b2020-04-17 16:43:35 -0400109 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
Louis Dionne6ef8d1b2020-05-06 10:35:02 -0400110 remoteCommands.append('cd {}'.format(tmp))
111 if args.env:
Martin Storsjö8d14bd82021-03-04 10:37:02 +0200112 remoteCommands.append('export {}'.format(cmd_quote(' '.join(args.env))))
Louis Dionne6ef8d1b2020-05-06 10:35:02 -0400113 remoteCommands.append(subprocess.list2cmdline(commandLine))
Louis Dionnee78c5922020-04-01 14:52:12 -0400114
115 # Finally, SSH to the remote host and execute all the commands.
Alex Richardson0e1d09e2020-10-06 11:38:52 +0100116 rc = subprocess.call(ssh(args, ' && '.join(remoteCommands)))
Louis Dionne234dcdf2020-04-01 10:21:31 -0400117 return rc
Louis Dionne00170d82020-03-31 12:09:20 -0400118
Louis Dionne234dcdf2020-04-01 10:21:31 -0400119 finally:
120 # Make sure the temporary directory is removed when we're done.
Alex Richardson0e1d09e2020-10-06 11:38:52 +0100121 subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp)))
Louis Dionne00170d82020-03-31 12:09:20 -0400122
Louis Dionne00170d82020-03-31 12:09:20 -0400123
124if __name__ == '__main__':
125 exit(main())