public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix misuses of AllocateCopyPool
@ 2017-11-03  4:57 Jian J Wang
  2017-11-03  4:57 ` [PATCH 1/3] MdeModulePkg: " Jian J Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Jian J Wang @ 2017-11-03  4:57 UTC (permalink / raw)
  To: edk2-devel

AllocateCopyPool(AllocationSize, *Buffer) will copy "AllocationSize" bytes of
memory from old "Buffer" to new allocated one. If "AllocationSize" is bigger
than size of "Buffer", heap memory overflow occurs during copy.

The solution is to allocate pool first then copy the necessary bytes to new
memory. This can avoid copying extra bytes from unknown memory range.

Jian J Wang (3):
  MdeModulePkg: Fix misuses of AllocateCopyPool
  ShellPkg: Fix misuses of AllocateCopyPool
  IntelFrameworkModulePkg: Fix misuses of AllocateCopyPool

 .../Universal/BdsDxe/DeviceMngr/DeviceManager.c                |  4 +++-
 MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c  |  3 ++-
 .../BootMaintenanceManagerCustomizedUiSupport.c                |  3 ++-
 MdeModulePkg/Library/DeviceManagerUiLib/DeviceManager.c        |  4 +++-
 MdeModulePkg/Library/UefiHiiLib/HiiLib.c                       | 10 ++++++----
 .../Universal/FvSimpleFileSystemDxe/FvSimpleFileSystem.c       |  3 ++-
 MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c   |  3 ++-
 ShellPkg/Application/Shell/Shell.c                             |  4 +++-
 .../Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c  |  6 ++++--
 9 files changed, 27 insertions(+), 13 deletions(-)

-- 
2.14.1.windows.1



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2017-11-06  0:51 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-03  4:57 [PATCH 0/3] Fix misuses of AllocateCopyPool Jian J Wang
2017-11-03  4:57 ` [PATCH 1/3] MdeModulePkg: " Jian J Wang
2017-11-03  9:14   ` Zeng, Star
2017-11-06  0:49     ` Wang, Jian J
2017-11-03  4:57 ` [PATCH 2/3] ShellPkg: " Jian J Wang
2017-11-03  8:22   ` Ni, Ruiyu
2017-11-03 11:43     ` Jim.Dailey
2017-11-06  0:55       ` Wang, Jian J
2017-11-06  0:35     ` Wang, Jian J
2017-11-03  4:57 ` [PATCH 3/3] IntelFrameworkModulePkg: " Jian J Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox