lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 30 Jul 2013 10:33:42 -0300
From:	Arnaldo Carvalho de Melo <acme@...stprotocols.net>
To:	Namhyung Kim <namhyung@...nel.org>
Cc:	Peter Zijlstra <a.p.zijlstra@...llo.nl>,
	Paul Mackerras <paulus@...ba.org>,
	Ingo Molnar <mingo@...nel.org>,
	Namhyung Kim <namhyung.kim@....com>,
	LKML <linux-kernel@...r.kernel.org>,
	Steven Rostedt <rostedt@...dmis.org>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Jiri Olsa <jolsa@...hat.com>, David Ahern <dsahern@...il.com>,
	Stephane Eranian <eranian@...gle.com>,
	Jeremy Eder <jeder@...hat.com>
Subject: Re: [PATCH 02/17] perf util: Add more debug message on failure path

Em Tue, Jul 30, 2013 at 06:18:59PM +0900, Namhyung Kim escreveu:
> From: Namhyung Kim <namhyung.kim@....com>
> 
> It's helpful for debugging on tracing features.

I wonder if we shouldn't start using 'perf probe to insert those
things... Having some shell script with a series of probe insertions...
What do you think? At least we would be eating our own dog food 8-)

Or at least have something that shows the source file name and line
number, so that things like:

 static int read_event_file(struct pevent *pevent, char *sys,
 			    unsigned long long size)
 {
+	int ret;
 	char *buf;
 
 	buf = malloc(size);
-	if (buf == NULL)
+	if (buf == NULL) {
+		pr_debug("memory allocation failure\n");
 		return -1;
+	}

actually help us 8-)

- Arnaldo
 
> Signed-off-by: Namhyung Kim <namhyung@...nel.org>
> ---
>  tools/perf/util/header.c           |  4 ++-
>  tools/perf/util/trace-event-read.c | 53 ++++++++++++++++++++++++++------------
>  2 files changed, 39 insertions(+), 18 deletions(-)
> 
> diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
> index f558f83769af..11b08f24ba42 100644
> --- a/tools/perf/util/header.c
> +++ b/tools/perf/util/header.c
> @@ -2700,8 +2700,10 @@ static int perf_evsel__prepare_tracepoint_event(struct perf_evsel *evsel,
>  	}
>  
>  	event = pevent_find_event(pevent, evsel->attr.config);
> -	if (event == NULL)
> +	if (event == NULL) {
> +		pr_debug("cannot find event format for %d\n", (int)evsel->attr.config);
>  		return -1;
> +	}
>  
>  	if (!evsel->name) {
>  		snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
> diff --git a/tools/perf/util/trace-event-read.c b/tools/perf/util/trace-event-read.c
> index e084e5e654b6..0e3b3f527320 100644
> --- a/tools/perf/util/trace-event-read.c
> +++ b/tools/perf/util/trace-event-read.c
> @@ -262,39 +262,53 @@ static int read_header_files(struct pevent *pevent)
>  
>  static int read_ftrace_file(struct pevent *pevent, unsigned long long size)
>  {
> +	int ret;
>  	char *buf;
>  
>  	buf = malloc(size);
> -	if (buf == NULL)
> +	if (buf == NULL) {
> +		pr_debug("memory allocation failure\n");
>  		return -1;
> +	}
>  
> -	if (do_read(buf, size) < 0) {
> -		free(buf);
> -		return -1;
> +	ret = do_read(buf, size);
> +	if (ret < 0) {
> +		pr_debug("error reading ftrace file.\n");
> +		goto out;
>  	}
>  
> -	parse_ftrace_file(pevent, buf, size);
> +	ret = parse_ftrace_file(pevent, buf, size);
> +	if (ret < 0)
> +		pr_debug("error parsing ftrace file.\n");
> +out:
>  	free(buf);
> -	return 0;
> +	return ret;
>  }
>  
>  static int read_event_file(struct pevent *pevent, char *sys,
>  			    unsigned long long size)
>  {
> +	int ret;
>  	char *buf;
>  
>  	buf = malloc(size);
> -	if (buf == NULL)
> +	if (buf == NULL) {
> +		pr_debug("memory allocation failure\n");
>  		return -1;
> +	}
>  
> -	if (do_read(buf, size) < 0) {
> +	ret = do_read(buf, size);
> +	if (ret < 0) {
>  		free(buf);
> -		return -1;
> +		goto out;
>  	}
>  
> -	parse_event_file(pevent, buf, size, sys);
> +	ret = parse_event_file(pevent, buf, size, sys);
> +	if (ret < 0)
> +		pr_debug("error parsing event file.\n");
> +out:
>  	free(buf);
> -	return 0;
> +	return ret;
>  }
>  
>  static int read_ftrace_files(struct pevent *pevent)
> @@ -347,6 +361,7 @@ static int read_saved_cmdline(struct pevent *pevent)
>  {
>  	unsigned long long size;
>  	char *buf;
> +	int ret;
>  
>  	/* it can have 0 size */
>  	size = read8(pevent);
> @@ -354,18 +369,22 @@ static int read_saved_cmdline(struct pevent *pevent)
>  		return 0;
>  
>  	buf = malloc(size + 1);
> -	if (buf == NULL)
> +	if (buf == NULL) {
> +		pr_debug("memory allocation failure\n");
>  		return -1;
> +	}
>  
> -	if (do_read(buf, size) < 0) {
> -		free(buf);
> -		return -1;
> +	ret = do_read(buf, size);
> +	if (ret < 0) {
> +		pr_debug("error reading saved cmdlines\n");
> +		goto out;
>  	}
>  
>  	parse_saved_cmdline(pevent, buf, size);
> -
> +	ret = 0;
> +out:
>  	free(buf);
> -	return 0;
> +	return ret;
>  }
>  
>  ssize_t trace_report(int fd, struct pevent **ppevent, bool __repipe)
> -- 
> 1.7.11.7
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ