summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorAdrian Vovk <adrianvovk@gmail.com>2024-06-22 20:48:50 +0200
committerAdrian Vovk <adrianvovk@gmail.com>2024-10-18 23:58:45 +0200
commite1384cfb096ad3561e3d20f193c37f59d5379768 (patch)
tree8473ee472b7583f21aa88b45eb45fe8be81daace /man
parentfs-util: Introduce symlinkat_idempotent (diff)
downloadsystemd-e1384cfb096ad3561e3d20f193c37f59d5379768.tar.xz
systemd-e1384cfb096ad3561e3d20f193c37f59d5379768.zip
sysupdate: Introduce optional features
Optional features allow distros to define sets of transfers that can be enabled or disabled by the system administrator. This is useful for situations where a distro may want to ship some resources version-locked to the core OS, but many people have no need for the resource, such as: development tools/compilers, drivers for specialized hardware, language packs, etc We also rename sysupdate.d/*.conf -> sysupdate.d/*.transfer, because now there are more than one type of definition in sysupdate.d/. For backwards compat, we still load *.conf files as long as no *.transfer files are found and the *.conf files don't try to declare themselves as part of any features Fixes https://github.com/systemd/systemd/issues/33343 Fixes https://github.com/systemd/systemd/issues/33344
Diffstat (limited to 'man')
-rw-r--r--man/rules/meson.build1
-rw-r--r--man/sysupdate.d.xml83
-rw-r--r--man/sysupdate.features.xml338
3 files changed, 402 insertions, 20 deletions
diff --git a/man/rules/meson.build b/man/rules/meson.build
index 080aa44b3d..5f69f01cc4 100644
--- a/man/rules/meson.build
+++ b/man/rules/meson.build
@@ -1192,6 +1192,7 @@ manpages = [
['systemd.unit', '5', [], ''],
['systemd.v', '7', [], ''],
['sysupdate.d', '5', [], 'ENABLE_SYSUPDATE'],
+ ['sysupdate.features', '5', [], 'ENABLE_SYSUPDATE'],
['sysusers.d', '5', [], 'ENABLE_SYSUSERS'],
['telinit', '8', [], 'HAVE_SYSV_COMPAT'],
['timedatectl', '1', [], 'ENABLE_TIMEDATECTL'],
diff --git a/man/sysupdate.d.xml b/man/sysupdate.d.xml
index 070d630735..bec423705c 100644
--- a/man/sysupdate.d.xml
+++ b/man/sysupdate.d.xml
@@ -23,21 +23,23 @@
<refsynopsisdiv>
<para><simplelist>
- <member><filename>/etc/sysupdate.d/*.conf</filename></member>
- <member><filename>/run/sysupdate.d/*.conf</filename></member>
- <member><filename>/usr/local/lib/sysupdate.d/*.conf</filename></member>
- <member><filename>/usr/lib/sysupdate.d/*.conf</filename></member>
+ <member><filename>/etc/sysupdate.d/*.transfer</filename></member>
+ <member><filename>/run/sysupdate.d/*.transfer</filename></member>
+ <member><filename>/usr/local/lib/sysupdate.d/*.transfer</filename></member>
+ <member><filename>/usr/lib/sysupdate.d/*.transfer</filename></member>
</simplelist></para>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
- <para><filename>sysupdate.d/*.conf</filename> files describe how specific resources on the local system
- shall be updated from a remote source. Each such file defines one such transfer: typically a remote
- HTTP/HTTPS resource as source; and a local file, directory or partition as target. This may be used as a
- simple, automatic, atomic update mechanism for the OS itself, for containers, portable services or system
- extension images — but in fact may be used to update any kind of file from a remote source.</para>
+ <para>These files describe how specific resources on the local system shall be updated from a remote
+ source.
+ Each such file defines one such transfer: typically a remote HTTP/HTTPS resource as source; and a local
+ file, directory or partition as target.
+ This may be used as a simple, automatic, atomic update mechanism for the OS itself, for containers,
+ portable services or system extension images — but in fact may be used to update any kind of file from a
+ remote source.</para>
<para>The
<citerefentry><refentrytitle>systemd-sysupdate</refentrytitle><manvolnum>8</manvolnum></citerefentry>
@@ -48,14 +50,22 @@
versions, in order to implement flexible update schemes, e.g. A/B updating (or a superset thereof,
e.g. A/B/C, A/B/C/D, …).</para>
- <para>Each <filename>*.conf</filename> file defines one transfer, i.e. describes one resource to
- update. Typically, multiple of these files (i.e. multiple of such transfers) are defined together, and
+ <para>Each <filename>*.transfer</filename> file defines one transfer, i.e. describes one resource to
+ update.
+ Typically, multiple of these files (i.e. multiple of such transfers) are defined together, and
are bound together by a common version identifier in order to update multiple resources at once on each
update operation, for example to update a kernel, a root file system and a Verity partition in a single,
combined, synchronized operation, so that only a combined update of all three together constitutes a
- complete update.</para>
+ complete update.
+ We'll call such a collection of transfers a target.
+ <command>systemd-sysupdate</command> always operates on a single target.</para>
- <para>Each <filename>*.conf</filename> file contains three sections: [Transfer], [Source] and [Target].</para>
+ <para>Transfers may be grouped together into sets that can be individually enabled or disabled by the
+ system administrator, called "Optional Features":
+ <citerefentry><refentrytitle>sysupdate.features</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
+ </para>
+
+ <para>Each <filename>*.transfer</filename> file contains three sections: [Transfer], [Source] and [Target].</para>
</refsect1>
<refsect1>
@@ -106,8 +116,8 @@
<para>An update can only complete if the relevant URLs provide their resources for the same version,
i.e. for the same value of <literal>@v</literal>.</para>
- <para>The above may be translated into three <filename>*.conf</filename> files in
- <filename>sysupdate.d/</filename>, one for each resource to transfer. The <filename>*.conf</filename>
+ <para>The above may be translated into three <filename>*.transfer</filename> files in
+ <filename>sysupdate.d/</filename>, one for each resource to transfer. The <filename>*.transfer</filename>
files configure the type of download, and what place to write the download to (i.e. whether to a
partition or a file in the file system). Most importantly these files contain the URL, partition name and
filename patterns shown above that describe how these resources are called on the source and how they
@@ -130,11 +140,11 @@
lists file names and their SHA256 hashes.</para></listitem>
</itemizedlist>
- <para>Transfers are done in the alphabetical order of the <filename>.conf</filename> file names they are
+ <para>Transfers are done in the alphabetical order of the <filename>.transfer</filename> file names they are
defined in. First, the resource data is downloaded directly into a target file/directory/partition. Once
this is completed for all defined transfers, in a second step the files/directories/partitions are
renamed to their final names as defined by the target <varname>MatchPattern=</varname>, again in the
- order the <filename>.conf</filename> transfer file names dictate. This step is not atomic, however it is
+ order the <filename>.transfer</filename> transfer file names dictate. This step is not atomic, however it is
guaranteed to be executed strictly in order with suitable disk synchronization in place. Typically, when
updating an OS one of the transfers defines the entry point when booting. Thus it is generally a good idea
to order the resources via the transfer configuration file names so that the entry point is written
@@ -519,6 +529,39 @@
<xi:include href="version-info.xml" xpointer="v257"/></listitem>
</varlistentry>
+
+ <varlistentry>
+ <term><varname>Features=</varname></term>
+
+ <listitem><para>A space-separated list of
+ <citerefentry><refentrytitle>sysupdate.features</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ that this transfer belongs to, by name.
+ This option may be specified more than once, in which case the specified list of features is merged.
+ If the empty string is assigned to this option, the list is reset and all prior assignments will have
+ no effect.
+ For example: <literal>Features=foo bar</literal> specifies that the transfer belongs to
+ <literal>foo.feature</literal> and <literal>bar.feature</literal>.</para>
+
+ <para>If the list of features is empty, then this transfer is always used.
+ If this transfer belongs to more than one feature, then it will be used if <emphasis>any</emphasis>
+ one of the listed features is enabled.
+ A name that does not correspond to a defined feature will resolve to an implicit feature that is
+ always disabled.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>RequisiteFeatures=</varname></term>
+
+ <listitem><para>This is like <varname>Features=</varname>, except that <emphasis>all</emphasis>
+ features listed here must be enabled for this transfer to be enabled.
+ If both options are specified, then they both apply: the transfer will be enabled only if all
+ features specified here are enabled, and at least one feature listed in <varname>Features=</varname>
+ is enabled.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
</variablelist>
</refsect1>
@@ -869,7 +912,7 @@
partition, and a unified kernel image to update as one. This example is an extension of the example
discussed earlier in this man page.</para>
- <para><programlisting># /usr/lib/sysupdate.d/50-verity.conf
+ <para><programlisting># /usr/lib/sysupdate.d/50-verity.transfer
[Transfer]
ProtectVersion=%A
@@ -899,7 +942,7 @@ ReadOnly=1</programlisting></para>
<citerefentry><refentrytitle>systemd-gpt-auto-generator</refentrytitle><manvolnum>8</manvolnum></citerefentry>
suggests).</para>
- <para><programlisting># /usr/lib/sysupdate.d/60-root.conf
+ <para><programlisting># /usr/lib/sysupdate.d/60-root.transfer
[Transfer]
ProtectVersion=%A
@@ -918,7 +961,7 @@ ReadOnly=1</programlisting></para>
<para>The above defines a matching transfer definition for the root file system.</para>
- <para><programlisting># /usr/lib/sysupdate.d/70-kernel.conf
+ <para><programlisting># /usr/lib/sysupdate.d/70-kernel.transfer
[Transfer]
ProtectVersion=%A
diff --git a/man/sysupdate.features.xml b/man/sysupdate.features.xml
new file mode 100644
index 0000000000..d33df94490
--- /dev/null
+++ b/man/sysupdate.features.xml
@@ -0,0 +1,338 @@
+<?xml version='1.0'?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+ "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
+<!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
+
+<refentry id="sysupdate.features" conditional='ENABLE_SYSUPDATE'
+ xmlns:xi="http://www.w3.org/2001/XInclude">
+
+ <refentryinfo>
+ <title>sysupdate.features</title>
+ <productname>systemd</productname>
+ </refentryinfo>
+
+ <refmeta>
+ <refentrytitle>sysupdate.features</refentrytitle>
+ <manvolnum>5</manvolnum>
+ </refmeta>
+
+ <refnamediv>
+ <refname>sysupdate.features</refname>
+ <refpurpose>Definition Files for Optional Features</refpurpose>
+ </refnamediv>
+
+ <refsynopsisdiv>
+ <para><simplelist>
+ <member><filename>/etc/sysupdate.d/*.feature</filename></member>
+ <member><filename>/run/sysupdate.d/*.feature</filename></member>
+ <member><filename>/usr/local/lib/sysupdate.d/*.feature</filename></member>
+ <member><filename>/usr/lib/sysupdate.d/*.feature</filename></member>
+ </simplelist></para>
+ </refsynopsisdiv>
+
+ <refsect1>
+ <title>Description</title>
+
+ <para>"Optional Features" are functionality provided by
+ <citerefentry><refentrytitle>systemd-sysupdate</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
+ that allow a distribution to define sets of
+ <citerefentry><refentrytitle>sysupdate.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>
+ transfer definitions that are intended to be enabled or disabled by the system administrator.</para>
+
+ <para>When a feature is enabled, transfers belonging to it will be considered when checking for and
+ downloading updates, when vacuuming, and in all other situations.
+ In effect, transfers belonging to a feature will always be updated in lock-step with the rest of their
+ target.
+ This is the primary difference an Optional Feature and a <command>systemd-sysupdate</command> component.
+ When a feature is disabled, its transfers will not be considered when checking for and downloading updates,
+ but <command>systemd-sysupdate</command> will still consider them while vacuuming and in other situations
+ where it needs to determine ownership over previously downloaded system resources.
+ <command>systemd-sysupdate</command> will clean up all instances of the feature's transfers whenever it
+ is disabled, effectively uninstalling it.</para>
+
+ <para>Optional Features are described by <filename>sysupdate.d/*.feature</filename> files, which are
+ defined below.
+ Transfers can declare that they belong to a feature via the <varname>Features=</varname> setting.
+ Feature definitions support drop-in files, which are most commonly used to override the
+ <varname>Enabled=</varname> setting).
+ They can also be masked out to hide the availability of the feature entirely.</para>
+
+ <para>Each <filename>*.feature</filename> file contains one section: [Feature].</para>
+ </refsect1>
+
+ <refsect1>
+ <title>[Feature] Section Options</title>
+
+ <para>This section defines general properties of this feature.</para>
+
+ <variablelist>
+ <varlistentry>
+ <term><varname>Description=</varname></term>
+
+ <listitem><para>A short human readable description of this feature.
+ This may be used as a label for this feature, so the string should meaningfully identify the feature
+ among the features available in <filename>sysupdate.d/</filename>.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>Documentation=</varname></term>
+
+ <listitem><para>A user-presentable URL to documentation about this feature.
+ This setting supports specifier expansion; see below for details on supported specifiers.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>AppStream=</varname></term>
+
+ <listitem><para>A URL to an
+ <ulink url="https://www.freedesktop.org/software/appstream/docs/chap-CatalogData.html">AppStream catalog</ulink>
+ XML file.
+ This may be used by software centers (such as GNOME Software or KDE Discover) to present rich
+ metadata about this feature.
+ This includes display names, chagnelogs, icons, and more.
+ This setting supports specifier expansion; see below for details on supported specifiers.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><varname>Enabled=</varname></term>
+
+ <listitem><para>Whether or not this feature is enabled. If unspecified, the feature is disabled
+ by default.</para>
+
+ <xi:include href="version-info.xml" xpointer="v257"/></listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
+ <refsect1>
+ <title>Specifiers</title>
+
+ <para>Specifiers may be used in the <varname>Documentation=</varname> and <varname>AppStream=</varname>
+ settings. The following expansions are understood:</para>
+
+ <table class='specifiers'>
+ <title>Specifiers available</title>
+ <tgroup cols='3' align='left' colsep='1' rowsep='1'>
+ <colspec colname="spec" />
+ <colspec colname="mean" />
+ <colspec colname="detail" />
+ <thead>
+ <row>
+ <entry>Specifier</entry>
+ <entry>Meaning</entry>
+ <entry>Details</entry>
+ </row>
+ </thead>
+ <tbody>
+ <xi:include href="standard-specifiers.xml" xpointer="a"/>
+ <xi:include href="standard-specifiers.xml" xpointer="A"/>
+ <xi:include href="standard-specifiers.xml" xpointer="b"/>
+ <xi:include href="standard-specifiers.xml" xpointer="B"/>
+ <xi:include href="standard-specifiers.xml" xpointer="H"/>
+ <xi:include href="standard-specifiers.xml" xpointer="l"/>
+ <xi:include href="standard-specifiers.xml" xpointer="m"/>
+ <xi:include href="standard-specifiers.xml" xpointer="M"/>
+ <xi:include href="standard-specifiers.xml" xpointer="o"/>
+ <xi:include href="standard-specifiers.xml" xpointer="v"/>
+ <xi:include href="standard-specifiers.xml" xpointer="w"/>
+ <xi:include href="standard-specifiers.xml" xpointer="W"/>
+ <xi:include href="standard-specifiers.xml" xpointer="T"/>
+ <xi:include href="standard-specifiers.xml" xpointer="V"/>
+ <xi:include href="standard-specifiers.xml" xpointer="percent"/>
+ </tbody>
+ </tgroup>
+ </table>
+ </refsect1>
+
+ <refsect1>
+ <title>Examples</title>
+
+ <example>
+ <title>Development Tools for Image-Based OS</title>
+
+ <para>We'll use the hypothetical "foobarOS" described in
+ <citerefentry><refentrytitle>sysupdate.d</refentrytitle><manvolnum>5</manvolnum></citerefentry> as our
+ example base OS.
+ The vast majority of foobarOS's users have no need for a compiler, build system, debugger, and other
+ such development tools to be part of their OS.
+ However, the developers of foobarOS itself need this build tooling to be available.
+ So, foobarOS needs to provide a system extension image (see
+ <citerefentry><refentrytitle>systemd-sysext</refentrytitle><manvolnum>8</manvolnum></citerefentry>)
+ containing these development tools, and this image must be updated in lock-step with the underlying
+ base OS.
+ This is a great use case for an optional OS feature, so let's define one:
+ </para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/devel.feature
+[Feature]
+Description=Development Tools
+Documentation=https://developer.example.com/foobarOS/getting-started
+Enabled=false
+</programlisting></para>
+
+ <para>The above defines the <literal>devel</literal> feature, and disables it by default.
+ Now let's a define a transfer that's associated with this feature:</para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/50-devel.transfer
+[Transfer]
+Features=devel
+ProtectVersion=%A
+
+[Source]
+Type=url-file
+Path=https://download.example.com/
+MatchPattern=foobarOS_@v_devel.raw.xz
+
+[Target]
+Type=regular-file
+Path=/var/lib/extensions
+MatchPattern=foobarOS_@v_devel.raw
+Mode=0444
+InstancesMax=2
+</programlisting></para>
+
+ <para>With these two files, we have created a feature called <literal>devel</literal> that, when
+ enabled, will download and decompress the appropriate version of
+ <literal>https://download.example.com/foobarOS_@v_devel.raw.xz</literal> into
+ <literal>/var/lib/extensions/foobarOS_@v_devel.raw</literal> during each OS update.</para>
+
+ <para>The developers of foobarOS can enable the <literal>devel</literal> feature on their workstations
+ by creating the following drop-in:</para>
+
+ <para><programlisting># /etc/sysupdate.d/devel.feature.d/enable.conf
+[Feature]
+Enabled=true
+</programlisting></para>
+ </example>
+
+ <example>
+ <title>Proprietary Drivers</title>
+
+ <para>Suppose that many of foobarOS's users have a GPU manufactured by the MVISUAL corporation.
+ Due to lack of documentation and difficulty in reverse-engineering the hardware, the open-source
+ drivers for MVISUAL GPUs are unable to make proper use of available graphics and compute performance.
+ MVISUAL provides a redistributable proprietary driver for their cards, and foobarOS's developers
+ distribute them to address their users' needs.</para>
+
+ <para>MVISUAL's driver has a couple different parts that must be installed for it to function: a UKI
+ addon to configure the kernel command-line, an initrd system extension image to add the MVISUAL kernel
+ module into the initrd, and a regular system extension image to add the proprietary OpenGL and Vulkan
+ userspace drivers.
+ All of these should be version-locked to the core OS.</para>
+
+ <para>Let's start by defining an optional feature named <literal>mvisual-driver</literal>:</para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/mvisual-driver.feature
+[Feature]
+Description=MVISUAL Proprietary GPU Driver
+Documentation=https://support.example.com/foobarOS/mvisual
+AppStream=https://metadata.example.com/mvisual-driver-%A.xml.gz
+</programlisting></para>
+
+ <para>Note that we define AppStream metadata for this feature, because we want software centers to
+ present it to end-users.
+ Next, let's define the corresponding transfers:</para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/50-mvisual-userspace.transfer
+[Transfer]
+Features=mvisual-driver
+ProtectVersion=%A
+
+[Source]
+Type=url-file
+Path=https://download.example.com/
+MatchPattern=foobarOS_@v_mvisual_userspace.raw.xz
+
+[Target]
+Type=regular-file
+Path=/var/lib/extensions
+MatchPattern=foobarOS_@v_mvisual.raw
+Mode=0444
+InstancesMax=2
+</programlisting></para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/70-mvisual-initrd.transfer
+[Transfer]
+Features=mvisual-driver
+ProtectVersion=%A
+
+[Source]
+Type=url-file
+Path=https://download.example.com/
+MatchPattern=foobarOS_@v_mvisual_initrd.raw.xz
+
+[Target]
+Type=regular-file
+Path=/EFI/Linux
+PathRelativeTo=boot
+MatchPattern=foobarOS_@v.efi.extra.d/foobarOS_mvisual.raw
+Mode=0444
+InstancesMax=2
+</programlisting></para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/90-mvisual-addon.transfer
+[Transfer]
+Features=mvisual-driver
+ProtectVersion=%A
+
+[Source]
+Type=url-file
+Path=https://download.example.com/
+MatchPattern=foobarOS_@v_mvisual_addon.efi.xz
+
+[Target]
+Type=regular-file
+Path=/EFI/Linux
+PathRelativeTo=boot
+MatchPattern=foobarOS_@v.efi.extra.d/foobarOS_mvisual.addon.efi
+Mode=0444
+InstancesMax=2
+</programlisting></para>
+ </example>
+
+ <example>
+ <title>Intersecting Features</title>
+
+ <para>Suppose that MVISUAL releases special tooling to help a distribution developer troubleshoot
+ crashes in their proprietary driver.
+ Let's define a transfer:</para>
+
+ <para><programlisting># /usr/lib/sysupdate.d/50-mvisual-debugger.transfer
+[Transfer]
+RequisiteFeatures=devel mvisual-driver
+ProtectVersion=%A
+
+[Source]
+Type=url-file
+Path=https://download.example.com/
+MatchPattern=foobarOS_@v_devel.raw.xz
+
+[Target]
+Type=regular-file
+Path=/var/lib/extensions
+MatchPattern=foobarOS_@v_devel.raw
+Mode=0444
+InstancesMax=2
+</programlisting></para>
+
+ <para>This transfer will be used only if both the <literal>devel</literal> and
+ <literal>mvisual-driver</literal> features are enabled.</para>
+ </example>
+ </refsect1>
+
+ <refsect1>
+ <title>See Also</title>
+ <para><simplelist type="inline">
+ <member><citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry></member>
+ <member><citerefentry><refentrytitle>systemd-sysupdate</refentrytitle><manvolnum>8</manvolnum></citerefentry></member>
+ <member><citerefentry><refentrytitle>sysupdate.d</refentrytitle><manvolnum>5</manvolnum></citerefentry></member>
+ </simplelist></para>
+ </refsect1>
+
+</refentry>