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
|
#!/usr/bin/env python3
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Run a pinned gsutil."""
import argparse
import base64
import contextlib
import hashlib
import json
import os
import shutil
import subprocess
import sys
import tempfile
import urllib.request
import gclient_utils
GSUTIL_URL = 'https://storage.googleapis.com/pub/'
API_URL = 'https://www.googleapis.com/storage/v1/b/pub/o/'
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
DEFAULT_BIN_DIR = os.path.join(THIS_DIR, 'external_bin', 'gsutil')
IS_WINDOWS = os.name == 'nt'
VERSION = '4.68'
# Google OAuth Context required by gsutil.
LUCI_AUTH_SCOPES = [
'https://www.googleapis.com/auth/devstorage.full_control',
'https://www.googleapis.com/auth/userinfo.email',
]
# Prefer LUCI auth mechanism over .boto config.
PREFER_LUCI_AUTH = True
# Platforms unsupported by luci-auth.
LUCI_AUTH_UNSUPPORTED_PLATFORMS = ['aix', 'zos']
class InvalidGsutilError(Exception):
pass
def download_gsutil(version, target_dir):
"""Downloads gsutil into the target_dir."""
filename = 'gsutil_%s.zip' % version
target_filename = os.path.join(target_dir, filename)
# Get md5 hash of the remote file from the metadata.
metadata_url = '%s%s' % (API_URL, filename)
metadata = json.load(urllib.request.urlopen(metadata_url))
remote_md5 = base64.b64decode(metadata['md5Hash'])
# Calculate the md5 hash of the local file.
def calc_local_md5():
assert os.path.exists(target_filename)
md5 = hashlib.md5()
with open(target_filename, 'rb') as f:
while chunk := f.read(1024 * 1024):
md5.update(chunk)
return md5.digest()
# Use the existing file if it has the correct md5 hash.
if os.path.exists(target_filename):
if calc_local_md5() == remote_md5:
return target_filename
os.remove(target_filename)
# Download the file.
url = '%s%s' % (GSUTIL_URL, filename)
urllib.request.urlretrieve(url, target_filename)
# Check if the file was downloaded correctly.
if calc_local_md5() != remote_md5:
raise InvalidGsutilError(f'Downloaded gsutil from {url} has wrong md5')
return target_filename
@contextlib.contextmanager
def temporary_directory(base):
tmpdir = tempfile.mkdtemp(prefix='t', dir=base)
try:
yield tmpdir
finally:
if os.path.isdir(tmpdir):
shutil.rmtree(tmpdir)
def ensure_gsutil(version, target, clean):
bin_dir = os.path.join(target, 'gsutil_%s' % version)
gsutil_bin = os.path.join(bin_dir, 'gsutil', 'gsutil')
gsutil_flag = os.path.join(bin_dir, 'gsutil', 'install.flag')
# We assume that if gsutil_flag exists, then we have a good version
# of the gsutil package.
if not clean and os.path.isfile(gsutil_flag):
# Everything is awesome! we're all done here.
return gsutil_bin
if not os.path.exists(target):
os.makedirs(target, exist_ok=True)
import lockfile
import zipfile
with lockfile.lock(bin_dir, timeout=30):
# Check if gsutil is ready (another process may have had lock).
if not clean and os.path.isfile(gsutil_flag):
return gsutil_bin
with temporary_directory(target) as instance_dir:
download_dir = os.path.join(instance_dir, 'd')
target_zip_filename = gclient_utils.exponential_backoff_retry(
lambda: download_gsutil(version, instance_dir),
name='download_gsutil')
with zipfile.ZipFile(target_zip_filename, 'r') as target_zip:
target_zip.extractall(download_dir)
# Clean up if we're redownloading a corrupted gsutil.
cleanup_path = os.path.join(instance_dir, 'clean')
try:
os.rename(bin_dir, cleanup_path)
except (OSError, IOError):
cleanup_path = None
if cleanup_path:
shutil.rmtree(cleanup_path)
shutil.move(download_dir, bin_dir)
# Final check that the gsutil bin exists. This should never fail.
if not os.path.isfile(gsutil_bin):
raise InvalidGsutilError()
# Drop a flag file.
with open(gsutil_flag, 'w') as f:
f.write('This flag file is dropped by gsutil.py')
return gsutil_bin
def _is_luci_context():
"""Returns True if the script is run within luci-context"""
if os.getenv('SWARMING_HEADLESS') == '1':
return True
luci_context_env = os.getenv('LUCI_CONTEXT')
if not luci_context_env:
return False
try:
with open(luci_context_env) as f:
luci_context_json = json.load(f)
return 'local_auth' in luci_context_json
except (ValueError, FileNotFoundError):
return False
def _is_luci_auth_supported_platform():
"""Returns True if luci-auth is supported in the current platform."""
return not any(map(sys.platform.startswith,
LUCI_AUTH_UNSUPPORTED_PLATFORMS))
def luci_context(cmd, fallback=True):
"""Helper to call`luci-auth context`."""
p = _luci_auth_cmd('context', wrapped_cmds=cmd)
# If luci-auth is not logged in, fallback to normal execution.
luci_not_logged_in = b'Not logged in.' in p.stderr
if luci_not_logged_in and fallback:
return _run_subprocess(cmd, interactive=True)
if not luci_not_logged_in:
_print_subprocess_result(p)
return p
def luci_login():
"""Helper to run `luci-auth login`."""
# luci-auth requires interactive shell.
return _luci_auth_cmd('login', interactive=True)
def _luci_auth_cmd(luci_cmd, wrapped_cmds=None, interactive=False):
"""Helper to call luci-auth command."""
cmd = ['luci-auth', luci_cmd, '-scopes', ' '.join(LUCI_AUTH_SCOPES)]
if wrapped_cmds:
cmd += ['--'] + wrapped_cmds
return _run_subprocess(cmd, interactive)
def _run_subprocess(cmd, interactive=False, env=None):
"""Wrapper to run the given command within a subprocess."""
kwargs = {'shell': IS_WINDOWS}
if env:
kwargs['env'] = dict(os.environ, **env)
if not interactive:
kwargs['stdout'] = subprocess.PIPE
kwargs['stderr'] = subprocess.PIPE
return subprocess.run(cmd, **kwargs)
def _print_subprocess_result(p):
"""Prints the subprocess result to stdout & stderr."""
if p.stdout:
sys.stdout.buffer.write(p.stdout)
if p.stderr:
sys.stderr.buffer.write(p.stderr)
def get_boto_path():
"""Returns the path to a .boto file if it's present in the default path."""
env_var = os.getenv('BOTO_CONFIG') or os.getenv('AWS_CREDENTIAL_FILE')
if env_var:
return env_var
home_boto = os.path.join(os.path.expanduser('~'), '.boto')
if os.path.isfile(home_boto):
return home_boto
return ""
def run_gsutil(target, args, clean=False):
# Redirect gsutil config calls to luci-auth.
if 'config' in args:
return luci_login().returncode
gsutil_bin = ensure_gsutil(VERSION, target, clean)
args_opt = ['-o', 'GSUtil:software_update_check_period=0']
if sys.platform == 'darwin':
# We are experiencing problems with multiprocessing on MacOS where
# gsutil.py may hang. This behavior is documented in gsutil codebase,
# and recommendation is to set GSUtil:parallel_process_count=1.
# https://github.com/GoogleCloudPlatform/gsutil/blob/06efc9dc23719fab4fd5fadb506d252bbd3fe0dd/gslib/command.py#L1331
# https://github.com/GoogleCloudPlatform/gsutil/issues/1100
args_opt.extend(['-o', 'GSUtil:parallel_process_count=1'])
if sys.platform == 'cygwin':
# This script requires Windows Python, so invoke with depot_tools'
# Python.
def winpath(path):
stdout = subprocess.check_output(['cygpath', '-w', path])
return stdout.strip().decode('utf-8', 'replace')
cmd = ['python.bat', winpath(__file__)]
cmd.extend(args)
sys.exit(subprocess.call(cmd))
assert sys.platform != 'cygwin'
cmd = [
'vpython3', '-vpython-spec',
os.path.join(THIS_DIR, 'gsutil.vpython3'), '--', gsutil_bin
] + args_opt + args
boto_path = get_boto_path()
# Try luci-auth early even if a boto file exists.
if PREFER_LUCI_AUTH and boto_path:
# Skip wrapping commands if luci-auth is already being used or if the
# platform is unsupported by luci-auth.
if _is_luci_context() or not _is_luci_auth_supported_platform():
return _run_subprocess(cmd, interactive=True).returncode
# Wrap gsutil with luci-auth context. If not logged in and boto is
# present don't fallback to normal execution, fallback to normal
# flow below.
p = luci_context(cmd, fallback=False).returncode
if not p:
return p
# When .boto is present, try without additional wrappers and handle specific
# errors.
if boto_path:
# Display a warning about using .boto files.
if PREFER_LUCI_AUTH:
separator = '*' * 80
print(
'\n' + separator + '\n' +
'Warning: You are using a .boto file for authentication, '
'this method is deprecated.\n' + f'({boto_path})\n\n' +
'Next time please run `gsutil.py config` to use luci-auth.\n\n'
+ 'Falling back to .boto authentication method.\n' + separator +
'\n',
file=sys.stderr)
p = _run_subprocess(cmd)
# Notify user that their .boto file might be outdated.
if b'Your credentials are invalid.' in p.stderr:
# Make sure this error message is visible when invoked by gclient
# runhooks
separator = '*' * 80
print(
'\n' + separator + '\n' +
'Warning: You might have an outdated .boto file. If this issue '
'persists after running `gsutil.py config`, try removing your '
'.boto, usually located in your home directory.\n' + separator +
'\n',
file=sys.stderr)
_print_subprocess_result(p)
return p.returncode
# Skip wrapping commands if luci-auth is already being used or if the
# platform is unsupported by luci-auth.
if _is_luci_context() or not _is_luci_auth_supported_platform():
return _run_subprocess(cmd, interactive=True).returncode
# Wrap gsutil with luci-auth context.
return luci_context(cmd).returncode
def parse_args():
bin_dir = os.environ.get('DEPOT_TOOLS_GSUTIL_BIN_DIR', DEFAULT_BIN_DIR)
# Help is disabled as it conflicts with gsutil -h, which controls headers.
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument(
'--clean',
action='store_true',
help='Clear any existing gsutil package, forcing a new download.')
parser.add_argument(
'--target',
default=bin_dir,
help='The target directory to download/store a gsutil version in. '
'(default is %(default)s).')
# These two args exist for backwards-compatibility but are no-ops.
parser.add_argument('--force-version',
default=VERSION,
help='(deprecated, this flag has no effect)')
parser.add_argument('--fallback',
help='(deprecated, this flag has no effect)')
parser.add_argument('args', nargs=argparse.REMAINDER)
args, extras = parser.parse_known_args()
if args.args and args.args[0] == '--':
args.args.pop(0)
if extras:
args.args = extras + args.args
return args
def main():
args = parse_args()
return run_gsutil(args.target, args.args, clean=args.clean)
if __name__ == '__main__':
sys.exit(main())
|