[libvirt] [PATCH 4/4] test: Fix possible ap leak for VIR_TEST_PRELOAD

Peter Krempa pkrempa at redhat.com
Wed Jun 28 11:45:31 UTC 2017


On Wed, Jun 28, 2017 at 07:37:38 -0400, John Ferlan wrote:
> Commit id 'f0469c61e' added the ability to load multiple mock libraries
> by using the va_start() varable args marker; however, if something within
> the VIR_TEST_PRELOAD fails, then control is returned to caller without
> calling va_end. So add a couple more markers to indicat the need to call
> va_end w/ the ap before returning.
> 
> Signed-off-by: John Ferlan <jferlan at redhat.com>
> ---
>  tests/qemucapsprobe.c | 2 +-
>  tests/testutils.c     | 4 ++--
>  tests/testutils.h     | 6 +++++-
>  3 files changed, 8 insertions(+), 4 deletions(-)

[...]

> diff --git a/tests/testutils.h b/tests/testutils.h
> index c7f02e4..e4c602b 100644
> --- a/tests/testutils.h
> +++ b/tests/testutils.h
> @@ -115,12 +115,14 @@ int virTestMain(int argc,
>          return virTestMain(argc, argv, func, NULL);     \
>      }
>  
> -# define VIR_TEST_PRELOAD(lib)                                          \
> +# define VIR_TEST_PRELOAD(lib, haveap, _ap)                             \
>      do {                                                                \
>          const char *preload = getenv("LD_PRELOAD");                     \
>          if (preload == NULL || strstr(preload, lib) == NULL) {          \
>              char *newenv;                                               \
>              if (!virFileIsExecutable(lib)) {                            \
> +                if (haveap)                                             \
> +                    va_end(_ap);                                        \
>                  perror(lib);                                            \

NACK, this is gross. Please make this macro jump to a label passed as
argument so that the caller can do cleanup.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: Digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20170628/063d6d72/attachment-0001.sig>


More information about the libvir-list mailing list