lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 30 Dec 2008 11:15:51 +0530
From:	"Manish Katiyar" <mkatiyar@...il.com>
To:	Kernelnewbies <kernelnewbies@...linux.org>,
	Linux-Ext4 <linux-ext4@...r.kernel.org>
Subject: confusion in validation of rec_len in ext2_add_link

Hi,

I was trying to understand the purpose of the below check for
validating rec_len in the function ext2_add_link(). Before reaching
line 515 we call ext2_get_page() which checks for valid entries on the
page and thus validates the rec_len too. And then we call the
lock_page(), so is this check redundant or to avoid cases when
something could have changed on the page between the lines 497 and 501
?

ext2_add_link() {

........	
497            page = ext2_get_page(dir, n, 0);
499	        	if (IS_ERR(page))
500			goto out;
501		    lock_page(page);
.........
515			if (de->rec_len == 0) {
516				ext2_error(dir->i_sb, __func__,
517					"zero-length directory entry");
518				err = -EIO;
519				goto out_unlock;
520			}

..........
}

Thanks -
Manish
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ