[libvirt] [PATCH 2/2] esx: Fix SetAutoStart invalid pointer free

Han Han hhan at redhat.com
Wed Aug 1 08:38:50 UTC 2018


On Wed, Aug 1, 2018 at 10:27 AM, Marcos Paulo de Souza <
marcos.souza.org at gmail.com> wrote:

> esxVI_AutoStartPowerInfo_Free, which is called from
> esxVI_HostAutoStartManagerConfig_Free, will always call VIR_FREE to free
> memory from {start,stop}Action, leading to a invalid pointer.
>
> With this patch applied, ESX can set autostart successfully to all it's
> domains.
>
> Signed-off-by: Marcos Paulo de Souza <marcos.souza.org at gmail.com>
> ---
>  src/esx/esx_driver.c | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
> index 3835e4cb3c..a49862a1de 100644
> --- a/src/esx/esx_driver.c
> +++ b/src/esx/esx_driver.c
> @@ -3386,7 +3386,9 @@ esxDomainSetAutostart(virDomainPtr domain, int
> autostart)
>      if (esxVI_AutoStartPowerInfo_Alloc(&newPowerInfo) < 0 ||
>          esxVI_Int_Alloc(&newPowerInfo->startOrder) < 0 ||
>          esxVI_Int_Alloc(&newPowerInfo->startDelay) < 0 ||
> -        esxVI_Int_Alloc(&newPowerInfo->stopDelay) < 0) {
> +        esxVI_Int_Alloc(&newPowerInfo->stopDelay) < 0 ||
> +        VIR_ALLOC_N(newPowerInfo->startAction, 8) < 0 ||
> +        VIR_ALLOC_N(newPowerInfo->stopAction, 5) < 0) {
>          goto cleanup;
>      }
>
> @@ -3394,9 +3396,9 @@ esxDomainSetAutostart(virDomainPtr domain, int
> autostart)
>      newPowerInfo->startOrder->value = -1; /* no specific start order */
>      newPowerInfo->startDelay->value = -1; /* use system default */
>      newPowerInfo->waitForHeartbeat = esxVI_AutoStartWaitHeartbeatSe
> tting_SystemDefault;
> -    newPowerInfo->startAction = autostart ? (char *)"powerOn" : (char
> *)"none";
> +    strcpy(newPowerInfo->startAction, autostart ? (char *)"powerOn" :
> (char *)"none");
>
Please use virStrcpyStatic, seeing https://libvirt.org/hacking.
html#string_copying

>      newPowerInfo->stopDelay->value = -1; /* use system default */
> -    newPowerInfo->stopAction = (char *)"none";
> +    strcpy(newPowerInfo->stopAction, (char *)"none");
>
> The same here

>      if (esxVI_AutoStartPowerInfo_AppendToList(&spec->powerInfo,
>                                                newPowerInfo) < 0) {
> --
> 2.17.1
>
> --
> libvir-list mailing list
> libvir-list at redhat.com
> https://www.redhat.com/mailman/listinfo/libvir-list
>



-- 
Best regards,
-----------------------------------
Han Han
Quality Engineer
Redhat.

Email: hhan at redhat.com
Phone: +861065339333
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20180801/62649e4a/attachment-0001.htm>


More information about the libvir-list mailing list