]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/sysupdate.d.xml
sysupdate: Allow patterns to match path with directories
[thirdparty/systemd.git] / man / sysupdate.d.xml
CommitLineData
436aa3b1
LP
1<?xml version='1.0'?>
2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
5
6<refentry id="sysupdate.d" conditional='ENABLE_SYSUPDATE'
7 xmlns:xi="http://www.w3.org/2001/XInclude">
8
9 <refentryinfo>
10 <title>sysupdate.d</title>
11 <productname>systemd</productname>
12 </refentryinfo>
13
14 <refmeta>
15 <refentrytitle>sysupdate.d</refentrytitle>
16 <manvolnum>5</manvolnum>
17 </refmeta>
18
19 <refnamediv>
20 <refname>sysupdate.d</refname>
21 <refpurpose>Transfer Definition Files for Automatic Updates</refpurpose>
22 </refnamediv>
23
24 <refsynopsisdiv>
25 <para><literallayout><filename>/etc/sysupdate.d/*.conf</filename>
26<filename>/run/sysupdate.d/*.conf</filename>
27<filename>/usr/lib/sysupdate.d/*.conf</filename>
28 </literallayout></para>
29 </refsynopsisdiv>
30
31 <refsect1>
32 <title>Description</title>
33
34 <para><filename>sysupdate.d/*.conf</filename> files describe how specific resources on the local system
35 shall be updated from a remote source. Each such file defines one such transfer: typically a remote
36 HTTP/HTTPS resource as source; and a local file, directory or partition as target. This may be used as a
37 simple, automatic, atomic update mechanism for the OS itself, for containers, portable services or system
38 extension images — but in fact may be used to update any kind of file from a remote source.</para>
39
40 <para>The
41 <citerefentry><refentrytitle>systemd-sysupdate</refentrytitle><manvolnum>8</manvolnum></citerefentry>
42 command reads these files and uses them to determine which local resources should be updated, and then
43 executes the update.</para>
44
45 <para>Both the remote HTTP/HTTPS source and the local target typically exist in multiple, concurrent
46 versions, in order to implement flexible update schemes, e.g. A/B updating (or a superset thereof,
47 e.g. A/B/C, A/B/C/D, …).</para>
48
49 <para>Each <filename>*.conf</filename> file defines one transfer, i.e. describes one resource to
50 update. Typically, multiple of these files (i.e. multiple of such transfers) are defined together, and
51 are bound together by a common version identifier in order to update multiple resources at once on each
52 update operation, for example to update a kernel, a root file system and a Verity partition in a single,
53 combined, synchronized operation, so that only a combined update of all three together constitutes a
54 complete update.</para>
55
56 <para>Each <filename>*.conf</filename> file contains three sections: [Transfer], [Source] and [Target].</para>
57 </refsect1>
58
59 <refsect1>
60 <title>Basic Mode of Operation</title>
61
62 <para>Disk-image based OS updates typically consist of multiple different resources that need to be
63 updated together, for example a secure OS update might consist of a root file system image to drop into a
64 partition, a matching Verity integrity data partition image, and a kernel image prepared to boot into the
65 combination of the two partitions. The first two resources are files that are downloaded and placed in a
66 disk partition, the latter is a file that is downloaded and placed in a regular file in the boot file
67 system (e.g. EFI system partition). Hence, during an update of a hypothetical operating system "foobarOS"
68 to a hypothetical version 47 the following operations should take place:</para>
69
70 <orderedlist>
71 <listitem><para>A file <literal>https://download.example.com/foobarOS_47.root.xz</literal> should be
72 downloaded, decompressed and written to a previously unused partition with GPT partition type UUID
73 4f68bce3-e8cd-4db1-96e7-fbcaf984b709 for x86-64, as per <ulink
db811444 74 url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable Partitions
436aa3b1
LP
75 Specification</ulink>.</para></listitem>
76
77 <listitem><para>Similarly, a file <literal>https://download.example.com/foobarOS_47.verity.xz</literal>
78 should be downloaded, decompressed and written to a previously empty partition with GPT partition type
6a1d8f11 79 UUID of 2c7357ed-ebd2-46d9-aec1-23d437ec2bf5 (i.e. the partition type for Verity integrity information
436aa3b1
LP
80 for x86-64 root file systems).</para></listitem>
81
82 <listitem><para>Finally, a file <literal>https://download.example.com/foobarOS_47.efi.xz</literal> (a
db811444 83 unified kernel, as per <ulink url="https://uapi-group.org/specifications/specs/boot_loader_specification">Boot Loader
0470f919
AV
84 Specification</ulink> Type #2) should be downloaded, decompressed and written to the $BOOT file system,
85 i.e. to <filename>EFI/Linux/foobarOS_47.efi</filename> in the ESP or XBOOTLDR partition.</para></listitem>
436aa3b1
LP
86 </orderedlist>
87
88 <para>The version-independent generalization of this would be (using the special marker
89 <literal>@v</literal> as wildcard for the version identifier):</para>
90
91 <orderedlist>
92 <listitem><para>A transfer of a file <literal>https://download.example.com/foobarOS_@v.root.xz</literal>
93 → a local, previously empty GPT partition of type 4f68bce3-e8cd-4db1-96e7-fbcaf984b709, with the label to
94 be set to <literal>foobarOS_@v</literal>.</para></listitem>
95
96 <listitem><para>A transfer of a file <literal>https://download.example.com/foobarOS_@v.verity.xz</literal>
97 → a local, previously empty GPT partition of type 2c7357ed-ebd2-46d9-aec1-23d437ec2bf5, with the label to be
98 set to <literal>foobarOS_@v_verity</literal>.</para></listitem>
99
100 <listitem><para>A transfer of a file <literal>https://download.example.com/foobarOS_@v.efi.xz</literal>
0470f919 101 → a local file <filename>$BOOT/EFI/Linux/foobarOS_@v.efi</filename>.</para></listitem>
436aa3b1
LP
102 </orderedlist>
103
104 <para>An update can only complete if the relevant URLs provide their resources for the same version,
105 i.e. for the same value of <literal>@v</literal>.</para>
106
107 <para>The above may be translated into three <filename>*.conf</filename> files in
108 <filename>sysupdate.d/</filename>, one for each resource to transfer. The <filename>*.conf</filename>
109 files configure the type of download, and what place to write the download to (i.e. whether to a
110 partition or a file in the file system). Most importantly these files contain the URL, partition name and
111 filename patterns shown above that describe how these resources are called on the source and how they
112 shall be called on the target.</para>
113
114 <para>In order to enumerate available versions and figuring out candidates to update to, a mechanism is
115 necessary to list suitable files:</para>
116
117 <itemizedlist>
118 <listitem><para>For partitions: the surrounding GPT partition table contains a list of defined
119 partitions, including a partition type UUID and a partition label (in this scheme the partition label
6a1d8f11 120 plays a role for the partition similar to the filename for a regular file).</para></listitem>
436aa3b1
LP
121
122 <listitem><para>For regular files: the directory listing of the directory the files are contained in
123 provides a list of existing files in a straightforward way.</para></listitem>
124
125 <listitem><para>For HTTP/HTTPS sources a simple scheme is used: a manifest file
126 <filename>SHA256SUMS</filename>, following the format defined by <citerefentry
127 project='man-pages'><refentrytitle>sha256sum</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
128 lists file names and their SHA256 hashes.</para></listitem>
129 </itemizedlist>
130
131 <para>Transfers are done in the alphabetical order of the <filename>.conf</filename> file names they are
132 defined in. First, the resource data is downloaded directly into a target file/directory/partition. Once
133 this is completed for all defined transfers, in a second step the files/directories/partitions are
134 renamed to their final names as defined by the target <varname>MatchPattern=</varname>, again in the
135 order the <filename>.conf</filename> transfer file names dictate. This step is not atomic, however it is
136 guaranteed to be executed strictly in order with suitable disk synchronization in place. Typically, when
137 updating an OS one of the transfers defines the entry point when booting. Thus it is generally a good idea
138 to order the resources via the transfer configuration file names so that the entry point is written
139 last, ensuring that any abnormal termination does not leave an entry point around whose backing is not
140 established yet. In the example above it would hence make sense to establish the EFI kernel image last
141 and thus give its transfer configuration file the alphabetically last name.</para>
142
143 <para>See below for an extended, more specific example based on the above.</para>
144 </refsect1>
145
146 <refsect1>
147 <title>Resource Types</title>
148
149 <para>Each transfer file defines one source resource to transfer to one target resource. The following
150 resource types are supported:</para>
151
152 <orderedlist>
153
154 <listitem><para>Resources of type <literal>url-file</literal> encapsulate a file on a web server,
155 referenced via a HTTP or HTTPS URL. When an update takes place, the file is downloaded and decompressed
156 and then written to the target file or partition. This resource type is only available for sources, not
157 for targets. The list of available versions of resources of this type is encoded in
158 <filename>SHA256SUMS</filename> manifest files, accompanied by
159 <filename>SHA256SUMS.gpg</filename> detached signatures.</para></listitem>
160
161 <listitem><para>The <literal>url-tar</literal> resource type is similar, but the file must be a
162 <filename>.tar</filename> archive. When an update takes place, the file is decompressed and unpacked
163 into a directory or btrfs subvolume. This resource type is only available for sources, not for
164 targets. Just like <literal>url-file</literal>, <literal>url-tar</literal> version enumeration makes
165 use of <filename>SHA256SUMS</filename> files, authenticated via
166 <filename>SHA256SUMS.gpg</filename>.</para></listitem>
167
168 <listitem><para>The <literal>regular-file</literal> resource type encapsulates a local regular file on
169 disk. During updates the file is uncompressed and written to the target file or partition. This
170 resource type is available both as source and as target. When updating no integrity or authentication
171 verification is done for resources of this type.</para></listitem>
172
173 <listitem><para>The <literal>partition</literal> resource type is similar to
174 <literal>regular-file</literal>, and encapsulates a GPT partition on disk. When updating, the partition
175 must exist already, and have the correct GPT partition type. A partition whose GPT partition label is
176 set to <literal>_empty</literal> is considered empty, and a candidate to place a newly downloaded
177 resource in. The GPT partition label is used to store version information, once a partition is
178 updated. This resource type is only available for target resources.</para></listitem>
179
180 <listitem><para>The <literal>tar</literal> resource type encapsulates local <filename>.tar</filename>
181 archive files. When an update takes place, the files are uncompressed and unpacked into a target
182 directory or btrfs subvolume. Behaviour of <literal>tar</literal> and <literal>url-tar</literal> is
183 generally similar, but the latter downloads from remote sources, and does integrity and authentication
184 checks while the former does not. The <literal>tar</literal> resource type is only available for source
185 resources.</para></listitem>
186
187 <listitem><para>The <literal>directory</literal> resource type encapsulates local directory trees. This
188 type is available both for source and target resources. If an update takes place on a source resource
189 of this type, a recursive copy of the directory is done.</para></listitem>
190
191 <listitem><para>The <literal>subvolume</literal> resource type is identical to
192 <literal>directory</literal>, except when used as the target, in which case the file tree is placed in
193 a btrfs subvolume instead of a plain directory, if the backing file system supports it (i.e. is
194 btrfs).</para></listitem>
195 </orderedlist>
196
197 <para>As already indicated, only a subset of source and target resource type combinations are
198 supported:</para>
199
200 <table>
201 <title>Resource Types</title>
202
203 <tgroup cols='3' align='left' colsep='1' rowsep='1'>
204 <colspec colname="name" />
205 <colspec colname="explanation" />
206
207 <thead>
208 <row>
209 <entry>Identifier</entry>
210 <entry>Description</entry>
211 <entry>Usable as Source</entry>
212 <entry>When Used as Source: Compatible Targets</entry>
213 <entry>When Used as Source: Integrity + Authentication</entry>
214 <entry>When Used as Source: Decompression</entry>
215 <entry>Usable as Target</entry>
216 <entry>When Used as Target: Compatible Sources</entry>
217 </row>
218 </thead>
219
220 <tbody>
221 <row>
222 <entry><constant>url-file</constant></entry>
223 <entry>HTTP/HTTPS files</entry>
224 <entry>yes</entry>
225 <entry><constant>regular-file</constant>, <constant>partition</constant></entry>
226 <entry>yes</entry>
227 <entry>yes</entry>
228 <entry>no</entry>
229 <entry>-</entry>
230 </row>
231
232 <row>
233 <entry><constant>url-tar</constant></entry>
234 <entry>HTTP/HTTPS <filename>.tar</filename> archives</entry>
235 <entry>yes</entry>
236 <entry><constant>directory</constant>, <constant>subvolume</constant></entry>
237 <entry>yes</entry>
238 <entry>yes</entry>
239 <entry>no</entry>
240 <entry>-</entry>
241 </row>
242
243 <row>
244 <entry><constant>regular-file</constant></entry>
245 <entry>Local files</entry>
246 <entry>yes</entry>
247 <entry><constant>regular-file</constant>, <constant>partition</constant></entry>
248 <entry>no</entry>
249 <entry>yes</entry>
250 <entry>yes</entry>
251 <entry><constant>url-file</constant>, <constant>regular-file</constant></entry>
252 </row>
253
254 <row>
255 <entry><constant>partition</constant></entry>
256 <entry>Local GPT partitions</entry>
257 <entry>no</entry>
258 <entry>-</entry>
259 <entry>-</entry>
260 <entry>-</entry>
261 <entry>yes</entry>
262 <entry><constant>url-file</constant>, <constant>regular-file</constant></entry>
263 </row>
264
265 <row>
266 <entry><constant>tar</constant></entry>
267 <entry>Local <filename>.tar</filename> archives</entry>
268 <entry>yes</entry>
269 <entry><constant>directory</constant>, <constant>subvolume</constant></entry>
270 <entry>no</entry>
271 <entry>yes</entry>
272 <entry>no</entry>
273 <entry>-</entry>
274 </row>
275
276 <row>
277 <entry><constant>directory</constant></entry>
278 <entry>Local directories</entry>
279 <entry>yes</entry>
280 <entry><constant>directory</constant>, <constant>subvolume</constant></entry>
281 <entry>no</entry>
282 <entry>no</entry>
283 <entry>yes</entry>
284 <entry><constant>url-tar</constant>, <constant>tar</constant>, <constant>directory</constant>, <constant>subvolume</constant></entry>
285 </row>
286
287 <row>
288 <entry><constant>subvolume</constant></entry>
289 <entry>Local btrfs subvolumes</entry>
290 <entry>yes</entry>
291 <entry><constant>directory</constant>, <constant>subvolume</constant></entry>
292 <entry>no</entry>
293 <entry>no</entry>
294 <entry>yes</entry>
295 <entry><constant>url-tar</constant>, <constant>tar</constant>, <constant>directory</constant>, <constant>subvolume</constant></entry>
296 </row>
297
298 </tbody>
299 </tgroup>
300 </table>
301 </refsect1>
302
303 <refsect1>
304 <title>Match Patterns</title>
305
306 <para>Both the source and target resources typically exist in multiple versions concurrently. An update
307 operation is done whenever the newest of the source versions is newer than the newest of the target
308 versions. To determine the newest version of the resources a directory listing, partition listing or
309 manifest listing is used, a subset of qualifying entries selected from that, and the version identifier
310 extracted from the file names or partition labels of these selected entries. Subset selection and
311 extraction of the version identifier (plus potentially other metadata) is done via match patterns,
312 configured in <varname>MatchPattern=</varname> in the [Source] and [Target] sections. These patterns are
313 strings that describe how files or partitions are named, with named wildcards for specific fields such as
314 the version identifier. The following wildcards are defined:</para>
315
316 <table>
317 <title>Match Pattern Wildcards</title>
318
319 <tgroup cols='2' align='left' colsep='1' rowsep='1'>
320 <colspec colname="name" />
321 <colspec colname="explanation" />
322
323 <thead>
324 <row>
325 <entry>Wildcard</entry>
326 <entry>Description</entry>
327 <entry>Format</entry>
328 <entry>Notes</entry>
329 </row>
330 </thead>
331
332 <tbody>
333 <row>
334 <entry><literal>@v</literal></entry>
335 <entry>Version identifier</entry>
336 <entry>Valid version string</entry>
337 <entry>Mandatory</entry>
338 </row>
339
340 <row>
341 <entry><literal>@u</literal></entry>
342 <entry>GPT partition UUID</entry>
343 <entry>Valid 128-Bit UUID string</entry>
344 <entry>Only relevant if target resource type chosen as <constant>partition</constant></entry>
345 </row>
346
347 <row>
348 <entry><literal>@f</literal></entry>
349 <entry>GPT partition flags</entry>
350 <entry>Formatted hexadecimal integer</entry>
351 <entry>Only relevant if target resource type chosen as <constant>partition</constant></entry>
352 </row>
353
354 <row>
355 <entry><literal>@a</literal></entry>
356 <entry>GPT partition flag NoAuto</entry>
357 <entry>Either <literal>0</literal> or <literal>1</literal></entry>
db811444 358 <entry>Controls NoAuto bit of the GPT partition flags, as per <ulink url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable Partitions Specification</ulink>; only relevant if target resource type chosen as <constant>partition</constant></entry>
436aa3b1
LP
359 </row>
360
361 <row>
362 <entry><literal>@g</literal></entry>
363 <entry>GPT partition flag GrowFileSystem</entry>
364 <entry>Either <literal>0</literal> or <literal>1</literal></entry>
db811444 365 <entry>Controls GrowFileSystem bit of the GPT partition flags, as per <ulink url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable Partitions Specification</ulink>; only relevant if target resource type chosen as <constant>partition</constant></entry>
436aa3b1
LP
366 </row>
367
368 <row>
369 <entry><literal>@r</literal></entry>
370 <entry>Read-only flag</entry>
371 <entry>Either <literal>0</literal> or <literal>1</literal></entry>
db811444 372 <entry>Controls ReadOnly bit of the GPT partition flags, as per <ulink url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable Partitions Specification</ulink> and other output read-only flags, see <varname>ReadOnly=</varname> below</entry>
436aa3b1
LP
373 </row>
374
375 <row>
376 <entry><literal>@t</literal></entry>
377 <entry>File modification time</entry>
e503019b 378 <entry>Formatted decimal integer, μs since UNIX epoch Jan 1st 1970</entry>
436aa3b1
LP
379 <entry>Only relevant if target resource type chosen as <constant>regular-file</constant></entry>
380 </row>
381
382 <row>
383 <entry><literal>@m</literal></entry>
384 <entry>File access mode</entry>
385 <entry>Formatted octal integer, in UNIX fashion</entry>
386 <entry>Only relevant if target resource type chosen as <constant>regular-file</constant></entry>
387 </row>
388
389 <row>
390 <entry><literal>@s</literal></entry>
391 <entry>File size after decompression</entry>
392 <entry>Formatted decimal integer</entry>
393 <entry>Useful for measuring progress and to improve partition allocation logic</entry>
394 </row>
395
396 <row>
397 <entry><literal>@d</literal></entry>
398 <entry>Tries done</entry>
399 <entry>Formatted decimal integer</entry>
400 <entry>Useful when operating with kernel image files, as per <ulink url="https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT">Automatic Boot Assessment</ulink></entry>
401 </row>
402
403 <row>
404 <entry><literal>@l</literal></entry>
405 <entry>Tries left</entry>
406 <entry>Formatted decimal integer</entry>
6a1d8f11 407 <entry>Useful when operating with kernel image files, as per <ulink url="https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT">Automatic Boot Assessment</ulink></entry>
436aa3b1
LP
408 </row>
409
410 <row>
411 <entry><literal>@h</literal></entry>
412 <entry>SHA256 hash of compressed file</entry>
413 <entry>64 hexadecimal characters</entry>
6a1d8f11 414 <entry>The SHA256 hash of the compressed file; not useful for <constant>url-file</constant> or <constant>url-tar</constant> where the SHA256 hash is already included in the manifest file anyway</entry>
436aa3b1
LP
415 </row>
416 </tbody>
417 </tgroup>
418 </table>
419
420 <para>Of these wildcards only <literal>@v</literal> must be present in a valid pattern, all other
421 wildcards are optional. Each wildcard may be used at most once in each pattern. A typical wildcard
422 matching a file system source image could be <literal>MatchPattern=foobar_@v.raw.xz</literal>, i.e. any file
423 whose name begins with <literal>foobar_</literal>, followed by a version ID and suffixed by
424 <literal>.raw.xz</literal>.</para>
425
426 <para>Do not confuse the <literal>@</literal> pattern matching wildcard prefix with the
427 <literal>%</literal> specifier expansion prefix. The former encapsulate a variable part of a match
428 pattern string, the latter are simple shortcuts that are expanded while the drop-in files are
429 parsed. For details about specifiers, see below.</para>
430 </refsect1>
431
432 <refsect1>
433 <title>[Transfer] Section Options</title>
434
8b9f0921 435 <para>This section defines general properties of this transfer.</para>
436aa3b1
LP
436
437 <variablelist>
438 <varlistentry>
439 <term><varname>MinVersion=</varname></term>
440
441 <listitem><para>Specifies the minimum version to require for this transfer to take place. If the
442 source or target patterns in this transfer definition match files older than this version they will
ec07c3c8
AK
443 be considered obsolete, and never be considered for the update operation.</para>
444
445 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
446 </varlistentry>
447
448 <varlistentry>
449 <term><varname>ProtectVersion=</varname></term>
450
451 <listitem><para>Takes one or more version strings to mark as "protected". Protected versions are
452 never removed while making room for new, updated versions. This is useful to ensure that the
453 currently booted OS version (or auxiliary resources associated with it) is not replaced/overwritten
454 during updates, in order to avoid runtime file system corruptions.</para>
455
456 <para>Like many of the settings in these configuration files this setting supports specifier
457 expansion. It's particularly useful to set this setting to one of the <literal>%A</literal>,
458 <literal>%B</literal> or <literal>%w</literal> specifiers to automatically refer to the current OS
ec07c3c8
AK
459 version of the running system. See below for details on supported specifiers.</para>
460
461 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
462 </varlistentry>
463
464 <varlistentry>
465 <term><varname>Verify=</varname></term>
466
467 <listitem><para>Takes a boolean, defaults to yes. Controls whether to cryptographically verify
468 downloaded resources (specifically: validate the GPG signatures for downloaded
469 <filename>SHA256SUMS</filename> manifest files, via their detached signature files
470 <filename>SHA256SUMS.gpg</filename> in combination with the system keyring
471 <filename>/usr/lib/systemd/import-pubring.gpg</filename> or
472 <filename>/etc/systemd/import-pubring.gpg</filename>).</para>
473
474 <para>This option is essential to provide integrity guarantees for downloaded resources and thus
475 should be left enabled, outside of test environments.</para>
476
477 <para>Note that the downloaded payload files are unconditionally checked against the SHA256 hashes
478 listed in the manifest. This option only controls whether the signatures of these manifests are
479 verified.</para>
480
481 <para>This option only has an effect if the source resource type is selected as
482 <constant>url-file</constant> or <constant>url-tar</constant>, as integrity and authentication
ec07c3c8
AK
483 checking is only available for transfers from remote sources.</para>
484
485 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
486 </varlistentry>
487
488 </variablelist>
489 </refsect1>
490
491 <refsect1>
492 <title>[Source] Section Options</title>
493
8b9f0921 494 <para>This section defines properties of the transfer source.</para>
436aa3b1
LP
495
496 <variablelist>
497 <varlistentry>
498 <term><varname>Type=</varname></term>
499
500 <listitem><para>Specifies the resource type of the source for the transfer. Takes one of
501 <constant>url-file</constant>, <constant>url-tar</constant>, <constant>tar</constant>,
502 <constant>regular-file</constant>, <constant>directory</constant> or
503 <constant>subvolume</constant>. For details about the resource types, see above. This option is
504 mandatory.</para>
505
8fb35004 506 <para>Note that only certain combinations of source and target resource types are supported, see
ec07c3c8
AK
507 above.</para>
508
509 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
510 </varlistentry>
511 </variablelist>
512
513 <variablelist>
514 <varlistentry>
515 <term><varname>Path=</varname></term>
516
517 <listitem><para>Specifies where to find source versions of this resource.</para>
518
519 <para>If the source type is selected as <constant>url-file</constant> or
520 <constant>url-tar</constant> this must be a HTTP/HTTPS URL. The URL is suffixed with
521 <filename>/SHA256SUMS</filename> to acquire the manifest file, with
522 <filename>/SHA256SUMS.gpg</filename> to acquire the detached signature file for it, and with the file
523 names listed in the manifest file in case an update is executed and a resource shall be
524 downloaded.</para>
525
526 <para>For all other source resource types this must be a local path in the file system, referring to
ec07c3c8
AK
527 a local directory to find the versions of this resource in.</para>
528
529 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
530 </varlistentry>
531
532 <varlistentry>
533 <term><varname>MatchPattern=</varname></term>
534
535 <listitem><para>Specifies one or more file name match patterns that select the subset of files that
536 are update candidates as source for this transfer. See above for details on match patterns.</para>
537
538 <para>This option is mandatory. Any pattern listed must contain at least the <literal>@v</literal>
539 wildcard, so that a version identifier may be extracted from the filename. All other wildcards are
ec07c3c8
AK
540 optional.</para>
541
542 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
543 </varlistentry>
544 </variablelist>
545 </refsect1>
546
547 <refsect1>
548 <title>[Target] Section Options</title>
549
8b9f0921 550 <para>This section defines properties of the transfer target.</para>
436aa3b1
LP
551
552 <variablelist>
553 <varlistentry>
554 <term><varname>Type=</varname></term>
555
556 <listitem><para>Specifies the resource type of the target for the transfer. Takes one of
557 <constant>partition</constant>, <constant>regular-file</constant>, <constant>directory</constant> or
558 <constant>subvolume</constant>. For details about the resource types, see above. This option is
559 mandatory.</para>
560
8b9f0921 561 <para>Note that only certain combinations of source and target resource types are supported, see
ec07c3c8
AK
562 above.</para>
563
564 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
565 </varlistentry>
566
567 <varlistentry>
568 <term><varname>Path=</varname></term>
569
570 <listitem><para>Specifies a file system path where to look for already installed versions or place
571 newly downloaded versions of this configured resource. If <varname>Type=</varname> is set to
572 <constant>partition</constant>, expects a path to a (whole) block device node, or the special string
6a1d8f11
JJ
573 <literal>auto</literal> in which case the block device which contains the root file system of the
574 currently booted system is automatically determined and used. If <varname>Type=</varname> is set to
436aa3b1
LP
575 <constant>regular-file</constant>, <constant>directory</constant> or <constant>subvolume</constant>,
576 must refer to a path in the local file system referencing the directory to find or place the version
577 files or directories under.</para>
578
579 <para>Note that this mechanism cannot be used to create or remove partitions, in case
580 <varname>Type=</varname> is set to <constant>partition</constant>. Partitions must exist already, and
581 a special partition label <literal>_empty</literal> is used to indicate empty partitions. To
582 automatically generate suitable partitions on first boot, use a tool such as
ec07c3c8
AK
583 <citerefentry><refentrytitle>systemd-repart</refentrytitle><manvolnum>8</manvolnum></citerefentry>.</para>
584
585 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
586 </varlistentry>
587
0470f919
AV
588 <varlistentry>
589 <term><varname>PathRelativeTo=</varname></term>
590
591 <listitem><para>Specifies what partition <varname>Path=</varname> should be relative to. Takes one of
592 <constant>root</constant>, <constant>esp</constant>, <constant>xbootldr</constant>, or <constant>boot</constant>.
593 If unspecified, defaults to <constant>root</constant>.</para>
594
595 <para>If set to <constant>boot</constant>, the specified <varname>Path=</varname> will be resolved
596 relative to the mount point of the $BOOT partition (i.e. the ESP or XBOOTLDR), as defined by the
597 <ulink url="https://uapi-group.org/specifications/specs/boot_loader_specification">Boot Loader
598 Specification</ulink>.</para>
599
600 <para>The values <constant>esp</constant>, <constant>xbootldr</constant>, and
601 <constant>boot</constant> are only supported when <varname>Type=</varname> is set to
ec07c3c8
AK
602 <constant>regular-file</constant> or <constant>directory</constant>.</para>
603
604 <xi:include href="version-info.xml" xpointer="v254"/></listitem>
0470f919
AV
605 </varlistentry>
606
436aa3b1
LP
607 <varlistentry>
608 <term><varname>MatchPattern=</varname></term>
609
610 <listitem><para>Specifies one or more file name or partition label match patterns that select the
611 subset of files or partitions that are update candidates as targets for this transfer. See above for
612 details on match patterns.</para>
613
614 <para>This option is mandatory. Any pattern listed must contain at least the <literal>@v</literal>
615 wildcard, so that a version identifier may be extracted from the filename. All other wildcards are
616 optional.</para>
617
618 <para>This pattern is both used for matching existing installed versions and for determining the name
619 of new versions to install. If multiple patterns are specified, the first specified is used for
ec07c3c8
AK
620 naming newly installed versions.</para>
621
622 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
623 </varlistentry>
624
625 <varlistentry>
626 <term><varname>MatchPartitionType=</varname></term>
627
628 <listitem><para>When the target <varname>Type=</varname> is chosen as <constant>partition</constant>,
629 specifies the GPT partition type to look for. Only partitions of this type are considered, all other
630 partitions are ignored. If not specified, the GPT partition type <constant>linux-generic</constant>
631 is used. Accepts either a literal type UUID or a symbolic type identifier. For a list of supported
632 type identifiers, see the <varname>Type=</varname> setting in
ec07c3c8
AK
633 <citerefentry><refentrytitle>repart.d</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
634
635 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
636 </varlistentry>
637
638 <varlistentry>
639 <term><varname>PartitionUUID=</varname></term>
640 <term><varname>PartitionFlags=</varname></term>
641 <term><varname>PartitionNoAuto=</varname></term>
642 <term><varname>PartitionGrowFileSystem=</varname></term>
643
644 <listitem><para>When the target <varname>Type=</varname> is picked as <constant>partition</constant>,
645 selects the GPT partition UUID and partition flags to use for the updated partition. Expects a valid
646 UUID string, a hexadecimal integer, or booleans, respectively. If not set, but the source match
647 pattern includes wildcards for these fields (i.e. <literal>@u</literal>, <literal>@f</literal>,
648 <literal>@a</literal>, or <literal>@g</literal>), the values from the patterns are used. If neither
649 configured with wildcards or these explicit settings, the values are left untouched. If both the
650 overall <varname>PartitionFlags=</varname> flags setting and the individual flag settings
651 <varname>PartitionNoAuto=</varname> and <varname>PartitionGrowFileSystem=</varname> are used (or the
652 wildcards for them), then the latter override the former, i.e. the individual flag bit overrides the
db811444 653 overall flags value. See <ulink url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable
436aa3b1
LP
654 Partitions Specification</ulink> for details about these flags.</para>
655
656 <para>Note that these settings are not used for matching, they only have effect on newly written
ec07c3c8
AK
657 partitions in case a transfer takes place.</para>
658
659 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
660 </varlistentry>
661
662 <varlistentry>
663 <term><varname>ReadOnly=</varname></term>
664
665 <listitem><para>Controls whether to mark the resulting file, subvolume or partition read-only. If the
666 target type is <constant>partition</constant> this controls the ReadOnly partition flag, as per
db811444 667 <ulink url="https://uapi-group.org/specifications/specs/discoverable_partitions_specification">Discoverable Partitions
436aa3b1
LP
668 Specification</ulink>, similar to the <varname>PartitionNoAuto=</varname> and
669 <varname>PartitionGrowFileSystem=</varname> flags described above. If the target type is
8b9f0921 670 <constant>regular-file</constant>, the writable bit is removed from the access mode. If the
436aa3b1
LP
671 target type is <constant>subvolume</constant>, the subvolume will be marked read-only as a
672 whole. Finally, if the target <varname>Type=</varname> is selected as <constant>directory</constant>,
673 the "immutable" file attribute is set, see <citerefentry
674 project='man-pages'><refentrytitle>chattr</refentrytitle><manvolnum>1</manvolnum></citerefentry> for
ec07c3c8
AK
675 details.</para>
676
677 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
678 </varlistentry>
679
680 <varlistentry>
681 <term><varname>Mode=</varname></term>
682
683 <listitem><para>The UNIX file access mode to use for newly created files in case the target resource
684 type is picked as <constant>regular-file</constant>. Expects an octal integer, in typical UNIX
685 fashion. If not set, but the source match pattern includes a wildcard for this field
686 (i.e. <literal>@t</literal>), the value from the pattern is used.</para>
687
688 <para>Note that this setting is not used for matching, it only has an effect on newly written
ec07c3c8
AK
689 files when a transfer takes place.</para>
690
691 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
692 </varlistentry>
693
694 <varlistentry>
695 <term><varname>TriesDone=</varname></term>
696 <term><varname>TriesLeft=</varname></term>
697
698 <listitem><para>These options take positive, decimal integers, and control the number of attempts
699 done and left for this file. These settings are useful for managing kernel images, following the
700 scheme defined in <ulink url="https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT">Automatic Boot
701 Assessment</ulink>, and only have an effect if the target pattern includes the <literal>@d</literal>
ec07c3c8
AK
702 or <literal>@l</literal> wildcards.</para>
703
704 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
705 </varlistentry>
706
707 <varlistentry>
708 <term><varname>InstancesMax=</varname></term>
709
710 <listitem><para>Takes a decimal integer equal to or greater than 2. This configures how many concurrent
711 versions of the resource to keep. Whenever a new update is initiated it is made sure that no more
712 than the number of versions specified here minus one exist in the target. Any excess versions are
713 deleted (in case the target <varname>Type=</varname> of <constant>regular-file</constant>,
714 <constant>directory</constant>, <constant>subvolume</constant> is used) or emptied (in case the
715 target <varname>Type=</varname> of <constant>partition</constant> is used; emptying in this case
716 simply means to set the partition label to the special string <literal>_empty</literal>; note that no
717 partitions are actually removed). After an update is completed the number of concurrent versions of
718 the target resources is equal to or below the number specified here.</para>
719
720 <para>Note that this setting may be set differently for each transfer. However, it generally is
721 advisable to keep this setting the same for all transfers, since otherwise incomplete combinations of
722 files or partitions will be left installed.</para>
723
724 <para>If the target <varname>Type=</varname> is selected as <constant>partition</constant>, the number
725 of concurrent versions to keep is additionally restricted by the number of partition slots of the
8b9f0921 726 right type in the partition table. I.e. if there are only 2 partition slots for the selected
436aa3b1 727 partition type, setting this value larger than 2 is without effect, since no more than 2 concurrent
ec07c3c8
AK
728 versions could be stored in the image anyway.</para>
729
730 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
731 </varlistentry>
732
733 <varlistentry>
734 <term><varname>RemoveTemporary=</varname></term>
735
736 <listitem><para>Takes a boolean argument. If this option is enabled (which is the default) before
737 initiating an update, all left-over, incomplete updates from a previous attempt are removed from the
738 target directory. This only has an effect if the target resource <varname>Type=</varname> is selected
739 as <constant>regular-file</constant>, <constant>directory</constant> or
ec07c3c8
AK
740 <constant>subvolume</constant>.</para>
741
742 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
743 </varlistentry>
744
745 <varlistentry>
746 <term><varname>CurrentSymlink=</varname></term>
747
748 <listitem><para>Takes a symlink name as argument. If this option is used, as the last step of the
749 update a symlink under the specified name is created/updated pointing to the completed update. This
750 is useful in to provide a stable name always pointing to the newest version of the resource. This is
751 only supported if the target resource <varname>Type=</varname> is selected as
752 <constant>regular-file</constant>, <constant>directory</constant> or
ec07c3c8
AK
753 <constant>subvolume</constant>.</para>
754
755 <xi:include href="version-info.xml" xpointer="v251"/></listitem>
436aa3b1
LP
756 </varlistentry>
757
758 </variablelist>
759 </refsect1>
760
761 <refsect1>
762 <title>Specifiers</title>
763
764 <para>Specifiers may be used in the <varname>MinVersion=</varname>, <varname>ProtectVersion=</varname>,
765 <varname>Path=</varname>, <varname>MatchPattern=</varname> and <varname>CurrentSymlink=</varname>
766 settings. The following expansions are understood:</para>
767 <table class='specifiers'>
768 <title>Specifiers available</title>
769 <tgroup cols='3' align='left' colsep='1' rowsep='1'>
770 <colspec colname="spec" />
771 <colspec colname="mean" />
772 <colspec colname="detail" />
773 <thead>
774 <row>
775 <entry>Specifier</entry>
776 <entry>Meaning</entry>
777 <entry>Details</entry>
778 </row>
779 </thead>
780 <tbody>
781 <xi:include href="standard-specifiers.xml" xpointer="a"/>
782 <xi:include href="standard-specifiers.xml" xpointer="A"/>
783 <xi:include href="standard-specifiers.xml" xpointer="b"/>
784 <xi:include href="standard-specifiers.xml" xpointer="B"/>
785 <xi:include href="standard-specifiers.xml" xpointer="H"/>
786 <xi:include href="standard-specifiers.xml" xpointer="l"/>
787 <xi:include href="standard-specifiers.xml" xpointer="m"/>
788 <xi:include href="standard-specifiers.xml" xpointer="M"/>
789 <xi:include href="standard-specifiers.xml" xpointer="o"/>
790 <xi:include href="standard-specifiers.xml" xpointer="v"/>
791 <xi:include href="standard-specifiers.xml" xpointer="w"/>
792 <xi:include href="standard-specifiers.xml" xpointer="W"/>
793 <xi:include href="standard-specifiers.xml" xpointer="T"/>
794 <xi:include href="standard-specifiers.xml" xpointer="V"/>
795 <xi:include href="standard-specifiers.xml" xpointer="percent"/>
796 </tbody>
797 </tgroup>
798 </table>
799
800 <para>Do not confuse the <literal>%</literal> specifier expansion prefix with the <literal>@</literal>
801 pattern matching wildcard prefix. The former are simple shortcuts that are expanded while the drop-in
802 files are parsed, the latter encapsulate a variable part of a match pattern string. For details about
803 pattern matching wildcards, see above.</para>
804 </refsect1>
805
806 <refsect1>
807 <title>Examples</title>
808
809 <example>
810 <title>Updates for a Verity Enabled Secure OS</title>
811
812 <para>With the following three files we define a root file system partition, a matching Verity
813 partition, and a unified kernel image to update as one. This example is an extension of the example
814 discussed earlier in this man page.</para>
815
816 <para><programlisting># /usr/lib/sysupdate.d/50-verity.conf
817[Transfer]
818ProtectVersion=%A
819
820[Source]
821Type=url-file
822Path=https://download.example.com/
823MatchPattern=foobarOS_@v_@u.verity.xz
824
825[Target]
826Type=partition
827Path=auto
828MatchPattern=foobarOS_@v_verity
829MatchPartitionType=root-verity
830PartitionFlags=0
831PartitionReadOnly=1</programlisting></para>
832
833 <para>The above defines the update mechanism for the Verity partition of the root file system. Verity
834 partition images are downloaded from
835 <literal>https://download.example.com/foobarOS_@v_@u.verity.xz</literal> and written to a suitable
836 local partition, which is marked read-only. Under the assumption this update is run from the image
837 itself the current image version (i.e. the <literal>%A</literal> specifier) is marked as protected, to
838 ensure it is not corrupted while booted. Note that the partition UUID for the target partition is
839 encoded in the source file name. Fixating the partition UUID can be useful to ensure that
840 <literal>roothash=</literal> on the kernel command line is sufficient to pinpoint both the Verity and
841 root file system partition, and also encode the Verity root level hash (under the assumption the UUID
842 in the file names match their top-level hash, the way
843 <citerefentry><refentrytitle>systemd-gpt-auto-generator</refentrytitle><manvolnum>8</manvolnum></citerefentry>
844 suggests).</para>
845
846 <para><programlisting># /usr/lib/sysupdate.d/60-root.conf
847[Transfer]
848ProtectVersion=%A
849
850[Source]
851Type=url-file
852Path=https://download.example.com/
853MatchPattern=foobarOS_@v_@u.root.xz
854
855[Target]
856Type=partition
857Path=auto
858MatchPattern=foobarOS_@v
859MatchPartitionType=root
860PartitionFlags=0
861PartitionReadOnly=1</programlisting></para>
862
863 <para>The above defines a matching transfer definition for the root file system.</para>
864
865 <para><programlisting># /usr/lib/sysupdate.d/70-kernel.conf
866[Transfer]
867ProtectVersion=%A
868
869[Source]
870Type=url-file
871Path=https://download.example.com/
872MatchPattern=foobarOS_@v.efi.xz
873
874[Target]
0ad7b7b8 875Type=regular-file
0470f919
AV
876Path=/EFI/Linux
877PathRelativeTo=boot
436aa3b1
LP
878MatchPattern=foobarOS_@v+@l-@d.efi \
879 foobarOS_@v+@l.efi \
880 foobarOS_@v.efi
881Mode=0444
882TriesLeft=3
883TriesDone=0
884InstancesMax=2</programlisting></para>
885
0470f919
AV
886 <para>The above installs a unified kernel image into the $BOOT partition, as per
887 <ulink url="https://uapi-group.org/specifications/specs/boot_loader_specification">Boot Loader
888 Specification</ulink> Type #2. This defines three possible patterns for the names of the kernel
889 images, as per <ulink url="https://systemd.io/AUTOMATIC_BOOT_ASSESSMENT">Automatic Boot Assessment</ulink>,
890 and ensures when installing new kernels, they are set up with 3 tries left. No more than two parallel
891 kernels are kept.</para>
436aa3b1
LP
892
893 <para>With this setup the web server would serve the following files, for a hypothetical version 7 of
894 the OS:</para>
895
896 <itemizedlist>
897 <listitem><para><filename>SHA256SUMS</filename> – The manifest file, containing available files and their SHA256 hashes</para></listitem>
898 <listitem><para><filename>SHA256SUMS.gpg</filename> – The detached cryptographic signature for the manifest file</para></listitem>
899 <listitem><para><filename>foobarOS_7_8b8186b1-2b4e-4eb6-ad39-8d4d18d2a8fb.verity.xz</filename> – The Verity image for version 7</para></listitem>
900 <listitem><para><filename>foobarOS_7_f4d1234f-3ebf-47c4-b31d-4052982f9a2f.root.xz</filename> – The root file system image for version 7</para></listitem>
901 <listitem><para><filename>foobarOS_7_efi.xz</filename> – The unified kernel image for version 7</para></listitem>
902 </itemizedlist>
903
904 <para>For each new OS release a new set of the latter three files would be added, each time with an
905 updated version. The <filename>SHA256SUMS</filename> manifest should then be updated accordingly,
906 listing all files for all versions that shall be offered for download.</para>
907 </example>
908
909 <example>
910 <title>Updates for Plain Directory Container Image</title>
911
912 <para><programlisting>
913[Source]
914Type=url-tar
915Path=https://download.example.com/
916MatchPattern=myContainer_@v.tar.gz
917
918[Target]
919Type=subvolume
920Path=/var/lib/machines
921MatchPattern=myContainer_@v
922CurrentSymlink=myContainer</programlisting></para>
923
924 <para>On updates this downloads <literal>https://download.example.com/myContainer_@v.tar.gz</literal>
925 and decompresses/unpacks it to <filename>/var/lib/machines/myContainer_@v</filename>. After each update
926 a symlink <filename>/var/lib/machines/myContainer</filename> is created/updated always pointing to the
927 most recent update.</para>
928 </example>
929 </refsect1>
930
931 <refsect1>
932 <title>See Also</title>
933 <para>
934 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
935 <citerefentry><refentrytitle>systemd-sysupdate</refentrytitle><manvolnum>8</manvolnum></citerefentry>,
936 <citerefentry><refentrytitle>systemd-repart</refentrytitle><manvolnum>8</manvolnum></citerefentry>
937 </para>
938 </refsect1>
939
940</refentry>