public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zeng, Star" <star.zeng@intel.com>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>, edk2-devel@lists.01.org
Cc: Ruiyu Ni <ruiyu.ni@intel.com>,
	Zimmer Vincent <vincent.zimmer@intel.com>,
	 Eric Dong <eric.dong@intel.com>, Andrew Fish <afish@apple.com>,
	agraf@suse.de, Brian Richardson <brian.richardson@intel.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Laszlo Ersek <lersek@redhat.com>,
	star.zeng@intel.com
Subject: Re: [PATCH 2/4] MdeModulePkg/DxeCore: invoke the emulator protocol for foreign images
Date: Thu, 13 Sep 2018 18:23:58 +0800	[thread overview]
Message-ID: <83a42998-1cb2-6adc-188c-8ee6343ae777@intel.com> (raw)
In-Reply-To: <20180912132151.4258-3-ard.biesheuvel@linaro.org>

On 2018/9/12 21:21, Ard Biesheuvel wrote:
> When encountering PE/COFF images that cannot be supported natively,
> attempt to locate an instance of the PE/COFF image emulator protocol,
> and if it supports the image, proceed with loading it and register it
> with the emulator.
> 
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
>   MdeModulePkg/Core/Dxe/DxeMain.h     |  3 ++
>   MdeModulePkg/Core/Dxe/DxeMain.inf   |  1 +
>   MdeModulePkg/Core/Dxe/Image/Image.c | 39 +++++++++++++++++---
>   3 files changed, 37 insertions(+), 6 deletions(-)
> 
> diff --git a/MdeModulePkg/Core/Dxe/DxeMain.h b/MdeModulePkg/Core/Dxe/DxeMain.h
> index 7ec82388a3f9..57b3861d9813 100644
> --- a/MdeModulePkg/Core/Dxe/DxeMain.h
> +++ b/MdeModulePkg/Core/Dxe/DxeMain.h
> @@ -53,6 +53,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
>   #include <Protocol/TcgService.h>
>   #include <Protocol/HiiPackageList.h>
>   #include <Protocol/SmmBase2.h>
> +#include <Protocol/PeCoffImageEmulator.h>
>   #include <Guid/MemoryTypeInformation.h>
>   #include <Guid/FirmwareFileSystem2.h>
>   #include <Guid/FirmwareFileSystem3.h>
> @@ -229,6 +230,8 @@ typedef struct {
>     UINT16                      Machine;
>     /// EBC Protocol pointer
>     EFI_EBC_PROTOCOL            *Ebc;
> +  /// PE/COFF Image Emulator Protocol pointer
> +  EDKII_PECOFF_IMAGE_EMULATOR_PROTOCOL  *Emu;

Hi Ard,

How about using PeCoffEmu as the name to be more specific?

>     /// Runtime image list
>     EFI_RUNTIME_IMAGE_ENTRY     *RuntimeData;
>     /// Pointer to Loaded Image Device Path Protocol
> diff --git a/MdeModulePkg/Core/Dxe/DxeMain.inf b/MdeModulePkg/Core/Dxe/DxeMain.inf
> index 68fa0a01d9bd..d7591aa0da6d 100644
> --- a/MdeModulePkg/Core/Dxe/DxeMain.inf
> +++ b/MdeModulePkg/Core/Dxe/DxeMain.inf
> @@ -180,6 +180,7 @@
>     gEfiVariableArchProtocolGuid                  ## CONSUMES
>     gEfiCapsuleArchProtocolGuid                   ## CONSUMES
>     gEfiWatchdogTimerArchProtocolGuid             ## CONSUMES
> +  gEdkiiPeCoffImageEmulatorProtocolGuid         ## SOMETIMES_CONSUMES
>   
>   [FeaturePcd]
>     gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport     ## CONSUMES
> diff --git a/MdeModulePkg/Core/Dxe/Image/Image.c b/MdeModulePkg/Core/Dxe/Image/Image.c
> index eddca140ee1a..e2dd80790657 100644
> --- a/MdeModulePkg/Core/Dxe/Image/Image.c
> +++ b/MdeModulePkg/Core/Dxe/Image/Image.c
> @@ -67,6 +67,7 @@ LOADED_IMAGE_PRIVATE_DATA mCorePrivateImage  = {
>     NULL,                       // JumpContext
>     0,                          // Machine
>     NULL,                       // Ebc
> +  NULL,                       // Emu
>     NULL,                       // RuntimeData
>     NULL                        // LoadedImageDevicePath
>   };
> @@ -476,12 +477,23 @@ CoreLoadPeImage (
>     if (!EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Image->ImageContext.Machine)) {
>       if (!EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED (Image->ImageContext.Machine)) {
>         //
> -      // The PE/COFF loader can support loading image types that can be executed.
> -      // If we loaded an image type that we can not execute return EFI_UNSUPORTED.
> +      // Locate the emulator protocol to check whether it supports this
> +      // image.
>         //
> -      DEBUG ((EFI_D_ERROR, "Image type %s can't be loaded ", GetMachineTypeName(Image->ImageContext.Machine)));
> -      DEBUG ((EFI_D_ERROR, "on %s UEFI system.\n", GetMachineTypeName(mDxeCoreImageMachineType)));
> -      return EFI_UNSUPPORTED;
> +      Status = CoreLocateProtocol (&gEdkiiPeCoffImageEmulatorProtocolGuid,
> +                 NULL, (VOID **)&Image->Emu);
> +      if (EFI_ERROR (Status) ||
> +          !Image->Emu->IsImageSupported (Image->Emu,
> +                                         Image->ImageContext.Machine,
> +                                         Image->ImageContext.ImageType)) {
> +        //
> +        // The PE/COFF loader can support loading image types that can be executed.
> +        // If we loaded an image type that we can not execute return EFI_UNSUPORTED.
> +        //
> +        DEBUG ((EFI_D_ERROR, "Image type %s can't be loaded ", GetMachineTypeName(Image->ImageContext.Machine)));
> +        DEBUG ((EFI_D_ERROR, "on %s UEFI system.\n", GetMachineTypeName(mDxeCoreImageMachineType)));
> +        return EFI_UNSUPPORTED;
> +      }
>       }
>     }
>   
> @@ -687,6 +699,14 @@ CoreLoadPeImage (
>       if (EFI_ERROR(Status)) {
>         goto Done;
>       }
> +  } else if (Image->Emu != NULL) {
> +    Status = Image->Emu->RegisterImage (Image->Emu, Image->ImageBasePage,
> +                           EFI_PAGES_TO_SIZE (Image->NumberOfPages));
> +    if (EFI_ERROR (Status)) {
> +      DEBUG ((DEBUG_LOAD | DEBUG_ERROR,
> +        "CoreLoadPeImage: Failed to load register foreign image with emulator.\n"));

'load' should not be in the sentence, right?

Thanks,
Star

> +      goto Done;
> +    }
>     }
>   
>     //
> @@ -874,6 +894,13 @@ CoreUnloadAndCloseImage (
>       Image->Ebc->UnloadImage (Image->Ebc, Image->Handle);
>     }
>   
> +  if (Image->Emu != NULL) {
> +    //
> +    // If the PE/COFF Emulator protocol exists we must unregister the image.
> +    //
> +    Image->Emu->UnregisterImage (Image->Emu, Image->ImageBasePage);
> +  }
> +
>     //
>     // Unload image, free Image->ImageContext->ModHandle
>     //
> @@ -1599,7 +1626,7 @@ CoreStartImage (
>     //
>     // The image to be started must have the machine type supported by DxeCore.
>     //
> -  if (!EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Image->Machine)) {
> +  if (!EFI_IMAGE_MACHINE_TYPE_SUPPORTED (Image->Machine) && Image->Emu == NULL) {
>       //
>       // Do not ASSERT here, because image might be loaded via EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED
>       // But it can not be started.
> 



  reply	other threads:[~2018-09-13 10:24 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-12 13:21 [PATCH 0/4] MdeModulePkg: add support for dispatching foreign arch PE/COFF images Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 1/4] MdeModulePkg: introduce PE/COFF image emulator protocol Ard Biesheuvel
2018-09-13 10:05   ` Zeng, Star
2018-09-13 10:36     ` Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 2/4] MdeModulePkg/DxeCore: invoke the emulator protocol for foreign images Ard Biesheuvel
2018-09-13 10:23   ` Zeng, Star [this message]
2018-09-13 10:37     ` Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 3/4] MdeModulePkg/PciBusDxe: invoke PE/COFF emulator for foreign option ROMs Ard Biesheuvel
2018-09-13 10:24   ` Zeng, Star
2018-09-13 10:46     ` Ard Biesheuvel
2018-09-12 13:21 ` [PATCH 4/4] MdeModulePkg/UefiBootManagerLib: allow foreign Driver#### images Ard Biesheuvel
2018-09-12 14:55 ` [PATCH 0/4] MdeModulePkg: add support for dispatching foreign arch PE/COFF images Gao, Liming
2018-09-12 14:56   ` Ard Biesheuvel
2018-09-12 15:07     ` Carsey, Jaben
2018-09-12 15:11       ` Ard Biesheuvel
2018-09-12 15:10 ` Kinney, Michael D
2018-09-13 10:36   ` Ard Biesheuvel
2018-09-13 17:20     ` Kinney, Michael D
2018-09-15 13:28       ` Ard Biesheuvel
2018-09-17  4:03         ` Kinney, Michael D
2018-09-19 19:35         ` Andrew Fish
2018-09-19 20:43           ` Ard Biesheuvel
2018-09-21 18:51             ` Andrew Fish
2018-09-12 15:48 ` Carsey, Jaben
2018-09-12 18:50   ` Zimmer, Vincent
2018-09-13  0:47 ` Shi, Steven
2018-09-13  5:18   ` Ard Biesheuvel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=83a42998-1cb2-6adc-188c-8ee6343ae777@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox