On 05/02/2013 06:03 AM, Daniel P. Berrange wrote:
> From: "Daniel P. Berrange" <berra...@redhat.com>
> 
> Currently the parsing of XML is pushed down into the various
> migration helper APIs. This makes it difficult to insert the
> correct access control checks, since one helper API services
> many public APIs. Pull the parsing of XML up to the top level
> of the QEMU driver APIs
> ---
>  src/qemu/qemu_driver.c    | 92 
> ++++++++++++++++++++++++++++++++++++++++++++---
>  src/qemu/qemu_migration.c | 35 +++++-------------
>  src/qemu/qemu_migration.h |  6 ++--
>  3 files changed, 99 insertions(+), 34 deletions(-)

ACK.

>  
> +    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
> +        goto cleanup;
> +
> +    if (!(def = virDomainDefParseString(dom_xml, caps, driver->xmlopt,
> +                                        QEMU_EXPECTED_VIRT_TYPES,
> +                                        VIR_DOMAIN_XML_INACTIVE)))
> +        goto cleanup;
> +
> +    if (dname) {
> +        VIR_FREE(def->name);
> +        if (!(def->name = strdup(dname))) {
> +            virReportOOMError();
> +            goto cleanup;
> +        }
> +    }

This section is repeated a bit; is it worth further factoring it into a
helper function to be called from each site?

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to