qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jarkko Sakkinen <jarkko@kernel.org>
To: Yang Zhong <yang.zhong@intel.com>
Cc: pbonzini@redhat.com, eblake@redhat.com, qemu-devel@nongnu.org,
	linux-sgx@vger.kernel.org
Subject: Re: unable to execute QEMU command 'qom-get': Property 'sgx-epc.unavailable-features' not found
Date: Mon, 17 Jan 2022 08:58:05 +0200	[thread overview]
Message-ID: <YeUTfZd4ppreJPlL@iki.fi> (raw)
In-Reply-To: <20220117060900.GA20805@yangzhon-Virtual>

On Mon, Jan 17, 2022 at 02:09:00PM +0800, Yang Zhong wrote:
> On Mon, Jan 17, 2022 at 04:53:45AM +0200, Jarkko Sakkinen wrote:
> > On Tue, Nov 30, 2021 at 08:15:36PM +0800, Yang Zhong wrote:
> > > On Thu, Nov 25, 2021 at 08:47:22PM +0800, Yang Zhong wrote:
> > > > Hello Paolo,
> > > > 
> > > > Our customer used the Libvirt XML to start a SGX VM, but failed.
> > > > 
> > > > libvirt.libvirtError: internal error: unable to execute QEMU command 'qom-get': Property 'sgx-epc.unavailable-features' not found
> > > > 
> > > > The XML file,
> > > > <qemu:commandline>
> > > >     <qemu:arg value="-cpu"/>
> > > >     <qemu:arg value="host,+sgx,+sgx-debug,+sgx-exinfo,+sgx-kss,+sgx-mode64,+sgx-provisionkey,+sgx-tokenkey,+sgx1,+sgx2,+sgxlc"/>
> > > >     <qemu:arg value="-object"/>
> > > >     <qemu:arg value="memory-backend-epc,id=mem1,size=16M,prealloc=on"/>
> > > >     <qemu:arg value="-M"/>
> > > >     <qemu:arg value="sgx-epc.0.memdev=mem1"/>
> > > >   </qemu:commandline>
> > > > 
> > > > The new compound property command should be located in /machine path,
> > > > which are different with old command '-sgx-epc id=epc1,memdev=mem1'.
> > > > 
> > > > I also tried this from Qemu monitor tool, 
> > > > (qemu) qom-list /machine
> > > > type (string)
> > > > kernel (string)
> > > > ......
> > > > sgx-epc (SgxEPC)
> > > > ......
> > > > sgx-epc[0] (child<memory-region>)
> > > > ......
> > > > 
> > > > We can find sgx-epc from /machine list.
> > > > 
> > > 
> > >   This issue is clear now, which is caused by Libvirt to get the CPU's unavailable-features by below command:
> > >   {"execute":"qom-get","arguments":{"path":"/machine/unattached/device[0]","property":"unavailable-features"}
> > > 
> > >   but in SGX vm, since the sgx is initialized before VCPU because sgx need set the virtual EPC info in the cpuid.  
> > > 
> > >   So the /machine/unattached/device[0] is occupied by sgx, which fail to get the unvailable-features from
> > >   /machine/unattached/device[0].
> > > 
> > > 
> > >   We need fix this issue, but this can be done in Qemu or Libvirt side.
> > > 
> > >   1) Libvirt side
> > >      If the libvirt support SGX EPCs, libvirt can use /machine/unattached/device[n] to check "unavailable-features".
> > >      n is the next number of sgx's unattached_count.
> > > 
> > >   2) Qemu side
> > >     
> > >      One temp patch to create one /sgx in the /machine in the device_set_realized() 
> > > diff --git a/hw/core/qdev.c b/hw/core/qdev.c
> > > index 84f3019440..4154eef0d8 100644
> > > --- a/hw/core/qdev.c
> > > +++ b/hw/core/qdev.c
> > > @@ -497,7 +497,7 @@ static void device_set_realized(Object *obj, bool value, Error **errp)
> > >      NamedClockList *ncl;
> > >      Error *local_err = NULL;
> > >      bool unattached_parent = false;
> > > -    static int unattached_count;
> > > +    static int unattached_count, sgx_count;
> > > 
> > >      if (dev->hotplugged && !dc->hotpluggable) {
> > >          error_setg(errp, QERR_DEVICE_NO_HOTPLUG, object_get_typename(obj));
> > > @@ -509,7 +509,15 @@ static void device_set_realized(Object *obj, bool value, Error **errp)
> > >              goto fail;
> > >          }
> > > 
> > > -        if (!obj->parent) {
> > > +        if (!obj->parent && !strcmp(object_get_typename(obj), "sgx-epc")) {
> > > +            gchar *name = g_strdup_printf("device[%d]", sgx_count++);
> > > +
> > > +            object_property_add_child(container_get(qdev_get_machine(),
> > > +                                                    "/sgx"),
> > > +                                      name, obj);
> > > +            unattached_parent = true;
> > > +            g_free(name);
> > > +        } else if (!obj->parent) {
> > >              gchar *name = g_strdup_printf("device[%d]", unattached_count++);
> > > 
> > >              object_property_add_child(container_get(qdev_get_machine()
> > >    
> > >     This patch can make sure vcpu is still /machine/unattached/device[0].
> > > 
> > > 
> > >     Which solution is best?  thanks!
> > 
> > Has either of the fixes reached yet reached upstream or not?
> 
> 
>   Jarkko, I sent out one patch to fix this issue last week,
>   https://lists.nongnu.org/archive/html/qemu-devel/2022-01/msg02502.html
> 
>   Daniel regarded this fix is special code for SGX in the generic object code.
>   So, this fix can be done in Libvirt side. Did you face this issue? or you can
>   use this patch as TEMP fix. thanks!

Great, thank you! You can add my tested-by to the patch.

>   Yang  

BR, Jarkko


  reply	other threads:[~2022-01-17  7:10 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-25 12:47 unable to execute QEMU command 'qom-get': Property 'sgx-epc.unavailable-features' not found Yang Zhong
2021-11-30 12:15 ` Yang Zhong
2022-01-17  2:53   ` Jarkko Sakkinen
2022-01-17  6:09     ` Yang Zhong
2022-01-17  6:58       ` Jarkko Sakkinen [this message]
2022-01-17  6:56     ` Jarkko Sakkinen

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-all 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=YeUTfZd4ppreJPlL@iki.fi \
    --to=jarkko@kernel.org \
    --cc=eblake@redhat.com \
    --cc=linux-sgx@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=yang.zhong@intel.com \
    /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;
as well as URLs for NNTP newsgroup(s).