[libvirt] [PATCH] nwfilter: prevent multiple filters with different name but same UUID

Daniel P. Berrange berrange at redhat.com
Thu Oct 14 15:27:16 UTC 2010


On Thu, Oct 14, 2010 at 11:20:15AM -0400, Stefan Berger wrote:
>  Patch to prevent multiple nwfilters with different name but same UUID.
> 
> Signed-off-by: Stefan Berger <stefanb at us.ibm.com>
> 
> ---
>  src/conf/nwfilter_conf.c |   14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> Index: libvirt-acl/src/conf/nwfilter_conf.c
> ===================================================================
> --- libvirt-acl.orig/src/conf/nwfilter_conf.c
> +++ libvirt-acl/src/conf/nwfilter_conf.c
> @@ -2399,6 +2399,20 @@ virNWFilterPoolObjAssignDef(virConnectPt
>  {
>      virNWFilterPoolObjPtr pool;
> 
> +    pool = virNWFilterPoolObjFindByUUID(pools, def->uuid);
> +
> +    if (pool) {
> +        if (!STREQ(def->name, pool->def->name)) {
> +            virNWFilterReportError(VIR_ERR_INVALID_NWFILTER,
> +                               _("filter with same UUID but different 
> name "
> +                                 "('%s') already exists"),
> +                               pool->def->name);
> +            virNWFilterPoolObjUnlock(pool);
> +            return NULL;
> +        }
> +        virNWFilterPoolObjUnlock(pool);
> +    }
> +
>      if (virNWFilterDefLoopDetect(conn, pools, def)) {
>          virNWFilterReportError(VIR_ERR_INVALID_NWFILTER,
>                                "%s", _("filter would introduce a loop"));
> 

ACK

Daniel
-- 
|: Red Hat, Engineering, London    -o-   http://people.redhat.com/berrange/ :|
|: http://libvirt.org -o- http://virt-manager.org -o- http://deltacloud.org :|
|: http://autobuild.org        -o-         http://search.cpan.org/~danberr/ :|
|: GnuPG: 7D3B9505  -o-   F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :|




More information about the libvir-list mailing list