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

> v2:
> a. Use ReallocatePool instead of allocating then copying wherever applicable

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.

One solution is to allocate pool first then copy the necessary bytes to new
memory. Another is using ReallocatePool instead if old buffer will be freed
on spot.

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

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

-- 
2.14.1.windows.1



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

end of thread, other threads:[~2017-11-07  5:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-07  5:10 [PATCH v2 0/3] Fix misuses of AllocateCopyPool Jian J Wang
2017-11-07  5:10 ` [PATCH v2 1/3] MdeModulePkg: " Jian J Wang
2017-11-07  5:10 ` [PATCH v2 2/3] ShellPkg: " Jian J Wang
2017-11-07  5:35   ` Ni, Ruiyu
2017-11-07  5:10 ` [PATCH v2 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