mirrored from https://chromium.googlesource.com/infra/luci/luci-py
-
Notifications
You must be signed in to change notification settings - Fork 36
/
cipd.py
547 lines (469 loc) · 18.6 KB
/
cipd.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# Copyright 2016 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""Fetches CIPD client and installs packages."""
import contextlib
import hashlib
import json
import logging
import optparse
import os
import platform
import re
import shutil
import sys
import tempfile
import time
import urllib.parse
from utils import file_path
from utils import fs
from utils import net
from utils import subprocess42
from utils import tools
import errors
import local_caching
# .exe on Windows.
EXECUTABLE_SUFFIX = '.exe' if sys.platform == 'win32' else ''
_DEFAULT_CIPD_SERVER = 'https://chrome-infra-packages.appspot.com'
_DEFAULT_CIPD_CLIENT_PACKAGE = 'infra/tools/cipd/${platform}'
_DEFAULT_CIPD_CLIENT_VERSION = 'latest'
if sys.platform == 'win32':
def _ensure_batfile(client_path):
base, _ = os.path.splitext(client_path)
with open(base + ".bat", 'w') as f:
f.write('\n'.join([ # python turns \n into CRLF
'@set CIPD="%~dp0cipd.exe"', '@shift', '@%CIPD% %*'
]))
else:
def _ensure_batfile(_client_path):
pass
class Error(Exception):
"""Raised on CIPD errors."""
def add_cipd_options(parser):
group = optparse.OptionGroup(parser, 'CIPD')
group.add_option(
'--cipd-enabled',
help='Enable CIPD client bootstrap. Implied by --cipd-package. Cannot '
'turn this off while specifying --cipd-package',
default=True)
group.add_option(
'--cipd-server',
help='URL of the CIPD server. '
'Only relevant with --cipd-enabled or --cipd-package.',
default=_DEFAULT_CIPD_SERVER)
group.add_option(
'--cipd-client-package',
help='Package name of CIPD client with optional parameters described in '
'--cipd-package help. '
'Only relevant with --cipd-enabled or --cipd-package. '
'Default: "%default"',
default=_DEFAULT_CIPD_CLIENT_PACKAGE)
group.add_option(
'--cipd-client-version',
help='Version of CIPD client. '
'Only relevant with --cipd-enabled or --cipd-package. '
'Default: "%default"',
default=_DEFAULT_CIPD_CLIENT_VERSION)
group.add_option(
'--cipd-package',
dest='cipd_packages',
help='A CIPD package to install. '
'Format is "<path>:<package_name>:<version>". '
'"path" is installation directory relative to run_dir, '
'defaults to ".". '
'"package_name" may have ${platform} parameter: it will be '
'expanded to "<os>-<architecture>". '
'The option can be specified multiple times.',
action='append',
default=[])
group.add_option(
'--cipd-cache',
help='CIPD cache directory, separate from isolate cache. '
'Only relevant with --cipd-enabled or --cipd-package. '
'Default is a path to tempdir. '
'`task_runner.py` always sets this as $bot_dir/cipd_cache '
'if `--cipd-enabled` so it would only be tmpdir during testing'
'scenarios. ',
default='')
parser.add_option_group(group)
def validate_cipd_options(parser, options):
"""Calls parser.error on first found error among cipd options."""
if not options.cipd_enabled:
if options.cipd_packages:
parser.error('Cannot install CIPD packages when --cipd-enable=false')
return
for pkg in options.cipd_packages:
parts = pkg.split(':', 2)
if len(parts) != 3:
parser.error('invalid package "%s": must have at least 2 colons' % pkg)
_path, name, version = parts
if not name:
parser.error('invalid package "%s": package name is not specified' % pkg)
if not version:
parser.error('invalid package "%s": version is not specified' % pkg)
if not options.cipd_server:
parser.error('cipd is enabled, --cipd-server is required')
if not options.cipd_client_package:
parser.error(
'cipd is enabled, --cipd-client-package is required')
if not options.cipd_client_version:
parser.error(
'cipd is enabled, --cipd-client-version is required')
class CipdClient:
"""Installs packages."""
def __init__(self, binary_path, package_name, instance_id, service_url):
"""Initializes CipdClient.
Args:
binary_path (str): path to the CIPD client binary.
package_name (str): the CIPD package name for the client itself.
instance_id (str): the CIPD instance_id for the client itself.
service_url (str): if not None, URL of the CIPD backend that overrides
the default one.
"""
self.binary_path = binary_path
self.package_name = package_name
self.instance_id = instance_id
self.service_url = service_url
def ensure(self,
site_root,
packages,
cache_dir=None,
tmp_dir=None,
timeout=None):
"""Ensures that packages installed in |site_root| equals |packages| set.
Blocking call.
Args:
site_root (str): where to install packages.
packages: dict of subdir -> list of (package_template, version) tuples.
cache_dir (str): if set, cache dir for cipd binary own cache.
Typically contains packages and tags.
tmp_dir (str): if not None, dir for temp files.
timeout (int): if not None, timeout in seconds for this function to run.
Returns:
Pinned packages in the form of {subdir: [(package_name, package_id)]},
which correspond 1:1 with the input packages argument.
Raises:
Error if could not install packages or timed out.
"""
timeoutfn = tools.sliding_timeout(timeout)
logging.info('Installing packages %r into %s', packages, site_root)
ensure_file_handle, ensure_file_path = tempfile.mkstemp(
dir=tmp_dir, prefix='cipd-ensure-file-', suffix='.txt')
json_out_file_handle, json_file_path = tempfile.mkstemp(
dir=tmp_dir, prefix='cipd-ensure-result-', suffix='.json')
os.close(json_out_file_handle)
try:
try:
for subdir, pkgs in sorted(packages.items()):
if '\n' in subdir:
raise Error('Could not install packages; subdir %r contains newline'
% subdir)
os.write(ensure_file_handle, ('@Subdir %s\n' % (subdir,)).encode())
for pkg, version in pkgs:
os.write(ensure_file_handle, ('%s %s\n' % (pkg, version)).encode())
finally:
os.close(ensure_file_handle)
cmd = [
self.binary_path,
'ensure',
'-root',
site_root,
'-ensure-file',
ensure_file_path,
'-verbose', # this is safe because cipd-ensure does not print a lot
'-json-output',
json_file_path,
]
if cache_dir:
cmd += ['-cache-dir', cache_dir]
if self.service_url:
cmd += ['-service-url', self.service_url]
logging.debug('Running %r', cmd)
kwargs = {}
kwargs['encoding'] = 'utf-8'
kwargs['errors'] = 'backslashreplace'
process = subprocess42.Popen(
cmd,
stdout=subprocess42.PIPE,
stderr=subprocess42.PIPE,
universal_newlines=True,
**kwargs)
output = []
for pipe_name, line in process.yield_any_line(timeout=0.1):
to = timeoutfn()
if to is not None and to <= 0:
raise Error(
'Could not install packages; took more than %d seconds' % timeout)
if not pipe_name:
# stdout or stderr was closed, but yield_any_line still may have
# something to yield.
continue
output.append(line)
if pipe_name == 'stderr':
logging.debug('cipd client: %s', line)
else:
logging.info('cipd client: %s', line)
exit_code = process.wait(timeout=timeoutfn())
ensure_result = {}
if os.path.exists(json_file_path):
with open(json_file_path) as jfile:
result_json = json.load(jfile)
ensure_result = result_json['result']
status = result_json.get('error_code')
if status in ('auth_error', 'bad_argument_error',
'invalid_version_error', 'stale_error',
'hash_mismatch_error'):
details = result_json.get('error_details')
cipd_package = cipd_version = cipd_subdir = None
if details:
cipd_package = details.get('package')
cipd_version = details.get('version')
cipd_subdir = details.get('subdir')
raise errors.NonRecoverableCipdException(status, cipd_package,
cipd_subdir, cipd_version)
if exit_code != 0:
raise Error(
'Could not install packages; exit code %d\noutput:%s' % (
exit_code, '\n'.join(output)))
return {
subdir: [(x['package'], x['instance_id']) for x in pins]
for subdir, pins in ensure_result.items()
}
finally:
fs.remove(ensure_file_path)
fs.remove(json_file_path)
def get_platform():
"""Returns ${platform} parameter value."""
# Specifically known OSes. See also os_utilities.get_cipd_os().
os_name = {
'darwin': 'mac',
'linux': 'linux',
'win32': 'windows',
'sunos5': 'solaris',
}.get(sys.platform)
if not os_name:
os_name = sys.platform.lower().rstrip('0123456789.-_')
# Use a specific architecture if told to. Happens on Swarming bots.
arch_override = os.getenv('CIPD_ARCHITECTURE')
if arch_override:
return '%s-%s' % (os_name, arch_override)
python_bits = 64 if sys.maxsize > 2**32 else 32
# Normalize machine architecture. Some architectures are identical or
# compatible with others. We collapse them into one.
arch = platform.machine().lower()
if arch in ('arm64', 'aarch64'):
arch = 'arm64'
elif arch.startswith('armv') and arch.endswith('l'):
# 32-bit ARM: Standardize on ARM v6 baseline.
arch = 'armv6l'
elif arch in ('amd64', 'x86_64'):
arch = 'amd64'
elif arch in ('i386', 'i686', 'x86'):
arch = '386'
elif arch == 'i86pc': # Solaris doesn't distinguish between 64 and 32-bit.
arch = '386' if python_bits == 32 else 'amd64'
elif arch == 'evbarm': # NetBSD's name for ARM, both 32 and 64-bit
arch = 'armv6l' if python_bits == 32 else 'arm64'
elif arch == 'powerpc64': # OpenBSD's name for ppc64
arch = 'ppc64'
elif arch == 'loongarch64':
arch = 'loong64'
elif not arch and os_name == 'windows':
# On some 32bit Windows7, platform.machine() returns None.
# Fallback to 386 in that case.
logging.warning('platform.machine() returns None. '
'Use \'386\' as CPU architecture.')
arch = '386'
# If using a 32-bit python on x86_64 kernel on Linux, "downgrade" the arch to
# 32-bit too (this is the bitness of the userland).
if os_name == 'linux' and arch == 'amd64' and python_bits == 32:
arch = '386'
return '%s-%s' % (os_name, arch)
def _check_response(res, fmt, *args):
"""Raises Error if response is bad."""
if not res:
raise Error('%s: no response' % (fmt % args))
if res.get('status') != 'SUCCESS':
raise Error('%s: %s' % (fmt % args, res.get('error_message') or
'status is %s' % res.get('status')))
def resolve_version(cipd_server, package_name, version, timeout=None):
"""Resolves a package instance version (e.g. a tag) to an instance id."""
url = '%s/_ah/api/repo/v1/instance/resolve?%s' % (
cipd_server,
urllib.parse.urlencode({
'package_name': package_name,
'version': version,
}))
res = net.url_read_json(url, timeout=timeout)
_check_response(res, 'Could not resolve version %s:%s', package_name, version)
instance_id = res.get('instance_id')
if not instance_id:
raise Error('Invalid resolveVersion response: no instance id')
return instance_id
def get_client_fetch_url(service_url, package_name, instance_id, timeout=None):
"""Returns a fetch URL of CIPD client binary contents.
Raises:
Error if cannot retrieve fetch URL.
"""
# Fetch the URL of the binary from CIPD backend.
url = '%s/_ah/api/repo/v1/client?%s' % (service_url,
urllib.parse.urlencode({
'package_name': package_name,
'instance_id': instance_id,
}))
res = net.url_read_json(url, timeout=timeout)
_check_response(res, 'Could not fetch CIPD client %s:%s', package_name,
instance_id)
fetch_url = res.get('client_binary', {}).get('fetch_url')
if not fetch_url:
raise Error('Invalid fetchClientBinary response: no fetch_url')
return fetch_url
def _fetch_cipd_client(disk_cache, instance_id, fetch_url, timeoutfn):
"""Fetches cipd binary to |disk_cache|.
Retries requests with exponential back-off.
Raises:
Error if could not fetch content.
"""
sleep_time = 1
for attempt in range(5):
if attempt > 0:
if timeoutfn() is not None and timeoutfn() < sleep_time:
raise Error('Could not fetch CIPD client: timeout')
logging.warning('Will retry to fetch CIPD client in %ds', sleep_time)
time.sleep(sleep_time)
sleep_time *= 2
try:
res = net.url_open(fetch_url, timeout=timeoutfn())
if res:
disk_cache.write(instance_id, res.iter_content(64 * 1024))
return
except net.TimeoutError as ex:
raise Error('Could not fetch CIPD client: %s' % ex)
except net.NetError as ex:
logging.warning('Could not fetch CIPD client on attempt #%d: %s',
attempt + 1, ex)
raise Error('Could not fetch CIPD client after 5 retries')
def _is_valid_hash(value):
"""Returns if the value is a valid hash for the corresponding algorithm."""
size = 2 * hashlib.sha1().digest_size
return bool(re.match(r'^[a-fA-F0-9]{%d}$' % size, value))
@contextlib.contextmanager
def get_client(cache_dir,
service_url=_DEFAULT_CIPD_SERVER,
package_template=_DEFAULT_CIPD_CLIENT_PACKAGE,
version=_DEFAULT_CIPD_CLIENT_VERSION,
timeout=None):
"""Returns a context manager that yields a CipdClient. A blocking call.
Upon exit from the context manager, the client binary may be deleted
(if the internal cache is full).
Args:
service_url (str): URL of the CIPD backend.
package_template (str): package name template of the CIPD client.
version (str): version of CIPD client package.
cache_dir: directory to store instance cache, version cache
and a hardlink to the client binary.
timeout (int): if not None, timeout in seconds for this function.
Yields:
CipdClient.
Raises:
Error if CIPD client version cannot be resolved or client cannot be fetched.
"""
timeoutfn = tools.sliding_timeout(timeout)
# Package names are always lower case.
# TODO(maruel): Assert instead?
package_name = package_template.lower().replace('${platform}', get_platform())
# Resolve version to instance id.
# Is it an instance id already? They look like HEX SHA1.
if _is_valid_hash(version):
instance_id = version
elif ':' in version: # it's an immutable tag, cache the resolved version
# version_cache is {hash(package_name, tag) -> instance id} mapping.
# It does not take a lot of disk space.
version_cache = local_caching.DiskContentAddressedCache(
os.path.join(cache_dir, 'versions'),
local_caching.CachePolicies(
# 1GiB.
max_cache_size=1024 * 1024 * 1024,
min_free_space=0,
max_items=300,
# 3 weeks.
max_age_secs=21 * 24 * 60 * 60),
trim=True)
# Convert (package_name, version) to a string that may be used as a
# filename in disk cache by hashing it.
version_digest = hashlib.sha256(
('%s\n%s' % (package_name, version)).encode()).hexdigest()
try:
with version_cache.getfileobj(version_digest) as f:
instance_id = f.read().decode()
logging.info("instance_id %s", instance_id)
except local_caching.CacheMiss:
logging.info("version_cache miss for %s", version_digest)
instance_id = ''
if not instance_id:
instance_id = resolve_version(
service_url, package_name, version, timeout=timeoutfn())
version_cache.write(version_digest, [instance_id.encode()])
version_cache.trim()
else: # it's a ref, hit the backend
instance_id = resolve_version(
service_url, package_name, version, timeout=timeoutfn())
# instance_cache is {instance_id -> client binary} mapping.
# It is bounded by 5 client versions.
instance_cache = local_caching.DiskContentAddressedCache(
os.path.join(cache_dir, 'clients'),
local_caching.CachePolicies(
# 1GiB.
max_cache_size=1024 * 1024 * 1024,
min_free_space=0,
max_items=10,
# 3 weeks.
max_age_secs=21 * 24 * 60 * 60),
trim=True)
if not instance_cache.touch(instance_id, local_caching.UNKNOWN_FILE_SIZE):
logging.info('Fetching CIPD client %s:%s', package_name, instance_id)
fetch_url = get_client_fetch_url(
service_url, package_name, instance_id, timeout=timeoutfn())
_fetch_cipd_client(instance_cache, instance_id, fetch_url, timeoutfn)
# A single host can run multiple swarming bots, but they cannot share same
# root bot directory. Thus, it is safe to use the same name for the binary.
cipd_bin_dir = os.path.join(cache_dir, 'bin')
binary_path = os.path.join(cipd_bin_dir, 'cipd' + EXECUTABLE_SUFFIX)
if fs.isfile(binary_path):
# TODO(maruel): Do not unconditionally remove the binary.
try:
file_path.remove(binary_path)
except WindowsError: # pylint: disable=undefined-variable
# See whether cipd.exe is running for crbug.com/1028781
ret = subprocess42.call(['tasklist.exe'])
if ret:
logging.error('tasklist returns non-zero: %d', ret)
raise
else:
file_path.ensure_tree(cipd_bin_dir)
with instance_cache.getfileobj(instance_id) as f, fs.open(binary_path,
'wb') as dest:
shutil.copyfileobj(f, dest)
fs.chmod(binary_path, 0o511) # -r-x--x--x
_ensure_batfile(binary_path)
yield CipdClient(
binary_path,
package_name=package_name,
instance_id=instance_id,
service_url=service_url)
instance_cache.trim()
def parse_package_args(packages):
"""Parses --cipd-package arguments.
Assumes |packages| were validated by validate_cipd_options.
Returns:
A list of [(path, package_name, version), ...]
"""
result = []
for pkg in packages:
path, name, version = pkg.split(':', 2)
if not name:
raise Error('Invalid package "%s": package name is not specified' % pkg)
if not version:
raise Error('Invalid package "%s": version is not specified' % pkg)
result.append((path, name, version))
return result