linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tracefs utils: Do not free a the buffer on a zero size str_read_file()
@ 2020-11-23 20:34 Steven Rostedt
  2020-11-24  5:44 ` Tzvetomir Stoyanov
  0 siblings, 1 reply; 3+ messages in thread
From: Steven Rostedt @ 2020-11-23 20:34 UTC (permalink / raw)
  To: Linux Trace Devel

From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>

If a file has no size (nothing is read), then str_read_file() frees the
buffer and returns zero. The problem is that all callers of str_read_file()
uses the buffer supplied if the value returned is not a negative. This
causes the freed buffer being used by the callers if the file read existed
but had no content.

This is apparent when using a copy of the tracefs directory, where some file
exist, but have no content, then loading the events would cause a segfault.

Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
 tracefs-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tracefs-utils.c b/tracefs-utils.c
index 326b455..690506c 100644
--- a/tracefs-utils.c
+++ b/tracefs-utils.c
@@ -220,7 +220,7 @@ __hidden int str_read_file(const char *file, char **buffer)
 	} while (r > 0);
 
 	close(fd);
-	if (r == 0 && size > 0) {
+	if (r == 0) {
 		buf[size] = '\0';
 		*buffer = buf;
 	} else
-- 
2.25.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] tracefs utils: Do not free a the buffer on a zero size str_read_file()
  2020-11-23 20:34 [PATCH] tracefs utils: Do not free a the buffer on a zero size str_read_file() Steven Rostedt
@ 2020-11-24  5:44 ` Tzvetomir Stoyanov
  2020-11-24 13:52   ` Steven Rostedt
  0 siblings, 1 reply; 3+ messages in thread
From: Tzvetomir Stoyanov @ 2020-11-24  5:44 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: Linux Trace Devel

On Mon, Nov 23, 2020 at 10:35 PM Steven Rostedt <rostedt@goodmis.org> wrote:
>
> From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
>
> If a file has no size (nothing is read), then str_read_file() frees the
> buffer and returns zero. The problem is that all callers of str_read_file()
> uses the buffer supplied if the value returned is not a negative. This
> causes the freed buffer being used by the callers if the file read existed
> but had no content.
>
> This is apparent when using a copy of the tracefs directory, where some file
> exist, but have no content, then loading the events would cause a segfault.
>
> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
> ---
>  tracefs-utils.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tracefs-utils.c b/tracefs-utils.c
> index 326b455..690506c 100644
> --- a/tracefs-utils.c
> +++ b/tracefs-utils.c
> @@ -220,7 +220,7 @@ __hidden int str_read_file(const char *file, char **buffer)
>         } while (r > 0);
>
>         close(fd);
> -       if (r == 0 && size > 0) {
> +       if (r == 0) {
>                 buf[size] = '\0';

If size is 0, in case of an empty file, then buf should also be NULL
and this assignment
will be on invalid memory.

>                 *buffer = buf;
>         } else
> --
> 2.25.4
>


-- 
Tzvetomir (Ceco) Stoyanov
VMware Open Source Technology Center

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] tracefs utils: Do not free a the buffer on a zero size str_read_file()
  2020-11-24  5:44 ` Tzvetomir Stoyanov
@ 2020-11-24 13:52   ` Steven Rostedt
  0 siblings, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2020-11-24 13:52 UTC (permalink / raw)
  To: Tzvetomir Stoyanov; +Cc: Linux Trace Devel

On Tue, 24 Nov 2020 07:44:14 +0200
Tzvetomir Stoyanov <tz.stoyanov@gmail.com> wrote:

> > index 326b455..690506c 100644
> > --- a/tracefs-utils.c
> > +++ b/tracefs-utils.c
> > @@ -220,7 +220,7 @@ __hidden int str_read_file(const char *file, char **buffer)
> >         } while (r > 0);
> >
> >         close(fd);
> > -       if (r == 0 && size > 0) {
> > +       if (r == 0) {
> >                 buf[size] = '\0';  
> 
> If size is 0, in case of an empty file, then buf should also be NULL
> and this assignment
> will be on invalid memory.

I quickly realized that, and sent out a v2 ;-)

 https://lore.kernel.org/r/20201123154607.5e43e1ff@gandalf.local.home

-- Steve

> 
> >                 *buffer = buf;
> >         } else
> > --

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-24 13:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-23 20:34 [PATCH] tracefs utils: Do not free a the buffer on a zero size str_read_file() Steven Rostedt
2020-11-24  5:44 ` Tzvetomir Stoyanov
2020-11-24 13:52   ` Steven Rostedt

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).