Skip to main content

CaPyWfa - Clearing workflow automation for SW360

Main goal of this project is to automate submission of Open Source packages to the SW360 component catalogue, e.g. for license clearing. It is based on CaPyCli.

For now, this is mainly used for Debian and Alpine Linux packages, but most of our building blocks might be helpful for clearing of large collections of (linux) packages in general.

Clearing tools

Please refer to ChangeLog.md for latest changes.

These tools are designed to provide full automation e.g. for integration in CI pipelines, but at the same time we stay a friendly neighbour to users creating SW360 entries interactively. Major design decisions:

  • We rely on Package URLs to identify software components and versions. We mostly avoid heuristics.
  • We try hard to not create duplicates. Existing components, releases and attachments will be re-used if they can be identified by Package URLs.
  • If no matching component is found, the SBOM item will be skipped and the user is asked to manually identify existing components, add package URLs and re-run the tool.
  • New components can be created if the user adds additional meta-data to the SBOM e.g. to specify the component name, homepage and description. Please use upstream names like e.g. "Perl::Critic" instead of Debian's "libperl-critic-perl".
  • Existing attachments are verified. If the hash doesn't match, the scripts try to automatically download, extract and compare existing attachments.

Also note that for now, the scripts will only handle source packages. No entries, package URLs etc. will be added for binary packages. In other words: we only create SW360 releases, but don't support the SW360 package portlet yet.

Overview

Your main entry point is capywfa/capywfa.py. This section explains the general workflow. For details how to install and run the tools, see the next sections!

CaPyWfa will perform the following tasks:

  1. Identify existing components (packages) and releases (versions) in SW360.
  2. If downloads are needed (either because SW360 lacks the source or we want to verify it), CaPyWfa will exit with code 80 and ask you to run an external source downloader (see below), then re-invoke it with --sources-downloaded.
  3. Verify existing SW360 sources are correct (using the verify_sources.py script internally -- which can also be called separately).
  4. Create missing components and releases in SW360 and upload sources.
  5. Link SW360 releases to your SW360 project.
  6. Show you a summary if packages couldn't be processed automatically, exit code for incomplete uploads: 81

capywfa.py expects a CycloneDX SBOM, so you have to convert your package list first:

# convert Debian or Alpine package list to Standard BOM format:
$ lst_to_sbom.py <deb|apk> <package-list> package-list.json

Note, that lst_to_sbom.py will add .debian or .alpine suffixes to the component version, so that SW360 releases are named accordingly.

Now, check capywfa.py --help for the necessary parameters. The tool will guide you through the process. Note that it will write an updated BOM after each step. In general, it should be safe to interrupt the tool and re-run it at any time. Using the output BOM from the last step will save some time in repeated runs.

If not all components can be identified automatically, you need to manually search the components in SW360 and add their component Id to the BOM or add the PackageURL to SW360. The tool will offer to download a list of all components if you prefer offline search.

Components which do not exist in SW360 can be created by capywfa -- this requires you to add some meta information to the BOM (Homepage, Categories, Description).

Running directly on a Linux system

You can clone this repository and run the scripts directly.

CaPyWfa should run on any recent system with Python >= 3.11.

To run the scripts in a Python "virtual environment" with all needed dependencies, we use Poetry

poetry install
poetry run python3 ./capywfa/capywfa.py ...

Installing as Python package

Releases are available from PyPI: capywfa on PyPI

While those packages run stable in CI environments here at Siemens since years, note CaPyWfa is still under active development and not as polished or well documented as I'd like it to be.

So you probably better start with a local setup as described in the last section -- allowing you to work with the source code to understand details and probably fix minor issues you might run into. And please let us know about issues you found, especially if you're willing to contribute improvements to the code and documentation! ;-)

External source downloader

To avoid unnecessary downloads, CaPyWfa checks if SW360 already has the source, approved from a trusted verifier (see option -vf). If all sources are present in SW360 or on disk, it will continue with the next steps. If some sources are missing, it will exit with code 80 after pass 3 and ask you to run a downloader.

We offer two ways to tell downloaders which sources to download: Any component where no local sources are needed is marked in the SBOM with the custom property capywfa:SourceFileDownload set to skip. Additionally, capywfa writes a plain-text file <bom-stem>-3-download.lst containing one PackageURL per line for every component that still needs a local source archive.

For each successfully downloaded component, the downloader has to add a distribution-type external reference to the SBOM component with comment "source archive (local copy)" (as per the Siemens Standard BOM spec) and a SHA-1 hash. The URL must be a relative path using the file: scheme, resolved against the SBOM document's parent directory — for example file:///sources/<sha1>/<filename>. capywfa strips the file: scheme prefix and any leading slashes, then looks for the file relative to the SBOM's directory first, and relative to --sources as a fallback.

Note that capywfa also adds "source archive (local copy)" external references to the SBOM in pass 1 for existing SW360 sources (without downloading files!). Therefore, after a successful download, pass 3 removes external references pointing to missing files.

When you re-invoke capywfa with --sources-downloaded, it will mark components that still lack a local source archive with capywfa:SourceFileDownload set to failed and treat them as final download failures in subsequent passes.

Example: Debian packages with debsbom

debsbom can download Debian source packages from snapshot.debian.org and merge them into a single archive per component, producing a CycloneDX BOM with the required external references.

# Download sources listed by capywfa
cat <bom-stem>-3-download.lst | \
    debsbom download --outdir <sources-dir> --sources

# Merge debian source packages and rewrite the BOM with distribution
# external references and hashes (has to be run on a Debian system)
debsbom repack \
    --dldir <sources-dir> --outdir <sources-dir> \
    --apply-patches \
    <bom-stem>-3-download.cdx.json \
    <bom-stem>-3-download.packed.cdx.json

# Re-invoke capywfa with the repacked BOM
capywfa -i <bom-stem>-3-download.packed.cdx.json \
    --sources-downloaded ...

Example: Simple downloads of source-distribution externalReferences

If your ecosystem doesn't require special handling of source packages, you can run capycli bom downloadsources to download components from URLs listed in the SBOM's source-distribution external references.

SW360 project verification

With the help of the capycli command and small helper scripts which are part of the Poetry environment, you can verify that the upload succeeded and already existing releases have correct sources and meta data:

$ python3 -m capycli bom Map --nocache -i packages-list.json -t <sw360-token> -oa -o packages-mapped.json
[...]
Mapping result:
  Full match by id, at, 3.1.23-1.debian => at daemon, 3.1.23-1.debian, b0667b7334c070cd2f05b071265ce7b3
[...]
$ python3 -m capycli project Prerequisites -id <project-id> -i packages-mapped.json -t <token> -oa
[...]
  Components:
    software-properties, 0.96.20.2-2.debian: OPEN
      Download URL: http://deb.debian.org/debian/pool/main/s/software-properties_0.96.20.2-2.dsc
      SHA1 for source software-properties_0.96.20.2-2-debian-combined.tar.bz2 doesn't match!
      1 source file(s) available.
      component management id: {'package-url': 'pkg:deb/debian/software-properties@0.96.20.2-2?arch=source'}
[...]

Credits

These tools were developed by Siemens AG, with primary funding from Siemens Healthineers AG.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

capywfa-0.12.0.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

capywfa-0.12.0-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file capywfa-0.12.0.tar.gz.

File metadata

  • Download URL: capywfa-0.12.0.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for capywfa-0.12.0.tar.gz
Algorithm Hash digest
SHA256 cefbea64602dcb0e110ceb9116c88ad4191019e4fc2c2bc0f8b64fb70b6f136a
MD5 e61401476d94c12aba920c4da3a8f61f
BLAKE2b-256 9e7713cc7ba8d3f2249a047a8af0d94c52f7b8aff5bc04d8ba8831192bde18e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for capywfa-0.12.0.tar.gz:

Publisher: publish-to-pypi.yml on sw360/capywfa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file capywfa-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: capywfa-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for capywfa-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9cdf5786a1e48fa1cdeecbc0ccbe3b6cda70a66f534f5f5aec44521c07a61f73
MD5 9fd1fd2d9b0e636459aff4a33461bb14
BLAKE2b-256 ce0c3d21f1bbfd83459a99e3402e09f058090cf970ccf670e076f6d55c55cbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for capywfa-0.12.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on sw360/capywfa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.12.1

2 files

This release

0.12.0 This release

2 files

0.11.0

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page