DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
@ 2018-02-02 12:00 Bruce Richardson
  2018-02-02 12:44 ` Neil Horman
  0 siblings, 1 reply; 6+ messages in thread
From: Bruce Richardson @ 2018-02-02 12:00 UTC (permalink / raw)
  To: Neil Horman; +Cc: dev, Bruce Richardson

Coverity flags an issue where the resources used by the FILE object for
the temporary input file are leaked. This is a very minor issue, but is
easily fixed, while also avoiding later problems where we try to close
an invalid file descriptor in the failure case.

The fix is to use "dup()" to get a new file descriptor number rather than
using the value directly from fileno. This allows us to close the file
opened with tmpfile() within in scope block, while allowing the duplicate
to pass to the outer block and be closed when the function terminates.

As a side-effect I/O in the function is therefore changed from using stdio
fread/fwrite to read/write system calls.

Coverity issue: 260399
Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 buildtools/pmdinfogen/pmdinfogen.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c
index 45b267346..0f35ca46b 100644
--- a/buildtools/pmdinfogen/pmdinfogen.c
+++ b/buildtools/pmdinfogen/pmdinfogen.c
@@ -50,20 +50,24 @@ static void *grab_file(const char *filename, unsigned long *size)
 		/* from stdin, use a temporary file to mmap */
 		FILE *infile;
 		char buffer[1024];
-		size_t n;
+		int n;
 
 		infile = tmpfile();
 		if (infile == NULL) {
 			perror("tmpfile");
 			return NULL;
 		}
-		while (!feof(stdin)) {
-			n = fread(buffer, 1, sizeof(buffer), stdin);
-			if (fwrite(buffer, 1, n, infile) != n)
+		fd = dup(fileno(infile));
+		fclose(infile);
+		if (fd < 0)
+			return NULL;
+
+		n = read(STDIN_FILENO, buffer, sizeof(buffer));
+		while (n > 0) {
+			if (write(fd, buffer, n) != n)
 				goto failed;
+			n = read(STDIN_FILENO, buffer, sizeof(buffer));
 		}
-		fflush(infile);
-		fd = fileno(infile);
 	}
 
 	if (fstat(fd, &st))
-- 
2.14.3

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

* Re: [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
  2018-02-02 12:00 [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object Bruce Richardson
@ 2018-02-02 12:44 ` Neil Horman
  2018-02-02 15:47   ` Bruce Richardson
  0 siblings, 1 reply; 6+ messages in thread
From: Neil Horman @ 2018-02-02 12:44 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

On Fri, Feb 02, 2018 at 12:00:58PM +0000, Bruce Richardson wrote:
> Coverity flags an issue where the resources used by the FILE object for
> the temporary input file are leaked. This is a very minor issue, but is
> easily fixed, while also avoiding later problems where we try to close
> an invalid file descriptor in the failure case.
> 
> The fix is to use "dup()" to get a new file descriptor number rather than
> using the value directly from fileno. This allows us to close the file
> opened with tmpfile() within in scope block, while allowing the duplicate
> to pass to the outer block and be closed when the function terminates.
> 
> As a side-effect I/O in the function is therefore changed from using stdio
> fread/fwrite to read/write system calls.
> 
> Coverity issue: 260399
> Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  buildtools/pmdinfogen/pmdinfogen.c | 16 ++++++++++------
>  1 file changed, 10 insertions(+), 6 deletions(-)
> 
> diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c
> index 45b267346..0f35ca46b 100644
> --- a/buildtools/pmdinfogen/pmdinfogen.c
> +++ b/buildtools/pmdinfogen/pmdinfogen.c
> @@ -50,20 +50,24 @@ static void *grab_file(const char *filename, unsigned long *size)
>  		/* from stdin, use a temporary file to mmap */
>  		FILE *infile;
>  		char buffer[1024];
> -		size_t n;
> +		int n;
>  
>  		infile = tmpfile();
>  		if (infile == NULL) {
>  			perror("tmpfile");
>  			return NULL;
>  		}
> -		while (!feof(stdin)) {
> -			n = fread(buffer, 1, sizeof(buffer), stdin);
> -			if (fwrite(buffer, 1, n, infile) != n)
> +		fd = dup(fileno(infile));
> +		fclose(infile);
> +		if (fd < 0)
> +			return NULL;
> +
> +		n = read(STDIN_FILENO, buffer, sizeof(buffer));
> +		while (n > 0) {
> +			if (write(fd, buffer, n) != n)
>  				goto failed;
> +			n = read(STDIN_FILENO, buffer, sizeof(buffer));
>  		}
> -		fflush(infile);
> -		fd = fileno(infile);
>  	}
>  
>  	if (fstat(fd, &st))
> -- 
> 2.14.3
> 
> 

Wouldn't it be just as good, and easier to check fd for == -1 as a condition of
calling close?

like 
failed:
	if (fd >= 0)
		close(fd);

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

* Re: [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
  2018-02-02 12:44 ` Neil Horman
@ 2018-02-02 15:47   ` Bruce Richardson
  2018-02-02 15:51     ` Bruce Richardson
  0 siblings, 1 reply; 6+ messages in thread
From: Bruce Richardson @ 2018-02-02 15:47 UTC (permalink / raw)
  To: Neil Horman; +Cc: dev

On Fri, Feb 02, 2018 at 07:44:39AM -0500, Neil Horman wrote:
> On Fri, Feb 02, 2018 at 12:00:58PM +0000, Bruce Richardson wrote:
> > Coverity flags an issue where the resources used by the FILE object for
> > the temporary input file are leaked. This is a very minor issue, but is
> > easily fixed, while also avoiding later problems where we try to close
> > an invalid file descriptor in the failure case.
> > 
> > The fix is to use "dup()" to get a new file descriptor number rather than
> > using the value directly from fileno. This allows us to close the file
> > opened with tmpfile() within in scope block, while allowing the duplicate
> > to pass to the outer block and be closed when the function terminates.
> > 
> > As a side-effect I/O in the function is therefore changed from using stdio
> > fread/fwrite to read/write system calls.
> > 
> > Coverity issue: 260399
> > Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")
> > 
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > ---
> >  buildtools/pmdinfogen/pmdinfogen.c | 16 ++++++++++------
> >  1 file changed, 10 insertions(+), 6 deletions(-)
> > 
> > diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c
> > index 45b267346..0f35ca46b 100644
> > --- a/buildtools/pmdinfogen/pmdinfogen.c
> > +++ b/buildtools/pmdinfogen/pmdinfogen.c
> > @@ -50,20 +50,24 @@ static void *grab_file(const char *filename, unsigned long *size)
> >  		/* from stdin, use a temporary file to mmap */
> >  		FILE *infile;
> >  		char buffer[1024];
> > -		size_t n;
> > +		int n;
> >  
> >  		infile = tmpfile();
> >  		if (infile == NULL) {
> >  			perror("tmpfile");
> >  			return NULL;
> >  		}
> > -		while (!feof(stdin)) {
> > -			n = fread(buffer, 1, sizeof(buffer), stdin);
> > -			if (fwrite(buffer, 1, n, infile) != n)
> > +		fd = dup(fileno(infile));
> > +		fclose(infile);
> > +		if (fd < 0)
> > +			return NULL;
> > +
> > +		n = read(STDIN_FILENO, buffer, sizeof(buffer));
> > +		while (n > 0) {
> > +			if (write(fd, buffer, n) != n)
> >  				goto failed;
> > +			n = read(STDIN_FILENO, buffer, sizeof(buffer));
> >  		}
> > -		fflush(infile);
> > -		fd = fileno(infile);
> >  	}
> >  
> >  	if (fstat(fd, &st))
> > -- 
> > 2.14.3
> > 
> > 
> 
> Wouldn't it be just as good, and easier to check fd for == -1 as a condition of
> calling close?
> 
> like 
> failed:
> 	if (fd >= 0)
> 		close(fd);
> 
That would fix the problem of calling goto failed with fd set to -1, but
would not fix the resource issue that coverity was complaining about. We
were allocating a stdio FILE object, then taking just the fileno of it
and letting the file number go out of scope. This cleans this that up,
so that we just use file numbers and properly close the FILE * once it's
outlived its usefulness.

BTW: I did investigate using open and O_TMPFILE in place of tmpfile()
call, but while it would work great on Linux, it's not available
elsewhere, so tmpfile looks the best option.

Regards,
/Bruce

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

* Re: [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
  2018-02-02 15:47   ` Bruce Richardson
@ 2018-02-02 15:51     ` Bruce Richardson
  2018-02-02 18:47       ` Neil Horman
  0 siblings, 1 reply; 6+ messages in thread
From: Bruce Richardson @ 2018-02-02 15:51 UTC (permalink / raw)
  To: Neil Horman; +Cc: dev

On Fri, Feb 02, 2018 at 03:47:43PM +0000, Bruce Richardson wrote:
> On Fri, Feb 02, 2018 at 07:44:39AM -0500, Neil Horman wrote:
> > On Fri, Feb 02, 2018 at 12:00:58PM +0000, Bruce Richardson wrote:
> > > Coverity flags an issue where the resources used by the FILE object for
> > > the temporary input file are leaked. This is a very minor issue, but is
> > > easily fixed, while also avoiding later problems where we try to close
> > > an invalid file descriptor in the failure case.
> > > 
> > > The fix is to use "dup()" to get a new file descriptor number rather than
> > > using the value directly from fileno. This allows us to close the file
> > > opened with tmpfile() within in scope block, while allowing the duplicate
> > > to pass to the outer block and be closed when the function terminates.
> > > 
> > > As a side-effect I/O in the function is therefore changed from using stdio
> > > fread/fwrite to read/write system calls.
> > > 
> > > Coverity issue: 260399
> > > Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")
> > > 
> > > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > > ---
> > >  buildtools/pmdinfogen/pmdinfogen.c | 16 ++++++++++------
> > >  1 file changed, 10 insertions(+), 6 deletions(-)
> > > 
> > > diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c
> > > index 45b267346..0f35ca46b 100644
> > > --- a/buildtools/pmdinfogen/pmdinfogen.c
> > > +++ b/buildtools/pmdinfogen/pmdinfogen.c
> > > @@ -50,20 +50,24 @@ static void *grab_file(const char *filename, unsigned long *size)
> > >  		/* from stdin, use a temporary file to mmap */
> > >  		FILE *infile;
> > >  		char buffer[1024];
> > > -		size_t n;
> > > +		int n;
> > >  
> > >  		infile = tmpfile();
> > >  		if (infile == NULL) {
> > >  			perror("tmpfile");
> > >  			return NULL;
> > >  		}
> > > -		while (!feof(stdin)) {
> > > -			n = fread(buffer, 1, sizeof(buffer), stdin);
> > > -			if (fwrite(buffer, 1, n, infile) != n)
> > > +		fd = dup(fileno(infile));
> > > +		fclose(infile);
> > > +		if (fd < 0)
> > > +			return NULL;
> > > +
> > > +		n = read(STDIN_FILENO, buffer, sizeof(buffer));
> > > +		while (n > 0) {
> > > +			if (write(fd, buffer, n) != n)
> > >  				goto failed;
> > > +			n = read(STDIN_FILENO, buffer, sizeof(buffer));
> > >  		}
> > > -		fflush(infile);
> > > -		fd = fileno(infile);
> > >  	}
> > >  
> > >  	if (fstat(fd, &st))
> > > -- 
> > > 2.14.3
> > > 
> > > 
> > 
> > Wouldn't it be just as good, and easier to check fd for == -1 as a condition of
> > calling close?
> > 
> > like 
> > failed:
> > 	if (fd >= 0)
> > 		close(fd);
> > 
> That would fix the problem of calling goto failed with fd set to -1, but
> would not fix the resource issue that coverity was complaining about. We
> were allocating a stdio FILE object, then taking just the fileno of it
> and letting the file number go out of scope. This cleans this that up,
s/file number/FILE object ptr/

> so that we just use file numbers and properly close the FILE * once it's
> outlived its usefulness.
> 
> BTW: I did investigate using open and O_TMPFILE in place of tmpfile()
> call, but while it would work great on Linux, it's not available
> elsewhere, so tmpfile looks the best option.
> 
> Regards,
> /Bruce

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

* Re: [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
  2018-02-02 15:51     ` Bruce Richardson
@ 2018-02-02 18:47       ` Neil Horman
  2018-02-06  0:16         ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: Neil Horman @ 2018-02-02 18:47 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

On Fri, Feb 02, 2018 at 03:51:12PM +0000, Bruce Richardson wrote:
> On Fri, Feb 02, 2018 at 03:47:43PM +0000, Bruce Richardson wrote:
> > On Fri, Feb 02, 2018 at 07:44:39AM -0500, Neil Horman wrote:
> > > On Fri, Feb 02, 2018 at 12:00:58PM +0000, Bruce Richardson wrote:
> > > > Coverity flags an issue where the resources used by the FILE object for
> > > > the temporary input file are leaked. This is a very minor issue, but is
> > > > easily fixed, while also avoiding later problems where we try to close
> > > > an invalid file descriptor in the failure case.
> > > > 
> > > > The fix is to use "dup()" to get a new file descriptor number rather than
> > > > using the value directly from fileno. This allows us to close the file
> > > > opened with tmpfile() within in scope block, while allowing the duplicate
> > > > to pass to the outer block and be closed when the function terminates.
> > > > 
> > > > As a side-effect I/O in the function is therefore changed from using stdio
> > > > fread/fwrite to read/write system calls.
> > > > 
> > > > Coverity issue: 260399
> > > > Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")
> > > > 
> > > > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> > > > ---
> > > >  buildtools/pmdinfogen/pmdinfogen.c | 16 ++++++++++------
> > > >  1 file changed, 10 insertions(+), 6 deletions(-)
> > > > 
> > > > diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c
> > > > index 45b267346..0f35ca46b 100644
> > > > --- a/buildtools/pmdinfogen/pmdinfogen.c
> > > > +++ b/buildtools/pmdinfogen/pmdinfogen.c
> > > > @@ -50,20 +50,24 @@ static void *grab_file(const char *filename, unsigned long *size)
> > > >  		/* from stdin, use a temporary file to mmap */
> > > >  		FILE *infile;
> > > >  		char buffer[1024];
> > > > -		size_t n;
> > > > +		int n;
> > > >  
> > > >  		infile = tmpfile();
> > > >  		if (infile == NULL) {
> > > >  			perror("tmpfile");
> > > >  			return NULL;
> > > >  		}
> > > > -		while (!feof(stdin)) {
> > > > -			n = fread(buffer, 1, sizeof(buffer), stdin);
> > > > -			if (fwrite(buffer, 1, n, infile) != n)
> > > > +		fd = dup(fileno(infile));
> > > > +		fclose(infile);
> > > > +		if (fd < 0)
> > > > +			return NULL;
> > > > +
> > > > +		n = read(STDIN_FILENO, buffer, sizeof(buffer));
> > > > +		while (n > 0) {
> > > > +			if (write(fd, buffer, n) != n)
> > > >  				goto failed;
> > > > +			n = read(STDIN_FILENO, buffer, sizeof(buffer));
> > > >  		}
> > > > -		fflush(infile);
> > > > -		fd = fileno(infile);
> > > >  	}
> > > >  
> > > >  	if (fstat(fd, &st))
> > > > -- 
> > > > 2.14.3
> > > > 
> > > > 
> > > 
> > > Wouldn't it be just as good, and easier to check fd for == -1 as a condition of
> > > calling close?
> > > 
> > > like 
> > > failed:
> > > 	if (fd >= 0)
> > > 		close(fd);
> > > 
> > That would fix the problem of calling goto failed with fd set to -1, but
> > would not fix the resource issue that coverity was complaining about. We
> > were allocating a stdio FILE object, then taking just the fileno of it
> > and letting the file number go out of scope. This cleans this that up,
> s/file number/FILE object ptr/
> 
Yeah, Ok, I can see that, though I still think its a bit of a false positive,
since the definition of tmpfile says it will automatically unlink the file on
process exit.  No matter though, what you have is an improvement regardless.

> > so that we just use file numbers and properly close the FILE * once it's
> > outlived its usefulness.
> > 
> > BTW: I did investigate using open and O_TMPFILE in place of tmpfile()
> > call, but while it would work great on Linux, it's not available
> > elsewhere, so tmpfile looks the best option.
> > 
yeah, thats both OS and filesystem specific, I wouldn't trust it too much.

Acked-by: Neil Horman <nhorman@tuxdriver.com>

> > Regards,
> > /Bruce
> 

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

* Re: [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object
  2018-02-02 18:47       ` Neil Horman
@ 2018-02-06  0:16         ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2018-02-06  0:16 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Neil Horman

02/02/2018 19:47, Neil Horman:
> On Fri, Feb 02, 2018 at 03:51:12PM +0000, Bruce Richardson wrote:
> > On Fri, Feb 02, 2018 at 03:47:43PM +0000, Bruce Richardson wrote:
> > > On Fri, Feb 02, 2018 at 07:44:39AM -0500, Neil Horman wrote:
> > > > On Fri, Feb 02, 2018 at 12:00:58PM +0000, Bruce Richardson wrote:
> > > > > Coverity flags an issue where the resources used by the FILE object for
> > > > > the temporary input file are leaked. This is a very minor issue, but is
> > > > > easily fixed, while also avoiding later problems where we try to close
> > > > > an invalid file descriptor in the failure case.
> > > > > 
> > > > > The fix is to use "dup()" to get a new file descriptor number rather than
> > > > > using the value directly from fileno. This allows us to close the file
> > > > > opened with tmpfile() within in scope block, while allowing the duplicate
> > > > > to pass to the outer block and be closed when the function terminates.
> > > > > 
> > > > > As a side-effect I/O in the function is therefore changed from using stdio
> > > > > fread/fwrite to read/write system calls.
> > > > > 
> > > > > Coverity issue: 260399
> > > > > Fixes: 0d68533617e3 ("pmdinfogen: allow using stdin and stdout")
> > > > > 
> > > > > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
[...]
> Acked-by: Neil Horman <nhorman@tuxdriver.com>

Applied, thanks

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

end of thread, other threads:[~2018-02-06  0:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-02 12:00 [dpdk-dev] [PATCH] pmdinfogen: fix resource leak of FILE object Bruce Richardson
2018-02-02 12:44 ` Neil Horman
2018-02-02 15:47   ` Bruce Richardson
2018-02-02 15:51     ` Bruce Richardson
2018-02-02 18:47       ` Neil Horman
2018-02-06  0:16         ` Thomas Monjalon

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