Re: [PATCH 2/4] perf svghelper: Fix memory leak in svg_build_topology_map

From: Arnaldo Carvalho de Melo
Date: Thu May 21 2020 - 10:15:50 EST


Em Thu, May 21, 2020 at 09:32:16PM +0800, Wei Li escreveu:
> From: Li Bin <huawei.libin@xxxxxxxxxx>
>
> Fix leak of memory pointed to by t.sib_thr and t.sib_core in
> svg_build_topology_map.
>
> Signed-off-by: Li Bin <huawei.libin@xxxxxxxxxx>
> ---
> tools/perf/util/svghelper.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/tools/perf/util/svghelper.c b/tools/perf/util/svghelper.c
> index 96f941e01681..e2b3b0e2fafe 100644
> --- a/tools/perf/util/svghelper.c
> +++ b/tools/perf/util/svghelper.c
> @@ -754,6 +754,7 @@ int svg_build_topology_map(struct perf_env *env)
> int i, nr_cpus;
> struct topology t;
> char *sib_core, *sib_thr;
> + int ret;

Please set ret to -1 here

int ret = -1;

So that you don't have to add all those lines below...

>
> nr_cpus = min(env->nr_cpus_online, MAX_NR_CPUS);
>
> @@ -767,12 +768,14 @@ int svg_build_topology_map(struct perf_env *env)
>
> if (!t.sib_core || !t.sib_thr) {
> fprintf(stderr, "topology: no memory\n");
> + ret = -1;
> goto exit;
> }
>
> for (i = 0; i < env->nr_sibling_cores; i++) {
> if (str_to_bitmap(sib_core, &t.sib_core[i], nr_cpus)) {
> fprintf(stderr, "topology: can't parse siblings map\n");
> + ret = -1;
> goto exit;
> }
>
> @@ -782,6 +785,7 @@ int svg_build_topology_map(struct perf_env *env)
> for (i = 0; i < env->nr_sibling_threads; i++) {
> if (str_to_bitmap(sib_thr, &t.sib_thr[i], nr_cpus)) {
> fprintf(stderr, "topology: can't parse siblings map\n");
> + ret = -1;
> goto exit;
> }
>
> @@ -791,6 +795,7 @@ int svg_build_topology_map(struct perf_env *env)
> topology_map = malloc(sizeof(int) * nr_cpus);
> if (!topology_map) {
> fprintf(stderr, "topology: no memory\n");
> + ret = -1;
> goto exit;
> }
>
> @@ -798,12 +803,11 @@ int svg_build_topology_map(struct perf_env *env)
> topology_map[i] = -1;
>
> scan_core_topology(topology_map, &t, nr_cpus);
> -
> - return 0;

... as you'll set it to zero here :-)

> + ret = 0;
>
> exit:
> zfree(&t.sib_core);
> zfree(&t.sib_thr);
>
> - return -1;
> + return ret;
> }
> --
> 2.17.1
>

--

- Arnaldo