blob: e5a427cbe79f6a0661f5cd6bfea2a7668be607c9 [file] [log] [blame]
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00001#!/usr/bin/env python
maruelea586f32016-04-05 11:11:33 -07002# Copyright 2012 The LUCI Authors. All rights reserved.
maruelf1f5e2a2016-05-25 17:10:39 -07003# Use of this source code is governed under the Apache License, Version 2.0
4# that can be found in the LICENSE file.
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00005
nodir55be77b2016-05-03 09:39:57 -07006"""Runs a command with optional isolated input/output.
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00007
Marc-Antoine Rueleed2f3a2019-03-14 00:00:40 +00008run_isolated takes cares of setting up a temporary environment, running a
9command, and tearing it down.
nodir55be77b2016-05-03 09:39:57 -070010
Marc-Antoine Rueleed2f3a2019-03-14 00:00:40 +000011It handles downloading and uploading isolated files, mapping CIPD packages and
12reusing stateful named caches.
13
14The isolated files, CIPD packages and named caches are kept as a global LRU
15cache.
Marc-Antoine Ruel2283ad12014-02-09 11:14:57 -050016
Roberto Carrillo71ade6d2018-10-08 22:30:24 +000017Any ${EXECUTABLE_SUFFIX} on the command line or the environment variables passed
18with the --env option will be replaced with ".exe" string on Windows and "" on
19other platforms.
nodirbe642ff2016-06-09 15:51:51 -070020
Roberto Carrillo71ade6d2018-10-08 22:30:24 +000021Any ${ISOLATED_OUTDIR} on the command line or the environment variables passed
22with the --env option will be replaced by the location of a temporary directory
23upon execution of the command specified in the .isolated file. All content
24written to this directory will be uploaded upon termination and the .isolated
25file describing this directory will be printed to stdout.
bpastene447c1992016-06-20 15:21:47 -070026
Marc-Antoine Rueleed2f3a2019-03-14 00:00:40 +000027Any ${SWARMING_BOT_FILE} on the command line or the environment variables passed
28with the --env option will be replaced by the value of the --bot-file parameter.
29This file is used by a swarming bot to communicate state of the host to tasks.
30It is written to by the swarming bot's on_before_task() hook in the swarming
31server's custom bot_config.py.
32
33See
34https://chromium.googlesource.com/infra/luci/luci-py.git/+/master/appengine/swarming/doc/Magic-Values.md
35for all the variables.
36
37See
38https://chromium.googlesource.com/infra/luci/luci-py.git/+/master/appengine/swarming/swarming_bot/config/bot_config.py
39for more information about bot_config.py.
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +000040"""
41
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +000042from __future__ import print_function
43
44__version__ = '1.0.1'
maruel@chromium.orgdedbf492013-09-12 20:42:11 +000045
aludwin7556e0c2016-10-26 08:46:10 -070046import argparse
maruel064c0a32016-04-05 11:47:15 -070047import base64
iannucci96fcccc2016-08-30 15:52:22 -070048import collections
vadimsh232f5a82017-01-20 19:23:44 -080049import contextlib
Sadaf Matinkhoo10743a62018-03-29 16:28:58 -040050import errno
aludwin7556e0c2016-10-26 08:46:10 -070051import json
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +000052import logging
53import optparse
54import os
Takuto Ikuta5c59a842020-01-24 03:05:24 +000055import platform
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -040056import re
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +000057import sys
58import tempfile
maruel064c0a32016-04-05 11:47:15 -070059import time
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +000060
Marc-Antoine Ruel016c7602019-04-02 18:31:13 +000061from utils import tools
62tools.force_local_third_party()
vadimsh@chromium.orga4326472013-08-24 02:05:41 +000063
Marc-Antoine Ruel016c7602019-04-02 18:31:13 +000064# third_party/
65from depot_tools import fix_encoding
Takuto Ikuta6e2ff962019-10-29 12:35:27 +000066import six
Marc-Antoine Ruel016c7602019-04-02 18:31:13 +000067
68# pylint: disable=ungrouped-imports
69import auth
70import cipd
71import isolate_storage
72import isolateserver
73import local_caching
74from libs import luci_context
Vadim Shtayura6b555c12014-07-23 16:22:18 -070075from utils import file_path
maruel12e30012015-10-09 11:55:35 -070076from utils import fs
maruel064c0a32016-04-05 11:47:15 -070077from utils import large
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -040078from utils import logging_utils
Marc-Antoine Ruelcfb60852014-07-02 15:22:00 -040079from utils import on_error
Marc-Antoine Ruelc44f5722015-01-08 16:10:01 -050080from utils import subprocess42
maruel@chromium.orgdedbf492013-09-12 20:42:11 +000081
vadimsh@chromium.orga4326472013-08-24 02:05:41 +000082
maruele2f2cb82016-07-13 14:41:03 -070083# Magic variables that can be found in the isolate task command line.
84ISOLATED_OUTDIR_PARAMETER = '${ISOLATED_OUTDIR}'
85EXECUTABLE_SUFFIX_PARAMETER = '${EXECUTABLE_SUFFIX}'
86SWARMING_BOT_FILE_PARAMETER = '${SWARMING_BOT_FILE}'
87
88
csharp@chromium.orgff2a4662012-11-21 20:49:32 +000089# The name of the log file to use.
90RUN_ISOLATED_LOG_FILE = 'run_isolated.log'
91
maruele2f2cb82016-07-13 14:41:03 -070092
csharp@chromium.orge217f302012-11-22 16:51:53 +000093# The name of the log to use for the run_test_cases.py command
vadimsh@chromium.org8b9d56b2013-08-21 22:24:35 +000094RUN_TEST_CASES_LOG = 'run_test_cases.log'
csharp@chromium.orge217f302012-11-22 16:51:53 +000095
vadimsh@chromium.org87d63262013-04-04 19:34:21 +000096
maruele2f2cb82016-07-13 14:41:03 -070097# Use short names for temporary directories. This is driven by Windows, which
98# imposes a relatively short maximum path length of 260 characters, often
99# referred to as MAX_PATH. It is relatively easy to create files with longer
Marc-Antoine Ruel793bff32019-04-18 17:50:48 +0000100# path length. A use case is with recursive dependency trees like npm packages.
maruele2f2cb82016-07-13 14:41:03 -0700101#
102# It is recommended to start the script with a `root_dir` as short as
103# possible.
104# - ir stands for isolated_run
105# - io stands for isolated_out
106# - it stands for isolated_tmp
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000107# - ic stands for isolated_client
maruele2f2cb82016-07-13 14:41:03 -0700108ISOLATED_RUN_DIR = u'ir'
109ISOLATED_OUT_DIR = u'io'
110ISOLATED_TMP_DIR = u'it'
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000111ISOLATED_CLIENT_DIR = u'ic'
maruele2f2cb82016-07-13 14:41:03 -0700112
Takuto Ikuta02edca22019-11-29 10:04:51 +0000113# TODO(tikuta): take these parameter from luci-config?
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000114# Take revision from
115# https://ci.chromium.org/p/infra-internal/g/infra-packagers/console
Takuto Ikuta02edca22019-11-29 10:04:51 +0000116ISOLATED_PACKAGE = 'infra/tools/luci/isolated/${platform}'
Takuto Ikuta80da24a2020-02-04 08:10:10 +0000117ISOLATED_REVISION = 'git_revision:998a75a97562b8c40feec956be8b4274d96e2eea'
maruele2f2cb82016-07-13 14:41:03 -0700118
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -0400119# Keep synced with task_request.py
Lei Leife202df2019-06-11 17:33:34 +0000120CACHE_NAME_RE = re.compile(r'^[a-z0-9_]{1,4096}$')
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -0400121
122
marueld928c862017-06-08 08:20:04 -0700123OUTLIVING_ZOMBIE_MSG = """\
124*** Swarming tried multiple times to delete the %s directory and failed ***
125*** Hard failing the task ***
126
127Swarming detected that your testing script ran an executable, which may have
128started a child executable, and the main script returned early, leaving the
129children executables playing around unguided.
130
131You don't want to leave children processes outliving the task on the Swarming
132bot, do you? The Swarming bot doesn't.
133
134How to fix?
135- For any process that starts children processes, make sure all children
136 processes terminated properly before each parent process exits. This is
137 especially important in very deep process trees.
138 - This must be done properly both in normal successful task and in case of
139 task failure. Cleanup is very important.
140- The Swarming bot sends a SIGTERM in case of timeout.
141 - You have %s seconds to comply after the signal was sent to the process
142 before the process is forcibly killed.
143- To achieve not leaking children processes in case of signals on timeout, you
144 MUST handle signals in each executable / python script and propagate them to
145 children processes.
146 - When your test script (python or binary) receives a signal like SIGTERM or
147 CTRL_BREAK_EVENT on Windows), send it to all children processes and wait for
148 them to terminate before quitting.
149
150See
Marc-Antoine Ruelc7243592018-05-24 17:04:04 -0400151https://chromium.googlesource.com/infra/luci/luci-py.git/+/master/appengine/swarming/doc/Bot.md#Graceful-termination_aka-the-SIGTERM-and-SIGKILL-dance
marueld928c862017-06-08 08:20:04 -0700152for more information.
153
154*** May the SIGKILL force be with you ***
155"""
156
157
Marc-Antoine Ruel5d7606b2018-06-15 19:06:12 +0000158# Currently hardcoded. Eventually could be exposed as a flag once there's value.
159# 3 weeks
160MAX_AGE_SECS = 21*24*60*60
161
162
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500163TaskData = collections.namedtuple(
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +0000164 'TaskData',
165 [
Takuto Ikuta9a319502019-11-26 07:40:14 +0000166 # List of strings; the command line to use, independent of what was
167 # specified in the isolated file.
168 'command',
169 # Relative directory to start command into.
170 'relative_cwd',
171 # List of strings; the arguments to add to the command specified in the
172 # isolated file.
173 'extra_args',
174 # Hash of the .isolated file that must be retrieved to recreate the tree
175 # of files to run the target executable. The command specified in the
176 # .isolated is executed. Mutually exclusive with command argument.
177 'isolated_hash',
178 # isolateserver.Storage instance to retrieve remote objects. This object
179 # has a reference to an isolateserver.StorageApi, which does the actual
180 # I/O.
181 'storage',
182 # isolateserver.LocalCache instance to keep from retrieving the same
183 # objects constantly by caching the objects retrieved. Can be on-disk or
184 # in-memory.
185 'isolate_cache',
186 # List of paths relative to root_dir to put into the output isolated
187 # bundle upon task completion (see link_outputs_to_outdir).
188 'outputs',
189 # Function (run_dir) => context manager that installs named caches into
190 # |run_dir|.
191 'install_named_caches',
192 # If True, the temporary directory will be deliberately leaked for later
193 # examination.
194 'leak_temp_dir',
195 # Path to the directory to use to create the temporary directory. If not
196 # specified, a random temporary directory is created.
197 'root_dir',
198 # Kills the process if it lasts more than this amount of seconds.
199 'hard_timeout',
200 # Number of seconds to wait between SIGTERM and SIGKILL.
201 'grace_period',
202 # Path to a file with bot state, used in place of ${SWARMING_BOT_FILE}
203 # task command line argument.
204 'bot_file',
205 # Logical account to switch LUCI_CONTEXT into.
206 'switch_to_account',
207 # Context manager dir => CipdInfo, see install_client_and_packages.
208 'install_packages_fn',
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000209 # Use go isolated client.
210 'use_go_isolated',
Takuto Ikuta057c5342019-12-03 04:05:05 +0000211 # Cache directory for go isolated client.
212 'go_cache_dir',
Takuto Ikuta879788c2020-01-10 08:00:26 +0000213 # Parameters passed to go isolated client.
214 'go_cache_policies',
Takuto Ikuta9a319502019-11-26 07:40:14 +0000215 # Environment variables to set.
216 'env',
217 # Environment variables to mutate with relative directories.
218 # Example: {"ENV_KEY": ['relative', 'paths', 'to', 'prepend']}
219 'env_prefix',
220 # Lowers the task process priority.
221 'lower_priority',
222 # subprocess42.Containment instance. Can be None.
223 'containment',
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +0000224 ])
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500225
226
Marc-Antoine Ruelee6ca622017-11-29 11:19:16 -0500227def _to_str(s):
228 """Downgrades a unicode instance to str. Pass str through as-is."""
229 if isinstance(s, str):
230 return s
231 # This is technically incorrect, especially on Windows. In theory
232 # sys.getfilesystemencoding() should be used to use the right 'ANSI code
233 # page' on Windows, but that causes other problems, as the character set
234 # is very limited.
235 return s.encode('utf-8')
236
237
Marc-Antoine Ruel7a68f712017-12-01 18:45:18 -0500238def _to_unicode(s):
239 """Upgrades a str instance to unicode. Pass unicode through as-is."""
Takuto Ikuta95459dd2019-10-29 12:39:47 +0000240 if isinstance(s, six.text_type) or s is None:
Marc-Antoine Ruel7a68f712017-12-01 18:45:18 -0500241 return s
242 return s.decode('utf-8')
243
244
maruel03e11842016-07-14 10:50:16 -0700245def make_temp_dir(prefix, root_dir):
246 """Returns a new unique temporary directory."""
Takuto Ikuta6e2ff962019-10-29 12:35:27 +0000247 return six.text_type(tempfile.mkdtemp(prefix=prefix, dir=root_dir))
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +0000248
249
Marc-Antoine Ruel7124e392014-01-09 11:49:21 -0500250def change_tree_read_only(rootdir, read_only):
251 """Changes the tree read-only bits according to the read_only specification.
252
253 The flag can be 0, 1 or 2, which will affect the possibility to modify files
254 and create or delete files.
255 """
256 if read_only == 2:
257 # Files and directories (except on Windows) are marked read only. This
258 # inhibits modifying, creating or deleting files in the test directory,
259 # except on Windows where creating and deleting files is still possible.
Marc-Antoine Ruele4ad07e2014-10-15 20:22:29 -0400260 file_path.make_tree_read_only(rootdir)
Marc-Antoine Ruel7124e392014-01-09 11:49:21 -0500261 elif read_only == 1:
262 # Files are marked read only but not the directories. This inhibits
263 # modifying files but creating or deleting files is still possible.
Marc-Antoine Ruele4ad07e2014-10-15 20:22:29 -0400264 file_path.make_tree_files_read_only(rootdir)
Marc-Antoine Ruel7124e392014-01-09 11:49:21 -0500265 elif read_only in (0, None):
Marc-Antoine Ruelf1d827c2014-11-24 15:22:25 -0500266 # Anything can be modified.
Marc-Antoine Ruel2666d9c2018-05-18 13:52:02 -0400267 # TODO(maruel): This is currently dangerous as long as
268 # DiskContentAddressedCache.touch() is not yet changed to verify the hash of
269 # the content of the files it is looking at, so that if a test modifies an
270 # input file, the file must be deleted.
Marc-Antoine Ruele4ad07e2014-10-15 20:22:29 -0400271 file_path.make_tree_writeable(rootdir)
Marc-Antoine Ruel7124e392014-01-09 11:49:21 -0500272 else:
273 raise ValueError(
274 'change_tree_read_only(%s, %s): Unknown flag %s' %
275 (rootdir, read_only, read_only))
276
277
vadimsh9c54b2c2017-07-25 14:08:29 -0700278@contextlib.contextmanager
279def set_luci_context_account(account, tmp_dir):
280 """Sets LUCI_CONTEXT account to be used by the task.
281
282 If 'account' is None or '', does nothing at all. This happens when
283 run_isolated.py is called without '--switch-to-account' flag. In this case,
284 if run_isolated.py is running in some LUCI_CONTEXT environment, the task will
Takuto Ikuta33e2ff32019-09-30 12:44:03 +0000285 just inherit whatever account is already set. This may happen if users invoke
vadimsh9c54b2c2017-07-25 14:08:29 -0700286 run_isolated.py explicitly from their code.
287
288 If the requested account is not defined in the context, switches to
289 non-authenticated access. This happens for Swarming tasks that don't use
290 'task' service accounts.
291
292 If not using LUCI_CONTEXT-based auth, does nothing.
293 If already running as requested account, does nothing.
294 """
295 if not account:
296 # Not actually switching.
297 yield
298 return
299
300 local_auth = luci_context.read('local_auth')
301 if not local_auth:
302 # Not using LUCI_CONTEXT auth at all.
303 yield
304 return
305
306 # See LUCI_CONTEXT.md for the format of 'local_auth'.
307 if local_auth.get('default_account_id') == account:
308 # Already set, no need to switch.
309 yield
310 return
311
312 available = {a['id'] for a in local_auth.get('accounts') or []}
313 if account in available:
314 logging.info('Switching default LUCI_CONTEXT account to %r', account)
315 local_auth['default_account_id'] = account
316 else:
317 logging.warning(
318 'Requested LUCI_CONTEXT account %r is not available (have only %r), '
319 'disabling authentication', account, sorted(available))
320 local_auth.pop('default_account_id', None)
321
322 with luci_context.write(_tmpdir=tmp_dir, local_auth=local_auth):
323 yield
324
325
nodir90bc8dc2016-06-15 13:35:21 -0700326def process_command(command, out_dir, bot_file):
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000327 """Replaces parameters in a command line.
nodirbe642ff2016-06-09 15:51:51 -0700328
329 Raises:
330 ValueError if a parameter is requested in |command| but its value is not
331 provided.
332 """
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000333 return [replace_parameters(arg, out_dir, bot_file) for arg in command]
334
335
336def replace_parameters(arg, out_dir, bot_file):
337 """Replaces parameter tokens with appropriate values in a string.
338
339 Raises:
340 ValueError if a parameter is requested in |arg| but its value is not
341 provided.
342 """
343 arg = arg.replace(EXECUTABLE_SUFFIX_PARAMETER, cipd.EXECUTABLE_SUFFIX)
344 replace_slash = False
345 if ISOLATED_OUTDIR_PARAMETER in arg:
346 if not out_dir:
347 raise ValueError(
348 'output directory is requested in command or env var, but not '
349 'provided; please specify one')
350 arg = arg.replace(ISOLATED_OUTDIR_PARAMETER, out_dir)
351 replace_slash = True
352 if SWARMING_BOT_FILE_PARAMETER in arg:
353 if bot_file:
354 arg = arg.replace(SWARMING_BOT_FILE_PARAMETER, bot_file)
nodirbe642ff2016-06-09 15:51:51 -0700355 replace_slash = True
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000356 else:
357 logging.warning('SWARMING_BOT_FILE_PARAMETER found in command or env '
358 'var, but no bot_file specified. Leaving parameter '
359 'unchanged.')
360 if replace_slash:
361 # Replace slashes only if parameters are present
362 # because of arguments like '${ISOLATED_OUTDIR}/foo/bar'
363 arg = arg.replace('/', os.sep)
364 return arg
maruela9cfd6f2015-09-15 11:03:15 -0700365
366
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000367
368def get_command_env(tmp_dir, cipd_info, run_dir, env, env_prefixes, out_dir,
369 bot_file):
vadimsh232f5a82017-01-20 19:23:44 -0800370 """Returns full OS environment to run a command in.
371
Robert Iannuccibf5f84c2017-11-22 12:56:50 -0800372 Sets up TEMP, puts directory with cipd binary in front of PATH, exposes
373 CIPD_CACHE_DIR env var, and installs all env_prefixes.
vadimsh232f5a82017-01-20 19:23:44 -0800374
375 Args:
376 tmp_dir: temp directory.
377 cipd_info: CipdInfo object is cipd client is used, None if not.
Marc-Antoine Ruel9ec1e9f2017-12-20 16:36:54 -0500378 run_dir: The root directory the isolated tree is mapped in.
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500379 env: environment variables to use
Robert Iannuccibf5f84c2017-11-22 12:56:50 -0800380 env_prefixes: {"ENV_KEY": ['cwd', 'relative', 'paths', 'to', 'prepend']}
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000381 out_dir: Isolated output directory. Required to be != None if any of the
382 env vars contain ISOLATED_OUTDIR_PARAMETER.
383 bot_file: Required to be != None if any of the env vars contain
384 SWARMING_BOT_FILE_PARAMETER.
vadimsh232f5a82017-01-20 19:23:44 -0800385 """
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500386 out = os.environ.copy()
Marc-Antoine Ruel04903a32019-10-09 21:09:25 +0000387 for k, v in env.items():
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500388 if not v:
Marc-Antoine Ruel9ec1e9f2017-12-20 16:36:54 -0500389 out.pop(k, None)
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500390 else:
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000391 out[k] = replace_parameters(v, out_dir, bot_file)
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500392
393 if cipd_info:
394 bin_dir = os.path.dirname(cipd_info.client.binary_path)
Marc-Antoine Ruelee6ca622017-11-29 11:19:16 -0500395 out['PATH'] = '%s%s%s' % (_to_str(bin_dir), os.pathsep, out['PATH'])
396 out['CIPD_CACHE_DIR'] = _to_str(cipd_info.cache_dir)
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500397
Marc-Antoine Ruel04903a32019-10-09 21:09:25 +0000398 for key, paths in env_prefixes.items():
Marc-Antoine Ruel9ec1e9f2017-12-20 16:36:54 -0500399 assert isinstance(paths, list), paths
400 paths = [os.path.normpath(os.path.join(run_dir, p)) for p in paths]
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500401 cur = out.get(key)
402 if cur:
403 paths.append(cur)
Marc-Antoine Ruelee6ca622017-11-29 11:19:16 -0500404 out[key] = _to_str(os.path.pathsep.join(paths))
vadimsh232f5a82017-01-20 19:23:44 -0800405
Marc-Antoine Ruelefb30b12018-07-25 18:34:36 +0000406 tmp_dir = _to_str(tmp_dir)
407 # pylint: disable=line-too-long
408 # * python respects $TMPDIR, $TEMP, and $TMP in this order, regardless of
409 # platform. So $TMPDIR must be set on all platforms.
410 # https://github.com/python/cpython/blob/2.7/Lib/tempfile.py#L155
411 out['TMPDIR'] = tmp_dir
412 if sys.platform == 'win32':
413 # * chromium's base utils uses GetTempPath().
414 # https://cs.chromium.org/chromium/src/base/files/file_util_win.cc?q=GetTempPath
415 # * Go uses GetTempPath().
416 # * GetTempDir() uses %TMP%, then %TEMP%, then other stuff. So %TMP% must be
417 # set.
418 # https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-gettemppathw
419 out['TMP'] = tmp_dir
420 # https://blogs.msdn.microsoft.com/oldnewthing/20150417-00/?p=44213
421 out['TEMP'] = tmp_dir
422 elif sys.platform == 'darwin':
423 # * Chromium uses an hack on macOS before calling into
424 # NSTemporaryDirectory().
425 # https://cs.chromium.org/chromium/src/base/files/file_util_mac.mm?q=GetTempDir
426 # https://developer.apple.com/documentation/foundation/1409211-nstemporarydirectory
427 out['MAC_CHROMIUM_TMPDIR'] = tmp_dir
428 else:
429 # TMPDIR is specified as the POSIX standard envvar for the temp directory.
430 # http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html
431 # * mktemp on linux respects $TMPDIR.
432 # * Chromium respects $TMPDIR on linux.
433 # https://cs.chromium.org/chromium/src/base/files/file_util_posix.cc?q=GetTempDir
434 # * Go uses $TMPDIR.
435 # https://go.googlesource.com/go/+/go1.10.3/src/os/file_unix.go#307
436 pass
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -0500437 return out
vadimsh232f5a82017-01-20 19:23:44 -0800438
439
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +0000440def run_command(
441 command, cwd, env, hard_timeout, grace_period, lower_priority, containment):
maruel6be7f9e2015-10-01 12:25:30 -0700442 """Runs the command.
443
444 Returns:
445 tuple(process exit code, bool if had a hard timeout)
446 """
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +0000447 logging.info(
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +0000448 'run_command(%s, %s, %s, %s, %s, %s)',
449 command, cwd, hard_timeout, grace_period, lower_priority, containment)
marueleb5fbee2015-09-17 13:01:36 -0700450
maruel6be7f9e2015-10-01 12:25:30 -0700451 exit_code = None
452 had_hard_timeout = False
maruela9cfd6f2015-09-15 11:03:15 -0700453 with tools.Profiler('RunTest'):
maruel6be7f9e2015-10-01 12:25:30 -0700454 proc = None
455 had_signal = []
maruela9cfd6f2015-09-15 11:03:15 -0700456 try:
maruel6be7f9e2015-10-01 12:25:30 -0700457 # TODO(maruel): This code is imperfect. It doesn't handle well signals
458 # during the download phase and there's short windows were things can go
459 # wrong.
460 def handler(signum, _frame):
461 if proc and not had_signal:
462 logging.info('Received signal %d', signum)
463 had_signal.append(True)
maruel556d9052015-10-05 11:12:44 -0700464 raise subprocess42.TimeoutExpired(command, None)
maruel6be7f9e2015-10-01 12:25:30 -0700465
Marc-Antoine Ruel30b80fe2019-02-08 13:51:31 +0000466 proc = subprocess42.Popen(
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +0000467 command, cwd=cwd, env=env, detached=True, close_fds=True,
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +0000468 lower_priority=lower_priority, containment=containment)
maruel6be7f9e2015-10-01 12:25:30 -0700469 with subprocess42.set_signal_handler(subprocess42.STOP_SIGNALS, handler):
470 try:
John Budorickc398f092019-06-10 22:49:44 +0000471 exit_code = proc.wait(hard_timeout or None)
maruel6be7f9e2015-10-01 12:25:30 -0700472 except subprocess42.TimeoutExpired:
473 if not had_signal:
474 logging.warning('Hard timeout')
475 had_hard_timeout = True
476 logging.warning('Sending SIGTERM')
477 proc.terminate()
478
479 # Ignore signals in grace period. Forcibly give the grace period to the
480 # child process.
481 if exit_code is None:
482 ignore = lambda *_: None
483 with subprocess42.set_signal_handler(subprocess42.STOP_SIGNALS, ignore):
484 try:
485 exit_code = proc.wait(grace_period or None)
486 except subprocess42.TimeoutExpired:
487 # Now kill for real. The user can distinguish between the
488 # following states:
489 # - signal but process exited within grace period,
490 # hard_timed_out will be set but the process exit code will be
491 # script provided.
492 # - processed exited late, exit code will be -9 on posix.
493 logging.warning('Grace exhausted; sending SIGKILL')
494 proc.kill()
martiniss5c8043e2017-08-01 17:09:43 -0700495 logging.info('Waiting for process exit')
maruel6be7f9e2015-10-01 12:25:30 -0700496 exit_code = proc.wait()
maruela9cfd6f2015-09-15 11:03:15 -0700497 except OSError:
498 # This is not considered to be an internal error. The executable simply
499 # does not exit.
maruela72f46e2016-02-24 11:05:45 -0800500 sys.stderr.write(
tikuta2d678212019-09-23 23:12:08 +0000501 '<The executable does not exist, a dependent library is missing or '
502 'the command line is too long>\n'
503 '<Check for missing .so/.dll in the .isolate or GN file or length of '
504 'command line args>\n'
maruela72f46e2016-02-24 11:05:45 -0800505 '<Command: %s>\n' % command)
506 if os.environ.get('SWARMING_TASK_ID'):
507 # Give an additional hint when running as a swarming task.
508 sys.stderr.write(
509 '<See the task\'s page for commands to help diagnose this issue '
510 'by reproducing the task locally>\n')
maruela9cfd6f2015-09-15 11:03:15 -0700511 exit_code = 1
512 logging.info(
513 'Command finished with exit code %d (%s)',
514 exit_code, hex(0xffffffff & exit_code))
maruel6be7f9e2015-10-01 12:25:30 -0700515 return exit_code, had_hard_timeout
maruela9cfd6f2015-09-15 11:03:15 -0700516
517
Takuto Ikuta879788c2020-01-10 08:00:26 +0000518def _fetch_and_map_with_go(isolated_hash, storage, outdir, go_cache_dir,
519 policies, isolated_client):
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000520 """
521 Fetches an isolated tree using go client, create the tree and returns
522 (bundle, stats).
523 """
524 start = time.time()
525 server_ref = storage.server_ref
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000526 result_json_handle, result_json_path = tempfile.mkstemp(
527 prefix=u'fetch-and-map-result-', suffix=u'.json')
528 os.close(result_json_handle)
529 try:
Takuto Ikuta3153e3b2020-02-18 06:11:47 +0000530 proc = subprocess42.Popen([
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000531 isolated_client,
532 'download',
533 '-isolate-server',
534 server_ref.url,
535 '-namespace',
536 server_ref.namespace,
537 '-isolated',
538 isolated_hash,
539
540 # flags for cache
541 '-cache-dir',
Takuto Ikuta057c5342019-12-03 04:05:05 +0000542 go_cache_dir,
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000543 '-cache-max-items',
Takuto Ikuta50bc0552019-12-03 03:26:46 +0000544 str(policies.max_items),
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000545 '-cache-max-size',
Takuto Ikuta50bc0552019-12-03 03:26:46 +0000546 str(policies.max_cache_size),
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000547 '-cache-min-free-space',
Takuto Ikuta50bc0552019-12-03 03:26:46 +0000548 str(policies.min_free_space),
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000549
550 # flags for output
551 '-output-dir',
552 outdir,
553 '-fetch-and-map-result-json',
554 result_json_path,
555 ])
Takuto Ikuta3153e3b2020-02-18 06:11:47 +0000556
557 while True:
558 # This is to prevent I/O timeout error during isolated setup.
559 try:
560 proc.wait(30)
561 break
562 except subprocess42.TimeoutExpired:
563 logging.info('still running isolated')
564 continue
565
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000566 with open(result_json_path) as json_file:
567 result_json = json.load(json_file)
568
569 isolated = result_json['isolated']
570 bundle = isolateserver.IsolatedBundle(filter_cb=None)
571 # Only following properties are used in caller.
572 bundle.command = isolated.get('command')
573 bundle.read_only = isolated.get('read_only')
574 bundle.relative_cwd = isolated.get('relative_cwd')
575
576 return bundle, {
577 'duration': time.time() - start,
578 'items_cold': result_json['items_cold'],
579 'items_hot': result_json['items_hot'],
580 }
581 finally:
582 fs.remove(result_json_path)
583
584
585# TODO(crbug.com/932396): remove this function.
Takuto Ikuta16fac4b2019-12-09 04:57:18 +0000586def fetch_and_map(isolated_hash, storage, cache, outdir):
maruel4409e302016-07-19 14:25:51 -0700587 """Fetches an isolated tree, create the tree and returns (bundle, stats)."""
nodir6f801882016-04-29 14:41:50 -0700588 start = time.time()
589 bundle = isolateserver.fetch_isolated(
590 isolated_hash=isolated_hash,
591 storage=storage,
592 cache=cache,
maruel4409e302016-07-19 14:25:51 -0700593 outdir=outdir,
Takuto Ikuta16fac4b2019-12-09 04:57:18 +0000594 use_symlinks=False)
Takuto Ikuta2b9640e2019-06-19 00:53:23 +0000595 hot = (collections.Counter(cache.used) -
596 collections.Counter(cache.added)).elements()
nodir6f801882016-04-29 14:41:50 -0700597 return bundle, {
598 'duration': time.time() - start,
nodir6f801882016-04-29 14:41:50 -0700599 'items_cold': base64.b64encode(large.pack(sorted(cache.added))),
Takuto Ikuta2b9640e2019-06-19 00:53:23 +0000600 'items_hot': base64.b64encode(large.pack(sorted(hot))),
nodir6f801882016-04-29 14:41:50 -0700601 }
602
603
aludwin0a8e17d2016-10-27 15:57:39 -0700604def link_outputs_to_outdir(run_dir, out_dir, outputs):
605 """Links any named outputs to out_dir so they can be uploaded.
606
607 Raises an error if the file already exists in that directory.
608 """
609 if not outputs:
610 return
611 isolateserver.create_directories(out_dir, outputs)
612 for o in outputs:
Sadaf Matinkhoo10743a62018-03-29 16:28:58 -0400613 copy_recursively(os.path.join(run_dir, o), os.path.join(out_dir, o))
614
615
616def copy_recursively(src, dst):
617 """Efficiently copies a file or directory from src_dir to dst_dir.
618
619 `item` may be a file, directory, or a symlink to a file or directory.
620 All symlinks are replaced with their targets, so the resulting
621 directory structure in dst_dir will never have any symlinks.
622
623 To increase speed, copy_recursively hardlinks individual files into the
624 (newly created) directory structure if possible, unlike Python's
625 shutil.copytree().
626 """
627 orig_src = src
628 try:
629 # Replace symlinks with their final target.
630 while fs.islink(src):
631 res = fs.readlink(src)
632 src = os.path.join(os.path.dirname(src), res)
633 # TODO(sadafm): Explicitly handle cyclic symlinks.
634
635 # Note that fs.isfile (which is a wrapper around os.path.isfile) throws
636 # an exception if src does not exist. A warning will be logged in that case.
637 if fs.isfile(src):
638 file_path.link_file(dst, src, file_path.HARDLINK_WITH_FALLBACK)
639 return
640
641 if not fs.exists(dst):
642 os.makedirs(dst)
643
644 for child in fs.listdir(src):
645 copy_recursively(os.path.join(src, child), os.path.join(dst, child))
646
647 except OSError as e:
648 if e.errno == errno.ENOENT:
649 logging.warning('Path %s does not exist or %s is a broken symlink',
650 src, orig_src)
651 else:
652 logging.info("Couldn't collect output file %s: %s", src, e)
aludwin0a8e17d2016-10-27 15:57:39 -0700653
654
Takuto Ikutab4aa8662019-09-17 05:54:36 +0000655def upload_then_delete(storage, out_dir, leak_temp_dir):
maruela9cfd6f2015-09-15 11:03:15 -0700656 """Deletes the temporary run directory and uploads results back.
657
658 Returns:
nodir6f801882016-04-29 14:41:50 -0700659 tuple(outputs_ref, success, stats)
maruel064c0a32016-04-05 11:47:15 -0700660 - outputs_ref: a dict referring to the results archived back to the isolated
661 server, if applicable.
662 - success: False if something occurred that means that the task must
663 forcibly be considered a failure, e.g. zombie processes were left
664 behind.
nodir6f801882016-04-29 14:41:50 -0700665 - stats: uploading stats.
maruela9cfd6f2015-09-15 11:03:15 -0700666 """
maruela9cfd6f2015-09-15 11:03:15 -0700667 # Upload out_dir and generate a .isolated file out of this directory. It is
668 # only done if files were written in the directory.
669 outputs_ref = None
maruel064c0a32016-04-05 11:47:15 -0700670 cold = []
671 hot = []
nodir6f801882016-04-29 14:41:50 -0700672 start = time.time()
673
maruel12e30012015-10-09 11:55:35 -0700674 if fs.isdir(out_dir) and fs.listdir(out_dir):
maruela9cfd6f2015-09-15 11:03:15 -0700675 with tools.Profiler('ArchiveOutput'):
676 try:
maruel064c0a32016-04-05 11:47:15 -0700677 results, f_cold, f_hot = isolateserver.archive_files_to_storage(
maruela9cfd6f2015-09-15 11:03:15 -0700678 storage, [out_dir], None)
679 outputs_ref = {
Marc-Antoine Rueld0868ec2018-11-28 20:47:29 +0000680 'isolated': results.values()[0],
Marc-Antoine Ruelb8513132018-11-20 19:48:53 +0000681 'isolatedserver': storage.server_ref.url,
682 'namespace': storage.server_ref.namespace,
maruela9cfd6f2015-09-15 11:03:15 -0700683 }
maruel064c0a32016-04-05 11:47:15 -0700684 cold = sorted(i.size for i in f_cold)
685 hot = sorted(i.size for i in f_hot)
maruela9cfd6f2015-09-15 11:03:15 -0700686 except isolateserver.Aborted:
687 # This happens when a signal SIGTERM was received while uploading data.
688 # There is 2 causes:
689 # - The task was too slow and was about to be killed anyway due to
690 # exceeding the hard timeout.
691 # - The amount of data uploaded back is very large and took too much
692 # time to archive.
693 sys.stderr.write('Received SIGTERM while uploading')
694 # Re-raise, so it will be treated as an internal failure.
695 raise
nodir6f801882016-04-29 14:41:50 -0700696
697 success = False
maruela9cfd6f2015-09-15 11:03:15 -0700698 try:
maruel12e30012015-10-09 11:55:35 -0700699 if (not leak_temp_dir and fs.isdir(out_dir) and
maruel6eeea7d2015-09-16 12:17:42 -0700700 not file_path.rmtree(out_dir)):
maruela9cfd6f2015-09-15 11:03:15 -0700701 logging.error('Had difficulties removing out_dir %s', out_dir)
nodir6f801882016-04-29 14:41:50 -0700702 else:
703 success = True
maruela9cfd6f2015-09-15 11:03:15 -0700704 except OSError as e:
705 # When this happens, it means there's a process error.
maruel12e30012015-10-09 11:55:35 -0700706 logging.exception('Had difficulties removing out_dir %s: %s', out_dir, e)
nodir6f801882016-04-29 14:41:50 -0700707 stats = {
708 'duration': time.time() - start,
709 'items_cold': base64.b64encode(large.pack(cold)),
710 'items_hot': base64.b64encode(large.pack(hot)),
711 }
712 return outputs_ref, success, stats
maruela9cfd6f2015-09-15 11:03:15 -0700713
714
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500715def map_and_run(data, constant_run_path):
nodir55be77b2016-05-03 09:39:57 -0700716 """Runs a command with optional isolated input/output.
717
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500718 Arguments:
719 - data: TaskData instance.
720 - constant_run_path: TODO
nodir55be77b2016-05-03 09:39:57 -0700721
722 Returns metadata about the result.
723 """
Takuto Ikuta00cf8fc2020-01-14 01:36:00 +0000724
725 if data.isolate_cache:
726 download_stats = {
727 #'duration': 0.,
728 'initial_number_items': len(data.isolate_cache),
729 'initial_size': data.isolate_cache.total_size,
730 #'items_cold': '<large.pack()>',
731 #'items_hot': '<large.pack()>',
732 }
733 else:
734 # TODO(tikuta): take stats from state.json in this case too.
735 download_stats = {}
736
maruela9cfd6f2015-09-15 11:03:15 -0700737 result = {
Takuto Ikuta5ed62ad2019-09-26 09:16:00 +0000738 'duration': None,
739 'exit_code': None,
740 'had_hard_timeout': False,
741 'internal_failure': 'run_isolated did not complete properly',
742 'stats': {
743 #'cipd': {
744 # 'duration': 0.,
745 # 'get_client_duration': 0.,
746 #},
747 'isolated': {
Takuto Ikuta00cf8fc2020-01-14 01:36:00 +0000748 'download': download_stats,
Takuto Ikuta5ed62ad2019-09-26 09:16:00 +0000749 #'upload': {
750 # 'duration': 0.,
751 # 'items_cold': '<large.pack()>',
752 # 'items_hot': '<large.pack()>',
753 #},
754 },
Marc-Antoine Ruel5d7606b2018-06-15 19:06:12 +0000755 },
Takuto Ikuta5ed62ad2019-09-26 09:16:00 +0000756 #'cipd_pins': {
757 # 'packages': [
758 # {'package_name': ..., 'version': ..., 'path': ...},
759 # ...
760 # ],
761 # 'client_package': {'package_name': ..., 'version': ...},
762 #},
763 'outputs_ref': None,
764 'version': 5,
maruela9cfd6f2015-09-15 11:03:15 -0700765 }
nodirbe642ff2016-06-09 15:51:51 -0700766
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500767 if data.root_dir:
Lei Leife202df2019-06-11 17:33:34 +0000768 file_path.ensure_tree(data.root_dir, 0o700)
Takuto Ikuta00cf8fc2020-01-14 01:36:00 +0000769 elif data.use_go_isolated:
770 data = data._replace(root_dir=os.path.dirname(data.go_cache_dir))
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500771 elif data.isolate_cache.cache_dir:
772 data = data._replace(
773 root_dir=os.path.dirname(data.isolate_cache.cache_dir))
maruele2f2cb82016-07-13 14:41:03 -0700774 # See comment for these constants.
maruelcffa0542017-04-07 08:39:20 -0700775 # If root_dir is not specified, it is not constant.
776 # TODO(maruel): This is not obvious. Change this to become an error once we
777 # make the constant_run_path an exposed flag.
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500778 if constant_run_path and data.root_dir:
779 run_dir = os.path.join(data.root_dir, ISOLATED_RUN_DIR)
maruel5c4eed82017-05-26 05:33:40 -0700780 if os.path.isdir(run_dir):
781 file_path.rmtree(run_dir)
Lei Leife202df2019-06-11 17:33:34 +0000782 os.mkdir(run_dir, 0o700)
maruelcffa0542017-04-07 08:39:20 -0700783 else:
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500784 run_dir = make_temp_dir(ISOLATED_RUN_DIR, data.root_dir)
maruel03e11842016-07-14 10:50:16 -0700785 # storage should be normally set but don't crash if it is not. This can happen
786 # as Swarming task can run without an isolate server.
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500787 out_dir = make_temp_dir(
788 ISOLATED_OUT_DIR, data.root_dir) if data.storage else None
789 tmp_dir = make_temp_dir(ISOLATED_TMP_DIR, data.root_dir)
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000790 isolated_client_dir = make_temp_dir(ISOLATED_CLIENT_DIR, data.root_dir)
nodir55be77b2016-05-03 09:39:57 -0700791 cwd = run_dir
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -0500792 if data.relative_cwd:
793 cwd = os.path.normpath(os.path.join(cwd, data.relative_cwd))
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500794 command = data.command
nodir55be77b2016-05-03 09:39:57 -0700795 try:
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000796 with data.install_packages_fn(run_dir, isolated_client_dir) as cipd_info:
vadimsh232f5a82017-01-20 19:23:44 -0800797 if cipd_info:
798 result['stats']['cipd'] = cipd_info.stats
799 result['cipd_pins'] = cipd_info.pins
nodir90bc8dc2016-06-15 13:35:21 -0700800
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500801 if data.isolated_hash:
vadimsh232f5a82017-01-20 19:23:44 -0800802 isolated_stats = result['stats'].setdefault('isolated', {})
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000803 if data.use_go_isolated:
Takuto Ikuta90397ca2020-01-08 10:07:55 +0000804 bundle, stats = _fetch_and_map_with_go(
805 isolated_hash=data.isolated_hash,
806 storage=data.storage,
Takuto Ikuta90397ca2020-01-08 10:07:55 +0000807 outdir=run_dir,
808 go_cache_dir=data.go_cache_dir,
Takuto Ikuta879788c2020-01-10 08:00:26 +0000809 policies=data.go_cache_policies,
Takuto Ikuta90397ca2020-01-08 10:07:55 +0000810 isolated_client=os.path.join(isolated_client_dir,
811 'isolated' + cipd.EXECUTABLE_SUFFIX))
812 else:
Takuto Ikutad03ffcc2019-12-02 01:04:23 +0000813 bundle, stats = fetch_and_map(
814 isolated_hash=data.isolated_hash,
815 storage=data.storage,
816 cache=data.isolate_cache,
Takuto Ikuta16fac4b2019-12-09 04:57:18 +0000817 outdir=run_dir)
Marc-Antoine Ruel5d7606b2018-06-15 19:06:12 +0000818 isolated_stats['download'].update(stats)
vadimsh232f5a82017-01-20 19:23:44 -0800819 change_tree_read_only(run_dir, bundle.read_only)
maruelabec63c2017-04-26 11:53:24 -0700820 # Inject the command
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500821 if not command and bundle.command:
822 command = bundle.command + data.extra_args
Marc-Antoine Rueld704a1f2017-10-31 10:51:23 -0400823 # Only set the relative directory if the isolated file specified a
824 # command, and no raw command was specified.
825 if bundle.relative_cwd:
826 cwd = os.path.normpath(os.path.join(cwd, bundle.relative_cwd))
maruelabec63c2017-04-26 11:53:24 -0700827
828 if not command:
829 # Handle this as a task failure, not an internal failure.
830 sys.stderr.write(
831 '<No command was specified!>\n'
832 '<Please secify a command when triggering your Swarming task>\n')
833 result['exit_code'] = 1
834 return result
nodirbe642ff2016-06-09 15:51:51 -0700835
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -0500836 if not cwd.startswith(run_dir):
837 # Handle this as a task failure, not an internal failure. This is a
838 # 'last chance' way to gate against directory escape.
839 sys.stderr.write('<Relative CWD is outside of run directory!>\n')
840 result['exit_code'] = 1
841 return result
842
843 if not os.path.isdir(cwd):
844 # Accepts relative_cwd that does not exist.
Lei Leife202df2019-06-11 17:33:34 +0000845 os.makedirs(cwd, 0o700)
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -0500846
vadimsh232f5a82017-01-20 19:23:44 -0800847 # If we have an explicit list of files to return, make sure their
848 # directories exist now.
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500849 if data.storage and data.outputs:
850 isolateserver.create_directories(run_dir, data.outputs)
aludwin0a8e17d2016-10-27 15:57:39 -0700851
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500852 with data.install_named_caches(run_dir):
nodird6160682017-02-02 13:03:35 -0800853 sys.stdout.flush()
854 start = time.time()
855 try:
vadimsh9c54b2c2017-07-25 14:08:29 -0700856 # Need to switch the default account before 'get_command_env' call,
857 # so it can grab correct value of LUCI_CONTEXT env var.
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500858 with set_luci_context_account(data.switch_to_account, tmp_dir):
859 env = get_command_env(
Roberto Carrillo71ade6d2018-10-08 22:30:24 +0000860 tmp_dir, cipd_info, run_dir, data.env, data.env_prefix, out_dir,
861 data.bot_file)
Brian Sheedy7a761172019-08-30 22:55:14 +0000862 command = tools.find_executable(command, env)
Robert Iannucci24ae76a2018-02-26 12:51:18 -0800863 command = process_command(command, out_dir, data.bot_file)
864 file_path.ensure_command_has_abs_path(command, cwd)
865
vadimsh9c54b2c2017-07-25 14:08:29 -0700866 result['exit_code'], result['had_hard_timeout'] = run_command(
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +0000867 command, cwd, env, data.hard_timeout, data.grace_period,
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +0000868 data.lower_priority, data.containment)
nodird6160682017-02-02 13:03:35 -0800869 finally:
870 result['duration'] = max(time.time() - start, 0)
Seth Koehler49139812017-12-19 13:59:33 -0500871
872 # We successfully ran the command, set internal_failure back to
873 # None (even if the command failed, it's not an internal error).
874 result['internal_failure'] = None
maruela9cfd6f2015-09-15 11:03:15 -0700875 except Exception as e:
nodir90bc8dc2016-06-15 13:35:21 -0700876 # An internal error occurred. Report accordingly so the swarming task will
877 # be retried automatically.
maruel12e30012015-10-09 11:55:35 -0700878 logging.exception('internal failure: %s', e)
maruela9cfd6f2015-09-15 11:03:15 -0700879 result['internal_failure'] = str(e)
880 on_error.report(None)
aludwin0a8e17d2016-10-27 15:57:39 -0700881
882 # Clean up
maruela9cfd6f2015-09-15 11:03:15 -0700883 finally:
884 try:
aludwin0a8e17d2016-10-27 15:57:39 -0700885 # Try to link files to the output directory, if specified.
886 if out_dir:
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500887 link_outputs_to_outdir(run_dir, out_dir, data.outputs)
aludwin0a8e17d2016-10-27 15:57:39 -0700888
nodir32a1ec12016-10-26 18:34:07 -0700889 success = False
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500890 if data.leak_temp_dir:
nodir32a1ec12016-10-26 18:34:07 -0700891 success = True
maruela9cfd6f2015-09-15 11:03:15 -0700892 logging.warning(
893 'Deliberately leaking %s for later examination', run_dir)
marueleb5fbee2015-09-17 13:01:36 -0700894 else:
maruel84537cb2015-10-16 14:21:28 -0700895 # On Windows rmtree(run_dir) call above has a synchronization effect: it
896 # finishes only when all task child processes terminate (since a running
897 # process locks *.exe file). Examine out_dir only after that call
898 # completes (since child processes may write to out_dir too and we need
899 # to wait for them to finish).
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000900 for directory in (run_dir, tmp_dir, isolated_client_dir):
Takuto Ikuta69c0d662019-11-27 01:18:08 +0000901 if not fs.isdir(directory):
902 continue
maruel84537cb2015-10-16 14:21:28 -0700903 try:
Takuto Ikuta69c0d662019-11-27 01:18:08 +0000904 success = file_path.rmtree(directory)
maruel84537cb2015-10-16 14:21:28 -0700905 except OSError as e:
Takuto Ikuta69c0d662019-11-27 01:18:08 +0000906 logging.error('rmtree(%r) failed: %s', directory, e)
maruel84537cb2015-10-16 14:21:28 -0700907 success = False
908 if not success:
Takuto Ikuta69c0d662019-11-27 01:18:08 +0000909 sys.stderr.write(
910 OUTLIVING_ZOMBIE_MSG % (directory, data.grace_period))
maruel84537cb2015-10-16 14:21:28 -0700911 if result['exit_code'] == 0:
912 result['exit_code'] = 1
maruela9cfd6f2015-09-15 11:03:15 -0700913
marueleb5fbee2015-09-17 13:01:36 -0700914 # This deletes out_dir if leak_temp_dir is not set.
nodir9130f072016-05-27 13:59:08 -0700915 if out_dir:
nodir55715712016-06-03 12:28:19 -0700916 isolated_stats = result['stats'].setdefault('isolated', {})
917 result['outputs_ref'], success, isolated_stats['upload'] = (
Takuto Ikutab4aa8662019-09-17 05:54:36 +0000918 upload_then_delete(data.storage, out_dir, data.leak_temp_dir))
maruela9cfd6f2015-09-15 11:03:15 -0700919 if not success and result['exit_code'] == 0:
920 result['exit_code'] = 1
921 except Exception as e:
922 # Swallow any exception in the main finally clause.
nodir9130f072016-05-27 13:59:08 -0700923 if out_dir:
924 logging.exception('Leaking out_dir %s: %s', out_dir, e)
maruela9cfd6f2015-09-15 11:03:15 -0700925 result['internal_failure'] = str(e)
926 return result
Marc-Antoine Ruel2283ad12014-02-09 11:14:57 -0500927
928
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500929def run_tha_test(data, result_json):
nodir55be77b2016-05-03 09:39:57 -0700930 """Runs an executable and records execution metadata.
931
nodir55be77b2016-05-03 09:39:57 -0700932 If isolated_hash is specified, downloads the dependencies in the cache,
933 hardlinks them into a temporary directory and runs the command specified in
934 the .isolated.
Marc-Antoine Ruel2283ad12014-02-09 11:14:57 -0500935
936 A temporary directory is created to hold the output files. The content inside
937 this directory will be uploaded back to |storage| packaged as a .isolated
938 file.
939
940 Arguments:
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500941 - data: TaskData instance.
942 - result_json: File path to dump result metadata into. If set, the process
943 exit code is always 0 unless an internal error occurred.
maruela9cfd6f2015-09-15 11:03:15 -0700944
945 Returns:
946 Process exit code that should be used.
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +0000947 """
maruela76b9ee2015-12-15 06:18:08 -0800948 if result_json:
949 # Write a json output file right away in case we get killed.
950 result = {
951 'exit_code': None,
952 'had_hard_timeout': False,
953 'internal_failure': 'Was terminated before completion',
954 'outputs_ref': None,
nodirbe642ff2016-06-09 15:51:51 -0700955 'version': 5,
maruela76b9ee2015-12-15 06:18:08 -0800956 }
957 tools.write_json(result_json, result, dense=True)
958
maruela9cfd6f2015-09-15 11:03:15 -0700959 # run_isolated exit code. Depends on if result_json is used or not.
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -0500960 result = map_and_run(data, True)
maruela9cfd6f2015-09-15 11:03:15 -0700961 logging.info('Result:\n%s', tools.format_json(result, dense=True))
bpastene3ae09522016-06-10 17:12:59 -0700962
maruela9cfd6f2015-09-15 11:03:15 -0700963 if result_json:
maruel05d5a882015-09-21 13:59:02 -0700964 # We've found tests to delete 'work' when quitting, causing an exception
965 # here. Try to recreate the directory if necessary.
nodire5028a92016-04-29 14:38:21 -0700966 file_path.ensure_tree(os.path.dirname(result_json))
maruela9cfd6f2015-09-15 11:03:15 -0700967 tools.write_json(result_json, result, dense=True)
968 # Only return 1 if there was an internal error.
969 return int(bool(result['internal_failure']))
maruel@chromium.org781ccf62013-09-17 19:39:47 +0000970
maruela9cfd6f2015-09-15 11:03:15 -0700971 # Marshall into old-style inline output.
972 if result['outputs_ref']:
Marc-Antoine Ruel793bff32019-04-18 17:50:48 +0000973 # pylint: disable=unsubscriptable-object
maruela9cfd6f2015-09-15 11:03:15 -0700974 data = {
975 'hash': result['outputs_ref']['isolated'],
976 'namespace': result['outputs_ref']['namespace'],
977 'storage': result['outputs_ref']['isolatedserver'],
978 }
Marc-Antoine Ruelc44f5722015-01-08 16:10:01 -0500979 sys.stdout.flush()
maruela9cfd6f2015-09-15 11:03:15 -0700980 print(
981 '[run_isolated_out_hack]%s[/run_isolated_out_hack]' %
982 tools.format_json(data, dense=True))
maruelb76604c2015-11-11 11:53:44 -0800983 sys.stdout.flush()
maruela9cfd6f2015-09-15 11:03:15 -0700984 return result['exit_code'] or int(bool(result['internal_failure']))
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +0000985
986
iannuccib58d10d2017-03-18 02:00:25 -0700987# Yielded by 'install_client_and_packages'.
vadimsh232f5a82017-01-20 19:23:44 -0800988CipdInfo = collections.namedtuple('CipdInfo', [
989 'client', # cipd.CipdClient object
990 'cache_dir', # absolute path to bot-global cipd tag and instance cache
991 'stats', # dict with stats to return to the server
992 'pins', # dict with installed cipd pins to return to the server
993])
994
995
996@contextlib.contextmanager
Takuto Ikutab7ce0e32019-11-27 23:26:18 +0000997def noop_install_packages(_run_dir, _isolated_dir):
iannuccib58d10d2017-03-18 02:00:25 -0700998 """Placeholder for 'install_client_and_packages' if cipd is disabled."""
vadimsh232f5a82017-01-20 19:23:44 -0800999 yield None
1000
1001
Takuto Ikuta2efc7792019-11-27 14:33:34 +00001002def _install_packages(run_dir, cipd_cache_dir, client, packages):
iannuccib58d10d2017-03-18 02:00:25 -07001003 """Calls 'cipd ensure' for packages.
1004
1005 Args:
1006 run_dir (str): root of installation.
1007 cipd_cache_dir (str): the directory to use for the cipd package cache.
1008 client (CipdClient): the cipd client to use
1009 packages: packages to install, list [(path, package_name, version), ...].
iannuccib58d10d2017-03-18 02:00:25 -07001010
1011 Returns: list of pinned packages. Looks like [
1012 {
1013 'path': 'subdirectory',
1014 'package_name': 'resolved/package/name',
1015 'version': 'deadbeef...',
1016 },
1017 ...
1018 ]
1019 """
1020 package_pins = [None]*len(packages)
1021 def insert_pin(path, name, version, idx):
1022 package_pins[idx] = {
1023 'package_name': name,
1024 # swarming deals with 'root' as '.'
1025 'path': path or '.',
1026 'version': version,
1027 }
1028
1029 by_path = collections.defaultdict(list)
1030 for i, (path, name, version) in enumerate(packages):
1031 # cipd deals with 'root' as ''
1032 if path == '.':
1033 path = ''
1034 by_path[path].append((name, version, i))
1035
1036 pins = client.ensure(
Takuto Ikuta2efc7792019-11-27 14:33:34 +00001037 run_dir,
1038 {
1039 subdir: [(name, vers) for name, vers, _ in pkgs
1040 ] for subdir, pkgs in by_path.items()
1041 },
1042 cache_dir=cipd_cache_dir,
iannuccib58d10d2017-03-18 02:00:25 -07001043 )
1044
Marc-Antoine Ruel04903a32019-10-09 21:09:25 +00001045 for subdir, pin_list in sorted(pins.items()):
iannuccib58d10d2017-03-18 02:00:25 -07001046 this_subdir = by_path[subdir]
1047 for i, (name, version) in enumerate(pin_list):
1048 insert_pin(subdir, name, version, this_subdir[i][2])
1049
Robert Iannucci461b30d2017-12-13 11:34:03 -08001050 assert None not in package_pins, (packages, pins, package_pins)
iannuccib58d10d2017-03-18 02:00:25 -07001051
1052 return package_pins
1053
1054
vadimsh232f5a82017-01-20 19:23:44 -08001055@contextlib.contextmanager
Takuto Ikuta2efc7792019-11-27 14:33:34 +00001056def install_client_and_packages(run_dir, packages, service_url,
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001057 client_package_name, client_version, cache_dir,
1058 isolated_dir):
vadimsh902948e2017-01-20 15:57:32 -08001059 """Bootstraps CIPD client and installs CIPD packages.
iannucci96fcccc2016-08-30 15:52:22 -07001060
vadimsh232f5a82017-01-20 19:23:44 -08001061 Yields CipdClient, stats, client info and pins (as single CipdInfo object).
1062
1063 Pins and the CIPD client info are in the form of:
iannucci96fcccc2016-08-30 15:52:22 -07001064 [
1065 {
1066 "path": path, "package_name": package_name, "version": version,
1067 },
1068 ...
1069 ]
vadimsh902948e2017-01-20 15:57:32 -08001070 (the CIPD client info is a single dictionary instead of a list)
iannucci96fcccc2016-08-30 15:52:22 -07001071
1072 such that they correspond 1:1 to all input package arguments from the command
1073 line. These dictionaries make their all the way back to swarming, where they
1074 become the arguments of CipdPackage.
nodirbe642ff2016-06-09 15:51:51 -07001075
vadimsh902948e2017-01-20 15:57:32 -08001076 If 'packages' list is empty, will bootstrap CIPD client, but won't install
1077 any packages.
1078
1079 The bootstrapped client (regardless whether 'packages' list is empty or not),
vadimsh232f5a82017-01-20 19:23:44 -08001080 will be made available to the task via $PATH.
vadimsh902948e2017-01-20 15:57:32 -08001081
nodirbe642ff2016-06-09 15:51:51 -07001082 Args:
nodir90bc8dc2016-06-15 13:35:21 -07001083 run_dir (str): root of installation.
vadimsh902948e2017-01-20 15:57:32 -08001084 packages: packages to install, list [(path, package_name, version), ...].
nodirbe642ff2016-06-09 15:51:51 -07001085 service_url (str): CIPD server url, e.g.
1086 "https://chrome-infra-packages.appspot.com."
nodir90bc8dc2016-06-15 13:35:21 -07001087 client_package_name (str): CIPD package name of CIPD client.
1088 client_version (str): Version of CIPD client.
nodirbe642ff2016-06-09 15:51:51 -07001089 cache_dir (str): where to keep cache of cipd clients, packages and tags.
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001090 isolated_dir (str): where to download isolated client.
nodirbe642ff2016-06-09 15:51:51 -07001091 """
1092 assert cache_dir
nodir90bc8dc2016-06-15 13:35:21 -07001093
nodirbe642ff2016-06-09 15:51:51 -07001094 start = time.time()
nodirbe642ff2016-06-09 15:51:51 -07001095
vadimsh902948e2017-01-20 15:57:32 -08001096 cache_dir = os.path.abspath(cache_dir)
vadimsh232f5a82017-01-20 19:23:44 -08001097 cipd_cache_dir = os.path.join(cache_dir, 'cache') # tag and instance caches
nodir90bc8dc2016-06-15 13:35:21 -07001098 run_dir = os.path.abspath(run_dir)
vadimsh902948e2017-01-20 15:57:32 -08001099 packages = packages or []
nodir90bc8dc2016-06-15 13:35:21 -07001100
nodirbe642ff2016-06-09 15:51:51 -07001101 get_client_start = time.time()
Takuto Ikuta2efc7792019-11-27 14:33:34 +00001102 client_manager = cipd.get_client(service_url, client_package_name,
1103 client_version, cache_dir)
iannucci96fcccc2016-08-30 15:52:22 -07001104
nodirbe642ff2016-06-09 15:51:51 -07001105 with client_manager as client:
1106 get_client_duration = time.time() - get_client_start
nodir90bc8dc2016-06-15 13:35:21 -07001107
iannuccib58d10d2017-03-18 02:00:25 -07001108 package_pins = []
1109 if packages:
Takuto Ikuta2efc7792019-11-27 14:33:34 +00001110 package_pins = _install_packages(run_dir, cipd_cache_dir, client,
1111 packages)
iannuccib58d10d2017-03-18 02:00:25 -07001112
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001113 # Install isolated client to |isolated_dir|.
Takuto Ikuta02edca22019-11-29 10:04:51 +00001114 _install_packages(isolated_dir, cipd_cache_dir, client,
1115 [('', ISOLATED_PACKAGE, ISOLATED_REVISION)])
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001116
iannuccib58d10d2017-03-18 02:00:25 -07001117 file_path.make_tree_files_read_only(run_dir)
nodir90bc8dc2016-06-15 13:35:21 -07001118
vadimsh232f5a82017-01-20 19:23:44 -08001119 total_duration = time.time() - start
1120 logging.info(
1121 'Installing CIPD client and packages took %d seconds', total_duration)
nodir90bc8dc2016-06-15 13:35:21 -07001122
vadimsh232f5a82017-01-20 19:23:44 -08001123 yield CipdInfo(
1124 client=client,
1125 cache_dir=cipd_cache_dir,
1126 stats={
1127 'duration': total_duration,
1128 'get_client_duration': get_client_duration,
1129 },
1130 pins={
iannuccib58d10d2017-03-18 02:00:25 -07001131 'client_package': {
1132 'package_name': client.package_name,
1133 'version': client.instance_id,
1134 },
vadimsh232f5a82017-01-20 19:23:44 -08001135 'packages': package_pins,
1136 })
nodirbe642ff2016-06-09 15:51:51 -07001137
1138
1139def create_option_parser():
Marc-Antoine Ruelf74cffe2015-07-15 15:21:34 -04001140 parser = logging_utils.OptionParserWithLogging(
nodir55be77b2016-05-03 09:39:57 -07001141 usage='%prog <options> [command to run or extra args]',
maruel@chromium.orgdedbf492013-09-12 20:42:11 +00001142 version=__version__,
1143 log_file=RUN_ISOLATED_LOG_FILE)
maruela9cfd6f2015-09-15 11:03:15 -07001144 parser.add_option(
maruel36a963d2016-04-08 17:15:49 -07001145 '--clean', action='store_true',
1146 help='Cleans the cache, trimming it necessary and remove corrupted items '
1147 'and returns without executing anything; use with -v to know what '
1148 'was done')
1149 parser.add_option(
maruela9cfd6f2015-09-15 11:03:15 -07001150 '--json',
1151 help='dump output metadata to json file. When used, run_isolated returns '
1152 'non-zero only on internal failure')
maruel6be7f9e2015-10-01 12:25:30 -07001153 parser.add_option(
maruel5c9e47b2015-12-18 13:02:30 -08001154 '--hard-timeout', type='float', help='Enforce hard timeout in execution')
maruel6be7f9e2015-10-01 12:25:30 -07001155 parser.add_option(
maruel5c9e47b2015-12-18 13:02:30 -08001156 '--grace-period', type='float',
maruel6be7f9e2015-10-01 12:25:30 -07001157 help='Grace period between SIGTERM and SIGKILL')
bpastene3ae09522016-06-10 17:12:59 -07001158 parser.add_option(
Marc-Antoine Ruel49e347d2017-10-24 16:52:02 -07001159 '--raw-cmd', action='store_true',
1160 help='Ignore the isolated command, use the one supplied at the command '
1161 'line')
1162 parser.add_option(
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -05001163 '--relative-cwd',
1164 help='Ignore the isolated \'relative_cwd\' and use this one instead; '
1165 'requires --raw-cmd')
1166 parser.add_option(
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -05001167 '--env', default=[], action='append',
1168 help='Environment variables to set for the child process')
1169 parser.add_option(
1170 '--env-prefix', default=[], action='append',
Robert Iannuccibf5f84c2017-11-22 12:56:50 -08001171 help='Specify a VAR=./path/fragment to put in the environment variable '
1172 'before executing the command. The path fragment must be relative '
1173 'to the isolated run directory, and must not contain a `..` token. '
1174 'The path will be made absolute and prepended to the indicated '
1175 '$VAR using the OS\'s path separator. Multiple items for the same '
1176 '$VAR will be prepended in order.')
1177 parser.add_option(
bpastene3ae09522016-06-10 17:12:59 -07001178 '--bot-file',
1179 help='Path to a file describing the state of the host. The content is '
1180 'defined by on_before_task() in bot_config.')
aludwin7556e0c2016-10-26 08:46:10 -07001181 parser.add_option(
vadimsh9c54b2c2017-07-25 14:08:29 -07001182 '--switch-to-account',
1183 help='If given, switches LUCI_CONTEXT to given logical service account '
1184 '(e.g. "task" or "system") before launching the isolated process.')
1185 parser.add_option(
aludwin0a8e17d2016-10-27 15:57:39 -07001186 '--output', action='append',
1187 help='Specifies an output to return. If no outputs are specified, all '
1188 'files located in $(ISOLATED_OUTDIR) will be returned; '
1189 'otherwise, outputs in both $(ISOLATED_OUTDIR) and those '
1190 'specified by --output option (there can be multiple) will be '
1191 'returned. Note that if a file in OUT_DIR has the same path '
1192 'as an --output option, the --output version will be returned.')
1193 parser.add_option(
aludwin7556e0c2016-10-26 08:46:10 -07001194 '-a', '--argsfile',
1195 # This is actually handled in parse_args; it's included here purely so it
1196 # can make it into the help text.
1197 help='Specify a file containing a JSON array of arguments to this '
1198 'script. If --argsfile is provided, no other argument may be '
1199 'provided on the command line.')
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001200
1201 group = optparse.OptionGroup(parser, 'Data source')
1202 group.add_option(
Marc-Antoine Ruel185ded42015-01-28 20:49:18 -05001203 '-s', '--isolated',
nodir55be77b2016-05-03 09:39:57 -07001204 help='Hash of the .isolated to grab from the isolate server.')
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001205 isolateserver.add_isolate_server_options(group)
1206 parser.add_option_group(group)
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00001207
Marc-Antoine Ruela57d7db2014-10-15 20:31:19 -04001208 isolateserver.add_cache_options(parser)
nodirbe642ff2016-06-09 15:51:51 -07001209
1210 cipd.add_cipd_options(parser)
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001211
1212 group = optparse.OptionGroup(parser, 'Named caches')
1213 group.add_option(
1214 '--named-cache',
1215 dest='named_caches',
1216 action='append',
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001217 nargs=3,
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001218 default=[],
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001219 help='A named cache to request. Accepts 3 arguments: name, path, hint. '
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001220 'name identifies the cache, must match regex [a-z0-9_]{1,4096}. '
1221 'path is a path relative to the run dir where the cache directory '
1222 'must be put to. '
1223 'This option can be specified more than once.')
1224 group.add_option(
1225 '--named-cache-root', default='named_caches',
1226 help='Cache root directory. Default=%default')
1227 parser.add_option_group(group)
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00001228
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001229 group = optparse.OptionGroup(parser, 'Process containment')
1230 parser.add_option(
1231 '--lower-priority', action='store_true',
1232 help='Lowers the child process priority')
1233 parser.add_option(
1234 '--containment-type', choices=('NONE', 'AUTO', 'JOB_OBJECT'),
1235 default='NONE',
1236 help='Type of container to use')
1237 parser.add_option(
1238 '--limit-processes', type='int', default=0,
1239 help='Maximum number of active processes in the containment')
1240 parser.add_option(
1241 '--limit-total-committed-memory', type='int', default=0,
1242 help='Maximum sum of committed memory in the containment')
1243 parser.add_option_group(group)
1244
1245 group = optparse.OptionGroup(parser, 'Debugging')
1246 group.add_option(
Kenneth Russell61d42352014-09-15 11:41:16 -07001247 '--leak-temp-dir',
1248 action='store_true',
nodirbe642ff2016-06-09 15:51:51 -07001249 help='Deliberately leak isolate\'s temp dir for later examination. '
1250 'Default: %default')
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001251 group.add_option(
marueleb5fbee2015-09-17 13:01:36 -07001252 '--root-dir', help='Use a directory instead of a random one')
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001253 parser.add_option_group(group)
Kenneth Russell61d42352014-09-15 11:41:16 -07001254
Vadim Shtayurae34e13a2014-02-02 11:23:26 -08001255 auth.add_auth_options(parser)
nodirbe642ff2016-06-09 15:51:51 -07001256
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001257 parser.set_defaults(cache='cache', cipd_cache='cipd_cache')
nodirbe642ff2016-06-09 15:51:51 -07001258 return parser
1259
1260
Marc-Antoine Ruel49f9f8d2018-05-24 15:57:06 -04001261def process_named_cache_options(parser, options, time_fn=None):
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001262 """Validates named cache options and returns a CacheManager."""
1263 if options.named_caches and not options.named_cache_root:
1264 parser.error('--named-cache is specified, but --named-cache-root is empty')
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001265 for name, path, hint in options.named_caches:
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001266 if not CACHE_NAME_RE.match(name):
1267 parser.error(
1268 'cache name %r does not match %r' % (name, CACHE_NAME_RE.pattern))
1269 if not path:
1270 parser.error('cache path cannot be empty')
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001271 try:
1272 long(hint)
1273 except ValueError:
1274 parser.error('cache hint must be a number')
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001275 if options.named_cache_root:
1276 # Make these configurable later if there is use case but for now it's fairly
1277 # safe values.
1278 # In practice, a fair chunk of bots are already recycled on a daily schedule
1279 # so this code doesn't have any effect to them, unless they are preloaded
1280 # with a really old cache.
1281 policies = local_caching.CachePolicies(
1282 # 1TiB.
1283 max_cache_size=1024*1024*1024*1024,
1284 min_free_space=options.min_free_space,
1285 max_items=50,
Marc-Antoine Ruel5d7606b2018-06-15 19:06:12 +00001286 max_age_secs=MAX_AGE_SECS)
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001287 root_dir = six.text_type(os.path.abspath(options.named_cache_root))
Marc-Antoine Ruel49f9f8d2018-05-24 15:57:06 -04001288 return local_caching.NamedCache(root_dir, policies, time_fn=time_fn)
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001289 return None
1290
1291
aludwin7556e0c2016-10-26 08:46:10 -07001292def parse_args(args):
1293 # Create a fake mini-parser just to get out the "-a" command. Note that
1294 # it's not documented here; instead, it's documented in create_option_parser
1295 # even though that parser will never actually get to parse it. This is
1296 # because --argsfile is exclusive with all other options and arguments.
1297 file_argparse = argparse.ArgumentParser(add_help=False)
1298 file_argparse.add_argument('-a', '--argsfile')
1299 (file_args, nonfile_args) = file_argparse.parse_known_args(args)
1300 if file_args.argsfile:
1301 if nonfile_args:
1302 file_argparse.error('Can\'t specify --argsfile with'
1303 'any other arguments (%s)' % nonfile_args)
1304 try:
1305 with open(file_args.argsfile, 'r') as f:
1306 args = json.load(f)
1307 except (IOError, OSError, ValueError) as e:
1308 # We don't need to error out here - "args" is now empty,
1309 # so the call below to parser.parse_args(args) will fail
1310 # and print the full help text.
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +00001311 print('Couldn\'t read arguments: %s' % e, file=sys.stderr)
aludwin7556e0c2016-10-26 08:46:10 -07001312
1313 # Even if we failed to read the args, just call the normal parser now since it
1314 # will print the correct help message.
nodirbe642ff2016-06-09 15:51:51 -07001315 parser = create_option_parser()
Marc-Antoine Ruel90c98162013-12-18 15:11:57 -05001316 options, args = parser.parse_args(args)
aludwin7556e0c2016-10-26 08:46:10 -07001317 return (parser, options, args)
1318
1319
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001320def _calc_named_cache_hint(named_cache, named_caches):
1321 """Returns the expected size of the missing named caches."""
1322 present = named_cache.available
1323 size = 0
1324 for name, _, hint in named_caches:
1325 if name not in present:
1326 hint = long(hint)
1327 if hint > 0:
1328 size += hint
1329 return size
1330
1331
aludwin7556e0c2016-10-26 08:46:10 -07001332def main(args):
Marc-Antoine Ruelee6ca622017-11-29 11:19:16 -05001333 # Warning: when --argsfile is used, the strings are unicode instances, when
1334 # parsed normally, the strings are str instances.
aludwin7556e0c2016-10-26 08:46:10 -07001335 (parser, options, args) = parse_args(args)
maruel36a963d2016-04-08 17:15:49 -07001336
Marc-Antoine Ruel5028ba22017-08-25 17:37:51 -04001337 if not file_path.enable_symlink():
Marc-Antoine Ruel5a024272019-01-15 20:11:16 +00001338 logging.warning('Symlink support is not enabled')
Marc-Antoine Ruel5028ba22017-08-25 17:37:51 -04001339
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001340 named_cache = process_named_cache_options(parser, options)
Marc-Antoine Ruel0d8b0f62018-09-10 14:40:35 +00001341 # hint is 0 if there's no named cache.
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001342 hint = _calc_named_cache_hint(named_cache, options.named_caches)
1343 if hint:
1344 # Increase the --min-free-space value by the hint, and recreate the
1345 # NamedCache instance so it gets the updated CachePolicy.
1346 options.min_free_space += hint
1347 named_cache = process_named_cache_options(parser, options)
1348
Takuto Ikuta5c59a842020-01-24 03:05:24 +00001349 # TODO(crbug.com/932396): Remove this.
1350 use_go_isolated = (
1351 options.cipd_enabled and
Takuto Ikuta64a9c2c2020-02-06 06:10:07 +00001352 # TODO(crbug.com/1045281): windows other than win10 has flaky connection
1353 # issue.
1354 (sys.platform != 'win32' or platform.release() == '10'))
Takuto Ikuta5c59a842020-01-24 03:05:24 +00001355
Marc-Antoine Ruel7139d912018-06-15 20:04:42 +00001356 # TODO(maruel): CIPD caches should be defined at an higher level here too, so
1357 # they can be cleaned the same way.
Takuto Ikuta5c59a842020-01-24 03:05:24 +00001358 if use_go_isolated:
Takuto Ikuta00cf8fc2020-01-14 01:36:00 +00001359 isolate_cache = None
1360 else:
1361 isolate_cache = isolateserver.process_cache_options(options, trim=False)
1362
Marc-Antoine Ruel7139d912018-06-15 20:04:42 +00001363 caches = []
1364 if isolate_cache:
1365 caches.append(isolate_cache)
1366 if named_cache:
1367 caches.append(named_cache)
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001368 root = caches[0].cache_dir if caches else six.text_type(os.getcwd())
maruel36a963d2016-04-08 17:15:49 -07001369 if options.clean:
1370 if options.isolated:
1371 parser.error('Can\'t use --isolated with --clean.')
1372 if options.isolate_server:
1373 parser.error('Can\'t use --isolate-server with --clean.')
1374 if options.json:
1375 parser.error('Can\'t use --json with --clean.')
nodirf33b8d62016-10-26 22:34:58 -07001376 if options.named_caches:
1377 parser.error('Can\t use --named-cache with --clean.')
Marc-Antoine Ruel7139d912018-06-15 20:04:42 +00001378 # Trim first, then clean.
1379 local_caching.trim_caches(
1380 caches,
1381 root,
1382 min_free_space=options.min_free_space,
1383 max_age_secs=MAX_AGE_SECS)
1384 for c in caches:
Marc-Antoine Ruel87fc2222018-06-18 13:09:24 +00001385 c.cleanup()
maruel36a963d2016-04-08 17:15:49 -07001386 return 0
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001387
1388 # Trim must still be done for the following case:
1389 # - named-cache was used
1390 # - some entries, with a large hint, where missing
1391 # - --min-free-space was increased accordingly, thus trimming is needed
1392 # Otherwise, this will have no effect, as bot_main calls run_isolated with
1393 # --clean after each task.
1394 if hint:
1395 logging.info('Additional trimming of %d bytes', hint)
Marc-Antoine Ruel0d8b0f62018-09-10 14:40:35 +00001396 local_caching.trim_caches(
1397 caches,
1398 root,
1399 min_free_space=options.min_free_space,
1400 max_age_secs=MAX_AGE_SECS)
maruel36a963d2016-04-08 17:15:49 -07001401
nodir55be77b2016-05-03 09:39:57 -07001402 if not options.isolated and not args:
1403 parser.error('--isolated or command to run is required.')
1404
Vadim Shtayura5d1efce2014-02-04 10:55:43 -08001405 auth.process_auth_options(parser, options)
nodir55be77b2016-05-03 09:39:57 -07001406
1407 isolateserver.process_isolate_server_options(
Marc-Antoine Ruel5028ba22017-08-25 17:37:51 -04001408 parser, options, True, False)
nodir55be77b2016-05-03 09:39:57 -07001409 if not options.isolate_server:
1410 if options.isolated:
1411 parser.error('--isolated requires --isolate-server')
1412 if ISOLATED_OUTDIR_PARAMETER in args:
1413 parser.error(
1414 '%s in args requires --isolate-server' % ISOLATED_OUTDIR_PARAMETER)
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00001415
nodir90bc8dc2016-06-15 13:35:21 -07001416 if options.root_dir:
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001417 options.root_dir = six.text_type(os.path.abspath(options.root_dir))
maruel12e30012015-10-09 11:55:35 -07001418 if options.json:
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001419 options.json = six.text_type(os.path.abspath(options.json))
nodir55be77b2016-05-03 09:39:57 -07001420
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -05001421 if any('=' not in i for i in options.env):
1422 parser.error(
1423 '--env required key=value form. value can be skipped to delete '
1424 'the variable')
Marc-Antoine Ruel7a68f712017-12-01 18:45:18 -05001425 options.env = dict(i.split('=', 1) for i in options.env)
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -05001426
1427 prefixes = {}
1428 cwd = os.path.realpath(os.getcwd())
1429 for item in options.env_prefix:
1430 if '=' not in item:
1431 parser.error(
1432 '--env-prefix %r is malformed, must be in the form `VAR=./path`'
1433 % item)
Marc-Antoine Ruel7a68f712017-12-01 18:45:18 -05001434 key, opath = item.split('=', 1)
Marc-Antoine Ruel19dd8872017-11-28 18:33:39 -05001435 if os.path.isabs(opath):
1436 parser.error('--env-prefix %r path is bad, must be relative.' % opath)
1437 opath = os.path.normpath(opath)
1438 if not os.path.realpath(os.path.join(cwd, opath)).startswith(cwd):
1439 parser.error(
1440 '--env-prefix %r path is bad, must be relative and not contain `..`.'
1441 % opath)
1442 prefixes.setdefault(key, []).append(opath)
1443 options.env_prefix = prefixes
Robert Iannuccibf5f84c2017-11-22 12:56:50 -08001444
nodirbe642ff2016-06-09 15:51:51 -07001445 cipd.validate_cipd_options(parser, options)
1446
vadimsh232f5a82017-01-20 19:23:44 -08001447 install_packages_fn = noop_install_packages
vadimsh902948e2017-01-20 15:57:32 -08001448 if options.cipd_enabled:
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001449 install_packages_fn = (
1450 lambda run_dir, isolated_dir: install_client_and_packages(
vadimsh902948e2017-01-20 15:57:32 -08001451 run_dir, cipd.parse_package_args(options.cipd_packages),
1452 options.cipd_server, options.cipd_client_package,
Takuto Ikutab7ce0e32019-11-27 23:26:18 +00001453 options.cipd_client_version, cache_dir=options.cipd_cache,
1454 isolated_dir=isolated_dir))
nodirbe642ff2016-06-09 15:51:51 -07001455
nodird6160682017-02-02 13:03:35 -08001456 @contextlib.contextmanager
nodir0ae98b32017-05-11 13:21:53 -07001457 def install_named_caches(run_dir):
nodird6160682017-02-02 13:03:35 -08001458 # WARNING: this function depends on "options" variable defined in the outer
1459 # function.
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001460 assert six.text_type(run_dir), repr(run_dir)
Marc-Antoine Ruel49f9f8d2018-05-24 15:57:06 -04001461 assert os.path.isabs(run_dir), run_dir
Takuto Ikuta6e2ff962019-10-29 12:35:27 +00001462 named_caches = [(os.path.join(run_dir, six.text_type(relpath)), name)
1463 for name, relpath, _ in options.named_caches]
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001464 for path, name in named_caches:
Marc-Antoine Ruele79ddbf2018-06-13 18:33:07 +00001465 named_cache.install(path, name)
nodird6160682017-02-02 13:03:35 -08001466 try:
1467 yield
1468 finally:
dnje289d132017-07-07 11:16:44 -07001469 # Uninstall each named cache, returning it to the cache pool. If an
1470 # uninstall fails for a given cache, it will remain in the task's
1471 # temporary space, get cleaned up by the Swarming bot, and be lost.
1472 #
1473 # If the Swarming bot cannot clean up the cache, it will handle it like
1474 # any other bot file that could not be removed.
Marc-Antoine Ruelc7a704b2018-08-29 19:02:23 +00001475 for path, name in reversed(named_caches):
Marc-Antoine Ruele79ddbf2018-06-13 18:33:07 +00001476 try:
Marc-Antoine Ruele9558372018-08-03 03:41:22 +00001477 # uninstall() doesn't trim but does call save() implicitly. Trimming
1478 # *must* be done manually via periodic 'run_isolated.py --clean'.
Marc-Antoine Ruele79ddbf2018-06-13 18:33:07 +00001479 named_cache.uninstall(path, name)
1480 except local_caching.NamedCacheError:
1481 logging.exception('Error while removing named cache %r at %r. '
1482 'The cache will be lost.', path, name)
nodirf33b8d62016-10-26 22:34:58 -07001483
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001484 extra_args = []
1485 command = []
1486 if options.raw_cmd:
1487 command = args
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -05001488 if options.relative_cwd:
1489 a = os.path.normpath(os.path.abspath(options.relative_cwd))
1490 if not a.startswith(os.getcwd()):
1491 parser.error(
1492 '--relative-cwd must not try to escape the working directory')
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001493 else:
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -05001494 if options.relative_cwd:
1495 parser.error('--relative-cwd requires --raw-cmd')
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001496 extra_args = args
1497
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001498 containment_type = subprocess42.Containment.NONE
1499 if options.containment_type == 'AUTO':
1500 containment_type = subprocess42.Containment.AUTO
1501 if options.containment_type == 'JOB_OBJECT':
1502 containment_type = subprocess42.Containment.JOB_OBJECT
1503 containment = subprocess42.Containment(
1504 containment_type=containment_type,
1505 limit_processes=options.limit_processes,
1506 limit_total_committed_memory=options.limit_total_committed_memory)
1507
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001508 data = TaskData(
1509 command=command,
Marc-Antoine Ruel95068cf2017-12-07 21:35:05 -05001510 relative_cwd=options.relative_cwd,
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001511 extra_args=extra_args,
1512 isolated_hash=options.isolated,
1513 storage=None,
1514 isolate_cache=isolate_cache,
1515 outputs=options.output,
1516 install_named_caches=install_named_caches,
1517 leak_temp_dir=options.leak_temp_dir,
1518 root_dir=_to_unicode(options.root_dir),
1519 hard_timeout=options.hard_timeout,
1520 grace_period=options.grace_period,
1521 bot_file=options.bot_file,
1522 switch_to_account=options.switch_to_account,
1523 install_packages_fn=install_packages_fn,
Takuto Ikuta5c59a842020-01-24 03:05:24 +00001524 use_go_isolated=use_go_isolated,
Takuto Ikuta10cae642020-01-08 08:12:07 +00001525 go_cache_dir=options.cache,
Takuto Ikuta879788c2020-01-10 08:00:26 +00001526 go_cache_policies=local_caching.CachePolicies(
1527 max_cache_size=options.max_cache_size,
1528 min_free_space=options.min_free_space,
1529 max_items=options.max_items,
1530 max_age_secs=None,
1531 ),
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001532 env=options.env,
Marc-Antoine Ruel03c6fd12019-04-30 12:12:55 +00001533 env_prefix=options.env_prefix,
Marc-Antoine Ruel1b65f4e2019-05-02 21:56:58 +00001534 lower_priority=bool(options.lower_priority),
1535 containment=containment)
nodirbe642ff2016-06-09 15:51:51 -07001536 try:
nodir90bc8dc2016-06-15 13:35:21 -07001537 if options.isolate_server:
Marc-Antoine Ruelb8513132018-11-20 19:48:53 +00001538 server_ref = isolate_storage.ServerRef(
nodir90bc8dc2016-06-15 13:35:21 -07001539 options.isolate_server, options.namespace)
Marc-Antoine Ruelb8513132018-11-20 19:48:53 +00001540 storage = isolateserver.get_storage(server_ref)
nodir90bc8dc2016-06-15 13:35:21 -07001541 with storage:
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001542 data = data._replace(storage=storage)
nodirf33b8d62016-10-26 22:34:58 -07001543 # Hashing schemes used by |storage| and |isolate_cache| MUST match.
Marc-Antoine Ruelb8513132018-11-20 19:48:53 +00001544 assert storage.server_ref.hash_algo == server_ref.hash_algo
Marc-Antoine Ruel7de52592017-12-07 10:41:12 -05001545 return run_tha_test(data, options.json)
1546 return run_tha_test(data, options.json)
Marc-Antoine Ruel8b11dbd2018-05-18 14:31:22 -04001547 except (
1548 cipd.Error,
1549 local_caching.NamedCacheError,
Marc-Antoine Ruelb6e9e232018-11-20 00:12:33 +00001550 local_caching.NoMoreSpace) as ex:
Marc-Antoine Ruelf899c482019-10-10 23:32:06 +00001551 print(ex.message, file=sys.stderr)
nodirbe642ff2016-06-09 15:51:51 -07001552 return 1
maruel@chromium.org9c72d4e2012-09-28 19:20:25 +00001553
1554
1555if __name__ == '__main__':
maruel8e4e40c2016-05-30 06:21:07 -07001556 subprocess42.inhibit_os_error_reporting()
csharp@chromium.orgbfb98742013-03-26 20:28:36 +00001557 # Ensure that we are always running with the correct encoding.
vadimsh@chromium.orga4326472013-08-24 02:05:41 +00001558 fix_encoding.fix_encoding()
Marc-Antoine Ruel90c98162013-12-18 15:11:57 -05001559 sys.exit(main(sys.argv[1:]))