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.100; helo=mga07.intel.com; envelope-from=star.zeng@intel.com; receiver=edk2-devel@lists.01.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (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 2AFD620355208 for ; Tue, 7 Nov 2017 19:09:38 -0800 (PST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP; 07 Nov 2017 19:13:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,362,1505804400"; d="scan'208";a="170804749" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga005.jf.intel.com with ESMTP; 07 Nov 2017 19:13:37 -0800 Received: from fmsmsx119.amr.corp.intel.com (10.18.124.207) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 7 Nov 2017 19:13:37 -0800 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 7 Nov 2017 19:13:36 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.175]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.152]) with mapi id 14.03.0319.002; Wed, 8 Nov 2017 11:13:35 +0800 From: "Zeng, Star" To: "Wang, Jian J" , "edk2-devel@lists.01.org" CC: Laszlo Ersek , "Yao, Jiewen" , "Dong, Eric" , "Zeng, Star" Thread-Topic: [edk2] [PATCH v2] UefiCpuPkg/CpuDxe: Fix multiple entries of RT_CODE in memory map Thread-Index: AQHTVD7B/uDqHmlwpEW1n+2GtWyns6MHE7vwgAEI0ZCAAboAsA== Date: Wed, 8 Nov 2017 03:13:34 +0000 Message-ID: <0C09AFA07DD0434D9E2A0C6AEB0483103B9B2DB6@shsmsx102.ccr.corp.intel.com> References: <20171103005729.7856-1-jian.j.wang@intel.com> <0C09AFA07DD0434D9E2A0C6AEB0483103B9B20B5@shsmsx102.ccr.corp.intel.com> In-Reply-To: Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH v2] UefiCpuPkg/CpuDxe: Fix multiple entries of RT_CODE in memory map X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Nov 2017 03:09:39 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable https://bugzilla.tianocore.org/show_bug.cgi?id=3D763 is submitted to track = this. Thanks, Star -----Original Message----- From: Wang, Jian J=20 Sent: Tuesday, November 7, 2017 8:55 AM To: Zeng, Star ; edk2-devel@lists.01.org Cc: Laszlo Ersek ; Yao, Jiewen ; D= ong, Eric Subject: RE: [edk2] [PATCH v2] UefiCpuPkg/CpuDxe: Fix multiple entries of R= T_CODE in memory map Thanks for the review. And I agree that GCD.SetMemoryAttributes should be u= sed all the time in DxeCore. Let's fix it in another patch. > -----Original Message----- > From: Zeng, Star > Sent: Monday, November 06, 2017 5:16 PM > To: Wang, Jian J ; edk2-devel@lists.01.org > Cc: Laszlo Ersek ; Yao, Jiewen=20 > ; Dong, Eric ; Zeng, Star=20 > > Subject: RE: [edk2] [PATCH v2] UefiCpuPkg/CpuDxe: Fix multiple entries=20 > of RT_CODE in memory map >=20 > I am ok to this code approach. >=20 > Acknowledged-by: Star Zeng >=20 > Besides, I think except GCD services, DxeCore should not call gCpu- > >SetMemoryAttributes() directly, for example=20 > >ApplyMemoryProtectionPolicy(), it > should have no assumption of the CPU code (to set capabilities), and=20 > call GCD setcapabilities first, and then call GCD setattributes since > 14dde9e903bb9a719ebb8f3381da72b19509bc36 "MdeModulePkg/Core: Fix out-=20 > of-sync issue in GCD", otherwise there may be mismatch of page=20 > attributes between GCD and gCPU after=20 > RefreshGcdMemoryAttributesFromPaging() by the calling gCpu->SetMemoryAttr= ibutes() in ApplyMemoryProtectionPolicy(). >=20 > Anyway, that could be in a separated patch. :) >=20 > Thanks, > Star > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of=20 > Jian J Wang > Sent: Friday, November 3, 2017 8:57 AM > To: edk2-devel@lists.01.org > Cc: Laszlo Ersek ; Yao, Jiewen=20 > ; Dong, Eric > Subject: [edk2] [PATCH v2] UefiCpuPkg/CpuDxe: Fix multiple entries of=20 > RT_CODE in memory map >=20 > > v2 > > a. Fix an issue which will cause setting capability failure if size is = smaller > > than a page. >=20 > More than one entry of RT_CODE memory might cause boot problem for=20 > some old OSs. This patch will fix this issue to keep OS compatibility as = much as possible. >=20 > More detailed information, please refer to > https://bugzilla.tianocore.org/show_bug.cgi?id=3D753 >=20 > Cc: Eric Dong > Cc: Jiewen Yao > Cc: Laszlo Ersek > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Jian J Wang > --- > UefiCpuPkg/CpuDxe/CpuPageTable.c | 18 ++++++++++++++---- > 1 file changed, 14 insertions(+), 4 deletions(-) >=20 > diff --git a/UefiCpuPkg/CpuDxe/CpuPageTable.c > b/UefiCpuPkg/CpuDxe/CpuPageTable.c > index d312eb66f8..4a7827ebc9 100644 > --- a/UefiCpuPkg/CpuDxe/CpuPageTable.c > +++ b/UefiCpuPkg/CpuDxe/CpuPageTable.c > @@ -809,7 +809,9 @@ RefreshGcdMemoryAttributesFromPaging ( > PageLength =3D 0; >=20 > for (Index =3D 0; Index < NumberOfDescriptors; Index++) { > - if (MemorySpaceMap[Index].GcdMemoryType =3D=3D > EfiGcdMemoryTypeNonExistent) { > + if (MemorySpaceMap[Index].GcdMemoryType =3D=3D > EfiGcdMemoryTypeNonExistent > + || (MemorySpaceMap[Index].BaseAddress & EFI_PAGE_MASK) !=3D 0 > + || (MemorySpaceMap[Index].Length & EFI_PAGE_MASK) !=3D 0) { > continue; > } >=20 > @@ -829,6 +831,15 @@ RefreshGcdMemoryAttributesFromPaging ( > // Sync real page attributes to GCD > BaseAddress =3D MemorySpaceMap[Index].BaseAddress; > MemorySpaceLength =3D MemorySpaceMap[Index].Length; > + Capabilities =3D MemorySpaceMap[Index].Capabilities | > + EFI_MEMORY_PAGETYPE_MASK; > + Status =3D gDS->SetMemorySpaceCapabilities ( > + BaseAddress, > + MemorySpaceLength, > + Capabilities > + ); > + ASSERT_EFI_ERROR (Status); > + > while (MemorySpaceLength > 0) { > if (PageLength =3D=3D 0) { > PageEntry =3D GetPageTableEntry (&PagingContext, BaseAddress,=20 > &PageAttribute); @@ -846,7 +857,6 @@=20 > RefreshGcdMemoryAttributesFromPaging ( > if (Attributes !=3D (MemorySpaceMap[Index].Attributes & > EFI_MEMORY_PAGETYPE_MASK)) { > DoUpdate =3D TRUE; > Attributes |=3D (MemorySpaceMap[Index].Attributes &=20 > ~EFI_MEMORY_PAGETYPE_MASK); > - Capabilities =3D Attributes | MemorySpaceMap[Index].Capabiliti= es; > } else { > DoUpdate =3D FALSE; > } > @@ -854,8 +864,8 @@ RefreshGcdMemoryAttributesFromPaging ( >=20 > Length =3D MIN (PageLength, MemorySpaceLength); > if (DoUpdate) { > - gDS->SetMemorySpaceCapabilities (BaseAddress, Length, Capabiliti= es); > - gDS->SetMemorySpaceAttributes (BaseAddress, Length, Attributes); > + Status =3D gDS->SetMemorySpaceAttributes (BaseAddress, Length, > Attributes); > + ASSERT_EFI_ERROR (Status); > DEBUG ((DEBUG_INFO, "Update memory space attribute: [%02d]=20 > %016lx - %016lx (%08lx -> %08lx)\r\n", > Index, BaseAddress, BaseAddress + Length - = 1, > MemorySpaceMap[Index].Attributes,=20 > Attributes)); > -- > 2.14.1.windows.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel