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
|
# Copyright (C) 2017 Codethink Limited
# Copyright (C) 2018 Bloomberg Finance LP
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
# Authors:
# Sam Thursfield <sam.thursfield@codethink.co.uk>
# Chandan Singh <csingh43@bloomberg.net>
"""A source implementation for pulling from Docker Registry instances.
**Usage:**
.. code:: yaml
# Specify the docker source kind
kind: docker
# Specify the registry endpoint, defaults to Docker Hub (optional)
registry-url: https://registry.hub.docker.com
# Image path (required)
image: library/alpine
# Image tag to follow (optional)
track: latest
# Specify the digest of the exact image to use (required)
ref: 6c9f6f68a131ec6381da82f2bff978083ed7f4f7991d931bfa767b7965ebc94b
# Some images are built for multiple platforms. When tracking a tag, we
# will choose which image to use based on these settings. Default values
# are chosen based on the output of `uname -m` and `uname -s`, but you
# can override them.
#architecture: arm64
#os: linux
Note that Docker images may contain device nodes. BuildStream elements cannot
contain device nodes so those will be dropped. Any regular files in the /dev
directory will also be dropped.
"""
import requests
import hashlib
import json
import os
import platform
import shutil
import tarfile
import urllib.parse
from buildstream import Source, SourceError, Consistency
from buildstream.utils import save_file_atomic, sha256sum, link_files
_DOCKER_HUB_URL = 'https://registry.hub.docker.com'
def parse_bearer_authorization_challenge(text):
# Hand-written and probably broken parsing of the Www-Authenticate
# response. I can't find a built-in way to parse this, but I probably
# didn't look hard enough.
if not text.startswith('Bearer '):
raise SourceError("Unexpected Www-Authenticate response: %{}".format(text))
pairs = {}
text = text[len('Bearer '):]
for pair in text.split(','):
key, value = pair.split('=')
pairs[key] = value[1:-1]
return pairs
def default_architecture():
machine = platform.machine()
if machine == 'x86_64':
return 'amd64'
elif machine == 'aarch64':
return 'arm64'
else:
return machine
def default_os():
return platform.system().lower()
# Variant of urllib.parse.urljoin() allowing multiple path components at once.
def urljoin(url, *args):
for arg in args:
if not url.endswith('/'):
url += '/'
url = urllib.parse.urljoin(url, arg.lstrip('/'))
return url
# DockerManifestError
#
# Raised if something goes wrong while querying an image manifest from a remote
# registry.
#
class DockerManifestError(SourceError):
def __init__(self, message, manifest=None):
super(DockerManifestError, self).__init__(message)
self.manifest = manifest
class DockerRegistryV2Client():
def __init__(self, endpoint, api_timeout=3):
self.endpoint = endpoint
self.api_timeout = api_timeout
self.token = None
def _request(self, subpath, extra_headers=None, stream=False, _reauthorized=False):
if not extra_headers:
extra_headers = {}
headers = {
'content-type': 'application/json',
}
headers.update(extra_headers)
if self.token:
headers['Authorization'] = 'Bearer {}'.format(self.token)
url = urljoin(self.endpoint, 'v2', subpath)
response = requests.get(url, headers=headers, stream=stream,
timeout=self.api_timeout)
if response.status_code == requests.codes.UNAUTHORIZED and not _reauthorized:
# This request requires (re)authorization. See:
# https://docs.docker.com/registry/spec/auth/token/
auth_challenge = response.headers['Www-Authenticate']
auth_vars = parse_bearer_authorization_challenge(auth_challenge)
self._auth(auth_vars['realm'], auth_vars['service'], auth_vars['scope'])
return self._request(subpath, extra_headers=extra_headers,
_reauthorized=True)
else:
response.raise_for_status()
return response
def _auth(self, realm, service, scope):
# Respond to an Www-Authenticate challenge by requesting the necessary
# token from the 'realm' (endpoint) that we were given in the challenge.
request_url = "{}?service={}&scope={}".format(realm, service, scope)
response = requests.get(request_url, timeout=self.api_timeout)
response.raise_for_status()
self.token = response.json()['token']
# digest():
#
# Calculate a Docker-compatible digest of an arbitrary string of bytes.
#
# Args:
# content (bytes): Content to hash
#
# Returns:
# (str) A Docker-compatible digest of 'content'
def digest(self, content):
digest_hash = hashlib.sha256()
digest_hash.update(content)
return 'sha256:' + digest_hash.hexdigest()
# manifest():
#
# Fetches the image manifest for a given image from the remote registry.
#
# If this is a "fat" (multiplatform) image, the 'artitecture' and 'os'
# parameters control which of the available images is chosen.
#
# The manifest is returned verbatim, so you need to parse it yourself
# with json.loads() to get at its contents. The verbatim text can be used
# to recalculate the content digest, just encode it and pass to .digest().
# If we returned only the parsed JSON data you wouldn't be able to do this.
#
# Args:
# image_path (str): Relative path to the image, e.g. library/alpine
# reference (str): Either a tag name (such as 'latest') or the content
# digest of an exact version of the image.
# architecture (str): Architecture name (amd64, arm64, etc.)
# os (str): OS name (e.g. linux)
#
# Raises:
# requests.RequestException, if network errors occur
#
# Returns:
# (str, str): A tuple of the manifest content as text, and its content hash
def manifest(self, image_path, reference,
architecture, _os):
accept_types = ['application/vnd.docker.distribution.manifest.v2+json',
'application/vnd.docker.distribution.manifest.list.v2+json']
manifest_url = urljoin(image_path, 'manifests', urllib.parse.quote(reference))
response = self._request(
manifest_url, extra_headers={'Accept': ','.join(accept_types)})
try:
manifest = json.loads(response.text)
except json.JSONDecodeError as e:
raise DockerManifestError("Server did not return a valid manifest: {}".format(e),
manifest=response.text)
schema_version = manifest.get('schemaVersion')
if schema_version == 1:
raise DockerManifestError("Schema version 1 is unsupported.",
manifest=response.text)
elif schema_version is None:
raise DockerManifestError("Manifest did not include the schemaVersion key.",
manifest=response.text)
our_digest = self.digest(response.text.encode('utf8'))
their_digest = response.headers.get('Docker-Content-Digest')
if not their_digest:
raise DockerManifestError("Server did not set the Docker-Content-Digest header.",
manifest=response.text)
if our_digest != their_digest:
raise DockerManifestError("Server returned a non-matching content digest. "
"Our digest: {}, their digest: {}".
format(our_digest, their_digest),
manifest=response.text)
if manifest['mediaType'] == 'application/vnd.docker.distribution.manifest.list.v2+json':
# This is a "fat manifest", we need to narrow down to a specific
# architecture.
for sub in manifest['manifests']:
if sub['platform']['architecture'] == architecture and sub['platform']['os']:
sub_digest = sub['digest']
return self.manifest(image_path, sub_digest, architecture=architecture, _os=_os)
raise DockerManifestError(
"No images found for architecture {}, OS {}".format(architecture, _os),
manifest=response.text)
if manifest['mediaType'] == 'application/vnd.docker.distribution.manifest.v2+json':
return response.text, our_digest
else:
raise DockerManifestError(
"Unsupported manifest type {}".format(manifest['mediaType']),
manifest=response.text)
# blob():
#
# Fetch a blob from the remote registry. This is used for getting each
# layer of an image in tar.gz format.
#
# Raises:
# requests.RequestException, if network errors occur
#
# Args:
# image_path (str): Relative path to the image, e.g. library/alpine
# blob_digest (str): Content hash of the blob.
# download_to (str): Path to a file where the content will be written.
def blob(self, image_path, blob_digest, download_to):
blob_url = urljoin(image_path, 'blobs', urllib.parse.quote(blob_digest))
response = self._request(blob_url, stream=True)
with save_file_atomic(download_to, 'wb') as f:
shutil.copyfileobj(response.raw, f)
class DockerSource(Source):
BST_FORMAT_VERSION = 1
# url is deprecated, but accept it as a valid key so that we can raise
# a nicer warning.
CONFIG_KEYS = ['architecture', 'registry-url', 'image', 'os', 'ref', 'track', 'url'] + Source.COMMON_CONFIG_KEYS
# Docker identifies images by a content digest calculated from the image's
# manifest. This corresponds well with the concept of a 'ref' in
# BuildStream. However, Docker theoretically supports multiple hash
# methods while BuildStream does not. Right now every Docker registry
# uses sha256 so let's ignore that issue for the time being.
def _digest_to_ref(self, digest):
if digest.startswith('sha256:'):
return digest[len('sha256:'):]
else:
method = digest.split(':')[0]
raise SourceError("Unsupported digest method: {}".format(method))
def _ref_to_digest(self, ref):
return 'sha256:' + ref
def configure(self, node):
self.node_validate(node, DockerSource.CONFIG_KEYS)
if 'url' in node:
raise SourceError("{}: 'url' parameter is now deprecated, "
"use 'registry-url' and 'image' instead.".format(self))
self.image = self.node_get_member(node, str, 'image')
self.original_registry_url = self.node_get_member(node, str, 'registry-url', _DOCKER_HUB_URL)
self.registry_url = self.translate_url(self.original_registry_url)
if 'ref' in node:
self.digest = self._ref_to_digest(self.node_get_member(node, str, 'ref'))
else:
self.digest = None
self.tag = self.node_get_member(node, str, 'track', '') or None
self.architecture = self.node_get_member(node, str, 'architecture', '') or default_architecture()
self.os = self.node_get_member(node, str, 'os', '') or default_os()
if not (self.digest or self.tag):
raise SourceError("{}: Must specify either 'ref' or 'track' parameters".format(self))
self.client = DockerRegistryV2Client(self.registry_url)
self.manifest = None
def preflight(self):
return
def get_unique_key(self):
return [self.original_registry_url, self.image, self.digest]
def get_ref(self):
return None if self.digest is None else self._digest_to_ref(self.digest)
def set_ref(self, ref, node):
node['ref'] = ref
self.digest = self._ref_to_digest(ref)
def track(self):
# If the tracking ref is not specified it's not an error, just silently return
if not self.tag:
return None
with self.timed_activity("Fetching image manifest for image: '{}:{}' from: {}"
.format(self.image, self.tag, self.registry_url)):
try:
manifest, digest = self.client.manifest(self.image, self.tag, self.architecture, self.os)
except DockerManifestError as e:
self.log("Problem downloading manifest", detail=e.manifest)
raise
except (OSError, requests.RequestException) as e:
raise SourceError(e) from e
return self._digest_to_ref(digest)
def _load_manifest(self):
manifest_file = os.path.join(self.get_mirror_directory(), self.digest + '.manifest.json')
with open(manifest_file, 'rb') as f:
text = f.read()
real_digest = self.client.digest(text)
if real_digest != self.digest:
raise SourceError("Manifest {} is corrupt; got content hash of {}".
format(manifest_file, real_digest))
return json.loads(text.decode('utf-8'))
def _save_manifest(self, text):
manifest_file = os.path.join(self.get_mirror_directory(), self.digest + '.manifest.json')
with save_file_atomic(manifest_file, 'wb') as f:
f.write(text.encode('utf-8'))
def _verify_blob(self, path, expected_digest):
blob_digest = 'sha256:' + sha256sum(path)
if expected_digest != blob_digest:
raise SourceError("Blob {} is corrupt; got content hash of {}.".
format(path, blob_digest))
def fetch(self):
with self.timed_activity("Fetching image {}:{} with digest {}".format(self.image, self.tag, self.digest),
silent_nested=True):
mirror_dir = self.get_mirror_directory()
try:
manifest = self._load_manifest()
except FileNotFoundError:
try:
manifest_text, digest = self.client.manifest(self.image, self.digest, self.architecture, self.os)
except requests.RequestException as e:
raise SourceError(e) from e
if digest != self.digest:
raise SourceError("Requested image {}, got manifest with digest {}".
format(self.digest, digest))
self._save_manifest(manifest_text)
manifest = json.loads(manifest_text)
except DockerManifestError as e:
self.log("Unexpected manifest", detail=e.manifest)
raise
except (OSError, requests.RequestException) as e:
raise SourceError(e) from e
for layer in manifest['layers']:
if layer['mediaType'] != 'application/vnd.docker.image.rootfs.diff.tar.gzip':
raise SourceError("Unsupported layer type: {}".format(layer['mediaType']))
layer_digest = layer['digest']
blob_path = os.path.join(mirror_dir, layer_digest + '.tar.gz')
if not os.path.exists(blob_path):
try:
self.client.blob(self.image, layer_digest, download_to=blob_path)
except (OSError, requests.RequestException) as e:
if os.path.exists(blob_path):
shutil.rmtree(blob_path)
raise SourceError(e) from e
self._verify_blob(blob_path, expected_digest=layer_digest)
def stage(self, directory):
mirror_dir = self.get_mirror_directory()
try:
manifest = self._load_manifest()
except (OSError, SourceError) as e:
raise SourceError("Unable to load manifest: {}".format(e)) from e
try:
for layer in manifest['layers']:
layer_digest = layer['digest']
blob_path = os.path.join(mirror_dir, layer_digest + '.tar.gz')
self._verify_blob(blob_path, expected_digest=layer_digest)
def tar_filter(info):
return not (info.isdev() or info.name.startswith('dev/'))
with tarfile.open(blob_path) as tar:
members = filter(tar_filter, tar.getmembers())
with self.tempdir() as td:
tar.extractall(path=td, members=members)
link_files(td, directory)
except (OSError, SourceError, tarfile.TarError) as e:
raise SourceError("{}: Error staging source: {}".format(self, e)) from e
def get_consistency(self):
mirror_dir = self.get_mirror_directory()
if self.digest is None:
return Consistency.INCONSISTENT
try:
manifest = self._load_manifest()
for layer in manifest['layers']:
layer_digest = layer['digest']
blob_path = os.path.join(mirror_dir, layer_digest + '.tar.gz')
self._verify_blob(blob_path, expected_digest=layer_digest)
return Consistency.CACHED
except (FileNotFoundError, SourceError):
return Consistency.RESOLVED
# Plugin entry point
def setup():
return DockerSource
|