Re: [libvirt] [PATCH] Robustify sexpr parser for NICs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



john.levon@xxxxxxx wrote:
> Robustify sexpr parser for NICs
>
> xend can occassionally get itself confused. Avoid crashing libvirt in
> this case.
>
> diff --git a/src/xend_internal.c b/src/xend_internal.c
> --- a/src/xend_internal.c
> +++ b/src/xend_internal.c
> @@ -1759,7 +1759,8 @@ xenDaemonParseSxprNets(virConnectPtr con
>              if (VIR_ALLOC(net) < 0)
>                  goto no_memory;
>
> -            if (tmp != NULL || (STREQ(tmp2, DEFAULT_VIF_SCRIPT))) {
> +            if (tmp != NULL ||
> +                (tmp2 != NULL && STREQ(tmp2, DEFAULT_VIF_SCRIPT))) {
>                  net->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
>                  /* XXX virtual network reverse resolve */

ACK, but it'd sure be nice to post
an example of input that would crash libvirt.
Bonus points for making it into a test case.

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

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]