From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=jian.j.wang@intel.com; receiver=edk2-devel@lists.01.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 8FAF72117A2A3 for ; Thu, 18 Oct 2018 18:50:19 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Oct 2018 18:50:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,397,1534834800"; d="scan'208";a="79898954" Received: from shwdeopenpsi777.ccr.corp.intel.com ([10.239.158.27]) by fmsmga008.fm.intel.com with ESMTP; 18 Oct 2018 18:50:17 -0700 From: Jian J Wang To: edk2-devel@lists.01.org Date: Fri, 19 Oct 2018 09:50:10 +0800 Message-Id: <20181019015013.7488-1-jian.j.wang@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 Subject: [PATCH 0/3] Add use-after-free memory detection X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2018 01:50:19 -0000 UAF (Use-After-Free) memory detection is new feature introduced to detect illegal access to memory which has been freed. Jian J Wang (3): MdeModulePkg/MdeModulePkg.dec: add new PCD for UAF detection feature UefiCpuPkg/CpuDxe: fix an infinite loop issue MdeModulePkg/Core: add use-after-free memory detection MdeModulePkg/Core/Dxe/DxeMain.h | 1 + MdeModulePkg/Core/Dxe/DxeMain.inf | 1 + MdeModulePkg/Core/Dxe/Gcd/Gcd.c | 8 + MdeModulePkg/Core/Dxe/Mem/HeapGuard.c | 393 ++++++++++++++++++++++++++- MdeModulePkg/Core/Dxe/Mem/HeapGuard.h | 66 +++++ MdeModulePkg/Core/Dxe/Mem/Page.c | 39 ++- MdeModulePkg/Core/Dxe/Mem/Pool.c | 21 +- MdeModulePkg/Core/Dxe/Misc/PropertiesTable.c | 16 +- MdeModulePkg/MdeModulePkg.dec | 6 + UefiCpuPkg/CpuDxe/CpuPageTable.c | 12 + 10 files changed, 537 insertions(+), 26 deletions(-) -- 2.16.2.windows.1