From: "Wang, Jian J" <jian.j.wang@intel.com>
To: "Wang, Jian J" <jian.j.wang@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Kinney, Michael D" <michael.d.kinney@intel.com>,
"Wolman, Ayellet" <ayellet.wolman@intel.com>,
"Yao, Jiewen" <jiewen.yao@intel.com>,
"Dong, Eric" <eric.dong@intel.com>,
"Zeng, Star" <star.zeng@intel.com>
Subject: Re: [PATCH v3 0/6] Implement heap guard feature
Date: Wed, 25 Oct 2017 01:48:05 +0000 [thread overview]
Message-ID: <D827630B58408649ACB04F44C510003624CA4B0B@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <20171023005054.7528-1-jian.j.wang@intel.com>
Hi,
Just a warm reminding. I didn't see any feedbacks on the v3 patch.
If no more comments, I'll check in the patch soon.
Thanks,
Jian
> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Jian J
> Wang
> Sent: Monday, October 23, 2017 8:51 AM
> To: edk2-devel@lists.01.org
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Wolman, Ayellet
> <ayellet.wolman@intel.com>; Yao, Jiewen <jiewen.yao@intel.com>; Dong, Eric
> <eric.dong@intel.com>; Zeng, Star <star.zeng@intel.com>
> Subject: [edk2] [PATCH v3 0/6] Implement heap guard feature
>
> > Patch V3 changes:
> > a. Add new protocol gEdkiiSmmMemoryAttributeProtocolGuid to do
> > memory attributes update instead of doing it directly in SmmCore
> > b. Fix GCC build error
>
> > Patch V2 changes:
> > a. Remove local variable initializer with memory copy from globals
> > b. Change map table dump code to use DEBUG_PAGE|DEBUG_POOL level
> > message
> > c. Fix malfunction in 32-bit boot mode
> > d. Add comment for the use of mOnGuarding
> > e. Change name of function InitializePageTableLib to
> > InitializePageTableGlobals
> > f. Add code in 32-bit code to bypass setting page table to read-only
> > g. Coding style clean-up
> >
>
> This feature makes use of paging mechanism to add a hidden (not present)
> page just before and after the allocated memory block. If the code tries
> to access memory outside of the allocated part, page fault exception will
> be triggered.
>
> This feature is disabled by default and is not recommended to enable it
> in production build of BIOS.
>
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Michael Kinney <michael.d.kinney@intel.com>
> Cc: Ayellet Wolman <ayellet.wolman@intel.com>
> Suggested-by: Ayellet Wolman <ayellet.wolman@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Jian J Wang <jian.j.wang@intel.com>
>
> Jian J Wang (6):
> MdeModulePkg/DxeCore: Implement heap guard feature for UEFI
> MdeModulePkg/PiSmmCore: Implement heap guard feature for SMM mode
> MdeModulePkg/MdeModulePkg.dec,.uni: Add Protocol, PCDs and string
> tokens
> UefiCpuPkg/CpuDxe: Reduce debug message
> UefiCpuPkg/PiSmmCpuDxeSmm: Disable page table protection
> MdeModulePkg/DxeIpl: Enable paging for heap guard
>
> MdeModulePkg/Core/Dxe/DxeMain.inf | 4 +
> MdeModulePkg/Core/Dxe/Mem/HeapGuard.c | 1184
> ++++++++++++++++
> MdeModulePkg/Core/Dxe/Mem/HeapGuard.h | 380 +++++
> MdeModulePkg/Core/Dxe/Mem/Imem.h | 38 +-
> MdeModulePkg/Core/Dxe/Mem/Page.c | 130 +-
> MdeModulePkg/Core/Dxe/Mem/Pool.c | 154 +-
> MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf | 1 +
> MdeModulePkg/Core/DxeIplPeim/Ia32/DxeLoadFunc.c | 29 +-
> MdeModulePkg/Core/PiSmmCore/HeapGuard.c | 1469
> ++++++++++++++++++++
> MdeModulePkg/Core/PiSmmCore/HeapGuard.h | 399 ++++++
> MdeModulePkg/Core/PiSmmCore/Page.c | 51 +-
> MdeModulePkg/Core/PiSmmCore/PiSmmCore.c | 7 +-
> MdeModulePkg/Core/PiSmmCore/PiSmmCore.h | 81 +-
> MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf | 8 +
> MdeModulePkg/Core/PiSmmCore/Pool.c | 81 +-
> MdeModulePkg/Include/Protocol/SmmMemoryAttribute.h | 136 ++
> MdeModulePkg/MdeModulePkg.dec | 60 +
> MdeModulePkg/MdeModulePkg.uni | 58 +
> UefiCpuPkg/CpuDxe/CpuPageTable.c | 5 +-
> UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/PageTbl.c | 7 +
> UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c | 20 +
> UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.h | 98 ++
> UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf | 2 +
> UefiCpuPkg/PiSmmCpuDxeSmm/SmmCpuMemoryManagement.c | 163 +++
> UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c | 3 +-
> 25 files changed, 4472 insertions(+), 96 deletions(-)
> create mode 100644 MdeModulePkg/Core/Dxe/Mem/HeapGuard.c
> create mode 100644 MdeModulePkg/Core/Dxe/Mem/HeapGuard.h
> create mode 100644 MdeModulePkg/Core/PiSmmCore/HeapGuard.c
> create mode 100644 MdeModulePkg/Core/PiSmmCore/HeapGuard.h
> create mode 100644 MdeModulePkg/Include/Protocol/SmmMemoryAttribute.h
>
> --
> 2.14.1.windows.1
>
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
next prev parent reply other threads:[~2017-10-25 1:44 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-23 0:50 [PATCH v3 0/6] Implement heap guard feature Jian J Wang
2017-10-23 0:50 ` [PATCH v3 1/6] MdeModulePkg/DxeCore: Implement heap guard feature for UEFI Jian J Wang
2017-10-23 0:50 ` [PATCH v3 2/6] MdeModulePkg/PiSmmCore: Implement heap guard feature for SMM mode Jian J Wang
2017-10-23 0:50 ` [PATCH v3 3/6] MdeModulePkg/MdeModulePkg.dec, .uni: Add Protocol, PCDs and string tokens Jian J Wang
2017-10-23 0:50 ` [PATCH v3 4/6] UefiCpuPkg/CpuDxe: Reduce debug message Jian J Wang
2017-10-23 0:50 ` [PATCH v3 5/6] UefiCpuPkg/PiSmmCpuDxeSmm: Disable page table protection Jian J Wang
2017-10-26 6:20 ` Wang, Jian J
2017-10-26 7:17 ` Ni, Ruiyu
2017-10-26 7:40 ` Wang, Jian J
2017-10-23 0:50 ` [PATCH v3 6/6] MdeModulePkg/DxeIpl: Enable paging for heap guard Jian J Wang
2017-10-25 1:48 ` Wang, Jian J [this message]
2017-10-26 6:48 ` [PATCH v3 0/6] Implement heap guard feature Yao, Jiewen
2017-10-26 6:52 ` Zeng, Star
2017-10-26 7:39 ` Wang, Jian J
2017-10-26 7:38 ` Wang, Jian J
2017-10-26 13:26 ` Laszlo Ersek
2017-10-27 1:39 ` Wang, Jian J
2017-10-27 12:32 ` Laszlo Ersek
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=D827630B58408649ACB04F44C510003624CA4B0B@SHSMSX103.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