9front - general discussion about 9front
 help / color / mirror / Atom feed
From: boehm.igor@gmail.com
To: 9front@9front.org
Cc: boehm.igor@gmail.com
Subject: [9front] Re: cmd/acme: fix resource leak in ecmd.c (patch)
Date: Fri, 05 Feb 2021 08:55:16 +0100	[thread overview]
Message-ID: <C6F5B19C3E7C97C5A35506695E48CB07@gmail.com> (raw)
In-Reply-To: <863CA88C234EA794D5D1804F1D51D318@gmail.com>

Sorry, I have not provided a test case for when the leak happens.

To trigger the leak type the following into an acme Tag (assuming
sam.save exists):

• Edit B sam.save

and execute it (i.e. select and middle click). This is the case where
memory is leaked.

If the input to the B command comes from something preceded with '<'
there is no leak.  So for this case:

• Edit B <ls

Things are freed up properly (see
/sys/src/cmd/acme/ecmd.c:/^filelist(...)).  Don't run this in a folder
with many files or folders as it will open window for each file and
folder ☺

So if you open man files/folders using the B command and provide the
explicit file name or delete them using the D command, you can watch
leaked memory accumulate.

Small side note:

The 'Edit B <ls' is a really neat way to open all files and folders in
the current folder quickly.  Spinning this further one could envisage
a script that given a file name will search all .h and .c files
containing a string and open them, etc.

HTH

Cheers,
Igor


Quoth boehm.igor@gmail.com:
> There is a resource leak in acme functions:
> • /sys/src/cmd/acme/ecmd.c:/^B_cmd
> • /sys/src/cmd/acme/ecmd.c:/^D_cmd
> 
> I will describe the case for function B_cmd, the issue is the same for
> D_cmd.
> 
> In short, there can be a case where the heap allocated storage
> returned by the /sys/src/cmd/acme/ecmd.c:/^filelist(...) function is
> not freed. You can use the following as a starting point:
> 
> • /sys/src/cmd/acme/ecmd.c:192
> 
> int
> B_cmd(Text *t, Cmd *cp)
> {
> 	Rune *list, *r, *s;
> 	int nr;
> 
> 	list = filelist(t, cp->text->r, cp->text->n);
> 	^^^^^^^^^^^^^^^
> 	if(list == nil)
> 		editerror(Enoname);
> 	r = list;
> 	...
> 	...
> 	}
> 	clearcollection();
> 	^^^^^^^^^^^^^^^^^
> 	return TRUE;
> }
> 
> Notice the two lines that are highlighted, namely the call to
> filelist(...) and clearcollection(...).
> 
> Now if we look at the impl of filelist(...) we have:
> 
> /* string is known to be NUL-terminated */
> Rune*
> filelist(Text *t, Rune *r, int nr)
> {
> 	if(nr == 0)
> 		return nil;
> 	r = skipbl(r, nr, &nr);
> 	if(r[0] != '<')
> 		return runestrdup(r);
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> WHEN WE TAKE THE ABOVE PATH WE LEAK
> WHAT runestrdup(r) RETURNS
> 	/* use < command to collect text */
> 	clearcollection();
> 	runpipe(t, '<', r+1, nr-1, Collecting);
> 	return collection;
> ^^^^^^^^^^^^^^^^^^^^^^
> TAKING THIS PATH IS FINE AS clearcollection(...)
> WILL FREE ANY HEAP ALLOCATED MEMORY
> }
> 
> So for the case where we *do not* return the 'collection' pointer we
> leak memory that is allocated by 'runestrdup(...)'.
> 
> There are probably more elegant solutions for this.  The below simply
> checks if the pointer returned by filelist(...) is not equal to
> 'collection'.  That is used as a sentinel to detect the case where
> runestrdup(...) has been called.  That is the case where the memory
> returned by filelist(...) is *not* freed by clearcollection(...) and
> requires an extra free.
> 
> Somehow the explanation is much more complicated than I initially
> intended.  Hope you can still follow the reasoning and I haven't
> screwed up somewhere.
> 
> Here is the patch:
> 
> diff -r 0b8c8ef6a3d4 sys/src/cmd/acme/ecmd.c
> --- a/sys/src/cmd/acme/ecmd.c	Tue Jan 19 15:18:57 2021 -0800
> +++ b/sys/src/cmd/acme/ecmd.c	Mon Feb 01 22:24:56 2021 +0100
> @@ -204,6 +204,8 @@
>  		if(nr > 0)
>  			r = skipbl(s+1, nr-1, &nr);
>  	}
> +	if(list != collection)
> +		free(list);
>  	clearcollection();
>  	return TRUE;
>  }
> @@ -278,6 +280,8 @@
>  		if(nr > 0)
>  			r = skipbl(s+1, nr-1, &nr);
>  	}while(nr > 0);
> +	if(list != collection)
> +		free(list);
>  	clearcollection();
>  	free(dir.r);
>  	return TRUE;
> 


      parent reply	other threads:[~2021-02-05 11:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-01 23:09 [9front] " boehm.igor
2021-02-02  1:16 ` Noam Preil
2021-02-02  1:36   ` Noam Preil
2021-02-02  1:40   ` Noam Preil
2021-02-05  7:55 ` boehm.igor [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=C6F5B19C3E7C97C5A35506695E48CB07@gmail.com \
    --to=boehm.igor@gmail.com \
    --cc=9front@9front.org \
    /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 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).