blob: 8f4b330adac6f83dab77ba64a7230ece7998a486 [file] [log] [blame]
# Copyright 2019 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Payload API Service."""
from typing import Dict, Tuple, TYPE_CHECKING
from chromite.api import controller
from chromite.api import faux
from chromite.api import validate
from chromite.api.controller import controller_util
from chromite.api.gen.chromite.api import payload_pb2
from chromite.api.gen.chromiumos import common_pb2
from chromite.lib import cros_build_lib
from chromite.lib.paygen import paygen_payload_lib
from chromite.service import payload
if TYPE_CHECKING:
from chromite.api import api_config
_VALID_IMAGE_PAIRS = (
("src_signed_image", "tgt_signed_image"),
("src_unsigned_image", "tgt_unsigned_image"),
("src_dlc_image", "tgt_dlc_image"),
("full_update", "tgt_unsigned_image"),
("full_update", "tgt_signed_image"),
("full_update", "tgt_dlc_image"),
)
_VALID_MINIOS_PAIRS = (
("src_signed_image", "tgt_signed_image"),
("src_unsigned_image", "tgt_unsigned_image"),
("full_update", "tgt_unsigned_image"),
("full_update", "tgt_signed_image"),
)
# TODO: Remove to use the standard cache directory if possible, otherwise
# document why it cannot be used and preferably move outside of the repo.
_DEFAULT_PAYGEN_CACHE_DIR = ".paygen_cache"
# We have more fields we might validate however, they're either
# 'oneof' or allowed to be the empty value by design. If @validate
# gets more complex in the future we can add more here.
@faux.empty_success
@faux.empty_completed_unsuccessfully_error
@validate.require("bucket")
def GeneratePayload(
input_proto: payload_pb2.GenerationRequest,
output_proto: payload_pb2.GenerationResponse,
config: "api_config.ApiConfig",
) -> int:
"""Generate a update payload ('do paygen').
Args:
input_proto: Input proto.
output_proto: Output proto.
config: The API call config.
Returns:
A controller return code (e.g. controller.RETURN_CODE_SUCCESS).
"""
# Resolve the tgt image oneof.
tgt_name = input_proto.WhichOneof("tgt_image_oneof")
try:
tgt_image = getattr(input_proto, tgt_name)
except AttributeError:
cros_build_lib.Die("%s is not a known tgt image type", tgt_name)
# Resolve the src image oneof.
src_name = input_proto.WhichOneof("src_image_oneof")
# If the source image is 'full_update' we lack a source entirely.
if src_name == "full_update":
src_image = None
# Otherwise we have an image.
else:
try:
src_image = getattr(input_proto, src_name)
except AttributeError:
cros_build_lib.Die("%s is not a known src image type", src_name)
# Ensure they are compatible oneofs.
if (src_name, tgt_name) not in _VALID_IMAGE_PAIRS:
cros_build_lib.Die(
"%s and %s are not valid image pairs", src_image, tgt_image
)
# Ensure that miniOS payloads are only requested for compatible image types.
if input_proto.minios and (src_name, tgt_name) not in _VALID_MINIOS_PAIRS:
cros_build_lib.Die(
"%s and %s are not valid image pairs for miniOS",
src_image,
tgt_image,
)
if input_proto.use_local_signing and not input_proto.docker_image:
cros_build_lib.Die(
"local signing enabled but no docker image specified"
)
# Find the value of bucket or default to 'chromeos-releases'.
destination_bucket = input_proto.bucket or "chromeos-releases"
chroot = controller_util.ParseChroot(input_proto.chroot)
# There's a potential that some paygen_lib library might raise here, but
# since we're still involved in config we'll keep it before the
# validate_only.
payload_config = payload.PayloadConfig(
chroot,
tgt_image,
src_image,
destination_bucket,
input_proto.minios,
input_proto.verify,
upload=not input_proto.dryrun,
cache_dir=_DEFAULT_PAYGEN_CACHE_DIR,
)
# If configured for validation only we're done here.
if config.validate_only:
return controller.RETURN_CODE_VALID_INPUT
# Do payload generation.
artifacts = {}
try:
artifacts = payload_config.GeneratePayload()
except paygen_payload_lib.PayloadGenerationSkippedException as e:
# If paygen was skipped, provide a reason if possible.
if isinstance(e, paygen_payload_lib.MiniOSException):
reason = e.return_code()
output_proto.failure_reason = reason
_SetGeneratePayloadOutputProto(output_proto, artifacts)
if _SuccessfulPaygen(artifacts, input_proto.dryrun):
return controller.RETURN_CODE_SUCCESS
elif output_proto.failure_reason:
return controller.RETURN_CODE_UNSUCCESSFUL_RESPONSE_AVAILABLE
else:
return controller.RETURN_CODE_COMPLETED_UNSUCCESSFULLY
def _SuccessfulPaygen(
artifacts: Dict[int, Tuple[str, str]], dryrun: bool
) -> bool:
"""Check to see if the payload generation was successful.
Args:
artifacts: a dict containing an artifact tuple keyed by its
version. Artifacts tuple is (local_path, remote_uri).
dryrun: whether or not this was a dry run job.
"""
if not artifacts:
return False
for _, artifact in artifacts.items():
if not (artifact[1] or dryrun and artifact[0]):
return False
return True
def _SetGeneratePayloadOutputProto(
output_proto: payload_pb2.GenerationResponse,
artifacts: Dict[int, Tuple[str, str]],
):
"""Set the output proto with the results from the service class.
Args:
output_proto: The output proto.
artifacts: a dict containing an artifact tuple keyed by its
version. Artifacts tuple is (local_path, remote_uri).
"""
for version, artifact in artifacts.items():
versioned_artifact = output_proto.versioned_artifacts.add()
versioned_artifact.version = version
if artifact[0]:
versioned_artifact.file_path.path = artifact[0]
versioned_artifact.file_path.location = common_pb2.Path.INSIDE
versioned_artifact.remote_uri = artifact[1] or ""