linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* + fix-possible-page_cache_shift-overflows.patch added to -mm tree
@ 2005-11-23 21:22 akpm
  2005-11-23 22:01 ` ntfs - was: " Anton Altaparmakov
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: akpm @ 2005-11-23 21:22 UTC (permalink / raw)
  To: akpm, aia21, blaisorblade, dhowells, dwmw2, green, hch, jdike,
	linux-fsdevel, miklos, neilb, reiserfs-dev, rmk, trond.myklebust,
	zippel, mm-commits


The patch titled

     fix possible PAGE_CACHE_SHIFT overflows

has been added to the -mm tree.  Its filename is

     fix-possible-page_cache_shift-overflows.patch


From: Andrew Morton <akpm@osdl.org>

We've had two instances recently of overflows when doing

	64_bit_value = (32_bit_value << PAGE_CACHE_SHIFT)

I did a tree-wide grep of `<<.*PAGE_CACHE_SHIFT' and this is the result.

- afs_rxfs_fetch_descriptor.offset is of type off_t, which seems broken.

- jffs2_read_inode_range() takes a uint32_t offset, which also seems wrong.

- hfsplus_releasepage():nidx is u32, which might be wrong.

- reiserfs map_block_for_writepage() takes an unsigned long for the block -
  it should take sector_t.  (It'll fail for huge filesystems with
  blocksize<PAGE_CACHE_SIZE)

- ntfs_read_compressed_block is doing fishy things with cur_page and
  cb_max_page.

- load_and_init_attrdef()'s handling of `index' needs to be checked.  Ditto
  load_and_init_upcase().  Ditto
  ntfs_attr_extend_initialized():initialized_size

- cramfs_read() needs to use sector_t (I think cramsfs is busted on large
  filesystems anyway)

- affs is busted all over the place.

- I generally didn't fix 32-bit overflows in directory operations.

- hfs_releasepage():nidx may be wrong.

- fuse_send_readpages() is limited to 4G

- arm's __flush_dcache_page() is peculiar.  What if the page lies beyond 4G?

- gss_wrap_req_priv() needs checking (snd_buf->page_base)


Cc: Oleg Drokin <green@linuxhacker.ru>
Cc: David Howells <dhowells@redhat.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: <reiserfs-dev@namesys.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Anton Altaparmakov <aia21@cantab.net>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: <linux-fsdevel@vger.kernel.org>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 fs/afs/dir.c             |    2 +-
 fs/buffer.c              |    6 +++---
 fs/freevxfs/vxfs_immed.c |    4 ++--
 fs/hostfs/hostfs_kern.c  |    2 +-
 fs/jffs/inode-v23.c      |    4 ++--
 fs/mpage.c               |    4 ++--
 fs/romfs/inode.c         |    6 +++---
 fs/smbfs/file.c          |    4 ++--
 fs/sysv/dir.c            |    4 ++--
 9 files changed, 18 insertions(+), 18 deletions(-)

diff -puN fs/afs/dir.c~fix-possible-page_cache_shift-overflows fs/afs/dir.c
--- 25/fs/afs/dir.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/afs/dir.c	Wed Nov 23 13:22:12 2005
@@ -137,7 +137,7 @@ static inline void afs_dir_check_page(st
 #endif
 
 	/* determine how many magic numbers there should be in this page */
-	latter = dir->i_size - (page->index << PAGE_CACHE_SHIFT);
+	latter = dir->i_size - ((loff_t)page->index << PAGE_CACHE_SHIFT);
 	if (latter >= PAGE_SIZE)
 		qty = PAGE_SIZE;
 	else
diff -puN fs/buffer.c~fix-possible-page_cache_shift-overflows fs/buffer.c
--- 25/fs/buffer.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/buffer.c	Wed Nov 23 13:22:12 2005
@@ -1768,7 +1768,7 @@ static int __block_write_full_page(struc
 	 * handle that here by just cleaning them.
 	 */
 
-	block = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
+	block = (sector_t)page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
 	head = page_buffers(page);
 	bh = head;
 
@@ -2610,7 +2610,7 @@ int block_truncate_page(struct address_s
 	pgoff_t index = from >> PAGE_CACHE_SHIFT;
 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
 	unsigned blocksize;
-	pgoff_t iblock;
+	sector_t iblock;
 	unsigned length, pos;
 	struct inode *inode = mapping->host;
 	struct page *page;
@@ -2626,7 +2626,7 @@ int block_truncate_page(struct address_s
 		return 0;
 
 	length = blocksize - length;
-	iblock = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
+	iblock = (sector_t)index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
 	
 	page = grab_cache_page(mapping, index);
 	err = -ENOMEM;
diff -puN fs/freevxfs/vxfs_immed.c~fix-possible-page_cache_shift-overflows fs/freevxfs/vxfs_immed.c
--- 25/fs/freevxfs/vxfs_immed.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/freevxfs/vxfs_immed.c	Wed Nov 23 13:22:12 2005
@@ -99,8 +99,8 @@ static int
 vxfs_immed_readpage(struct file *fp, struct page *pp)
 {
 	struct vxfs_inode_info	*vip = VXFS_INO(pp->mapping->host);
-	u_int64_t		offset = pp->index << PAGE_CACHE_SHIFT;
-	caddr_t			kaddr;
+	u_int64_t	offset = (u_int64_t)pp->index << PAGE_CACHE_SHIFT;
+	caddr_t		kaddr;
 
 	kaddr = kmap(pp);
 	memcpy(kaddr, vip->vii_immed.vi_immed + offset, PAGE_CACHE_SIZE);
diff -puN fs/hostfs/hostfs_kern.c~fix-possible-page_cache_shift-overflows fs/hostfs/hostfs_kern.c
--- 25/fs/hostfs/hostfs_kern.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/hostfs/hostfs_kern.c	Wed Nov 23 13:22:12 2005
@@ -913,7 +913,7 @@ int hostfs_link_readpage(struct file *fi
 	long long start;
 	int err;
 
-	start = page->index << PAGE_CACHE_SHIFT;
+	start = (long long)page->index << PAGE_CACHE_SHIFT;
 	buffer = kmap(page);
 	name = inode_name(page->mapping->host, 0);
 	if(name == NULL) return(-ENOMEM);
diff -puN fs/jffs/inode-v23.c~fix-possible-page_cache_shift-overflows fs/jffs/inode-v23.c
--- 25/fs/jffs/inode-v23.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/jffs/inode-v23.c	Wed Nov 23 13:22:12 2005
@@ -757,7 +757,7 @@ jffs_do_readpage_nolock(struct file *fil
 
 	read_len = 0;
 	result = 0;
-	offset = page->index << PAGE_CACHE_SHIFT;
+	offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
 
 	kmap(page);
 	buf = page_address(page);
@@ -1545,7 +1545,7 @@ jffs_commit_write(struct file *filp, str
 {
        void *addr = page_address(page) + from;
        /* XXX: PAGE_CACHE_SHIFT or PAGE_SHIFT */
-       loff_t pos = (page->index<<PAGE_CACHE_SHIFT) + from;
+       loff_t pos = ((loff_t)page->index<<PAGE_CACHE_SHIFT) + from;
 
        return jffs_file_write(filp, addr, to-from, &pos);
 } /* jffs_commit_write() */
diff -puN fs/mpage.c~fix-possible-page_cache_shift-overflows fs/mpage.c
--- 25/fs/mpage.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/mpage.c	Wed Nov 23 13:22:12 2005
@@ -184,7 +184,7 @@ do_mpage_readpage(struct bio *bio, struc
 	if (page_has_buffers(page))
 		goto confused;
 
-	block_in_file = page->index << (PAGE_CACHE_SHIFT - blkbits);
+	block_in_file = (sector_t)page->index << (PAGE_CACHE_SHIFT - blkbits);
 	last_block = (i_size_read(inode) + blocksize - 1) >> blkbits;
 
 	bh.b_page = page;
@@ -466,7 +466,7 @@ __mpage_writepage(struct bio *bio, struc
 	 * The page has no buffers: map it to disk
 	 */
 	BUG_ON(!PageUptodate(page));
-	block_in_file = page->index << (PAGE_CACHE_SHIFT - blkbits);
+	block_in_file = (sector_t)page->index << (PAGE_CACHE_SHIFT - blkbits);
 	last_block = (i_size - 1) >> blkbits;
 	map_bh.b_page = page;
 	for (page_block = 0; page_block < blocks_per_page; ) {
diff -puN fs/romfs/inode.c~fix-possible-page_cache_shift-overflows fs/romfs/inode.c
--- 25/fs/romfs/inode.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/romfs/inode.c	Wed Nov 23 13:22:12 2005
@@ -418,7 +418,7 @@ static int
 romfs_readpage(struct file *file, struct page * page)
 {
 	struct inode *inode = page->mapping->host;
-	unsigned long offset, avail, readlen;
+	loff_t offset, avail, readlen;
 	void *buf;
 	int result = -EIO;
 
@@ -429,8 +429,8 @@ romfs_readpage(struct file *file, struct
 		goto err_out;
 
 	/* 32 bit warning -- but not for us :) */
-	offset = page->index << PAGE_CACHE_SHIFT;
-	if (offset < inode->i_size) {
+	offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
+	if (offset < i_size_read(inode)) {
 		avail = inode->i_size-offset;
 		readlen = min_t(unsigned long, avail, PAGE_SIZE);
 		if (romfs_copyfrom(inode, buf, ROMFS_I(inode)->i_dataoffset+offset, readlen) == readlen) {
diff -puN fs/smbfs/file.c~fix-possible-page_cache_shift-overflows fs/smbfs/file.c
--- 25/fs/smbfs/file.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/smbfs/file.c	Wed Nov 23 13:22:12 2005
@@ -209,8 +209,8 @@ smb_updatepage(struct file *file, struct
 {
 	struct dentry *dentry = file->f_dentry;
 
-	DEBUG1("(%s/%s %d@%ld)\n", DENTRY_PATH(dentry), 
-	       count, (page->index << PAGE_CACHE_SHIFT)+offset);
+	DEBUG1("(%s/%s %d@%lld)\n", DENTRY_PATH(dentry), count,
+		((unsigned long long)page->index << PAGE_CACHE_SHIFT) + offset);
 
 	return smb_writepage_sync(dentry->d_inode, page, offset, count);
 }
diff -puN fs/sysv/dir.c~fix-possible-page_cache_shift-overflows fs/sysv/dir.c
--- 25/fs/sysv/dir.c~fix-possible-page_cache_shift-overflows	Wed Nov 23 13:22:12 2005
+++ 25-akpm/fs/sysv/dir.c	Wed Nov 23 13:22:12 2005
@@ -103,7 +103,7 @@ static int sysv_readdir(struct file * fi
 			offset = (char *)de - kaddr;
 
 			over = filldir(dirent, name, strnlen(name,SYSV_NAMELEN),
-					(n<<PAGE_CACHE_SHIFT) | offset,
+					((loff_t)n<<PAGE_CACHE_SHIFT) | offset,
 					fs16_to_cpu(SYSV_SB(sb), de->inode),
 					DT_UNKNOWN);
 			if (over) {
@@ -115,7 +115,7 @@ static int sysv_readdir(struct file * fi
 	}
 
 done:
-	filp->f_pos = (n << PAGE_CACHE_SHIFT) | offset;
+	filp->f_pos = ((loff_t)n << PAGE_CACHE_SHIFT) | offset;
 	unlock_kernel();
 	return 0;
 }
_

Patches currently in -mm which might be from akpm@osdl.org are

linus.patch
revert-floppy-fix-read-only-handling.patch
jffs2-debug-gcc-29x-fix.patch


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2005-11-26  0:54 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-23 21:22 + fix-possible-page_cache_shift-overflows.patch added to -mm tree akpm
2005-11-23 22:01 ` ntfs - was: " Anton Altaparmakov
2005-11-24  1:00 ` Blaisorblade
2005-11-24  1:09   ` Andrew Morton
2005-11-24  1:37     ` Blaisorblade
2005-11-24 10:02     ` Christoph Hellwig
2005-11-24  7:05 ` Miklos Szeredi
2005-11-24  7:46 ` David Woodhouse
2005-11-24 11:24 ` Oleg Drokin
2005-11-26  0:54   ` Hans Reiser
2005-11-24 21:08 ` Roman Zippel

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).