* [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
[not found] <20210616162553.350074-1-ohilyard@iol.unh.edu>
@ 2021-06-16 18:07 ` ohilyard
2021-06-23 8:43 ` Olivier Matz
2021-06-23 18:06 ` [dpdk-stable] [PATCH v3] " ohilyard
0 siblings, 2 replies; 10+ messages in thread
From: ohilyard @ 2021-06-16 18:07 UTC (permalink / raw)
To: olivier.matz; +Cc: dev, david.marchand, stable, Owen Hilyard
From: Owen Hilyard <ohilyard@iol.unh.edu>
Fixes for a few memory leaks in the cmdline_autotest unit test.
All of the leaks were related to not freeing the commandline struct
after testing had completed.
Fixes: dbb860e03e ("cmdline: tests")
Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
Reviewed-by: David Marchand <david.marchand@redhat.com>
---
app/test/test_cmdline_lib.c | 30 ++++++++++++++++++++++--------
1 file changed, 22 insertions(+), 8 deletions(-)
diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
index bd72df0da..19228c9a5 100644
--- a/app/test/test_cmdline_lib.c
+++ b/app/test/test_cmdline_lib.c
@@ -71,10 +71,12 @@ test_cmdline_parse_fns(void)
if (cmdline_complete(cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
goto error;
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -140,32 +142,43 @@ static int
test_cmdline_socket_fns(void)
{
cmdline_parse_ctx_t ctx;
+ struct cmdline *cl;
- if (cmdline_stdin_new(NULL, "prompt") != NULL)
+ cl = cmdline_stdin_new(NULL, "prompt");
+ if (cl != NULL)
goto error;
- if (cmdline_stdin_new(&ctx, NULL) != NULL)
+ cl = cmdline_stdin_new(&ctx, NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
+ cl = cmdline_file_new(NULL, "prompt", "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
+ cl = cmdline_file_new(&ctx, NULL, "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
+ cl = cmdline_file_new(&ctx, "prompt", NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
+ if (cl != NULL) {
printf("Error: succeeded in opening invalid file for reading!");
+ cmdline_free(cl);
return -1;
}
- if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
+ if (cl == NULL) {
printf("Error: failed to open /dev/null for reading!");
+ cmdline_free(cl);
return -1;
}
/* void functions */
cmdline_stdin_exit(NULL);
-
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -198,6 +211,7 @@ test_cmdline_fns(void)
cmdline_interact(NULL);
cmdline_quit(NULL);
+ cmdline_free(cl);
return 0;
error:
--
2.30.2
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
2021-06-16 18:07 ` [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks ohilyard
@ 2021-06-23 8:43 ` Olivier Matz
2021-06-23 18:06 ` [dpdk-stable] [PATCH v3] " ohilyard
1 sibling, 0 replies; 10+ messages in thread
From: Olivier Matz @ 2021-06-23 8:43 UTC (permalink / raw)
To: ohilyard; +Cc: dev, david.marchand, stable
Hi Owen,
Thanks for fixing this test.
Some comments below.
On Wed, Jun 16, 2021 at 02:07:24PM -0400, ohilyard@iol.unh.edu wrote:
> From: Owen Hilyard <ohilyard@iol.unh.edu>
>
> Fixes for a few memory leaks in the cmdline_autotest unit test.
>
> All of the leaks were related to not freeing the commandline struct
> after testing had completed.
>
> Fixes: dbb860e03e ("cmdline: tests")
>
> Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
Please use "-v $version" when sending a new version of
the patch. You can find examples in doc/guides/contributing/patches.rst
> ---
> app/test/test_cmdline_lib.c | 30 ++++++++++++++++++++++--------
> 1 file changed, 22 insertions(+), 8 deletions(-)
>
> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
> index bd72df0da..19228c9a5 100644
> --- a/app/test/test_cmdline_lib.c
> +++ b/app/test/test_cmdline_lib.c
> @@ -71,10 +71,12 @@ test_cmdline_parse_fns(void)
> if (cmdline_complete(cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
> goto error;
>
> + cmdline_free(cl);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -140,32 +142,43 @@ static int
> test_cmdline_socket_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> + struct cmdline *cl;
>
> - if (cmdline_stdin_new(NULL, "prompt") != NULL)
> + cl = cmdline_stdin_new(NULL, "prompt");
> + if (cl != NULL)
> goto error;
> - if (cmdline_stdin_new(&ctx, NULL) != NULL)
> + cl = cmdline_stdin_new(&ctx, NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
> + cl = cmdline_file_new(NULL, "prompt", "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
> + cl = cmdline_file_new(&ctx, NULL, "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
> + cl = cmdline_file_new(&ctx, "prompt", NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
> + if (cl != NULL) {
> printf("Error: succeeded in opening invalid file for reading!");
> + cmdline_free(cl);
> return -1;
> }
> - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> + if (cl == NULL) {
> printf("Error: failed to open /dev/null for reading!");
> + cmdline_free(cl);
> return -1;
> }
This last cmdline_free() is not needed, because the test is (cl == NULL)
>
> /* void functions */
> cmdline_stdin_exit(NULL);
> -
> + cmdline_free(cl);
I would keep an empty line here, to highlight that the comment
only refers to cmdline_stdin_exit().
> return 0;
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -198,6 +211,7 @@ test_cmdline_fns(void)
> cmdline_interact(NULL);
> cmdline_quit(NULL);
>
In this function test_cmdline_fns(), there is the same scheme than in
test_cmdline_socket_fns(), so I think you should apply the same kind
of modifications (even if a non-NULL return value should not happen):
- if (cmdline_new(NULL, prompt, 0, 0) != NULL)
+ cl = cmdline_new(NULL, prompt, 0, 0);
+ if (cl != NULL)
Maybe the 2 tested error cases that are expected to return NULL
should go before the correct one, so that it's not needed to have
another cl pointer variable.
> + cmdline_free(cl);
> return 0;
>
> error:
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dpdk-stable] [PATCH v3] tests/cmdline: fix memory leaks
2021-06-16 18:07 ` [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks ohilyard
2021-06-23 8:43 ` Olivier Matz
@ 2021-06-23 18:06 ` ohilyard
2021-06-24 12:07 ` Olivier Matz
2021-06-24 13:25 ` David Marchand
1 sibling, 2 replies; 10+ messages in thread
From: ohilyard @ 2021-06-23 18:06 UTC (permalink / raw)
To: olivier.matz; +Cc: dev, stable, david.marchand, Owen Hilyard
From: Owen Hilyard <ohilyard@iol.unh.edu>
Fixes for a few memory leaks in the cmdline_autotest unit test.
All of the leaks were related to not freeing the commandline struct
after testing had completed.
Fixes: dbb860e03e ("cmdline: tests")
Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
Reviewed-by: David Marchand <david.marchand@redhat.com>
---
app/test/test_cmdline_lib.c | 40 ++++++++++++++++++++++++++-----------
1 file changed, 28 insertions(+), 12 deletions(-)
diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
index bd72df0da..b476b2594 100644
--- a/app/test/test_cmdline_lib.c
+++ b/app/test/test_cmdline_lib.c
@@ -71,10 +71,12 @@ test_cmdline_parse_fns(void)
if (cmdline_complete(cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
goto error;
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -140,32 +142,44 @@ static int
test_cmdline_socket_fns(void)
{
cmdline_parse_ctx_t ctx;
+ struct cmdline *cl;
- if (cmdline_stdin_new(NULL, "prompt") != NULL)
+ cl = cmdline_stdin_new(NULL, "prompt");
+ if (cl != NULL)
goto error;
- if (cmdline_stdin_new(&ctx, NULL) != NULL)
+ cl = cmdline_stdin_new(&ctx, NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
+ cl = cmdline_file_new(NULL, "prompt", "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
+ cl = cmdline_file_new(&ctx, NULL, "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
+ cl = cmdline_file_new(&ctx, "prompt", NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
+ if (cl != NULL) {
printf("Error: succeeded in opening invalid file for reading!");
+ cmdline_free(cl);
return -1;
}
- if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
+ if (cl == NULL) {
printf("Error: failed to open /dev/null for reading!");
+ cmdline_free(cl);
return -1;
}
/* void functions */
cmdline_stdin_exit(NULL);
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -176,13 +190,14 @@ test_cmdline_fns(void)
struct cmdline *cl;
memset(&ctx, 0, sizeof(ctx));
- cl = cmdline_new(&ctx, "test", -1, -1);
- if (cl == NULL)
+ cl = cmdline_new(NULL, "prompt", 0, 0);
+ if (cl != NULL)
goto error;
-
- if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
+ cl = cmdline_new(&ctx, NULL, 0, 0);
+ if (cl != NULL)
goto error;
- if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
+ cl = cmdline_new(&ctx, "test", -1, -1);
+ if (cl == NULL)
goto error;
if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
goto error;
@@ -198,6 +213,7 @@ test_cmdline_fns(void)
cmdline_interact(NULL);
cmdline_quit(NULL);
+ cmdline_free(cl);
return 0;
error:
--
2.30.2
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH v3] tests/cmdline: fix memory leaks
2021-06-23 18:06 ` [dpdk-stable] [PATCH v3] " ohilyard
@ 2021-06-24 12:07 ` Olivier Matz
2021-06-24 13:24 ` David Marchand
2021-06-24 13:25 ` David Marchand
1 sibling, 1 reply; 10+ messages in thread
From: Olivier Matz @ 2021-06-24 12:07 UTC (permalink / raw)
To: ohilyard; +Cc: dev, stable, david.marchand
Hi Owen,
One small issue remain, please see below.
On Wed, Jun 23, 2021 at 02:06:45PM -0400, ohilyard@iol.unh.edu wrote:
> From: Owen Hilyard <ohilyard@iol.unh.edu>
>
> Fixes for a few memory leaks in the cmdline_autotest unit test.
>
> All of the leaks were related to not freeing the commandline struct
> after testing had completed.
>
> Fixes: dbb860e03e ("cmdline: tests")
>
> Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
> ---
> app/test/test_cmdline_lib.c | 40 ++++++++++++++++++++++++++-----------
> 1 file changed, 28 insertions(+), 12 deletions(-)
>
> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
> index bd72df0da..b476b2594 100644
> --- a/app/test/test_cmdline_lib.c
> +++ b/app/test/test_cmdline_lib.c
> @@ -71,10 +71,12 @@ test_cmdline_parse_fns(void)
> if (cmdline_complete(cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
> goto error;
>
> + cmdline_free(cl);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -140,32 +142,44 @@ static int
> test_cmdline_socket_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> + struct cmdline *cl;
>
> - if (cmdline_stdin_new(NULL, "prompt") != NULL)
> + cl = cmdline_stdin_new(NULL, "prompt");
> + if (cl != NULL)
> goto error;
> - if (cmdline_stdin_new(&ctx, NULL) != NULL)
> + cl = cmdline_stdin_new(&ctx, NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
> + cl = cmdline_file_new(NULL, "prompt", "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
> + cl = cmdline_file_new(&ctx, NULL, "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
> + cl = cmdline_file_new(&ctx, "prompt", NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
> + if (cl != NULL) {
> printf("Error: succeeded in opening invalid file for reading!");
> + cmdline_free(cl);
> return -1;
> }
> - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> + if (cl == NULL) {
> printf("Error: failed to open /dev/null for reading!");
> + cmdline_free(cl);
> return -1;
> }
The cmdline_free(cl) after a if (cl == NULL) is not needed.
After that change, you can add my ack in v4.
Thanks,
Olivier
>
> /* void functions */
> cmdline_stdin_exit(NULL);
>
> + cmdline_free(cl);
> return 0;
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -176,13 +190,14 @@ test_cmdline_fns(void)
> struct cmdline *cl;
>
> memset(&ctx, 0, sizeof(ctx));
> - cl = cmdline_new(&ctx, "test", -1, -1);
> - if (cl == NULL)
> + cl = cmdline_new(NULL, "prompt", 0, 0);
> + if (cl != NULL)
> goto error;
> -
> - if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
> + cl = cmdline_new(&ctx, NULL, 0, 0);
> + if (cl != NULL)
> goto error;
> - if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
> + cl = cmdline_new(&ctx, "test", -1, -1);
> + if (cl == NULL)
> goto error;
> if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
> goto error;
> @@ -198,6 +213,7 @@ test_cmdline_fns(void)
> cmdline_interact(NULL);
> cmdline_quit(NULL);
>
> + cmdline_free(cl);
> return 0;
>
> error:
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH v3] tests/cmdline: fix memory leaks
2021-06-24 12:07 ` Olivier Matz
@ 2021-06-24 13:24 ` David Marchand
0 siblings, 0 replies; 10+ messages in thread
From: David Marchand @ 2021-06-24 13:24 UTC (permalink / raw)
To: Olivier Matz; +Cc: Owen Hilyard, dev, dpdk stable
On Thu, Jun 24, 2021 at 2:08 PM Olivier Matz <olivier.matz@6wind.com> wrote:
> > - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> > + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> > + if (cl == NULL) {
> > printf("Error: failed to open /dev/null for reading!");
> > + cmdline_free(cl);
> > return -1;
> > }
>
> The cmdline_free(cl) after a if (cl == NULL) is not needed.
I took the liberty of doing the change when applying and added your ack.
Thanks.
--
David Marchand
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH v3] tests/cmdline: fix memory leaks
2021-06-23 18:06 ` [dpdk-stable] [PATCH v3] " ohilyard
2021-06-24 12:07 ` Olivier Matz
@ 2021-06-24 13:25 ` David Marchand
1 sibling, 0 replies; 10+ messages in thread
From: David Marchand @ 2021-06-24 13:25 UTC (permalink / raw)
To: Owen Hilyard; +Cc: Olivier Matz, dev, dpdk stable
On Wed, Jun 23, 2021 at 8:06 PM <ohilyard@iol.unh.edu> wrote:
>
> From: Owen Hilyard <ohilyard@iol.unh.edu>
>
> Fixes for a few memory leaks in the cmdline_autotest unit test.
>
> All of the leaks were related to not freeing the commandline struct
> after testing had completed.
>
> Fixes: dbb860e03e ("cmdline: tests")
Updated sha1.
Cc: stable@dpdk.org
>
> Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
Applied, thanks.
--
David Marchand
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH 19.11] tests/cmdline: fix memory leaks
@ 2021-08-11 12:55 Owen Hilyard
2021-08-12 19:44 ` [dpdk-stable] [PATCH] " ohilyard
0 siblings, 1 reply; 10+ messages in thread
From: Owen Hilyard @ 2021-08-11 12:55 UTC (permalink / raw)
To: Christian Ehrhardt; +Cc: dpdk stable, David Marchand
Sorry about that, I'll go take a second look and send in a V2.
On Wed, Aug 11, 2021 at 7:18 AM Christian Ehrhardt <
christian.ehrhardt@canonical.com> wrote:
> On Wed, Aug 11, 2021 at 11:45 AM Christian Ehrhardt
> <christian.ehrhardt@canonical.com> wrote:
> >
> > On Wed, Aug 11, 2021 at 8:43 AM Christian Ehrhardt
> > <christian.ehrhardt@canonical.com> wrote:
> > >
> > > On Tue, Aug 10, 2021 at 7:40 PM <ohilyard@iol.unh.edu> wrote:
> > > >
> > > > From: Owen Hilyard <ohilyard@iol.unh.edu>
> > > >
> > > > [ upstream commit ca7204b921c2f328ab1222772af40922970e7c4b ]
> > > >
> > > > Fixes for a few memory leaks in the cmdline_autotest unit test.
> > >
> > > Thank you for the backport - applied to the preliminary 19.11 branch
> > > for 19.11.10
> >
> > Actually this causes
> > ../app/test/test_cmdline_lib.c: In function ‘test_cmdline_socket_fns’:
> > ../app/test/test_cmdline_lib.c:138:8: warning: assignment to ‘struct
> > cmdline *’ from ‘int’ makes pointer from integer without a cast
> > [-Wint-conversion]
> > 138 | cl = cmdline_stdin_new(NULL, "prompt") != NULL);
> > | ^
> > ../app/test/test_cmdline_lib.c:138:51: error: expected ‘;’ before ‘)’
> token
> > 138 | cl = cmdline_stdin_new(NULL, "prompt") != NULL);
> > | ^
> > ../app/test/test_cmdline_lib.c:138:51: error: expected statement
> > before ‘)’ token
> >
> > It has various issues, see below:
> >
> > > > All of the leaks were related to not freeing the commandline struct
> > > > after testing had completed.
> > > >
> > > > Fixes: dbb860e03e ("cmdline: tests")
> > > >
> > > > Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> > > > Reviewed-by: David Marchand <david.marchand@redhat.com>
> > > > ---
> > > > app/test/test_cmdline_lib.c | 43
> ++++++++++++++++++++++++++-----------
> > > > 1 file changed, 31 insertions(+), 12 deletions(-)
> > > >
> > > > diff --git a/app/test/test_cmdline_lib.c
> b/app/test/test_cmdline_lib.c
> > > > index a856a9713..c7ada9ddd 100644
> > > > --- a/app/test/test_cmdline_lib.c
> > > > +++ b/app/test/test_cmdline_lib.c
> > > > @@ -62,10 +62,12 @@ test_cmdline_parse_fns(void)
> > > > if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst))
> >= 0)
> > > > goto error;
> > > >
> > > > + cmdline_free(&cl);
> > > > return 0;
> > > >
> > > > error:
> > > > printf("Error: function accepted null parameter!\n");
> > > > + cmdline_free(&cl);
> > > > return -1;
> > > > }
> > > >
> > > > @@ -131,32 +133,43 @@ static int
> > > > test_cmdline_socket_fns(void)
> > > > {
> > > > cmdline_parse_ctx_t ctx;
> > > > + struct cmdline* cl;
> > > >
> > > > - if (cmdline_stdin_new(NULL, "prompt") != NULL)
> > > > + cl = cmdline_stdin_new(NULL, "prompt") != NULL);
> >
> > Changed to an assignment but kept the comparison of the if => failing.
> >
> > > > + if (cl != NULL)
> > > > goto error;
> > > > - if (cmdline_stdin_new(&ctx, NULL) != NULL)
> > > > + cl = cmdline_stdin_new(&ctx, NULL);
> > > > + if (cl != NULL)
> >
> > ^^ all those add whitespace damage replacing a tab with spaces
> >
> >
> > I have fixed all those into
> >
> https://github.com/cpaelzer/dpdk-stable-queue/commit/4c36f7b56fb4bc12b9d19ca21db4207298afead0
>
> Even with that if fails like
>
> [ 1044s] ../app/test/test_cmdline_lib.c: In function ‘test_cmdline_fns’:
> [ 1044s] ../app/test/test_cmdline_lib.c:227:2: error: ‘tmp2’ may be
> used uninitialized in this function [-Werror=maybe-uninitialized]
> [ 1044s] 227 | cmdline_free(tmp2);
> [ 1044s] | ^~~~~~~~~~~~~~~~~~
>
> I'll de-queue it from 19.11 for now and would appreciate it if you
> could check it more thoroughly than I did.
>
> > But please give all of it a second look
> >
> > > > goto error;
> > > > - if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
> > > > + cl = cmdline_file_new(NULL, "prompt", "/dev/null");
> > > > + if (cl != NULL)
> > > > goto error;
> > > > - if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
> > > > + cl = cmdline_file_new(&ctx, NULL, "/dev/null");
> > > > + if (cl != NULL)
> > > > goto error;
> > > > - if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
> > > > + cl = cmdline_file_new(&ctx, "prompt", NULL);
> > > > + if (cl != NULL)
> > > > goto error;
> > > > - if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") !=
> NULL) {
> > > > + cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
> > > > + if (cl != NULL) {
> > > > printf("Error: succeeded in opening invalid file for
> reading!");
> > > > + cmdline_free(cl);
> > > > return -1;
> > > > }
> > > > - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> > > > + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> > > > + if (cl == NULL) {
> > > > printf("Error: failed to open /dev/null for
> reading!");
> > > > + cmdline_free(cl);
> > > > return -1;
> > > > }
> > > >
> > > > /* void functions */
> > > > cmdline_stdin_exit(NULL);
> > > > -
> > > > + cmdline_free(cl);
> > > > return 0;
> > > > error:
> > > > printf("Error: function accepted null parameter!\n");
> > > > + cmdline_free(cl);
> > > > return -1;
> > > > }
> > > >
> > > > @@ -164,16 +177,18 @@ static int
> > > > test_cmdline_fns(void)
> > > > {
> > > > cmdline_parse_ctx_t ctx;
> > > > - struct cmdline cl, *tmp;
> > > > + struct cmdline cl, *tmp, *tmp2;
> > > >
> > > > memset(&ctx, 0, sizeof(ctx));
> > > > tmp = cmdline_new(&ctx, "test", -1, -1);
> > > > if (tmp == NULL)
> > > > goto error;
> > > >
> > > > - if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
> > > > + tmp2 = cmdline_new(NULL, "prompt", 0, 0);
> > > > + if (tmp2 != NULL)
> > > > goto error;
> > > > - if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
> > > > + tmp2 = cmdline_new(&ctx, NULL, 0, 0);
> > > > + if (tmp2 != NULL)
> > > > goto error;
> > > > if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
> > > > goto error;
> > > > @@ -202,14 +217,18 @@ test_cmdline_fns(void)
> > > > if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
> > > >
> > > > cmdline_free(tmp);
> > > > -
> > > > + cmdline_free(tmp2);
> > > > return 0;
> > > >
> > > > error:
> > > > printf("Error: function accepted null parameter!\n");
> > > > + cmdline_free(tmp);
> > > > + cmdline_free(tmp2);
> > > > return -1;
> > > > mismatch:
> > > > printf("Error: data changed!\n");
> > > > + cmdline_free(tmp);
> > > > + cmdline_free(tmp2);
> > > > return -1;
> > > > }
> > > >
> > > > --
> > > > 2.30.2
> > > >
> > >
> > >
> > > --
> > > Christian Ehrhardt
> > > Staff Engineer, Ubuntu Server
> > > Canonical Ltd
> >
> >
> >
> > --
> > Christian Ehrhardt
> > Staff Engineer, Ubuntu Server
> > Canonical Ltd
>
>
>
> --
> Christian Ehrhardt
> Staff Engineer, Ubuntu Server
> Canonical Ltd
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
2021-08-11 12:55 [dpdk-stable] [PATCH 19.11] " Owen Hilyard
@ 2021-08-12 19:44 ` ohilyard
2021-08-16 8:59 ` Christian Ehrhardt
0 siblings, 1 reply; 10+ messages in thread
From: ohilyard @ 2021-08-12 19:44 UTC (permalink / raw)
To: stable; +Cc: christian.ehrhardt, Owen Hilyard, David Marchand
From: Owen Hilyard <ohilyard@iol.unh.edu>
[ upstream commit ca7204b921c2f328ab1222772af40922970e7c4b ]
Fixes for a few memory leaks in the cmdline_autotest unit test.
All of the leaks were related to not freeing the commandline struct
after testing had completed.
Fixes: dbb860e03e ("cmdline: tests")
Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
Reviewed-by: David Marchand <david.marchand@redhat.com>
---
app/test/test_cmdline_lib.c | 47 +++++++++++++++++++++++++++----------
1 file changed, 34 insertions(+), 13 deletions(-)
diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
index a856a9713..7d9009408 100644
--- a/app/test/test_cmdline_lib.c
+++ b/app/test/test_cmdline_lib.c
@@ -62,10 +62,12 @@ test_cmdline_parse_fns(void)
if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
goto error;
+ cmdline_free(&cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(&cl);
return -1;
}
@@ -131,32 +133,43 @@ static int
test_cmdline_socket_fns(void)
{
cmdline_parse_ctx_t ctx;
+ struct cmdline* cl;
- if (cmdline_stdin_new(NULL, "prompt") != NULL)
+ cl = cmdline_stdin_new(NULL, "prompt");
+ if (cl != NULL)
goto error;
- if (cmdline_stdin_new(&ctx, NULL) != NULL)
+ cl = cmdline_stdin_new(&ctx, NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
+ cl = cmdline_file_new(NULL, "prompt", "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
+ cl = cmdline_file_new(&ctx, NULL, "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
+ cl = cmdline_file_new(&ctx, "prompt", NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
+ if (cl != NULL) {
printf("Error: succeeded in opening invalid file for reading!");
+ cmdline_free(cl);
return -1;
}
- if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
+ if (cl == NULL) {
printf("Error: failed to open /dev/null for reading!");
+ cmdline_free(cl);
return -1;
}
/* void functions */
cmdline_stdin_exit(NULL);
-
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -164,16 +177,20 @@ static int
test_cmdline_fns(void)
{
cmdline_parse_ctx_t ctx;
- struct cmdline cl, *tmp;
+ struct cmdline cl, *tmp, *tmp2;
memset(&ctx, 0, sizeof(ctx));
tmp = cmdline_new(&ctx, "test", -1, -1);
- if (tmp == NULL)
+ if (tmp == NULL) {
+ tmp2 = NULL;
goto error;
+ }
- if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
+ tmp2 = cmdline_new(NULL, "prompt", 0, 0);
+ if (tmp2 != NULL)
goto error;
- if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
+ tmp2 = cmdline_new(&ctx, NULL, 0, 0);
+ if (tmp2 != NULL)
goto error;
if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
goto error;
@@ -202,14 +219,18 @@ test_cmdline_fns(void)
if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
cmdline_free(tmp);
-
+ cmdline_free(tmp2);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(tmp);
+ cmdline_free(tmp2);
return -1;
mismatch:
printf("Error: data changed!\n");
+ cmdline_free(tmp);
+ cmdline_free(tmp2);
return -1;
}
--
2.30.2
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
2021-08-12 19:44 ` [dpdk-stable] [PATCH] " ohilyard
@ 2021-08-16 8:59 ` Christian Ehrhardt
2021-08-16 12:05 ` ohilyard
0 siblings, 1 reply; 10+ messages in thread
From: Christian Ehrhardt @ 2021-08-16 8:59 UTC (permalink / raw)
To: Owen Hilyard; +Cc: dpdk stable, David Marchand
On Thu, Aug 12, 2021 at 9:44 PM <ohilyard@iol.unh.edu> wrote:
>
> From: Owen Hilyard <ohilyard@iol.unh.edu>
>
> [ upstream commit ca7204b921c2f328ab1222772af40922970e7c4b ]
>
> Fixes for a few memory leaks in the cmdline_autotest unit test.
>
> All of the leaks were related to not freeing the commandline struct
> after testing had completed.
>
> Fixes: dbb860e03e ("cmdline: tests")
>
> Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
> ---
> app/test/test_cmdline_lib.c | 47 +++++++++++++++++++++++++++----------
> 1 file changed, 34 insertions(+), 13 deletions(-)
>
> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
> index a856a9713..7d9009408 100644
> --- a/app/test/test_cmdline_lib.c
> +++ b/app/test/test_cmdline_lib.c
> @@ -62,10 +62,12 @@ test_cmdline_parse_fns(void)
> if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
> goto error;
>
> + cmdline_free(&cl);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(&cl);
> return -1;
> }
>
> @@ -131,32 +133,43 @@ static int
> test_cmdline_socket_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> + struct cmdline* cl;
>
> - if (cmdline_stdin_new(NULL, "prompt") != NULL)
> + cl = cmdline_stdin_new(NULL, "prompt");
> + if (cl != NULL)
> goto error;
> - if (cmdline_stdin_new(&ctx, NULL) != NULL)
> + cl = cmdline_stdin_new(&ctx, NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
> + cl = cmdline_file_new(NULL, "prompt", "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
> + cl = cmdline_file_new(&ctx, NULL, "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
> + cl = cmdline_file_new(&ctx, "prompt", NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
> + if (cl != NULL) {
> printf("Error: succeeded in opening invalid file for reading!");
> + cmdline_free(cl);
> return -1;
> }
> - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> + if (cl == NULL) {
> printf("Error: failed to open /dev/null for reading!");
> + cmdline_free(cl);
> return -1;
> }
>
> /* void functions */
> cmdline_stdin_exit(NULL);
> -
> + cmdline_free(cl);
> return 0;
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -164,16 +177,20 @@ static int
> test_cmdline_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> - struct cmdline cl, *tmp;
> + struct cmdline cl, *tmp, *tmp2;
Hi,
this still has plenty of whitespace damage converting tabs to spaces
all over the patch.
I've downloaded the raw message again as I wondered if it might be me.
But I clearly see tabs removed and spaces added.
> memset(&ctx, 0, sizeof(ctx));
> tmp = cmdline_new(&ctx, "test", -1, -1);
> - if (tmp == NULL)
> + if (tmp == NULL) {
> + tmp2 = NULL;
> goto error;
> + }
>
> - if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
> + tmp2 = cmdline_new(NULL, "prompt", 0, 0);
> + if (tmp2 != NULL)
> goto error;
> - if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
> + tmp2 = cmdline_new(&ctx, NULL, 0, 0);
> + if (tmp2 != NULL)
> goto error;
> if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
> goto error;
> @@ -202,14 +219,18 @@ test_cmdline_fns(void)
> if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
>
> cmdline_free(tmp);
> -
> + cmdline_free(tmp2);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(tmp);
> + cmdline_free(tmp2);
> return -1;
> mismatch:
> printf("Error: data changed!\n");
> + cmdline_free(tmp);
> + cmdline_free(tmp2);
> return -1;
> }
>
> --
> 2.30.2
>
--
Christian Ehrhardt
Staff Engineer, Ubuntu Server
Canonical Ltd
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
2021-08-16 8:59 ` Christian Ehrhardt
@ 2021-08-16 12:05 ` ohilyard
2021-08-16 12:06 ` Owen Hilyard
0 siblings, 1 reply; 10+ messages in thread
From: ohilyard @ 2021-08-16 12:05 UTC (permalink / raw)
To: stable; +Cc: christian.ehrhardt, Owen Hilyard, David Marchand
From: Owen Hilyard <ohilyard@iol.unh.edu>
[ upstream commit ca7204b921c2f328ab1222772af40922970e7c4b ]
Fixes for a few memory leaks in the cmdline_autotest unit test.
All of the leaks were related to not freeing the commandline struct
after testing had completed.
Fixes: dbb860e03e ("cmdline: tests")
Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
Reviewed-by: David Marchand <david.marchand@redhat.com>
---
app/test/test_cmdline_lib.c | 47 +++++++++++++++++++++++++++----------
1 file changed, 34 insertions(+), 13 deletions(-)
diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
index a856a9713..7d9009408 100644
--- a/app/test/test_cmdline_lib.c
+++ b/app/test/test_cmdline_lib.c
@@ -62,10 +62,12 @@ test_cmdline_parse_fns(void)
if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
goto error;
+ cmdline_free(&cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(&cl);
return -1;
}
@@ -131,32 +133,43 @@ static int
test_cmdline_socket_fns(void)
{
cmdline_parse_ctx_t ctx;
+ struct cmdline* cl;
- if (cmdline_stdin_new(NULL, "prompt") != NULL)
+ cl = cmdline_stdin_new(NULL, "prompt");
+ if (cl != NULL)
goto error;
- if (cmdline_stdin_new(&ctx, NULL) != NULL)
+ cl = cmdline_stdin_new(&ctx, NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
+ cl = cmdline_file_new(NULL, "prompt", "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
+ cl = cmdline_file_new(&ctx, NULL, "/dev/null");
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
+ cl = cmdline_file_new(&ctx, "prompt", NULL);
+ if (cl != NULL)
goto error;
- if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
+ if (cl != NULL) {
printf("Error: succeeded in opening invalid file for reading!");
+ cmdline_free(cl);
return -1;
}
- if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
+ cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
+ if (cl == NULL) {
printf("Error: failed to open /dev/null for reading!");
+ cmdline_free(cl);
return -1;
}
/* void functions */
cmdline_stdin_exit(NULL);
-
+ cmdline_free(cl);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(cl);
return -1;
}
@@ -164,16 +177,20 @@ static int
test_cmdline_fns(void)
{
cmdline_parse_ctx_t ctx;
- struct cmdline cl, *tmp;
+ struct cmdline cl, *tmp, *tmp2;
memset(&ctx, 0, sizeof(ctx));
tmp = cmdline_new(&ctx, "test", -1, -1);
- if (tmp == NULL)
+ if (tmp == NULL) {
+ tmp2 = NULL;
goto error;
+ }
- if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
+ tmp2 = cmdline_new(NULL, "prompt", 0, 0);
+ if (tmp2 != NULL)
goto error;
- if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
+ tmp2 = cmdline_new(&ctx, NULL, 0, 0);
+ if (tmp2 != NULL)
goto error;
if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
goto error;
@@ -202,14 +219,18 @@ test_cmdline_fns(void)
if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
cmdline_free(tmp);
-
+ cmdline_free(tmp2);
return 0;
error:
printf("Error: function accepted null parameter!\n");
+ cmdline_free(tmp);
+ cmdline_free(tmp2);
return -1;
mismatch:
printf("Error: data changed!\n");
+ cmdline_free(tmp);
+ cmdline_free(tmp2);
return -1;
}
--
2.30.2
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks
2021-08-16 12:05 ` ohilyard
@ 2021-08-16 12:06 ` Owen Hilyard
0 siblings, 0 replies; 10+ messages in thread
From: Owen Hilyard @ 2021-08-16 12:06 UTC (permalink / raw)
To: dpdk stable; +Cc: Christian Ehrhardt, David Marchand
It looks like an update to my IDE turn back on converting tabs to spaces on
save. Sorry about that.
On Mon, Aug 16, 2021 at 8:05 AM <ohilyard@iol.unh.edu> wrote:
> From: Owen Hilyard <ohilyard@iol.unh.edu>
>
> [ upstream commit ca7204b921c2f328ab1222772af40922970e7c4b ]
>
> Fixes for a few memory leaks in the cmdline_autotest unit test.
>
> All of the leaks were related to not freeing the commandline struct
> after testing had completed.
>
> Fixes: dbb860e03e ("cmdline: tests")
>
> Signed-off-by: Owen Hilyard <ohilyard@iol.unh.edu>
> Reviewed-by: David Marchand <david.marchand@redhat.com>
> ---
> app/test/test_cmdline_lib.c | 47 +++++++++++++++++++++++++++----------
> 1 file changed, 34 insertions(+), 13 deletions(-)
>
> diff --git a/app/test/test_cmdline_lib.c b/app/test/test_cmdline_lib.c
> index a856a9713..7d9009408 100644
> --- a/app/test/test_cmdline_lib.c
> +++ b/app/test/test_cmdline_lib.c
> @@ -62,10 +62,12 @@ test_cmdline_parse_fns(void)
> if (cmdline_complete(&cl, "buffer", &i, NULL, sizeof(dst)) >= 0)
> goto error;
>
> + cmdline_free(&cl);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(&cl);
> return -1;
> }
>
> @@ -131,32 +133,43 @@ static int
> test_cmdline_socket_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> + struct cmdline* cl;
>
> - if (cmdline_stdin_new(NULL, "prompt") != NULL)
> + cl = cmdline_stdin_new(NULL, "prompt");
> + if (cl != NULL)
> goto error;
> - if (cmdline_stdin_new(&ctx, NULL) != NULL)
> + cl = cmdline_stdin_new(&ctx, NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(NULL, "prompt", "/dev/null") != NULL)
> + cl = cmdline_file_new(NULL, "prompt", "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, NULL, "/dev/null") != NULL)
> + cl = cmdline_file_new(&ctx, NULL, "/dev/null");
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", NULL) != NULL)
> + cl = cmdline_file_new(&ctx, "prompt", NULL);
> + if (cl != NULL)
> goto error;
> - if (cmdline_file_new(&ctx, "prompt", "-/invalid/~/path") != NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "-/invalid/~/path");
> + if (cl != NULL) {
> printf("Error: succeeded in opening invalid file for
> reading!");
> + cmdline_free(cl);
> return -1;
> }
> - if (cmdline_file_new(&ctx, "prompt", "/dev/null") == NULL) {
> + cl = cmdline_file_new(&ctx, "prompt", "/dev/null");
> + if (cl == NULL) {
> printf("Error: failed to open /dev/null for reading!");
> + cmdline_free(cl);
> return -1;
> }
>
> /* void functions */
> cmdline_stdin_exit(NULL);
> -
> + cmdline_free(cl);
> return 0;
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(cl);
> return -1;
> }
>
> @@ -164,16 +177,20 @@ static int
> test_cmdline_fns(void)
> {
> cmdline_parse_ctx_t ctx;
> - struct cmdline cl, *tmp;
> + struct cmdline cl, *tmp, *tmp2;
>
> memset(&ctx, 0, sizeof(ctx));
> tmp = cmdline_new(&ctx, "test", -1, -1);
> - if (tmp == NULL)
> + if (tmp == NULL) {
> + tmp2 = NULL;
> goto error;
> + }
>
> - if (cmdline_new(NULL, "prompt", 0, 0) != NULL)
> + tmp2 = cmdline_new(NULL, "prompt", 0, 0);
> + if (tmp2 != NULL)
> goto error;
> - if (cmdline_new(&ctx, NULL, 0, 0) != NULL)
> + tmp2 = cmdline_new(&ctx, NULL, 0, 0);
> + if (tmp2 != NULL)
> goto error;
> if (cmdline_in(NULL, "buffer", CMDLINE_TEST_BUFSIZE) >= 0)
> goto error;
> @@ -202,14 +219,18 @@ test_cmdline_fns(void)
> if (memcmp(&cl, tmp, sizeof(cl))) goto mismatch;
>
> cmdline_free(tmp);
> -
> + cmdline_free(tmp2);
> return 0;
>
> error:
> printf("Error: function accepted null parameter!\n");
> + cmdline_free(tmp);
> + cmdline_free(tmp2);
> return -1;
> mismatch:
> printf("Error: data changed!\n");
> + cmdline_free(tmp);
> + cmdline_free(tmp2);
> return -1;
> }
>
> --
> 2.30.2
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-08-16 12:06 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20210616162553.350074-1-ohilyard@iol.unh.edu>
2021-06-16 18:07 ` [dpdk-stable] [PATCH] tests/cmdline: fix memory leaks ohilyard
2021-06-23 8:43 ` Olivier Matz
2021-06-23 18:06 ` [dpdk-stable] [PATCH v3] " ohilyard
2021-06-24 12:07 ` Olivier Matz
2021-06-24 13:24 ` David Marchand
2021-06-24 13:25 ` David Marchand
2021-08-11 12:55 [dpdk-stable] [PATCH 19.11] " Owen Hilyard
2021-08-12 19:44 ` [dpdk-stable] [PATCH] " ohilyard
2021-08-16 8:59 ` Christian Ehrhardt
2021-08-16 12:05 ` ohilyard
2021-08-16 12:06 ` Owen Hilyard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).