public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Liming" <liming.gao@intel.com>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	"Zhu, Yonghong" <yonghong.zhu@intel.com>
Cc: "leif.lindholm@linaro.org" <leif.lindholm@linaro.org>
Subject: Re: [PATCH] BaseTools/GenFv: allow TE/PE images with no .reloc section
Date: Fri, 19 Aug 2016 07:51:33 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A1155ED043@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1471539628-6257-1-git-send-email-ard.biesheuvel@linaro.org>

Ard:
  RelocationsStripped is decided by Pe32.FileHeader.Characteristics EFI_IMAGE_FILE_RELOCS_STRIPPED flag. Per PE/COFF spec, if IMAGE_FILE_RELOCS_STRIPPED flag is set, the image must therefore be loaded at its preferred base address. If the image could be loaded at other address, it should not set this flag in its PE header. Could you help check your PE/COFF image?

Thanks
Liming
> -----Original Message-----
> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
> Sent: Friday, August 19, 2016 1:00 AM
> To: edk2-devel@lists.01.org; Gao, Liming <liming.gao@intel.com>; Zhu,
> Yonghong <yonghong.zhu@intel.com>
> Cc: leif.lindholm@linaro.org; Ard Biesheuvel <ard.biesheuvel@linaro.org>
> Subject: [PATCH] BaseTools/GenFv: allow TE/PE images with no .reloc section
> 
> Currently, GenFv warns about input files without a relocation section,
> but still includes the FFS file in the image, but with its ImageBase
> field left at zero. This confuses the loader routines in PEI core,
> resulting in spurious write attempts to be made at the NOR flash.
> 
> When using the GCC LTO compiler for AArch64, the optimizations are so
> effective that in some cases, all absolute symbol references are
> optimized away completely, resulting in a PE/COFF image that has no
> .reloc section at all (i.e., the PE/COFF image is position independent,
> but purely by accident)
> 
> This means that, while unusual, it is not an error for a XIP image to
> have no .reloc section. So teach GenFv about this, i.e., let it skip
> the relocation routines, but still update the ImageBase address in the
> header, and recalculate the checksums.
> 
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
>  BaseTools/Source/C/GenFv/GenFvInternalLib.c | 223 ++++++++++----------
>  1 file changed, 111 insertions(+), 112 deletions(-)
> 
> diff --git a/BaseTools/Source/C/GenFv/GenFvInternalLib.c
> b/BaseTools/Source/C/GenFv/GenFvInternalLib.c
> index 7c839e277944..db0978d4089d 100644
> --- a/BaseTools/Source/C/GenFv/GenFvInternalLib.c
> +++ b/BaseTools/Source/C/GenFv/GenFvInternalLib.c
> @@ -3500,63 +3500,63 @@ Returns:
>      //
>      if (ImageContext.RelocationsStripped) {
>        Warning (NULL, 0, 0, "Invalid", "The file %s has no .reloc section.",
> FileName);
> -      continue;
> -    }
> +    } else {
> 
> -    //
> -    // Relocation exist and rebase
> -    //
> -    //
> -    // Load and Relocate Image Data
> -    //
> -    MemoryImagePointer = (UINT8 *) malloc ((UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> -    if (MemoryImagePointer == NULL) {
> -      Error (NULL, 0, 4001, "Resource", "memory cannot be allocated on rebase
> of %s", FileName);
> -      return EFI_OUT_OF_RESOURCES;
> -    }
> -    memset ((VOID *) MemoryImagePointer, 0, (UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> -    ImageContext.ImageAddress = ((UINTN) MemoryImagePointer +
> ImageContext.SectionAlignment - 1) & (~((UINTN)
> ImageContext.SectionAlignment - 1));
> -
> -    Status =  PeCoffLoaderLoadImage (&ImageContext);
> -    if (EFI_ERROR (Status)) {
> -      Error (NULL, 0, 3000, "Invalid", "LocateImage() call failed on rebase of %s",
> FileName);
> -      free ((VOID *) MemoryImagePointer);
> -      return Status;
> -    }
> -
> -    ImageContext.DestinationAddress = NewPe32BaseAddress;
> -    Status                          = PeCoffLoaderRelocateImage (&ImageContext);
> -    if (EFI_ERROR (Status)) {
> -      Error (NULL, 0, 3000, "Invalid", "RelocateImage() call failed on rebase
> of %s", FileName);
> -      free ((VOID *) MemoryImagePointer);
> -      return Status;
> -    }
> +      //
> +      // Relocation exist and rebase
> +      //
> +      //
> +      // Load and Relocate Image Data
> +      //
> +      MemoryImagePointer = (UINT8 *) malloc ((UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> +      if (MemoryImagePointer == NULL) {
> +        Error (NULL, 0, 4001, "Resource", "memory cannot be allocated on
> rebase of %s", FileName);
> +        return EFI_OUT_OF_RESOURCES;
> +      }
> +      memset ((VOID *) MemoryImagePointer, 0, (UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> +      ImageContext.ImageAddress = ((UINTN) MemoryImagePointer +
> ImageContext.SectionAlignment - 1) & (~((UINTN)
> ImageContext.SectionAlignment - 1));
> 
> -    //
> -    // Copy Relocated data to raw image file.
> -    //
> -    SectionHeader = (EFI_IMAGE_SECTION_HEADER *) (
> -                       (UINTN) ImgHdr +
> -                       sizeof (UINT32) +
> -                       sizeof (EFI_IMAGE_FILE_HEADER) +
> -                       ImgHdr->Pe32.FileHeader.SizeOfOptionalHeader
> -                       );
> -
> -    for (Index = 0; Index < ImgHdr->Pe32.FileHeader.NumberOfSections;
> Index ++, SectionHeader ++) {
> -      CopyMem (
> -        (UINT8 *) CurrentPe32Section.Pe32Section + CurSecHdrSize +
> SectionHeader->PointerToRawData,
> -        (VOID*) (UINTN) (ImageContext.ImageAddress + SectionHeader-
> >VirtualAddress),
> -        SectionHeader->SizeOfRawData
> -        );
> -    }
> +      Status =  PeCoffLoaderLoadImage (&ImageContext);
> +      if (EFI_ERROR (Status)) {
> +        Error (NULL, 0, 3000, "Invalid", "LocateImage() call failed on rebase
> of %s", FileName);
> +        free ((VOID *) MemoryImagePointer);
> +        return Status;
> +      }
> 
> -    free ((VOID *) MemoryImagePointer);
> -    MemoryImagePointer = NULL;
> -    if (PeFileBuffer != NULL) {
> -      free (PeFileBuffer);
> -      PeFileBuffer = NULL;
> +      ImageContext.DestinationAddress = NewPe32BaseAddress;
> +      Status                          = PeCoffLoaderRelocateImage (&ImageContext);
> +      if (EFI_ERROR (Status)) {
> +        Error (NULL, 0, 3000, "Invalid", "RelocateImage() call failed on rebase
> of %s", FileName);
> +        free ((VOID *) MemoryImagePointer);
> +        return Status;
> +      }
> +
> +      //
> +      // Copy Relocated data to raw image file.
> +      //
> +      SectionHeader = (EFI_IMAGE_SECTION_HEADER *) (
> +                         (UINTN) ImgHdr +
> +                         sizeof (UINT32) +
> +                         sizeof (EFI_IMAGE_FILE_HEADER) +
> +                         ImgHdr->Pe32.FileHeader.SizeOfOptionalHeader
> +                         );
> +
> +      for (Index = 0; Index < ImgHdr->Pe32.FileHeader.NumberOfSections;
> Index ++, SectionHeader ++) {
> +        CopyMem (
> +          (UINT8 *) CurrentPe32Section.Pe32Section + CurSecHdrSize +
> SectionHeader->PointerToRawData,
> +          (VOID*) (UINTN) (ImageContext.ImageAddress + SectionHeader-
> >VirtualAddress),
> +          SectionHeader->SizeOfRawData
> +          );
> +      }
> +
> +      free ((VOID *) MemoryImagePointer);
> +      MemoryImagePointer = NULL;
> +      if (PeFileBuffer != NULL) {
> +        free (PeFileBuffer);
> +        PeFileBuffer = NULL;
> +      }
>      }
> -
> +
>      //
>      // Update Image Base Address
>      //
> @@ -3730,70 +3730,69 @@ Returns:
>      //
>      if (ImageContext.RelocationsStripped) {
>        Warning (NULL, 0, 0, "Invalid", "The file %s has no .reloc section.",
> FileName);
> -      continue;
> -    }
> +    } else {
> +      //
> +      // Relocation exist and rebase
> +      //
> +      //
> +      // Load and Relocate Image Data
> +      //
> +      MemoryImagePointer = (UINT8 *) malloc ((UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> +      if (MemoryImagePointer == NULL) {
> +        Error (NULL, 0, 4001, "Resource", "memory cannot be allocated on
> rebase of %s", FileName);
> +        return EFI_OUT_OF_RESOURCES;
> +      }
> +      memset ((VOID *) MemoryImagePointer, 0, (UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> +      ImageContext.ImageAddress = ((UINTN) MemoryImagePointer +
> ImageContext.SectionAlignment - 1) & (~((UINTN)
> ImageContext.SectionAlignment - 1));
> 
> -    //
> -    // Relocation exist and rebase
> -    //
> -    //
> -    // Load and Relocate Image Data
> -    //
> -    MemoryImagePointer = (UINT8 *) malloc ((UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> -    if (MemoryImagePointer == NULL) {
> -      Error (NULL, 0, 4001, "Resource", "memory cannot be allocated on rebase
> of %s", FileName);
> -      return EFI_OUT_OF_RESOURCES;
> -    }
> -    memset ((VOID *) MemoryImagePointer, 0, (UINTN)
> ImageContext.ImageSize + ImageContext.SectionAlignment);
> -    ImageContext.ImageAddress = ((UINTN) MemoryImagePointer +
> ImageContext.SectionAlignment - 1) & (~((UINTN)
> ImageContext.SectionAlignment - 1));
> +      Status =  PeCoffLoaderLoadImage (&ImageContext);
> +      if (EFI_ERROR (Status)) {
> +        Error (NULL, 0, 3000, "Invalid", "LocateImage() call failed on rebase
> of %s", FileName);
> +        free ((VOID *) MemoryImagePointer);
> +        return Status;
> +      }
> +      //
> +      // Relocate TeImage
> +      //
> +      ImageContext.DestinationAddress = NewPe32BaseAddress;
> +      Status                          = PeCoffLoaderRelocateImage (&ImageContext);
> +      if (EFI_ERROR (Status)) {
> +        Error (NULL, 0, 3000, "Invalid", "RelocateImage() call failed on rebase of
> TE image %s", FileName);
> +        free ((VOID *) MemoryImagePointer);
> +        return Status;
> +      }
> 
> -    Status =  PeCoffLoaderLoadImage (&ImageContext);
> -    if (EFI_ERROR (Status)) {
> -      Error (NULL, 0, 3000, "Invalid", "LocateImage() call failed on rebase of %s",
> FileName);
> -      free ((VOID *) MemoryImagePointer);
> -      return Status;
> -    }
> -    //
> -    // Reloacate TeImage
> -    //
> -    ImageContext.DestinationAddress = NewPe32BaseAddress;
> -    Status                          = PeCoffLoaderRelocateImage (&ImageContext);
> -    if (EFI_ERROR (Status)) {
> -      Error (NULL, 0, 3000, "Invalid", "RelocateImage() call failed on rebase of
> TE image %s", FileName);
> +      //
> +      // Copy the relocated image into raw image file.
> +      //
> +      SectionHeader = (EFI_IMAGE_SECTION_HEADER *) (TEImageHeader + 1);
> +      for (Index = 0; Index < TEImageHeader->NumberOfSections; Index ++,
> SectionHeader ++) {
> +        if (!ImageContext.IsTeImage) {
> +          CopyMem (
> +            (UINT8 *) TEImageHeader + sizeof (EFI_TE_IMAGE_HEADER) -
> TEImageHeader->StrippedSize + SectionHeader->PointerToRawData,
> +            (VOID*) (UINTN) (ImageContext.ImageAddress + SectionHeader-
> >VirtualAddress),
> +            SectionHeader->SizeOfRawData
> +            );
> +        } else {
> +          CopyMem (
> +            (UINT8 *) TEImageHeader + sizeof (EFI_TE_IMAGE_HEADER) -
> TEImageHeader->StrippedSize + SectionHeader->PointerToRawData,
> +            (VOID*) (UINTN) (ImageContext.ImageAddress + sizeof
> (EFI_TE_IMAGE_HEADER) - TEImageHeader->StrippedSize + SectionHeader-
> >VirtualAddress),
> +            SectionHeader->SizeOfRawData
> +            );
> +        }
> +      }
> +
> +      //
> +      // Free the allocated memory resource
> +      //
>        free ((VOID *) MemoryImagePointer);
> -      return Status;
> -    }
> -
> -    //
> -    // Copy the relocated image into raw image file.
> -    //
> -    SectionHeader = (EFI_IMAGE_SECTION_HEADER *) (TEImageHeader + 1);
> -    for (Index = 0; Index < TEImageHeader->NumberOfSections; Index ++,
> SectionHeader ++) {
> -      if (!ImageContext.IsTeImage) {
> -        CopyMem (
> -          (UINT8 *) TEImageHeader + sizeof (EFI_TE_IMAGE_HEADER) -
> TEImageHeader->StrippedSize + SectionHeader->PointerToRawData,
> -          (VOID*) (UINTN) (ImageContext.ImageAddress + SectionHeader-
> >VirtualAddress),
> -          SectionHeader->SizeOfRawData
> -          );
> -      } else {
> -        CopyMem (
> -          (UINT8 *) TEImageHeader + sizeof (EFI_TE_IMAGE_HEADER) -
> TEImageHeader->StrippedSize + SectionHeader->PointerToRawData,
> -          (VOID*) (UINTN) (ImageContext.ImageAddress + sizeof
> (EFI_TE_IMAGE_HEADER) - TEImageHeader->StrippedSize + SectionHeader-
> >VirtualAddress),
> -          SectionHeader->SizeOfRawData
> -          );
> +      MemoryImagePointer = NULL;
> +      if (PeFileBuffer != NULL) {
> +        free (PeFileBuffer);
> +        PeFileBuffer = NULL;
>        }
>      }
> -
> -    //
> -    // Free the allocated memory resource
> -    //
> -    free ((VOID *) MemoryImagePointer);
> -    MemoryImagePointer = NULL;
> -    if (PeFileBuffer != NULL) {
> -      free (PeFileBuffer);
> -      PeFileBuffer = NULL;
> -    }
> -
> +
>      //
>      // Update Image Base Address
>      //
> --
> 2.7.4



  reply	other threads:[~2016-08-19  7:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-18 17:00 [PATCH] BaseTools/GenFv: allow TE/PE images with no .reloc section Ard Biesheuvel
2016-08-19  7:51 ` Gao, Liming [this message]
2016-08-19 10:36   ` Ard Biesheuvel
2016-08-22  3:07     ` Gao, Liming

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=4A89E2EF3DFEDB4C8BFDE51014F606A1155ED043@shsmsx102.ccr.corp.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