[libvirt] [PATCH v1 1/3] migration: add migration_host support for Ipv6 address without brackets

Ján Tomko jtomko at redhat.com
Mon Sep 22 13:34:34 UTC 2014


On 09/12/2014 06:31 AM, Chen Fan wrote:
> when specifying migration_host to an Ipv6 address without brackets,
> it was resolved to an incorrect address, such as:
>    tcp:2001:0DB8::1428:4444,
> but the correct address should be:
>    tcp:[2001:0DB8::1428]:4444
> so we should add brackets when parsing it.
> 
> Signed-off-by: Chen Fan <chen.fan.fnst at cn.fujitsu.com>
> ---
>  src/qemu/qemu_migration.c | 19 +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)
> 
> diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c
> index e4b664b..c7eb305 100644
> --- a/src/qemu/qemu_migration.c
> +++ b/src/qemu/qemu_migration.c
> @@ -2850,11 +2850,22 @@ qemuMigrationPrepareDirect(virQEMUDriverPtr driver,
>              goto cleanup;
>  
>          if (migrateHost != NULL) {
> -            if (virSocketAddrIsNumeric(migrateHost) &&
> -                virSocketAddrParse(NULL, migrateHost, AF_UNSPEC) < 0)
> -                goto cleanup;

Hmm, I'm not sure what this check was doing - if the address was succesfully
parsed in AddrIsNumeric, it should be parsed by virSocketAddrParse as well.

> +            virSocketAddr migrateHostSocket;
> +            bool migrateHostisIpv6Address = false;
> +
> +            if (virSocketAddrIsNumeric(migrateHost)) {
> +                if (virSocketAddrParse(&migrateHostSocket, migrateHost, AF_UNSPEC) < 0)
> +                    goto cleanup;
> +
> +                if (VIR_SOCKET_ADDR_IS_FAMILY(&migrateHostSocket, AF_INET6)) {
> +                    migrateHostisIpv6Address = true;
> +                }
> +            }
>  

We also do this parsing to chceck for numeric IPv6 addresses in
qemuMigrationPrepareAny. It would be nicer to create a new
'virSocketAddrIsNumericIPv6' function and use it in both of them.

Jan

> -           if (VIR_STRDUP(hostname, migrateHost) < 0)
> +            if ((migrateHostisIpv6Address &&
> +                 virAsprintf(&hostname, "[%s]", migrateHost) < 0) ||
> +                (!migrateHostisIpv6Address &&
> +                 virAsprintf(&hostname, "%s", migrateHost) < 0))
>                  goto cleanup;
>          } else {
>              if ((hostname = virGetHostname()) == NULL)
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20140922/48938efd/attachment-0001.sig>


More information about the libvir-list mailing list