Introduction
debsbom
generates SBOMs (Software Bill of Materials) for distributions based on Debian in the two standard formats SPDX and CycloneDX.
The generated SBOM includes all installed binary packages and also contains Debian Source packages.
Source packages are especially relevant for security as CVEs in the Debian ecosystem are filed not against the installed binary packages, but source packages. The names of source and binary packages must not always be the same, and in some cases a single source package builds a number of binary packages.
Scope of the tool
The primary goal is to generate Software Bills of Materials (SBOMs) for Debian-based systems, focusing on security and license clearing requirements.
The generate
command operates entirely offline, making it suitable for use in air-gapped networks or environments where internet connectivity is restricted.
Goals
The tool provides auxiliary commands for package source retrieval. These enable users to:
Retrieve packages from Debian’s upstream repositories and report missing packages.
Convert the multi-archive source packages into a single artifact (one archive per source package)
At its core, this tool was designed to fulfill these SBOM generation requirements while maintaining:
A minimal dependency footprint: avoid huge dependency graph of external software ecosystems (like Go or Rust)
Strict focus on Debian-specific package formats
Clear separation between binary packages and their corresponding source packages
Use official SPDX / CycloneDX libraries to ensure syntactic and semantic correctness
Non-Goals
License and copyright text extraction from source packages
Real-time vulnerability database integration
Signing and attestation of generated artifacts
Package Relations
A Debian distribution is composed of source packages and binary packages. Binary packages are installed into the root filesystem, while the source packages are the originals from which those binaries are built.
Some binary packages are installed explicitly by the user; others appear automatically as dependencies of the explicitly‑installed packages.
The SBOM mirrors this relationship, using the distro-package
entry as the single central node for traversing the package graph.
Relations hierarchy:
distro-package
├─ binary-package-foo
├─── source-package-foo
├─── binary-dep-of-foo
├─ binary-package-bar
├─── source-package-bar
└─── binary-dep-of-bar
Source-Binary
To differentiate binary and source packages in the SBOM a different approach for each SBOM standard is required.
CycloneDX
In the CDX format it is currently not possible to mark a component as a source package.
There is an ongoing discussion [1] which, while looking promising, will not land in the standard for quite some time.
In the meantime source packages can only be identified by their PURL by looking at the arch=source
qualifier.
The relationships between a binary and its source package is done with a simple dependency.
SPDX
We differentiate a source package by setting "primaryPackagePurpose": "SOURCE"
as opposed to LIBRARY
for binary packages.
Their relationship is expressed with the GENERATES
relation.
For packages that are marked as Built-Using
in the dpkg status file, we use the GENERATED_FROM
relation.
This expresses the same semantic in SPDX, but this way it can still be identified if it is a proper source/binary relationship or a built-using one.
Limitations
License Information
License information in Debian is stored in /usr/share/doc/**/copyright
.
The format of these files is not required to be machine-interpretable.
For most packages this is the case and they are machine-readable, but there are some cases where the exact license determination is hard.
To prevent any false license information to be included in the SBOM they are not emitted for now.
Vendor Packages
Vendor packages are currently not identified. Identifying them is important to emit the correct PURL. Right now we make no difference between vendor and official packages. That means we emit potentially incorrect PURLs for vendor packages.
Reliably and correctly identifying if a package is a vendor package or not is non-trivial without access to the internet. For this reason we do not attempt it. If you have vendor packages in your distribution we assume you know them, and if not you can identify them in postprocessing. A simple way is to use debsbom download and look for any packages that failed to download, or whose checksums do not match.
Footnotes