public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Laszlo Ersek" <lersek@redhat.com>
To: devel@edk2.groups.io, ray.ni@intel.com, "Sheng, W" <w.sheng@intel.com>
Cc: "Dong, Eric" <eric.dong@intel.com>,
	"Wu, Jiaxin" <jiaxin.wu@intel.com>,
	"Tan, Dun" <dun.tan@intel.com>
Subject: Re: [edk2-devel] [PATCH v6 1/6] MdePkg: Add macro definitions for CET feature for NASM files.
Date: Wed, 22 Nov 2023 17:51:30 +0100	[thread overview]
Message-ID: <2a3ae2a2-3274-4a80-8d35-cacebb55eeeb@redhat.com> (raw)
In-Reply-To: <MN6PR11MB82443AFC0C9F6ED83A70F8E58CBBA@MN6PR11MB8244.namprd11.prod.outlook.com>

On 11/21/23 08:53, Ni, Ray wrote:
> You might need to drop Reviewed-by from Laszlo as the patch content is so different than the reviewed version.
> 
> Reviewed-by: Ray Ni <ray.ni@intel.com>
> 
> 
> 
> Thanks,
> Ray
>> -----Original Message-----
>> From: Sheng, W <w.sheng@intel.com>
>> Sent: Tuesday, November 21, 2023 3:03 PM
>> To: devel@edk2.groups.io
>> Cc: Dong, Eric <eric.dong@intel.com>; Ni, Ray <ray.ni@intel.com>; Laszlo
>> Ersek <lersek@redhat.com>; Wu, Jiaxin <jiaxin.wu@intel.com>; Tan, Dun
>> <dun.tan@intel.com>
>> Subject: [PATCH v6 1/6] MdePkg: Add macro definitions for CET feature for
>> NASM files.
>>
>> Signed-off-by: Sheng Wei <w.sheng@intel.com>
>> Cc: Eric Dong <eric.dong@intel.com>
>> Cc: Ray Ni <ray.ni@intel.com>
>> Cc: Laszlo Ersek <lersek@redhat.com>
>> Cc: Wu Jiaxin <jiaxin.wu@intel.com>
>> Cc: Tan Dun <dun.tan@intel.com>
>> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
>> ---
>>  MdePkg/Include/Ia32/Cet.inc | 26 ++++++++++++++++++++++++++
>>  MdePkg/Include/X64/Cet.inc  | 26 ++++++++++++++++++++++++++
>>  2 files changed, 52 insertions(+)
>>  create mode 100644 MdePkg/Include/Ia32/Cet.inc
>>  create mode 100644 MdePkg/Include/X64/Cet.inc

Referring back to Ray's v5 comments here
<https://edk2.groups.io/g/devel/message/111512> -- because v6 was posted
before I could have reacted to v5 --, I have the following opinion:

I agree with all observations except the code duplication under Ia32 and
X64. Ray himself noted that the duplication would be questionable.

How about this: unify the macro definitions in a single file, but call
that file:

  MdePkg/Include/X86Cet.inc

This eliminates the code duplication and also clearly shows that the
include is only for IA32 and X64 -- for *both* of them, actually.

I have to reasons for thinking that the "X86" prefix should work fine:

- the X86 prefix is already used in the filenames

  MdePkg/Library/BaseCacheMaintenanceLib/X86*
  MdePkg/Library/BaseCpuLib/X86*
  MdePkg/Library/BaseLib/X86*
  MdePkg/Library/SecPeiDxeTimerLibCpu/X86*

- in BaseLib.h, we have identifiers such as X86_ASSEMBLY_PATCH_LABEL and
PatchInstructionX86().

All of these apply to both Ia32 and X64.


If there will be no *other* changes in *v7* 1/6 than this file
unification, then you can add, at once, to v7 1/6:

Reviewed-by: Laszlo Ersek <lersek@redhat.com>

(Of course the %include references will have to be updated in the other
patches, but that doesn't invalidate my R-b's on those patches.)

Thanks!
Laszlo


>>
>> diff --git a/MdePkg/Include/Ia32/Cet.inc b/MdePkg/Include/Ia32/Cet.inc
>> new file mode 100644
>> index 0000000000..41c99988c9
>> --- /dev/null
>> +++ b/MdePkg/Include/Ia32/Cet.inc
>> @@ -0,0 +1,26 @@
>> +;------------------------------------------------------------------------------
>>
>> +;
>>
>> +; Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
>>
>> +; SPDX-License-Identifier: BSD-2-Clause-Patent
>>
>> +;
>>
>> +; Abstract:
>>
>> +;
>>
>> +;   This file provides macro definitions for CET feature for NASM files.
>>
>> +;
>>
>> +;------------------------------------------------------------------------------
>>
>> +
>>
>> +%define MSR_IA32_U_CET                     0x6A0
>>
>> +%define MSR_IA32_S_CET                     0x6A2
>>
>> +%define MSR_IA32_CET_SH_STK_EN             (1<<0)
>>
>> +%define MSR_IA32_CET_WR_SHSTK_EN           (1<<1)
>>
>> +%define MSR_IA32_CET_ENDBR_EN              (1<<2)
>>
>> +%define MSR_IA32_CET_LEG_IW_EN             (1<<3)
>>
>> +%define MSR_IA32_CET_NO_TRACK_EN           (1<<4)
>>
>> +%define MSR_IA32_CET_SUPPRESS_DIS          (1<<5)
>>
>> +%define MSR_IA32_CET_SUPPRESS              (1<<10)
>>
>> +%define MSR_IA32_CET_TRACKER               (1<<11)
>>
>> +%define MSR_IA32_PL0_SSP                   0x6A4
>>
>> +%define MSR_IA32_INTERRUPT_SSP_TABLE_ADDR  0x6A8
>>
>> +
>>
>> +%define CR4_CET_BIT                        23
>>
>> +%define CR4_CET                            (1<<CR4_CET_BIT)
>>
>> diff --git a/MdePkg/Include/X64/Cet.inc b/MdePkg/Include/X64/Cet.inc
>> new file mode 100644
>> index 0000000000..41c99988c9
>> --- /dev/null
>> +++ b/MdePkg/Include/X64/Cet.inc
>> @@ -0,0 +1,26 @@
>> +;------------------------------------------------------------------------------
>>
>> +;
>>
>> +; Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
>>
>> +; SPDX-License-Identifier: BSD-2-Clause-Patent
>>
>> +;
>>
>> +; Abstract:
>>
>> +;
>>
>> +;   This file provides macro definitions for CET feature for NASM files.
>>
>> +;
>>
>> +;------------------------------------------------------------------------------
>>
>> +
>>
>> +%define MSR_IA32_U_CET                     0x6A0
>>
>> +%define MSR_IA32_S_CET                     0x6A2
>>
>> +%define MSR_IA32_CET_SH_STK_EN             (1<<0)
>>
>> +%define MSR_IA32_CET_WR_SHSTK_EN           (1<<1)
>>
>> +%define MSR_IA32_CET_ENDBR_EN              (1<<2)
>>
>> +%define MSR_IA32_CET_LEG_IW_EN             (1<<3)
>>
>> +%define MSR_IA32_CET_NO_TRACK_EN           (1<<4)
>>
>> +%define MSR_IA32_CET_SUPPRESS_DIS          (1<<5)
>>
>> +%define MSR_IA32_CET_SUPPRESS              (1<<10)
>>
>> +%define MSR_IA32_CET_TRACKER               (1<<11)
>>
>> +%define MSR_IA32_PL0_SSP                   0x6A4
>>
>> +%define MSR_IA32_INTERRUPT_SSP_TABLE_ADDR  0x6A8
>>
>> +
>>
>> +%define CR4_CET_BIT                        23
>>
>> +%define CR4_CET                            (1<<CR4_CET_BIT)
>>
>> --
>> 2.26.2.windows.1
> 
> 
> 
> 
> 
> 



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#111616): https://edk2.groups.io/g/devel/message/111616
Mute This Topic: https://groups.io/mt/102724272/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/leave/12367111/7686176/1913456212/xyzzy [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



  reply	other threads:[~2023-11-22 16:51 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-21  7:02 [edk2-devel] [PATCH v6 0/6] MdePkg: Add macro definitions for CET feature for NASM files Sheng Wei
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 1/6] " Sheng Wei
2023-11-21  7:53   ` Ni, Ray
2023-11-22 16:51     ` Laszlo Ersek [this message]
2023-11-24  7:54       ` Ni, Ray
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 2/6] UefiCpuPkg: Use macro CR4_CET_BIT to replace hard code value in Cet.nasm Sheng Wei
2023-11-21  7:53   ` Ni, Ray
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 3/6] UefiCpuPkg: Use CET macro definitions in Cet.inc for SmiEntry.nasm files Sheng Wei
2023-11-21  7:53   ` Ni, Ray
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 4/6] UefiCpuPkg: Only change CR4.CET bit for enable and disable CET Sheng Wei
2023-11-21  7:53   ` Ni, Ray
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 5/6] UefiCpuPkg: Backup and Restore MSR IA32_U_CET in SMI handler Sheng Wei
2023-11-21  7:53   ` Ni, Ray
2023-11-21  7:02 ` [edk2-devel] [PATCH v6 6/6] MdePkg: Use macro CR4_CET_BIT to replace hard code value Sheng Wei
2023-11-21  7:54   ` Ni, Ray

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=2a3ae2a2-3274-4a80-8d35-cacebb55eeeb@redhat.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