[libvirt] [PATCH v2] virt-aa-helper: Set the supported features

Shivaprasad bhat shivaprasadbhat at gmail.com
Mon Feb 5 13:09:24 UTC 2018


Thanks for the reply Peter, Christian

On Fri, Feb 2, 2018 at 3:21 PM, Peter Krempa <pkrempa at redhat.com> wrote:

> On Fri, Feb 02, 2018 at 08:14:29 +0100, Christian Ehrhardt wrote:
> > On Fri, Jan 19, 2018 at 3:55 PM, Shivaprasad G Bhat
> > <sbhat at linux.vnet.ibm.com> wrote:
> > > The virt-aa-helper fails to parse the xmls with the memory/cpu
> > > hotplug features or user assigned aliases. Set the features in
> > > xmlopt->config for the parsing to succeed.
> > >
> > > Signed-off-by: Shivaprasad G Bhat <sbhat at linux.vnet.ibm.com>
> > > ---
> > >  src/security/virt-aa-helper.c |    8 +++++++-
> > >  1 file changed, 7 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/src/security/virt-aa-helper.c
> b/src/security/virt-aa-helper.c
> > > index f7ccae0..29a459d 100644
> > > --- a/src/security/virt-aa-helper.c
> > > +++ b/src/security/virt-aa-helper.c
> > > @@ -654,6 +654,11 @@ caps_mockup(vahControl * ctl, const char *xmlStr)
> > >      return rc;
> > >  }
> > >
> > > +virDomainDefParserConfig virAAHelperDomainDefParserConfig = {
> > > +    .features = VIR_DOMAIN_DEF_FEATURE_MEMORY_HOTPLUG |
> > > +                VIR_DOMAIN_DEF_FEATURE_OFFLINE_VCPUPIN |
> > > +                VIR_DOMAIN_DEF_FEATURE_INDIVIDUAL_VCPUS,
> > > +};
> >
> > Sure we can't link against qemu_domain.c to get "the original"
> > virQEMUDriverDomainDefParserConfig.
> > But a comment here that the define is essentially taken there might
> > helpful to later on follow any updates there.
> >
> > Also mentioning why exactly you dropped
> > VIR_DOMAIN_DEF_FEATURE_USER_ALIAS for the same reason.
>

The reason being the parsing code just ignores the user specified aliases
and doesn't fail the parsing if the VIR_DOMAIN_DEF_FEATURE_USER_ALIAS
feature flag is not set.


> Actually, we might want to add a parser flag (or feature bit) to ignore
> all other features when parsing. The aa-helper binary does not really
> want or need to validate all the stuff necessary here and it might also
> create problems since the feature bits are specifically designed to
> reject XMLs which have certain elements (if the bit is not enabled).
>

I agree. Having a new "skip" flag is better than this as that is future
proof
for more flags that might come.

Sending the next version in a while.

Thanks,
Shivaprasad



>
> This means that not-defining VIR_DOMAIN_DEF_FEATURE_USER_ALIAS would
> actually make the parser fail on any XML which has user aliases despite
> the fact that the aa-helper does not actually care about them at all.
>
> Having a way to disable that is preferred, since having two definitions
> of this would actualy result into one of them being out of sync all the
> time.
>
> --
> libvir-list mailing list
> libvir-list at redhat.com
> https://www.redhat.com/mailman/listinfo/libvir-list
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20180205/5dc33b77/attachment-0001.htm>


More information about the libvir-list mailing list