All of lore.kernel.org
 help / color / mirror / Atom feed
From: "平松雅巳 / HIRAMATU,MASAMI" <masami.hiramatsu.pt@hitachi.com>
To: "'Wang Nan'" <wangnan0@huawei.com>,
	"acme@kernel.org" <acme@kernel.org>,
	"jolsa@kernel.org" <jolsa@kernel.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"pi3orama@163.com" <pi3orama@163.com>,
	"lizefan@huawei.com" <lizefan@huawei.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	"Namhyung Kim" <namhyung@kernel.org>
Subject: RE: [PATCH 2/2 (v2)] perf tools: Prevent calling machine__delete() on non-allocated machine
Date: Thu, 10 Dec 2015 10:12:01 +0000	[thread overview]
Message-ID: <50399556C9727B4D88A595C8584AAB375264F9A2@GSjpTKYDCembx32.service.hitachi.net> (raw)
In-Reply-To: <1449739589-81708-1-git-send-email-wangnan0@huawei.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 4527 bytes --]

Hi Wang,

>From: Wang Nan [mailto:wangnan0@huawei.com]
>
>To prevent futher commits calling machine__delete() on non-allocated
>'struct machine' (which would cause memory corruption), this patch
>enforces machine__init(), record whether a machine structure is
>dynamically allocated or not, and warn if machine__delete() is called
>on incorrect object.

Looks good to me :D

Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>

Thanks!

>
>Signed-off-by: Wang Nan <wangnan0@huawei.com>
>Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
>Cc: Jiri Olsa <jolsa@kernel.org>
>Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
>Cc: Namhyung Kim <namhyung@kernel.org>
>---
>
>v1 -> v2: Remove incorrect '!'.
>
>---
> tools/perf/tests/vmlinux-kallsyms.c |  4 ++--
> tools/perf/util/machine.c           | 14 +++++++++-----
> tools/perf/util/machine.h           |  3 ++-
> 3 files changed, 13 insertions(+), 8 deletions(-)
>
>diff --git a/tools/perf/tests/vmlinux-kallsyms.c b/tools/perf/tests/vmlinux-kallsyms.c
>index f0bfc9e..441e93d 100644
>--- a/tools/perf/tests/vmlinux-kallsyms.c
>+++ b/tools/perf/tests/vmlinux-kallsyms.c
>@@ -35,8 +35,8 @@ int test__vmlinux_matches_kallsyms(int subtest __maybe_unused)
> 	 * Init the machines that will hold kernel, modules obtained from
> 	 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
> 	 */
>-	machine__init(&kallsyms, "", HOST_KERNEL_ID);
>-	machine__init(&vmlinux, "", HOST_KERNEL_ID);
>+	machine__init(&kallsyms, "", HOST_KERNEL_ID, false);
>+	machine__init(&vmlinux, "", HOST_KERNEL_ID, false);
>
> 	/*
> 	 * Step 2:
>diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c
>index f5882b8..ac64e5a 100644
>--- a/tools/perf/util/machine.c
>+++ b/tools/perf/util/machine.c
>@@ -23,7 +23,7 @@ static void dsos__init(struct dsos *dsos)
> 	pthread_rwlock_init(&dsos->lock, NULL);
> }
>
>-int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
>+int machine__init(struct machine *machine, const char *root_dir, pid_t pid, bool allocated)
> {
> 	map_groups__init(&machine->kmaps, machine);
> 	RB_CLEAR_NODE(&machine->rb_node);
>@@ -64,6 +64,7 @@ int machine__init(struct machine *machine, const char *root_dir, pid_t pid)
> 	}
>
> 	machine->current_tid = NULL;
>+	machine->allocated = allocated;
>
> 	return 0;
> }
>@@ -73,7 +74,7 @@ struct machine *machine__new_host(void)
> 	struct machine *machine = malloc(sizeof(*machine));
>
> 	if (machine != NULL) {
>-		machine__init(machine, "", HOST_KERNEL_ID);
>+		machine__init(machine, "", HOST_KERNEL_ID, true);
>
> 		if (machine__create_kernel_maps(machine) < 0)
> 			goto out_delete;
>@@ -136,12 +137,15 @@ void machine__exit(struct machine *machine)
> void machine__delete(struct machine *machine)
> {
> 	machine__exit(machine);
>-	free(machine);
>+	if (machine->allocated)
>+		free(machine);
>+	else
>+		pr_warning("WARNING: delete a non-allocated machine. Skip.\n");
> }
>
> void machines__init(struct machines *machines)
> {
>-	machine__init(&machines->host, "", HOST_KERNEL_ID);
>+	machine__init(&machines->host, "", HOST_KERNEL_ID, false);
> 	machines->guests = RB_ROOT;
> 	machines->symbol_filter = NULL;
> }
>@@ -162,7 +166,7 @@ struct machine *machines__add(struct machines *machines, pid_t pid,
> 	if (machine == NULL)
> 		return NULL;
>
>-	if (machine__init(machine, root_dir, pid) != 0) {
>+	if (machine__init(machine, root_dir, pid, true) != 0) {
> 		free(machine);
> 		return NULL;
> 	}
>diff --git a/tools/perf/util/machine.h b/tools/perf/util/machine.h
>index 2c2b443..24dfd46 100644
>--- a/tools/perf/util/machine.h
>+++ b/tools/perf/util/machine.h
>@@ -28,6 +28,7 @@ struct machine {
> 	pid_t		  pid;
> 	u16		  id_hdr_size;
> 	bool		  comm_exec;
>+	bool		  allocated;
> 	char		  *root_dir;
> 	struct rb_root	  threads;
> 	pthread_rwlock_t  threads_lock;
>@@ -131,7 +132,7 @@ void machines__set_symbol_filter(struct machines *machines,
> void machines__set_comm_exec(struct machines *machines, bool comm_exec);
>
> struct machine *machine__new_host(void);
>-int machine__init(struct machine *machine, const char *root_dir, pid_t pid);
>+int machine__init(struct machine *machine, const char *root_dir, pid_t pid, bool allocated);
> void machine__exit(struct machine *machine);
> void machine__delete_threads(struct machine *machine);
> void machine__delete(struct machine *machine);
>--
>1.8.3.4

ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

      reply	other threads:[~2015-12-10 10:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-10  5:52 [PATCH 1/2] perf tests: Fix incorrect free and false TEST_OK result Wang Nan
2015-12-10  5:52 ` [PATCH 2/2] perf tools: Prevent calling machine__delete() on non-allocated machine Wang Nan
2015-12-10  9:24   ` Wangnan (F)
2015-12-10  9:26   ` [PATCH 2/2 (v2)] " Wang Nan
2015-12-10 10:12     ` 平松雅巳 / HIRAMATU,MASAMI [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50399556C9727B4D88A595C8584AAB375264F9A2@GSjpTKYDCembx32.service.hitachi.net \
    --to=masami.hiramatsu.pt@hitachi.com \
    --cc=acme@kernel.org \
    --cc=acme@redhat.com \
    --cc=jolsa@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizefan@huawei.com \
    --cc=namhyung@kernel.org \
    --cc=pi3orama@163.com \
    --cc=wangnan0@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.