]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bootctl: Fix update not adding EFI entry if Boot IDs are non-consecutive
authorAnssi Hannula <anssi.hannula@bitwise.fi>
Thu, 23 Sep 2021 09:08:05 +0000 (12:08 +0300)
committerLennart Poettering <lennart@poettering.net>
Thu, 23 Sep 2021 15:05:20 +0000 (17:05 +0200)
"bootctl update" tries to add sd-boot to the EFI boot loader list if it
is not already there. To do so, it uses find_slot() which finds the
proper BootXXXX slot ID to use and also returns 1 if an existing sd-boot
entry was found at this ID or 0 if it is a new unused ID. In "update"
case install_variables() only writes the entry in case 0 (no existing
entry).

However, find_slot() erroneously returns 1 if it finds a gap in the Boot
IDs (i.e. when not resorting to max(ids) + 1). This causes
"bootctl update" to not add a missing systemd-boot boot entry if the
existing BootXXXX entry IDs are not consecutive.

Fix that by returning 0 in find_slot() when an empty gap ID is selected
to make it match the behavior when selecting an empty non-gap ID.

src/boot/bootctl.c

index d8a66616b0ffc94611e7466f3e35c1e8652692a9..65e5262a099b3f32df64c0a720d1bfebde052128 100644 (file)
@@ -722,7 +722,7 @@ static int find_slot(sd_id128_t uuid, const char *path, uint16_t *id) {
         for (i = 0; i < n; i++)
                 if (i != options[i]) {
                         *id = i;
-                        return 1;
+                        return 0;
                 }
 
         /* use the next one */