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-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 18 Dec 2007 14:50:07 -0800
From:	Mark Fasheh <mark.fasheh@...cle.com>
To:	Jan Kara <jack@...e.cz>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] [RFC] Handle i_size > s_maxbytes gracefully

On Tue, Dec 18, 2007 at 04:25:05PM +0100, Jan Kara wrote:
> Although we don't allow writes over s_maxbytes, it can happen that a file's
> size is larger than s_maxbytes. For example we can write the file from
> a computer with a different architecture (which has larger s_maxbytes),
> boot a kernel with a different set of config options (CONFIG_LBD...), etc.
> Thus we have to make sure we don't crash / corrupt data when seeing such
> file (page offset of the last page needn't fit into pgoff_t). Firstly, we
> make read() and mmap() return error when user tries to access the file
> above s_maxbytes, secondly we introduce a function i_size_read_trunc() which
> returns min(i_size, s_maxbytes) and use it when determining maximal page
> offset we are interested in.

To give folks some more background on another case of this problem: If two
nodes in a [Ocfs2, and likely Gfs2] cluster have mounted the same file
system and have different s_maxbytes, you could get into a similar situation
during runtime if the node with the larger s_maxbytes extends a file past
what the lesser node can read.

Generally, what we (Ocfs2) needs is just that the node with the lower
s_maxbytes cleanly errors out instead of panicing or corrupting when it
tries to do some operation at an offset past what it can support.

Disallowing access past s_maxbytes up in the vfs should save us from some
number of fs specific i_size versus s_maxbytes comparisons. It also has the
nice property that it should help the case which Jan outlined above.


> diff --git a/fs/buffer.c b/fs/buffer.c
> index 7249e01..3861118 100644
> --- a/fs/buffer.c
> +++ b/fs/buffer.c
> @@ -1623,7 +1623,7 @@ static int __block_write_full_page(struct inode *inode, struct page *page,
>  
>  	BUG_ON(!PageLocked(page));
>  
> -	last_block = (i_size_read(inode) - 1) >> inode->i_blkbits;
> +	last_block = (i_size_read_trunc(inode) - 1) >> inode->i_blkbits;
>  
>  	if (!page_has_buffers(page)) {
>  		create_empty_buffers(page, blocksize,

I'm curious - how can we get to __block_write_full_page() if this condition
is caught in mkwrite and write? That said, I'm not against defensive coding
:)
	--Mark

--
Mark Fasheh
Principal Software Developer, Oracle
mark.fasheh@...cle.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ