How updates work in CentOS

Tuesday, 6, September 2022 Davide Cavalca distro No Comments

This document is an attempt to explain the relationship between Fedora Linux, CentOS Stream and RHEL, with a specific focus around how package updates flow between them.

From Fedora to CentOS Stream

Fedora is where day-to-day development and innovation happens. Fedora Linux releases every 6 months and each release is maintained for about 13 months. Major changes should be (and almost always are) deployed in Fedora first, following the Change process. Fedora packages sources are maintained in dist-git and built in Fedora Koji.

At the beginning of the development cycle of a new CentOS major release (meaning, 9, 10, etc.), Fedora is branched into the new distribution. Historically, this is done from the current stable Fedora release at the branching time (e.g. Fedora 34 for CentOS Stream 9). After the distribution is branched, the development cycle for the new CentOS Stream release begins.

Nowadays, Fedora ELN helps prepare for the branching process by continuously rebuilding Rawhide (the development version of Fedora). This provides a view into what a new CentOS Stream could look like if it were branched from Fedora today, and ensures that the spec file logic stays compatible with the future set of EL macros and build flags at any given point in time.

From CentOS Stream to RHEL

CentOS Stream package sources are maintained in GitLab, and that is where most of the distribution development work happens after branching. Packages are built on the CentOS Stream Koji and are delivered as part of regularly-produced distribution composes. Composes for Stream are generated 2-3 times a week, and they usually include updates that have been released during that time window, but there is no actual SLA around updates flowing into Stream.

RHEL point releases are essentially, but not actually, a snapshot in time of a given Stream compose, with actual development work happening on the Stream side and showing up there first. In general, a given package will go through QA, then land into Stream, then down the road be incorporated into the next RHEL minor release. In this sense, Stream acts as a continuously-delivered preview of the next RHEL minor release. Aleksandra Fedorova also talks about this process in detail in her OpenInfra Summit talk.

Once a given RHEL release is out, the corresponding sources are delivered on git.centos.org, where they can be consumed by RHEL rebuild projects such as Alma Linux and Rocky Linux.

Deep dive: critical security erratas

As explained above, the general assumption is that packages will land in CentOS Stream first. There is one exception to this, which is embargoes security fixes and security erratas rated critical or important. These are developed by Red Hat and held until the embargo expires. They are then released to RHEL first, and then flow into Stream.

There’s two practical scenarios at hand here.

RHEL and CentOS Stream have a package with the same NVR

When an errata comes out for RHEL, the package is updated there. In this case, you will see the same NVR that came out for RHEL come out for Stream as well.

The polkit CVE from last December is a good example of this: both RHEL 8 and CentOS Stream 8 were at polkit-0.115-11.el8_4.1 before the CVE, and polkit-0.115-13.el8_5.1 fixes the CVE in both.

CentOS Stream has a package with a greater NVR than RHEL

In this scenario, CentOS Stream is ahead of RHEL for a given package. When an errata comes out for RHEL the package is updated there, but its version remains behind the Stream one. In this case, assuming the update still applies to the CentOS Stream version, a new update will be made for Stream, either by backporting the changes onto the latest Stream package version or by rebasing the package.

Another CVE, this time in libxml2, provides a good example of this. RHEL was at libxml2-2.9.7-9.el8 before the CVE, and issued a fixed package as libxml2-2.9.7-9.el8_4.2. Within Stream, the fix was instead included in libxml2-2.9.7-11.el8.

Deep dive: CentOS Stream 8

CentOS Stream 8 was the first version of CentOS where the Stream development process was introduced, and has some significant differences. Notably:

There is ongoing work to migrate CentOS Stream 8 onto the current development process and tooling, and the hope is to eventually minimize and hopefully eliminate these differences.

Leave a Reply

Your email address will not be published. Required fields are marked *