[PATCH 2/2] efi_loader: create common function to free struct efi_disk_obj
authorMasahisa Kojima <masahisa.kojima@linaro.org>
Fri, 19 Jan 2024 00:45:45 +0000 (09:45 +0900)
committerVagrant Cascadian <vagrant@debian.org>
Thu, 2 Jan 2025 21:47:07 +0000 (13:47 -0800)
Current error handling of creating raw disk/partition has
following issues.
 - duplicate free for EFI handle, EFI handle is already freed
   in efi_delete_handle()
 - missing free for struct efi_device_path and
   struct efi_simple_file_system_protocol in some error paths

To address those issues, this commit creates the common function
to free the struct efi_disk_obj resources and calls it in case
of error.

Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Gbp-Pq: Topic riscv64
Gbp-Pq: Name efi_loader-create-common-function-to-free-struct-efi.patch

lib/efi_loader/efi_disk.c

index 08b4c885cbedd55136a3e10726d74a182da0b9eb..f7cc76d8408f01564a5fce9207c9584813623b91 100644 (file)
@@ -377,6 +377,20 @@ static int efi_fs_exists(struct blk_desc *desc, int part)
        return 1;
 }
 
+static void efi_disk_free_diskobj(struct efi_disk_obj *diskobj)
+{
+       struct efi_device_path *dp = diskobj->dp;
+       struct efi_simple_file_system_protocol *volume = diskobj->volume;
+
+       /*
+        * ignore error of efi_delete_handle() since this function
+        * is expected to be called in error path.
+        */
+       efi_delete_handle(&diskobj->header);
+       efi_free_pool(dp);
+       free(volume);
+}
+
 /**
  * efi_disk_add_dev() - create a handle for a partition or disk
  *
@@ -538,9 +552,7 @@ static efi_status_t efi_disk_add_dev(
        }
        return EFI_SUCCESS;
 error:
-       efi_delete_handle(&diskobj->header);
-       free(diskobj->volume);
-       free(diskobj);
+       efi_disk_free_diskobj(diskobj);
        return ret;
 }
 
@@ -579,8 +591,7 @@ static int efi_disk_create_raw(struct udevice *dev, efi_handle_t agent_handle)
                return ret;
        }
        if (efi_link_dev(&disk->header, dev)) {
-               efi_free_pool(disk->dp);
-               efi_delete_handle(&disk->header);
+               efi_disk_free_diskobj(disk);
 
                return -EINVAL;
        }
@@ -634,8 +645,9 @@ static int efi_disk_create_part(struct udevice *dev, efi_handle_t agent_handle)
                return -1;
        }
        if (efi_link_dev(&disk->header, dev)) {
-               efi_free_pool(disk->dp);
-               efi_delete_handle(&disk->header);
+               efi_disk_free_diskobj(disk);
+
+               /* TODO: closing the parent EFI_BLOCK_IO_PROTOCOL is missing. */
 
                return -1;
        }