public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Jian J Wang <jian.j.wang@intel.com>
To: edk2-devel@lists.01.org
Cc: Star Zeng <star.zeng@intel.com>, Eric Dong <eric.dong@intel.com>,
	Jiewen Yao <jiewen.yao@intel.com>,
	Michael Kinney <michael.d.kinney@intel.com>,
	Ayellet Wolman <ayellet.wolman@intel.com>
Subject: [PATCH 0/5] Implement heap guard feature
Date: Wed, 11 Oct 2017 11:18:19 +0800	[thread overview]
Message-ID: <20171011031824.17060-1-jian.j.wang@intel.com> (raw)

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 (5):
  MdeModulePkg/DxeCore: Implement heap guard feature for UEFI
  MdeModulePkg/PiSmmCore: Implement heap guard feature for SMM mode
  MdeModulePkg/MdeModulePkg.dec,.uni: Add heap guard related PCDs and
    string tokens
  UefiCpuPkg/CpuDxe: Reduce debug message
  UefiCpuPkg/PiSmmCpuDxeSmm: Disable page table protection

 MdeModulePkg/Core/Dxe/DxeMain.inf            |    4 +
 MdeModulePkg/Core/Dxe/Mem/HeapGuard.c        | 1171 +++++++++++++++++++++
 MdeModulePkg/Core/Dxe/Mem/HeapGuard.h        |  391 +++++++
 MdeModulePkg/Core/Dxe/Mem/Imem.h             |   38 +-
 MdeModulePkg/Core/Dxe/Mem/Page.c             |  129 ++-
 MdeModulePkg/Core/Dxe/Mem/Pool.c             |  154 ++-
 MdeModulePkg/Core/PiSmmCore/Misc/HeapGuard.c | 1438 ++++++++++++++++++++++++++
 MdeModulePkg/Core/PiSmmCore/Misc/HeapGuard.h |  395 +++++++
 MdeModulePkg/Core/PiSmmCore/Misc/PageTable.c |  704 +++++++++++++
 MdeModulePkg/Core/PiSmmCore/Misc/PageTable.h |  174 ++++
 MdeModulePkg/Core/PiSmmCore/Page.c           |   51 +-
 MdeModulePkg/Core/PiSmmCore/PiSmmCore.c      |   12 +-
 MdeModulePkg/Core/PiSmmCore/PiSmmCore.h      |   80 +-
 MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf    |    8 +
 MdeModulePkg/Core/PiSmmCore/Pool.c           |   77 +-
 MdeModulePkg/MdeModulePkg.dec                |   57 +
 MdeModulePkg/MdeModulePkg.uni                |   58 ++
 UefiCpuPkg/CpuDxe/CpuPageTable.c             |    5 +-
 UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf |    1 +
 UefiCpuPkg/PiSmmCpuDxeSmm/X64/PageTbl.c      |    2 +-
 20 files changed, 4854 insertions(+), 95 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/Misc/HeapGuard.c
 create mode 100644 MdeModulePkg/Core/PiSmmCore/Misc/HeapGuard.h
 create mode 100644 MdeModulePkg/Core/PiSmmCore/Misc/PageTable.c
 create mode 100644 MdeModulePkg/Core/PiSmmCore/Misc/PageTable.h

-- 
2.14.1.windows.1



             reply	other threads:[~2017-10-11  3:15 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-11  3:18 Jian J Wang [this message]
2017-10-11  3:18 ` [PATCH 1/5] MdeModulePkg/DxeCore: Implement heap guard feature for UEFI Jian J Wang
2017-10-11  3:18 ` [PATCH 2/5] MdeModulePkg/PiSmmCore: Implement heap guard feature for SMM mode Jian J Wang
2017-10-13  1:27   ` Dong, Eric
2017-10-13  6:15     ` Wang, Jian J
2017-10-11  3:18 ` [PATCH 3/5] MdeModulePkg/MdeModulePkg.dec, .uni: Add heap guard related PCDs and string tokens Jian J Wang
2017-10-11  3:18 ` [PATCH 4/5] UefiCpuPkg/CpuDxe: Reduce debug message Jian J Wang
2017-10-11  3:18 ` [PATCH 5/5] UefiCpuPkg/PiSmmCpuDxeSmm: Disable page table protection Jian J Wang
2017-10-13  1:24   ` Dong, Eric
2017-10-13  6:14     ` Wang, Jian J

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=20171011031824.17060-1-jian.j.wang@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