From: Jan Janssen Date: Wed, 2 Aug 2023 14:00:07 +0000 (+0200) Subject: boot: Fix boot counting for XBOOTLDR entries X-Git-Tag: v255-rc1~836^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66fd078ba89e90e8aeba6edac52d20456fc2cd5d;p=thirdparty%2Fsystemd.git boot: Fix boot counting for XBOOTLDR entries We were passing the dir handle for the ESP to config_entry_bump_counters(), which will obviously fail if the entry actually resides on the XBOOTLDR partition. Fixes: #28637 --- diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index 1321658a01d..ccba953b412 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -1346,7 +1346,7 @@ static void config_entry_parse_tries( suffix); } -static void config_entry_bump_counters(ConfigEntry *entry, EFI_FILE *root_dir) { +static EFI_STATUS config_entry_bump_counters(ConfigEntry *entry) { _cleanup_free_ char16_t* old_path = NULL, *new_path = NULL; _cleanup_(file_closep) EFI_FILE *handle = NULL; _cleanup_free_ EFI_FILE_INFO *file_info = NULL; @@ -1354,34 +1354,39 @@ static void config_entry_bump_counters(ConfigEntry *entry, EFI_FILE *root_dir) { EFI_STATUS err; assert(entry); - assert(root_dir); if (entry->tries_left < 0) - return; + return EFI_SUCCESS; if (!entry->path || !entry->current_name || !entry->next_name) - return; + return EFI_SUCCESS; + + _cleanup_(file_closep) EFI_FILE *root = NULL; + err = open_volume(entry->device, &root); + if (err != EFI_SUCCESS) + return log_error_status(err, "Error opening entry root path: %m"); old_path = xasprintf("%ls\\%ls", entry->path, entry->current_name); - err = root_dir->Open(root_dir, &handle, old_path, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE, 0ULL); + err = root->Open(root, &handle, old_path, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE, 0ULL); if (err != EFI_SUCCESS) - return; + return log_error_status(err, "Error opening boot entry: %m"); err = get_file_info(handle, &file_info, &file_info_size); if (err != EFI_SUCCESS) - return; + return log_error_status(err, "Error getting boot entry file info: %m"); /* And rename the file */ strcpy16(file_info->FileName, entry->next_name); err = handle->SetInfo(handle, MAKE_GUID_PTR(EFI_FILE_INFO), file_info_size, file_info); - if (err != EFI_SUCCESS) { - log_error_status(err, "Failed to rename '%ls' to '%ls', ignoring: %m", old_path, entry->next_name); - return; - } + if (err != EFI_SUCCESS) + return log_error_status( + err, "Failed to rename '%ls' to '%ls', ignoring: %m", old_path, entry->next_name); /* Flush everything to disk, just in case… */ - (void) handle->Flush(handle); + err = handle->Flush(handle); + if (err != EFI_SUCCESS) + return log_error_status(err, "Error flushing boot entry file info: %m"); /* Let's tell the OS that we renamed this file, so that it knows what to rename to the counter-less name on * success */ @@ -1393,6 +1398,8 @@ static void config_entry_bump_counters(ConfigEntry *entry, EFI_FILE *root_dir) { free(entry->loader); entry->loader = TAKE_PTR(new_path); } + + return EFI_SUCCESS; } static void config_entry_add_type1( @@ -2714,7 +2721,7 @@ static EFI_STATUS run(EFI_HANDLE image) { continue; } - config_entry_bump_counters(entry, root_dir); + (void) config_entry_bump_counters(entry); save_selected_entry(&config, entry); /* Optionally, read a random seed off the ESP and pass it to the OS */