]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg VarCheckHii: Make sure the bin at required alignment
authorStar Zeng <star.zeng@intel.com>
Fri, 29 Dec 2017 10:10:36 +0000 (18:10 +0800)
committerStar Zeng <star.zeng@intel.com>
Tue, 2 Jan 2018 01:55:43 +0000 (09:55 +0800)
According to UEFI/PI spec, the AllocateXXXPool() interfaces should
return eight-byte aligned buffer that satisfies the required
HEADER_ALIGNMENT which is 4.

This patch adds ASSERT to make sure the bin at required alignment,
that can help catch the issue earlier about incorrect aligned buffer
returned from AllocateXXXPool().

Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
MdeModulePkg/Library/VarCheckHiiLib/VarCheckHiiGen.c

index c0efed450bfbf861da9d2fa61d925e0154c75ea9..0db1383491f75318f988831e197da9ad6f303e4d 100644 (file)
@@ -1518,6 +1518,10 @@ BuildVarCheckHiiBin (
   //\r
   Data = AllocateRuntimeZeroPool (BinSize);\r
   ASSERT (Data != NULL);\r
+  //\r
+  // Make sure the allocated buffer for VarCheckHiiBin at required alignment.\r
+  //\r
+  ASSERT ((((UINTN) Data) & (HEADER_ALIGNMENT - 1)) == 0);\r
   DEBUG ((DEBUG_INFO, "VarCheckHiiBin - built at 0x%x\n", Data));\r
 \r
   //\r