提交 1923dae2 编写于 作者: R Riccardo Mancini 提交者: Zheng Zengkai

perf probe-file: Delete namelist in del_events() on the error path

mainline inclusion
from mainline-5.14-rc2
commit e0fa7ab4
category: bugfix
bugzilla: 174605 https://gitee.com/openeuler/kernel/issues/I4DDEL

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e0fa7ab42232e742dcb3de9f3c1f6127b5adc019

--------------------------------

ASan reports some memory leaks when running:

  # perf test "42: BPF filter"

This second leak is caused by a strlist not being dellocated on error
inside probe_file__del_events.

This patch adds a goto label before the deallocation and makes the error
path jump to it.
Signed-off-by: NRiccardo Mancini <rickyman7@gmail.com>
Fixes: e7895e42 ("perf probe: Split del_perf_probe_events()")
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/174963c587ae77fa108af794669998e4ae558338.1626343282.git.rickyman7@gmail.comSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: NZhang Jinhao <zhangjinhao2@huawei.com>
Reviewed-by: NYang Jihong <yangjihong1@huawei.com>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 d95ee679
...@@ -342,11 +342,11 @@ int probe_file__del_events(int fd, struct strfilter *filter) ...@@ -342,11 +342,11 @@ int probe_file__del_events(int fd, struct strfilter *filter)
ret = probe_file__get_events(fd, filter, namelist); ret = probe_file__get_events(fd, filter, namelist);
if (ret < 0) if (ret < 0)
return ret; goto out;
ret = probe_file__del_strlist(fd, namelist); ret = probe_file__del_strlist(fd, namelist);
out:
strlist__delete(namelist); strlist__delete(namelist);
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册