[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <DA809C60-6201-4A3D-8996-9AA74B9E4DFD@dilger.ca>
Date: Tue, 19 Oct 2010 01:12:27 -0600
From: Andreas Dilger <adilger.kernel@...ger.ca>
To: Jan Kara <jack@...e.cz>
Cc: Theodore Ts'o <tytso@....edu>,
Ext4 Developers List <linux-ext4@...r.kernel.org>,
Brad Spengler <spender@...ecurity.net>
Subject: Re: [PATCH 1/2] ext3: Avoid uninitialized memory references with a corrupted htree directory
On 2010-10-18, at 04:05, Jan Kara wrote:
> On Sat 16-10-10 19:36:59, Theodore Ts'o wrote:
>> @@ -871,6 +872,16 @@ static struct buffer_head *ext3_find_entry(struct inode *dir,
>> namelen = entry->len;
>> if (namelen > EXT3_NAME_LEN)
>> return NULL;
>> + if ((namelen < 2) && (name[0] == '.') &&
>> + (name[1] == '.' || name[1] == '0')) {
>
> This condition looks wrong... I suspect it should rather be:
> (namelen <= 2) && (name[0] == '.') && (name[1] == '.' || name[1] == 0)
> ^^^ change here and here ^^^
I think it is preferable to use '\0' for the trailing NUL.
Cheers, Andreas
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists