public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Abhishek Singh <abh@cs.unc.edu>
To: "Yao, Jiewen" <jiewen.yao@intel.com>
Cc: "Zeng, Star" <star.zeng@intel.com>,
	"Marvin H?user" <Marvin.Haeuser@outlook.com>,
	 "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	Laszlo Ersek <lersek@redhat.com>,
	 "afish@apple.com" <afish@apple.com>,
	"Ni, Ruiyu" <ruiyu.ni@intel.com>,
	"Dong, Eric" <eric.dong@intel.com>
Subject: Re: smm lock query
Date: Tue, 29 May 2018 01:17:48 -0400	[thread overview]
Message-ID: <CAGB8-zrOoXhxfFidrEGEQYC4jNyu=MosO0fdjSW0J4x-ZKnKOg@mail.gmail.com> (raw)
In-Reply-To: <74D8A39837DF1E4DA445A8C0B3885C503AC13EC5@shsmsx102.ccr.corp.intel.com>

Thanks, Jiewen and Star. I was able to figure out that smrr was preventing
me from accessing the contents of smram. It seems to me that this violates
the EFI_MM_ACCESS_PROTOCOL  protocol. I have talked to the edk2-platform
maintainers about this on a private thread, but, of course, I may be
mistaken.

I agree that smm is a runtime environment, but you must also agree that
there is an initialization or loading phase in which all the smi handlers
are loaded into smram. Theoretically, new handlers may keep getting
installed as smi's are received but I doubt that this is the case. There
must be a point at which the code (not necessarily the data) is supposed to
be fixed in smram. My guess is that that point is after the SMI handlers
have responded to the SmmReadyToLock event, but I would like to know if you
disagree.

I am definitely not seeking to add the smram dumping code as a production
feature. I am merely interested in using it for my research.

I may have to resort to writing an smm driver, as you suggest Jiewen, but
currently I am just trying to dump smram contents from smm ipl, having
disabled smrr in SmmCpuFeaturesLib. The problem, in both cases, is that the
smram range is quite large (around 8 MB) and cannot fit in a single UEFI
variable. Do you have any suggestions on how to actually dump out this
large range?

Thanks again,
Abhishek


On Mon, May 28, 2018 at 10:21 PM, Yao, Jiewen <jiewen.yao@intel.com> wrote:

> Let me share my thought.
>
> 1)      From interface point of view, ReadyToLock means it is the last
> time to lock. But it does not mean it must be open before.
>
> As implementation choice, a platform MAY lock it earlier.
>
>
>
> Also SMRR may force the SMRAM invisible to outside SMRAM, even with D_OPEN
> set.
>
>
>
> 2)      Dumping SMRAM exposes the secret inside of SMRAM, I would treat
> it as debug feature only, not a production.
>
>
>
> If you want to debug, you can add a debug SMM driver and expose an
> interface to copy SMRAM content out.
>
>
>
> Thank you
>
> Yao Jiewen
>
>
>
> *From:* Zeng, Star
> *Sent:* Monday, May 28, 2018 6:16 PM
> *To:* Abhishek Singh <abh@cs.unc.edu>; Marvin H?user <
> Marvin.Haeuser@outlook.com>
> *Cc:* edk2-devel@lists.01.org; Laszlo Ersek <lersek@redhat.com>;
> afish@apple.com; Ni, Ruiyu <ruiyu.ni@intel.com>; Dong, Eric <
> eric.dong@intel.com>; Zeng, Star <star.zeng@intel.com>; Yao, Jiewen <
> jiewen.yao@intel.com>
> *Subject:* RE: [edk2] smm lock query
>
>
>
> I do not see issue according to the spec.
>
> Platform should know when to signal DxeSmmReadyToLock (after EndOfDxe).
>
> DxeSmmReadyToLock event is to notify DXE handlers.
>
> Modules are responsible to lock or protect their resource and effect the
> appropriate protections in their notification handlers.
>
> SmmIplGuidedEventNotify is used to inform SMM environment to signal
> SmmReadyToLock.
>
> SmmReadyToLock event is to notify SMM handlers.
>
>
>
> DXE handlers could not touch SMRAM (after SMRAM is locked or even after
> SMRR is configured in PiSmmCpuDxeSmm if I know it is correct).
>
>
>
> “This protocol in tandem with the *End of DXE Even*t facilitates
> transition of the platform from the environment where all of the components
> are under the authority of the platform manufacturer to the environment
> where third party extensible modules such as UEFI drivers and UEFI
> applications are executed.
>
> The protocol is published immediately after signaling of the *End of DXE
> Event*.
>
> PI modules that need to lock or protect their resources in anticipation of
> the invocation of 3rd party extensible modules should register for
> notification on installation of this protocol and effect the appropriate
> protections in their notification handlers. For example, PI platform code
> may choose to use notification handler to lock MM by invoking *EFI_MM_ACCESS_PROTOCOL.Lock()
> *function.”
>
>
>
>
>
> SMM environment is a *runtime* environment. SMRAM will be even changed
> after SmmReadyToLock, for example, by SMM handler for SMM communication
> from DXE.
>
>
>
>
>
> Thanks,
>
> Star
>
> *From:* Abhishek Singh [mailto:abh@cs.unc.edu <abh@cs.unc.edu>]
> *Sent:* Tuesday, May 29, 2018 2:02 AM
> *To:* Marvin Häuser <Marvin.Haeuser@outlook.com>
> *Cc:* edk2-devel@lists.01.org; Laszlo Ersek <lersek@redhat.com>;
> afish@apple.com; Ni, Ruiyu <ruiyu.ni@intel.com>; Dong, Eric <
> eric.dong@intel.com>; Zeng, Star <star.zeng@intel.com>
> *Subject:* Re: [edk2] smm lock query
>
>
>
> Thank you everyone for your inputs and clarifications. They are helping me
> to better understand the uefi code, to which I am very new. I do not mean
> to hijack the thread: so please continue your discussions about whether the
> implementation matches the spec.
>
>
>
> However, I want to state why I am interested in the IPL code. For my
> research, I wish to dump the contents of SMRAM when it has reached steady
> state, i.e., all the drivers have made changes to smram and it has been
> locked. The current implementation (smm ipl) locks smram when it receives
> the SmmReadyToLock event and then propagates the event to the smm drivers
> that make further changes to smram. Unfortunately, I cannot take a snapshot
> of smram after it has been locked! Thus, I have solved this issue by
> propagating the event to the smm drivers first (using
> SmmIplGuidedEventNotify), then opening access to and dumping the contents
> of SMRAM, and finally closing access to and locking smram. Would it be fair
> to say that this would give me the fully initialized contents of smram?
>
>
>
>
>
>
>
> My second observation is that despite opening access to smram, I am unable
> to access its contents, which is a violation of the
> EFI_MM_ACCESS_PROTOCOL.Open() description in the spec, which says: "This
> function “opens” MMRAM so that it is visible while not inside of MM." Note
> that I am working with minnowboard firmware release 0.97. So some of the
> binaries like SmmAccess.efi are provided by Intel, while others have been
> built from the edk source tree: thus, this may not be an EDK issue. Please
> suggest further steps and/or workarounds. Should I contact edk2-platforms
> maintainers, or start a new thread here for this issue?
>
>
>
> -Abhishek
>
>
>
>
>
> On Mon, May 28, 2018 at 10:03 AM, Marvin Häuser <
> Marvin.Haeuser@outlook.com> wrote:
>
> Hello Andrew and Laszlo,
>
> Thanks for your comments!
> Of course I'm with you that it is the platform that signals the
> SmmReadyToLock event and therefor is aware.
> However, they might rely on the protocol's description that the resources
> are about(!) to be locked and code accordingly, not considering the event
> characteristic of the handler in PiSmmIpl.
> The code might be written by different people, not especially reviewed
> against edk2's actions, or additional code might be supplied by third
> parties that do not have tree code access (which, by integration, would be
> "platform binaries" by the definition applying here).
>
> Therefor I would still ask everyone to consider figuring out a solution to
> this discrepancy from the specification, such as the internal "dummy event"
> I proposed.
>
> Thanks,
> Marvin.
>
>
> > -----Original Message-----
> > From: Laszlo Ersek <lersek@redhat.com>
> > Sent: Monday, May 28, 2018 12:58 PM
> > To: Andrew Fish <afish@apple.com>; Marvin H?user
> > <Marvin.Haeuser@outlook.com>
> > Cc: edk2-devel@lists.01.org; Abhishek Singh <abh@cs.unc.edu>;
> > ruiyu.ni@intel.com; eric.dong@intel.com; star.zeng@intel.com
> > Subject: Re: [edk2] smm lock query
> >
> > On 05/27/18 22:44, Andrew Fish wrote:
> > >
> > >
> > >> On May 27, 2018, at 9:47 AM, Marvin H?user
> > <Marvin.Haeuser@outlook.com> wrote:
> > >>
> > >> Good day Abhishek,
> > >>
> > >> I CC'd the MdeModulePkg maintainers, Ruiyu for the Platform BDS aspect
> > (exposes the ReadyToLock protocol) and Laszlo for his high-quality
> answers.
> > >>
> > >> Strictly speaking you are, right, because of the description for the
> MM
> > protocol:
> > >> "Indicates that MM resources and services that should not be used by
> the
> > third party code are about[Marvin: (!)] to be locked."
> > >> Practically however, I don't see any issue with the current
> > implementation. Code inside MMRAM is not affected directly by the lock,
> it is
> > just notified.
> > >> However, either the code or the specification should be slightly
> updated
> > to be in sync. A code update might require review of the caller
> assumptions,
> > just to be sure.
> > >>
> > >> I have a different concern though and hope I'm actually overlooking
> > something.
> > >> If I understand the code correctly, it is the Platform BDS that
> exposes the
> > (S)MmReadyToLock protocol. PiSmmIpl seems to consume that event and
> > lock SMM resources based on the event.
> > >> Because of latter being an event however, I don't think it is, or can
> be,
> > guaranteed to be the last event group member executing.
> > >> When it is not the last, the "about to be locked" part is not true
> for any
> > subsequent callbacks, that could actually be a risky break of the
> specification
> > - if it is.
> > >> If it is a break of the specification, I can only think of letting
> Platform BDS
> > expose an "internal" event group, which is only caught by PiSmmIpl, which
> > then drives the actual SmmReadyToLock flow.
> > >> This would require updates to all platform trees and hence I would
> > propose a temporary backwards-compatibility.
> > >>
> > >> Any comments? Did I overlook something (I hope)?
> > >>
> > >
> > > Mavvin,
> > >
> > > You are correct there is no guarantee of order in events. Thanks for
> cc'ing
> > the right folks, as I don't remember all the low level details...
> > >
> > > In general the idea behind the MM code is it only comes from the
> platform,
> > then by definition that code should be aware when the platform was going
> > to lock MM. In a practical sense any MM module that had a depex evaluate
> > to true would have dispatched in DXE prior to BDS being launched. In
> general
> > BDS is the code that enumerates PCI and connects devices, thus there is
> no
> > chance for 3rd party software to run before that point in the boot. So
> in an
> > abstract sense that lock represents the end of DXE dispatch.
> >
> > This is my understanding as well. gEfiDxeSmmReadyToLockProtocolGuid is
> > installed by Plaform BDS before any non-platform binaries get a chance to
> > run. In terms of the current PlatformBootManagerLib interfaces, that
> means
> > the protocol should be installed from
> > PlatformBootManagerBeforeConsole() (as noted on the API declaration
> > itself).
> >
> > Thanks
> > Laszlo
>
>
>


  reply	other threads:[~2018-05-29  5:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-26 15:04 smm lock query Abhishek Singh
2018-05-27 16:47 ` Marvin H?user
2018-05-27 20:44   ` Andrew Fish
2018-05-27 20:45     ` Andrew Fish
2018-05-28 10:57     ` Laszlo Ersek
2018-05-28 14:03       ` Marvin Häuser
2018-05-28 18:02         ` Abhishek Singh
2018-05-29  1:15           ` Zeng, Star
2018-05-29  2:21             ` Yao, Jiewen
2018-05-29  5:17               ` Abhishek Singh [this message]
2018-05-29 14:54                 ` Andrew Fish
2018-05-29 14:56                 ` Yao, Jiewen

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='CAGB8-zrOoXhxfFidrEGEQYC4jNyu=MosO0fdjSW0J4x-ZKnKOg@mail.gmail.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