RELEASE.md
This document provides the process to create a new Falco release. In addition, it provides information about the versioning of the Falco components. At a high level each Falco release consists of the following main components:
modern_bpf driver object code (kernel space) starting with Falco 0.34.x releaseskmod and bpf drivers, not applicable for modern_bpf driver (kernel space)
.ko files).o files).yaml files (userspace)Note: Starting with Falco 0.34.x releases, the Falco userspace binary includes the
modern_bpfdriver object code during the linking process. This integration is made possible by the CO-RE (Compile Once - Run Everywhere) feature of the modern BPF driver. CO-RE allows the driver to function on kernels that have backported BTF (BPF Type Format) support or have a kernel version >= 5.8. For the olderkmodandbpfdrivers, separate artifacts are released for the kernel space. This is because these drivers need to be explicitly compiled for the specific kernel release, using the exact kernel headers. This approach ensures that Falco can support a wide range of environments, including multiple kernel versions, distributions, and architectures. (seelibsdriver - kernel version support matrix).
The Falco Project manages the release of both the Falco userspace binary and pre-compiled Falco kernel drivers for the most popular kernel versions and distros. The build and publish process is managed by the test-infra repo.
The Falco userspace executable includes bundled dependencies, so that it can be run from anywhere.
Falco publishes all sources, enabling users to audit the project's integrity and build kernel drivers for custom or unsupported kernels/distributions, specifically for non-modern BPF drivers (see driverkit for more information).
Finally, the release process follows a transparent process described in more detail in the following sections and the official Falco guide and documentation provide rich information around building, installing and using Falco.
The Falco project publishes all sources and the Falco userspace binaries as GitHub releases.
tgz, rpm and deb Falco binary packages (contains sources, including driver sources, Falco rules as well as k8saudit and cloudtrail plugins)tgz, zip source codetgz, zip source code+driver build metadata.
tgz, zip source codetgz, zip source code, each ruleset is tagged separately in a mono-repo fashion, see the rules release guidelinesAlternatively Falco binaries or plugins can be downloaded from the Falco Artifacts repo.
Note: This section specifically applies to non-modern BPF drivers.
The Falco Project publishes all drivers for each release for popular kernel versions / distros and x86_64 and aarch64 architectures to the Falco project's managed Artifacts repo. The Artifacts repo follows standard directory level conventions. The respective driver object file is prefixed by distro and named / versioned by kernel release - $(uname -r). Pre-compiled drivers are released with a best effort notice. This is because gcc (kmod) and clang (bpf) compilers sometimes fail to build the artifacts for a specific kernel version. More details around driver versioning and driver compatibility are provided in the Falco Components Versioning section. Short preview: If you use the standard Falco setup leveraging driver-loader, driver-loader script will fetch the kernel space artifact (object file) corresponding to the default DRIVER_VERSION Falco was shipped with.
.ko files) - all under same driver version directory.o files) - all under same driver version directoryFalco follows a release schedule of three times per year, with releases expected at the end of January, May, and September. Hotfix releases are issued as needed.
Changes and new features are organized into milestones. The milestone corresponding to the next version represents the content that will be included in the upcoming release.
The release process is mostly automated, requiring only a few manual steps to initiate and complete.
Moreover, we assign owners for each release (typically pairing a new person with an experienced one). Assignees and due dates for releases are proposed during the community call.
At a high level each Falco release needs to follow a pre-determined sequencing of releases and build order:
libs (+ driver) and plugins components releasesAssignees are responsible for creating a Falco GitHub issue to track the release tasks and monitor the progress of the release. This issue serves as a central point for communication and provides updates on the release dates. You can refer to the Falco v0.35 release or Libs Release (0.11.0+5.0.1+driver) issues as examples/templates for creating the release issue.
Finally, on the proposed due date, the assignees for the upcoming release proceed with the processes described below.
Before proceeding with the release, make sure to complete the following preparatory steps, which can be easily done using the GitHub UI:
YYYY-MM-DD) by looking at the Falco releasesis:pr is:merged milestone:M.m.p filter
Assuming we are releasing a non-patch version (like: Falco 0.34.0), a new release branch needs to be created.
Its naming will be release/M.m.x; for example: release/0.34.x.
The same branch will then be used for any eventual cherry pick for patch releases.
For patch releases, instead, the release/M.m.x branch should already be in place; no more steps are needed.
Double-check that any PR that should be part of the tag has been cherry-picked from master!
The release PR is meant to be made against the respective release/M.m.x branch, then cherry-picked on master.
README.md updates itself automaticallyrn2md -r falcosecurity/falco -m M.m.prn2md emits error try to generate an GitHub OAuth access token and provide it with the -t flagCHANGELOG.mdCore maintainers and/or the release manager can decide to publish pre-releases at any time before the final release is live for development and testing purposes.
The pre-release must be associated with a newly created tag. The tag is intended to be created while drafting the new pre-release through the GitHub form (this is indeed the only way to correctly associate the tag with a target branch; more on this below).
The pre-release tag must be formatted as M.m.p-r, where r is the pre-release version information (e.g. 0.35.0-rc1).
To create both pre-release tag and pre-release, do the following:
M.m.p-r both as tag version and release titlerelease/M.m.x as "target branch" for the new tag-dev bucket and container images will be tagged with the specified tagIn order to check the status of the release pipeline click on the GitHub Actions tab in the Falco repository and filter by release.
Assume M.m.p is the new version.
M.m.p both as tag version and release titlerelease/M.m.x as "target branch" for the new tagIn order to check the status of the release pipeline click on the GitHub Actions tab in the Falco repository and filter by release.
For each release we archive the meeting notes in git for historical purposes.
release-M.m.p.mdAnnounce the new release to the world!
This section provides more details around the versioning of the components that make up Falco's core. It can also be a useful guide for the uninitiated to be more informed about Falco's source. Because libs makes up the greater portion of the source code of the Falco binary and is the home of each of the kernel drivers and engines, the libs release doc is an excellent additional resource. In addition, the plugins release doc provides similar details around Falco's plugins. SHA256 checksums are provided throughout Falco's source code to empower the end user to perform integrity checks. All Falco releases also contain the sources as part of the packages.
x.y.z), see Procedures section. Note that the Falco version is a sem-ver-like schema, but not fully compatible with sem-ver.FALCO_ENGINE_CHECKSUM has changed. The checksum is computed by considering the available rules fields (see currently supported Falco fields), the event types (see currently supported Falco events), and the supported driver schema version. A checksum indicates that something was not available in previous engine versions. See the rules release guidelines to understand how this affects the versioning of Falco rules. Breaking changes introduced in the Falco engine are not necessarily tied to the drivers or libs versions. The version number must be incremented every time and only when a single change or an atomic group of changes - which meet the criteria described above - is included in the master branch. Thus, a version bump can occur multiple times during the development and testing phases of a given release cycle. A given version bump must not group multiple changes that occurred sporadically during the release cycle.libs commit. However, for the official Falco build FALCOSECURITY_LIBS_VERSION flag that references the stable libs version is used (read below).Falco version: x.y.z (sem-ver like)
Libs version: x.y.z (sem-ver like)
Plugin API: x.y.z (sem-ver like)
Engine: x
Driver:
API version: x.y.z (sem-ver)
Schema version: x.y.z (sem-ver)
Default driver: x.y.z+driver (sem-ver like, indirectly encodes compatibility range in addition to default version Falco is shipped with)
x.y.z) and when building Falco the libs version is set via the FALCOSECURITY_LIBS_VERSION flag (see above).Default driver has been introduced, allowing for implicit declaration of compatible driver versions. For example, if the default driver version is 5.0.1+driver, Falco works with all driver versions >= 5.0.1 and < 6.0.0. This is a consequence of how the driver version is constructed starting from the Driver API version and Driver Schema version. Driver API and Schema versions are explained in the respective libs driver doc -> Falco's driver-loader will always fetch the default driver, therefore a Falco release is always "shipped" with the driver version corresponding to the default driver.x.y.z)