All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Genoud <richard.genoud@posteo.net>
To: u-boot@lists.denx.de
Subject: [PATCH] fs: squasfs: fix a possible NULL pointer dereference in sqfs_opendir()
Date: Mon, 21 Dec 2020 16:06:37 +0100	[thread overview]
Message-ID: <e9785128-0df9-e7d4-8c65-89e8b79a37d2@posteo.net> (raw)
In-Reply-To: <20201218195009.056da9d8@xps13>

Hi Miquel,

Le 18/12/2020 ? 19:50, Miquel Raynal a ?crit?:
> Hi Richard,
> 
> Richard Genoud <richard.genoud@posteo.net> wrote on Fri, 18 Dec 2020
> 15:24:40 +0100:
> 
>> token_count may be != 0 and token_list not yet allocated when the out
>> code is reached
> 
> Wouldn't it be better to initialize token_count than adding an
> (obscure) indentation level?
Well, token_count is initialized :
token_count = sqfs_count_tokens(filename);

But token_list is not yet populated. It is some lines bellow:
token_list = malloc(token_count * sizeof(char *));


But I could use something like that, maybe it's clearer :
	for (j = 0; (token_list != NULL) && (j < token_count); j++)
		free(token_list[j]);

> 
>>
>> Reported-by: Coverity CID 313547
>> Fixes: ea1b1651c6a8 ("fs/squashfs: sqfs_opendir: simplify error handling")
>> Signed-off-by: Richard Genoud <richard.genoud@posteo.net>
>> ---
>>   fs/squashfs/sqfs.c | 5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/squashfs/sqfs.c b/fs/squashfs/sqfs.c
>> index 608a2bb454c..c47046b76e5 100644
>> --- a/fs/squashfs/sqfs.c
>> +++ b/fs/squashfs/sqfs.c
>> @@ -949,8 +949,9 @@ int sqfs_opendir(const char *filename, struct fs_dir_stream **dirsp)
>>   	*dirsp = (struct fs_dir_stream *)dirs;
>>   
>>   out:
>> -	for (j = 0; j < token_count; j++)
>> -		free(token_list[j]);
>> +	if (token_list)
>> +		for (j = 0; j < token_count; j++)
>> +			free(token_list[j]);
>>   	free(token_list);
>>   	free(pos_list);
>>   	free(path);
> 
> Thanks,
> Miqu?l
> 
Thanks
Richard.

  reply	other threads:[~2020-12-21 15:06 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-18 14:24 [PATCH] fs: squasfs: fix a possible NULL pointer dereference in sqfs_opendir() Richard Genoud
2020-12-18 18:50 ` Miquel Raynal
2020-12-21 15:06   ` Richard Genoud [this message]
2020-12-21 15:14     ` Miquel Raynal
2020-12-21 15:26       ` Richard Genoud
2020-12-21 15:29         ` Miquel Raynal
2020-12-21 15:40           ` Richard Genoud
2020-12-21 15:49             ` Miquel Raynal
2020-12-21 16:17               ` Richard Genoud
2020-12-22  7:46                 ` Miquel Raynal
2020-12-22  9:07                   ` Richard Genoud
2020-12-21 15:26       ` Miquel Raynal

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=e9785128-0df9-e7d4-8c65-89e8b79a37d2@posteo.net \
    --to=richard.genoud@posteo.net \
    --cc=u-boot@lists.denx.de \
    /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.