Source code for kas.repos

# kas - setup tool for bitbake based projects
#
# Copyright (c) Siemens AG, 2017-2019
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""
    This module contains the Repo class.
"""

import re
import os
import linecache
import logging
import shutil
from pathlib import Path
from dataclasses import dataclass
from datetime import datetime
from urllib.parse import urlparse
from tempfile import TemporaryDirectory

from kas.configschema import CONFIGSCHEMA
from kas.keyhandler import GPGKeyHandler, SSHKeyHandler
from .context import get_context
from .libkas import run_cmd_async, run_cmd
from .kasusererror import KasUserError
from functools import cached_property
from git import GitCommandError, Repo as GitPythonRepo

__license__ = 'MIT'
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018'


[docs] class UnsupportedRepoTypeError(KasUserError, NotImplementedError): """ The requested repo type is unsupported / not implemented """ pass
[docs] class RepoRefError(KasUserError): """ The requested repo reference is invalid, missing or could not be found """ pass
[docs] class PatchFileNotFound(KasUserError, FileNotFoundError): """ The requested patch file was not found """ pass
[docs] class PatchMappingError(KasUserError): """ The requested patch can not be related to a repo """ pass
[docs] class PatchApplyError(KasUserError): """ The provided patch file could not be applied """ def __init__(self, msg, cmd=None, out=None, err=None): if cmd: msg += '\nvcs command: ' + ' '.join(cmd) if out and out.strip(): msg += f'\nvcs output:\n{out.strip()}' if err and err.strip(): msg += f'\nvcs error:\n{err.strip()}' super().__init__(msg)
[docs] class RepoFetchError(KasUserError): """ An error occurred during repo fetching """ def __init__(self, repo, output): super().__init__(f'Fetching of repo: "{repo.name}" failed: {output}')
[docs] class Repo: """ Represents a repository in the kas configuration. """ def __init__(self, name, url, path, commit, tag, branch, refspec, layers, patches, signers, disable_operations): self.name = name self.url = url self.path = path self.commit = commit self.tag = tag self.branch = branch self.refspec = refspec self.layers = layers self._patches = patches self.allowed_signers = signers self.operations_disabled = disable_operations if not self.url: self.resolve_local() @property def qualified_name(self): url = urlparse(self.url) return (f'{url.netloc}{url.path}' .replace('@', '.') .replace(':', '.') .replace('/', '.') .replace('*', '.')) @property def effective_url(self): mirrors = os.environ.get('KAS_PREMIRRORS', '') for mirror in mirrors.split('\n'): try: expr, subst = mirror.split() if re.match(expr, self.url): return re.sub(expr, subst, self.url) except ValueError: continue return self.url @cached_property def revision(self): if self.commit: (_, output) = run_cmd(self.get_commit_cmd(), cwd=self.path, fail=False) if output: return output.strip() return self.commit if self.tag: (_, output) = run_cmd(self.resolve_tag_cmd(), cwd=self.path, fail=False) if output: return output.strip() return self.tag branch = self.branch or self.refspec if branch: (_, output) = run_cmd(self.resolve_branch_cmd(), cwd=self.path, fail=False) if output: return output.strip() return branch return None @cached_property def revision_annotated_tag(self): if not self.tag: return None try: cmd = self.resolve_annotated_tag_cmd() except NotImplementedError: return None (retc, output) = run_cmd(cmd, cwd=self.path, fail=False) if retc or not output: return None return output.strip() @cached_property def dirty(self): if not self.url: return True (_, output) = run_cmd(self.is_dirty_cmd(), cwd=self.path, fail=False) return bool(output) @cached_property def signers_type(self): if self.allowed_signers is None: return 'gpg' signers = get_context().config.get_signers_config() try: ktypes = [signers[k].get('type', 'gpg') for k in self.allowed_signers] except KeyError as e: raise KasUserError(f'Repository {self.name}: ' f'Allowed signer "{e}" not found in config') if len(set(ktypes)) > 1: raise KasUserError(f'Repository {self.name}: ' 'Mixed signer types are not supported') return ktypes[0] @property def keyhandler(self): if not self.signed: return None return get_context().keyhandler[self.signers_type] def check_signature(self): self.keyhandler.prepare_validation(self) (ret, _, err) = run_cmd(self.is_signed_cmd(), cwd=self.path, fail=False, capture_stderr=True) logging.debug('Signature verification output (%d):\n%s', ret, err) if ret != 0: return (False, None) return self.keyhandler.validate_allowed_signer(self, err) @cached_property def signed(self): return self.allowed_signers is not None
[docs] @staticmethod def get_type(): """ Repo type as defined in spdx-spec/v2.3/package-information """ raise NotImplementedError("Repo type not implemented")
def contains_path(self, path): (ret, _) = run_cmd(self.contains_path_cmd(str(path)), cwd=self.path, fail=False) return ret == 0 def __str__(self): if self.commit and (self.tag or self.branch): refspec = f'{self.commit}({self.tag or self.branch})' else: refspec = self.commit or self.tag or self.branch or self.refspec return f'{self.url}:{refspec} ' \ f'{self.path} {self.layers}' __legacy_refspec_warned__ = [] __no_commit_warned__ = []
[docs] @staticmethod def factory(name, repo_config, repo_defaults, repo_fallback_path, repo_overrides={}): """ Returns a Repo instance depending on parameters. This factory function is referential transparent. """ default_patch_repo = repo_defaults.get('patches', {}).get('repo', None) patches_dict = repo_config.get('patches', {}) patches = [] for p in sorted(patches_dict): if not patches_dict[p]: continue this_patch = { 'id': p, 'repo': patches_dict[p].get('repo', default_patch_repo), 'path': patches_dict[p]['path'], } if this_patch['repo'] is None: raise PatchMappingError( f'No repo specified for patch entry "{p}" and no ' 'default repo specified.') patches.append(this_patch) url = repo_config.get('url', None) name = repo_config.get('name', name) repo_type = repo_config.get('type', 'git') commit = repo_config.get('commit', None) tag = repo_config.get('tag', repo_defaults.get('tag', None)) branch = repo_config.get('branch', repo_defaults.get('branch', None)) refspec = repo_config.get('refspec', repo_defaults.get('refspec', None)) if commit is None and tag is None and branch is None \ and refspec is None and url is not None: raise RepoRefError('No commit, tag or branch specified for ' f'repository "{name}". This is only allowed ' 'for local repositories.') if refspec is None: commit = repo_overrides.get('commit', commit) branch = repo_overrides.get('branch', branch) if commit and get_context().update: logging.warning(f'Update of "{name}" requested, but repo is ' 'pinned to a fixed commit. Not updating.') else: if name not in Repo.__legacy_refspec_warned__: logging.warning('Using deprecated refspec for repository "%s".' ' You should migrate to commit/tag/branch.', name) Repo.__legacy_refspec_warned__.append(name) if commit is not None or tag is not None or branch is not None: raise RepoRefError( 'Unsupported mixture of legacy refspec and ' f'commit/tag/branch for repository "{name}"') refspec = repo_overrides.get('commit', refspec) if not commit and name not in Repo.__no_commit_warned__: if tag: logging.warning('Using tag without commit for repository ' '"%s" is unsafe as tags are mutable.', name) Repo.__no_commit_warned__.append(name) elif branch: logging.warning('Using branch without commit for repository ' '"%s" is unsafe. Either add a commit or use ' 'a lock file.', name) Repo.__no_commit_warned__.append(name) path = repo_config.get('path', None) signed = repo_config.get('signed', False) signers = repo_config.get('allowed_signers', None) if signed else None if signed and not signers: raise KasUserError(f'Repository "{name}" is signed but no allowed ' 'signers specified.') disable_operations = False if path is None: if url is None: path = Repo.get_root_path(repo_fallback_path) logging.info('Using %s as root for repository %s', path, name) else: path = os.path.join(get_context().kas_work_dir, name) elif not os.path.isabs(path): # Relative pathes are assumed to start from work_dir path = os.path.join(get_context().kas_work_dir, path) layers_dict = repo_config.get('layers', {'': None}) layers = Repo._create_layers_from_dict(name, path, layers_dict) if url is None: # No version control operation on repository disable_operations = True if repo_type == 'git': if commit and not re.match(r'^[0-9a-f]{40}|[0-9a-f]{64}$', commit): logging.warning( f'{commit} is not a full-length hash for repo ' f'"{name}". This will be an error in future versions.') return GitRepo(name, url, path, commit, tag, branch, refspec, layers, patches, signers, disable_operations) if repo_type == 'hg': if not shutil.which('hg'): raise UnsupportedRepoTypeError( 'hg is required for Mercurial repositories') return MercurialRepo(name, url, path, commit, tag, branch, refspec, layers, patches, signers, disable_operations) raise UnsupportedRepoTypeError(f'Repo type "{repo_type}" ' 'not supported.')
[docs] @staticmethod def get_root_path(path, fallback=True): """ Checks if path is under version control and returns its root path. If the repo is a submodule, the root path of the super-repository is returned. """ git_cmd = ['git', 'rev-parse', '--show-toplevel', '--show-superproject-working-tree'] (ret, output) = run_cmd(git_cmd, cwd=path, fail=False) if ret == 0: return sorted(output.strip().split('\n'))[0] (ret, output) = run_cmd(['hg', 'root'], cwd=path, fail=False) if ret == 0: return output.strip() return path if fallback else None
@staticmethod def _create_layers_from_dict(repo_name, repo_path, layers_dict): layers = [] disabled_token = "disabled" legacy_disabled_tokens = ['excluded', 'n', 'no', '0', 'false', 0] default_prio = \ CONFIGSCHEMA['$defs']['layerPrio']['properties']['prio']['default'] for lname, prop in layers_dict.items(): if prop is None: layers.append(RepoLayer(name=lname, repo_path=Path(repo_path), repo_name=repo_name, priority=default_prio)) elif isinstance(prop, str) and prop == disabled_token: continue elif isinstance(prop, (str, int)) and \ prop in legacy_disabled_tokens: logging.warning('Use of deprecated value "%s" for repo ' '"%s", layer "%s". Replace with "disabled".', prop, repo_name, lname) continue elif isinstance(prop, dict): layers.append(RepoLayer(name=lname, repo_path=Path(repo_path), repo_name=repo_name, priority=prop.get('prio', default_prio))) else: raise NotImplementedError() return layers
[docs] class RepoImpl(Repo): """ Provides a generic implementation for a Repo. """
[docs] async def fetch_async(self): """ Starts asynchronous repository fetch. """ if self.operations_disabled: return refdir = get_context().kas_repo_ref_dir sdir = os.path.join(refdir, self.qualified_name) if refdir else None # fetch to refdir if refdir and not os.path.exists(sdir): os.makedirs(refdir, exist_ok=True) with TemporaryDirectory(prefix=self.qualified_name + '.', dir=refdir) as tmpdir: (retc, _) = await run_cmd_async( self.clone_cmd(tmpdir, createref=True), cwd=get_context().kas_work_dir) logging.debug('Created repo ref for %s', self.qualified_name) try: os.rename(tmpdir, sdir) except OSError: logging.debug('repo %s already cloned by other instance', self.qualified_name) if not os.path.exists(self.path): logging.info('Cloning repository %s', self.name) os.makedirs(os.path.dirname(self.path), exist_ok=True) (retc, _) = await run_cmd_async( self.clone_cmd(sdir, createref=False), cwd=get_context().kas_work_dir) # Make sure the remote origin is set to the value # in the kas file to avoid surprises try: (retc, output) = await run_cmd_async( self.set_remote_url_cmd(), cwd=self.path) except NotImplementedError: logging.warning('Repo implementation does not support changing ' 'the remote url.') # take what came out of clone and stick to that forever if self.commit is None and self.tag is None and self.branch is None \ and self.refspec is None: return # check if we already have the commit. On update, check as well in case # the commit is fixed, hence the repo must not be updated anyways force_update = get_context().update if not force_update or (force_update and self.commit): # Do commit/tag/branch/refspec exist in the current repository? (retc, output) = await run_cmd_async(self.contains_refspec_cmd(), cwd=self.path, fail=False) if retc == 0: logging.info('Repository %s already contains %s as %s', self.name, self.commit or self.tag or self.branch or self.refspec, output.strip()) # if branch is specified, check if it contains the commit # also in our local clone depth = get_context().repo_clone_depth if self.branch and self.commit and not depth: (_, output) = await run_cmd_async( self.branch_contains_ref(), cwd=self.path, fail=False) if output.strip(): return else: return # Try to fetch if commit/tag/branch/refspec is missing or if --update # argument was passed (retc, _, err) = await run_cmd_async(self.fetch_cmd(), cwd=self.path, fail=False, capture_stderr=True) if retc: raise RepoFetchError(self, err) else: logging.info('Repository %s updated', self.name)
[docs] def checkout(self): """ Checks out the correct revision of the repo. """ if self.operations_disabled \ or (self.commit is None and self.tag is None and self.branch is None and self.refspec is None): return if not get_context().force_checkout: # Check if repos is dirty if self.dirty: logging.warning('Repo %s is dirty - no checkout', self.name) return if self.tag and self.branch: raise RepoRefError( f'Both tag "{self.tag}" and branch "{self.branch}" ' f'cannot be specified for repository "{self.name}"') if self.tag: (retc, output) = run_cmd(self.resolve_tag_cmd(), cwd=self.path, fail=False) if retc: raise RepoRefError(f'Tag "{self.tag}" cannot be found ' f'in repository "{self.name}"') desired_ref = output.strip() if self.commit and desired_ref != self.commit: if self.revision_annotated_tag != self.commit: # Ensure provided commit and tag match raise RepoRefError(f'Provided tag "{self.tag}" ' f'("{desired_ref}") does not match ' f'provided commit "{self.commit}" in ' f'repository "{self.name}", aborting!') is_branch = False elif self.branch: (retc, output) = run_cmd(self.resolve_branch_cmd(), cwd=self.path, fail=False) if retc: raise RepoRefError( f'Branch "{self.branch}" cannot be found ' f'in repository "{self.name}"') # check if branch contains the requested commit. # skip check on shallow clones, as branch information is missing if self.commit and not get_context().repo_clone_depth: (_, output) = run_cmd(self.branch_contains_ref(), cwd=self.path, fail=False) if not output.strip(): raise RepoRefError( f'Branch "{self.branch}" in ' f'repository "{self.name}" does not contain ' f'commit "{self.commit}"') desired_ref = self.commit or output.strip() is_branch = True elif self.commit: desired_ref = self.commit is_branch = False else: desired_ref = self.refspec is_branch = False run_cmd(self.checkout_cmd(desired_ref, is_branch), cwd=self.path) logging.info(f'Repository {self.name} checked out to {desired_ref}')
[docs] async def apply_patches_async(self): """ Applies patches to a repository asynchronously. """ if self.operations_disabled or not self._patches: return 0 if self.dirty: logging.warning(f'Repo {self.name} is dirty - no patching') return 0 (retc, _) = await run_cmd_async(self.prepare_patches_cmd(), cwd=self.path) my_patches = [] for patch in self._patches: other_repo = get_context().config.repo_dict.get(patch['repo'], None) if not other_repo: raise PatchMappingError('Could not find referenced repo. ' f'(missing repo: {patch["repo"]}, ' f'repo: {self.name}, ' f'patch entry: {patch["id"]})') path = os.path.join(other_repo.path, patch['path']) cmd = [] if os.path.isfile(path): my_patches.append((path, patch['id'])) elif os.path.isdir(path) \ and os.path.isfile(os.path.join(path, 'series')): with open(os.path.join(path, 'series')) as f: for line in f: if line.startswith('#'): continue p = os.path.join(path, line.split(' #')[0].rstrip()) if os.path.isfile(p): my_patches.append((p, patch['id'])) else: raise PatchFileNotFound(p) else: raise PatchFileNotFound( 'Could not find patch. ' f'(patch path: {path}, repo: {self.name}, patch ' f'entry: {patch["id"]})') for (path, patch_id) in my_patches: cmd = self.apply_patches_file_cmd(path) (retc, out, err) = await run_cmd_async( cmd, cwd=self.path, fail=False, capture_stderr=True) if retc: raise PatchApplyError( 'Could not apply patch. Please fix repos and patches:\n' f'patch path: {path}, repo: {self.name}, patch ' f'entry: {patch_id}', cmd, out, err) logging.info('Patch applied. ' '(patch path: %s, repo: %s, patch entry: %s)', path, self.name, patch_id) cmd = self.add_cmd() (retc, out, err) = await run_cmd_async( cmd, cwd=self.path, fail=False, capture_stderr=True) if retc: raise PatchApplyError('Could not add patched files: repo: ' f'{self.name}', cmd, out, err) timestamp = self.get_patch_timestamp(path) if not timestamp: dt = datetime.fromtimestamp(os.path.getmtime(path)) timestamp = dt.astimezone().strftime( "%a, %d %b %Y %H:%M:%S %z") env = get_context().environ.copy() msg = f'kas: {patch_id}\n\npatch {path} applied by kas' cmd = self.commit_cmd(env, 'kas <kas@example.com>', msg, timestamp) (retc, out, err) = await run_cmd_async( cmd, cwd=self.path, env=env, fail=False, capture_stderr=True) if retc: raise PatchApplyError('Could not commit patch changes. repo: ' f'{self.name}', cmd, out, err) return 0
def resolve_local(self): (retc, output) = run_cmd(self.get_remote_url_cmd(), cwd=self.path, fail=False) if retc == 0: self.url = output.strip() (retc, output) = run_cmd(self.get_commit_cmd(), cwd=self.path, fail=False) if retc == 0: self.commit = output.strip() if self.url and self.commit: logging.debug('Repository %s resolved to %s @ %s', self.name, self.url, self.commit)
[docs] class GitRepo(RepoImpl): """ Provides the git functionality for a Repo. """
[docs] @staticmethod def get_type(): return 'git'
def remove_ref_prefix(self, ref): ref_prefix = 'refs/' return ref[ref.startswith(ref_prefix) and len(ref_prefix):] def add_cmd(self): return ['git', 'add', '-A'] def clone_cmd(self, srcdir, createref): cmd = ['git', 'clone', '-q'] depth = get_context().repo_clone_depth if depth: if self.refspec: logging.warning('Shallow cloning is not supported for legacy ' f'refspec on repository "{self.name}". ' 'Performing full clone.') else: if createref: # this is not a user-error, as the clone of the work repo # can still be shallow. logging.debug('Shallow cloning is not supported for ' f'reference repository of "{self.name}". ' 'Performing full clone.') else: cmd.extend(['--depth', str(depth)]) if self.branch: cmd.extend(['--branch', self.remove_ref_prefix(self.branch)]) if createref: cmd.extend(['--bare', '--', self.effective_url, srcdir]) elif srcdir: cmd.extend(['--reference', srcdir, '--', srcdir, self.path]) else: cmd.extend(['--', self.effective_url, self.path]) return cmd def commit_cmd(self, env, author, msg, date): env["GIT_COMMITTER_DATE"] = date return ['git', 'commit', '-a', '--author', author, '-m', msg, '--date', date] def contains_refspec_cmd(self): branch = self.branch or self.refspec if branch and branch.startswith('refs/'): branch = 'remotes/origin/' + self.remove_ref_prefix(branch) return ['git', 'cat-file', '-t', self.commit or self.tag or branch] def fetch_cmd(self): cmd = ['git', 'fetch', '-q'] depth = 0 if self.refspec else get_context().repo_clone_depth if depth: cmd.extend(['--depth', str(depth)]) if self.tag: cmd.extend(['origin', f'+{self.tag}:refs/tags/{self.tag}']) return cmd # only fetch this commit (branch information is lost) if depth and self.commit: cmd.extend(['origin', self.commit]) return cmd branch = self.branch or self.refspec if branch and (branch.startswith('refs/') or depth): branch = self.remove_ref_prefix(branch) cmd.extend(['origin', f'+{branch}:refs/remotes/origin/{branch}']) return cmd def is_dirty_cmd(self): return ['git', 'diff', '--stat'] def is_signed_cmd(self): if self.tag: return ['git', 'verify-tag', '--raw', self.tag] else: refspec = self.commit or self.revision return ['git', 'verify-commit', '--raw', refspec] def resolve_branch_cmd(self): refspec = self.remove_ref_prefix(self.branch or self.refspec) return ['git', 'rev-parse', '--verify', '-q', f'origin/{refspec}'] def resolve_tag_cmd(self): return ['git', 'rev-list', '-n', '1', self.remove_ref_prefix(self.tag)] def resolve_annotated_tag_cmd(self): return ['git', 'show-ref', '--tags', '--hash', self.tag] def branch_contains_ref(self): return ['git', 'branch', f'origin/{self.branch}', '-r', '--contains', self.commit] def checkout_cmd(self, desired_ref, is_branch): desired_ref = self.remove_ref_prefix(desired_ref) if re.match(r'^[0-9a-f]{40}|[0-9a-f]{64}$', desired_ref): desired_ref += '^{commit}' cmd = ['git', 'checkout', '-q', desired_ref] if is_branch: branch = self.remove_ref_prefix(self.branch or self.refspec) branch = branch[branch.startswith('heads/') and len('heads/'):] cmd.extend(['-B', branch]) if get_context().force_checkout: cmd.append('--force') return cmd def prepare_patches_cmd(self): refspec = self.commit \ or self.remove_ref_prefix(self.tag or self.branch or self.refspec) return ['git', 'checkout', '-q', '-B', f'patched-{refspec}'] def apply_patches_file_cmd(self, path): return ['git', 'apply', '--whitespace=nowarn', path] def set_remote_url_cmd(self): return ['git', 'remote', 'set-url', 'origin', self.effective_url] def get_remote_url_cmd(self): return ['git', 'remote', 'get-url', 'origin'] def get_commit_cmd(self): rev = self.commit or 'HEAD' return ['git', 'rev-parse', '--verify', rev] def get_patch_timestamp(self, path): date = linecache.getline(path, 3) linecache.clearcache() if date and date.startswith("Date: "): return date.replace("Date: ", "").strip() def contains_path_cmd(self, path): return ['git', 'ls-files', '--error-unmatch', path] def diff(self, commit1, commit2): if commit1 is None: commit1 = 'HEAD' if commit2 is None: commit2 = 'HEAD' git_repo = GitPythonRepo(self.path) shallow_file = os.path.join(git_repo.git_dir, 'shallow') if os.path.isfile(shallow_file): git_repo.git.fetch(unshallow=True) try: commits = list(git_repo.iter_commits( f'{commit1}..{commit2}')) except GitCommandError as e: valid1 = git_repo.is_valid_object(commit1) valid2 = git_repo.is_valid_object(commit2) if not valid1 and not valid2: error_msg = f'Commits ({commit1} and {commit2}) are not valid' elif not valid1: error_msg = f'First commit ({commit1}) is not valid' elif not valid2: error_msg = f'Second commit ({commit2}) is not valid' else: error_msg = str(e) raise RepoRefError( 'Could not compute diff for repository ' f'"{self.name}": {error_msg}') diff_json = {self.name: []} for commit in commits: diff_json[self.name].append({ 'commit': commit.hexsha, 'author': commit.author.name, 'email': commit.author.email, 'commit_date': commit.committed_datetime. strftime("%Y-%m-%d %H:%M:%S"), 'message': commit.message }) return diff_json
[docs] class MercurialRepo(RepoImpl): """ Provides the hg functionality for a Repo. """
[docs] @staticmethod def get_type(): return 'hg'
def add_cmd(self): return ['hg', 'add'] def clone_cmd(self, srcdir, createref): # Mercurial does not support repo references (object caches) if createref: return ['true'] return ['hg', 'clone', self.effective_url, self.path] def commit_cmd(self, env, author, msg, date): return ['hg', 'commit', '--user', author, '-m', msg, '--date', date] def contains_refspec_cmd(self): return ['hg', 'log', '-r', self.commit or self.tag or self.branch or self.refspec] def fetch_cmd(self): return ['hg', 'pull'] def is_dirty_cmd(self): return ['hg', 'status', '--modified', '--added', '--removed', '--deleted'] def is_signed_cmd(self): raise NotImplementedError() def resolve_branch_cmd(self): if self.branch: return ['hg', 'identify', '--id', '-r', f'limit(heads(branch({self.branch})))'] else: return ['hg', 'identify', '--id', '-r', self.refspec] def resolve_tag_cmd(self): refspec = self.tag or self.refspec return ['hg', 'identify', '--id', '-r', f'tag({refspec})'] def resolve_annotated_tag_cmd(self): raise NotImplementedError("Mercurial does not support annotated tags") def branch_contains_ref(self): return ['hg', 'log', '-r', self.commit, '-b', self.branch] def checkout_cmd(self, desired_ref, is_branch): cmd = ['hg', 'checkout', desired_ref] if get_context().force_checkout: cmd.append('--clean') return cmd def prepare_patches_cmd(self): refspec = (self.commit or self.tag or self.branch or self.refspec) # strip revision part from refspec as not allowed in branch names refspec = refspec.split(':')[-1] return ['hg', 'branch', '-f', f'patched-{refspec}'] def apply_patches_file_cmd(self, path): return ['hg', 'import', '--no-commit', path] def set_remote_url_cmd(self): raise NotImplementedError() def get_remote_url_cmd(self): return ['hg', 'paths', 'default'] def get_commit_cmd(self): rev = self.commit or '.' return ['hg', 'log', '-r', rev, '--template', '{node}\n'] def get_patch_timestamp(self, path): date = None if linecache.getline(path, 3).startswith("# Date "): date = linecache.getline(path, 4) linecache.clearcache() if date and date.startswith("# "): return date.replace("# ", "").strip() def contains_path_cmd(self, path): return ['hg', 'files', path] def diff(self, commit1, commit2): raise NotImplementedError("Unsupported diff for MercurialRepo")
[docs] @dataclass class RepoLayer: """ Standalone definition of a single bitbake layer. """ name: str priority: int repo_name: str repo_path: Path @property def path(self): return self.repo_path / self.name def __lt__(self, other): if isinstance(other, RepoLayer): # The priority is negated because a higher priority means the # element appears earlier in the list. return (-self.priority, self.repo_name, self.name) < \ (-other.priority, other.repo_name, other.name) return NotImplemented
[docs] class SignatureValidator: """ Handles key loading and signature validation of repos based on the configuration. """ @staticmethod def import_keys(ctx): handler_cfg = { 'gpg': (GPGKeyHandler, Path(ctx.kas_work_dir) / '.kas_gnupg'), 'ssh': (SSHKeyHandler, Path(ctx.kas_work_dir) / '.kas_ssh-handler'), } for name, (handler_cls, dir) in handler_cfg.items(): signers_cfg = ctx.config.get_signers_config(name) if not signers_cfg: continue dir.mkdir(exist_ok=True) dir.chmod(0o700) ctx.managed_paths.add(dir) ctx.keyhandler[name] = handler_cls(dir, signers_cfg, ctx.config) for keyhandler in ctx.keyhandler.values(): ctx.environ.update(keyhandler.env) @staticmethod def ensure_valid_if_signed(ctx, repo): if not repo.signed: return valid, keyid = repo.check_signature() keyhandler = ctx.keyhandler[repo.signers_type] info = keyhandler.get_key_repr(keyid) if keyid else 'No info' if valid: logging.info(f'Repository {repo.name} signature valid: {info}') return elif keyid: raise RepoRefError(f'Repository {repo.name} is not signed ' f'with a trusted key: {info}') raise RepoRefError(f'Repository {repo.name} is not signed ' 'with a trusted key.')