2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* linux/fs/ufs/inode.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998
|
|
|
|
* Daniel Pirkl <daniel.pirkl@email.cz>
|
|
|
|
* Charles University, Faculty of Mathematics and Physics
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/ext2/inode.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992, 1993, 1994, 1995
|
|
|
|
* Remy Card (card@masi.ibp.fr)
|
|
|
|
* Laboratoire MASI - Institut Blaise Pascal
|
|
|
|
* Universite Pierre et Marie Curie (Paris VI)
|
|
|
|
*
|
|
|
|
* from
|
|
|
|
*
|
|
|
|
* linux/fs/minix/inode.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
|
|
|
* Goal-directed block allocation by Stephen Tweedie (sct@dcs.ed.ac.uk), 1993
|
|
|
|
* Big-endian to little-endian byte-swapping/bitmaps by
|
|
|
|
* David S. Miller (davem@caip.rutgers.edu), 1995
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/ufs_fs.h>
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/stat.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/smp_lock.h>
|
|
|
|
#include <linux/buffer_head.h>
|
|
|
|
|
2007-10-17 02:26:51 -04:00
|
|
|
#include "ufs.h"
|
2005-04-16 18:20:36 -04:00
|
|
|
#include "swab.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2006-06-25 08:47:32 -04:00
|
|
|
static u64 ufs_frag_map(struct inode *inode, sector_t frag);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
static int ufs_block_to_path(struct inode *inode, sector_t i_block, sector_t offsets[4])
|
|
|
|
{
|
|
|
|
struct ufs_sb_private_info *uspi = UFS_SB(inode->i_sb)->s_uspi;
|
|
|
|
int ptrs = uspi->s_apb;
|
|
|
|
int ptrs_bits = uspi->s_apbshift;
|
|
|
|
const long direct_blocks = UFS_NDADDR,
|
|
|
|
indirect_blocks = ptrs,
|
|
|
|
double_blocks = (1 << (ptrs_bits * 2));
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("ptrs=uspi->s_apb = %d,double_blocks=%ld \n",ptrs,double_blocks);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (i_block < 0) {
|
|
|
|
ufs_warning(inode->i_sb, "ufs_block_to_path", "block < 0");
|
|
|
|
} else if (i_block < direct_blocks) {
|
|
|
|
offsets[n++] = i_block;
|
|
|
|
} else if ((i_block -= direct_blocks) < indirect_blocks) {
|
|
|
|
offsets[n++] = UFS_IND_BLOCK;
|
|
|
|
offsets[n++] = i_block;
|
|
|
|
} else if ((i_block -= indirect_blocks) < double_blocks) {
|
|
|
|
offsets[n++] = UFS_DIND_BLOCK;
|
|
|
|
offsets[n++] = i_block >> ptrs_bits;
|
|
|
|
offsets[n++] = i_block & (ptrs - 1);
|
|
|
|
} else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
|
|
|
|
offsets[n++] = UFS_TIND_BLOCK;
|
|
|
|
offsets[n++] = i_block >> (ptrs_bits * 2);
|
|
|
|
offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
|
|
|
|
offsets[n++] = i_block & (ptrs - 1);
|
|
|
|
} else {
|
|
|
|
ufs_warning(inode->i_sb, "ufs_block_to_path", "block > big");
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the location of the fragment from
|
|
|
|
* the begining of the filesystem.
|
|
|
|
*/
|
|
|
|
|
2006-06-25 08:47:32 -04:00
|
|
|
static u64 ufs_frag_map(struct inode *inode, sector_t frag)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
|
|
|
|
u64 mask = (u64) uspi->s_apbmask>>uspi->s_fpbshift;
|
|
|
|
int shift = uspi->s_apbshift-uspi->s_fpbshift;
|
|
|
|
sector_t offsets[4], *p;
|
|
|
|
int depth = ufs_block_to_path(inode, frag >> uspi->s_fpbshift, offsets);
|
|
|
|
u64 ret = 0L;
|
|
|
|
__fs32 block;
|
|
|
|
__fs64 u2_block = 0L;
|
|
|
|
unsigned flags = UFS_SB(sb)->s_flags;
|
|
|
|
u64 temp = 0L;
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD(": frag = %llu depth = %d\n", (unsigned long long)frag, depth);
|
2006-06-29 05:24:29 -04:00
|
|
|
UFSD(": uspi->s_fpbshift = %d ,uspi->s_apbmask = %x, mask=%llx\n",
|
|
|
|
uspi->s_fpbshift, uspi->s_apbmask,
|
|
|
|
(unsigned long long)mask);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
if (depth == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = offsets;
|
|
|
|
|
|
|
|
lock_kernel();
|
|
|
|
if ((flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
|
|
|
|
goto ufs2;
|
|
|
|
|
|
|
|
block = ufsi->i_u1.i_data[*p++];
|
|
|
|
if (!block)
|
|
|
|
goto out;
|
|
|
|
while (--depth) {
|
|
|
|
struct buffer_head *bh;
|
|
|
|
sector_t n = *p++;
|
|
|
|
|
|
|
|
bh = sb_bread(sb, uspi->s_sbbase + fs32_to_cpu(sb, block)+(n>>shift));
|
|
|
|
if (!bh)
|
|
|
|
goto out;
|
|
|
|
block = ((__fs32 *) bh->b_data)[n & mask];
|
|
|
|
brelse (bh);
|
|
|
|
if (!block)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = (u64) (uspi->s_sbbase + fs32_to_cpu(sb, block) + (frag & uspi->s_fpbmask));
|
|
|
|
goto out;
|
|
|
|
ufs2:
|
|
|
|
u2_block = ufsi->i_u1.u2_i_data[*p++];
|
|
|
|
if (!u2_block)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
|
|
while (--depth) {
|
|
|
|
struct buffer_head *bh;
|
|
|
|
sector_t n = *p++;
|
|
|
|
|
|
|
|
|
|
|
|
temp = (u64)(uspi->s_sbbase) + fs64_to_cpu(sb, u2_block);
|
|
|
|
bh = sb_bread(sb, temp +(u64) (n>>shift));
|
|
|
|
if (!bh)
|
|
|
|
goto out;
|
|
|
|
u2_block = ((__fs64 *)bh->b_data)[n & mask];
|
|
|
|
brelse(bh);
|
|
|
|
if (!u2_block)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
temp = (u64)uspi->s_sbbase + fs64_to_cpu(sb, u2_block);
|
|
|
|
ret = temp + (u64) (frag & uspi->s_fpbmask);
|
|
|
|
|
|
|
|
out:
|
|
|
|
unlock_kernel();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
/**
|
|
|
|
* ufs_inode_getfrag() - allocate new fragment(s)
|
|
|
|
* @inode - pointer to inode
|
|
|
|
* @fragment - number of `fragment' which hold pointer
|
|
|
|
* to new allocated fragment(s)
|
|
|
|
* @new_fragment - number of new allocated fragment(s)
|
|
|
|
* @required - how many fragment(s) we require
|
|
|
|
* @err - we set it if something wrong
|
|
|
|
* @phys - pointer to where we save physical number of new allocated fragments,
|
|
|
|
* NULL if we allocate not data(indirect blocks for example).
|
|
|
|
* @new - we set it if we allocate new block
|
|
|
|
* @locked_page - for ufs_new_fragments()
|
|
|
|
*/
|
|
|
|
static struct buffer_head *
|
2007-02-12 03:54:32 -05:00
|
|
|
ufs_inode_getfrag(struct inode *inode, u64 fragment,
|
2006-06-25 08:47:27 -04:00
|
|
|
sector_t new_fragment, unsigned int required, int *err,
|
|
|
|
long *phys, int *new, struct page *locked_page)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
2006-06-25 08:47:27 -04:00
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
|
2005-04-16 18:20:36 -04:00
|
|
|
struct buffer_head * result;
|
2007-02-12 03:54:32 -05:00
|
|
|
unsigned blockoff, lastblockoff;
|
|
|
|
u64 tmp, goal, lastfrag, block, lastblock;
|
|
|
|
void *p, *p2;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2007-02-12 03:54:32 -05:00
|
|
|
UFSD("ENTER, ino %lu, fragment %llu, new_fragment %llu, required %u, "
|
|
|
|
"metadata %d\n", inode->i_ino, (unsigned long long)fragment,
|
2006-06-25 08:47:27 -04:00
|
|
|
(unsigned long long)new_fragment, required, !phys);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/* TODO : to be done for write support
|
|
|
|
if ( (flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2)
|
|
|
|
goto ufs2;
|
|
|
|
*/
|
|
|
|
|
|
|
|
block = ufs_fragstoblks (fragment);
|
|
|
|
blockoff = ufs_fragnum (fragment);
|
2007-02-12 03:54:32 -05:00
|
|
|
p = ufs_get_direct_data_ptr(uspi, ufsi, block);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
goal = 0;
|
|
|
|
|
|
|
|
repeat:
|
2007-02-12 03:54:32 -05:00
|
|
|
tmp = ufs_data_ptr_to_cpu(sb, p);
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
lastfrag = ufsi->i_lastfrag;
|
|
|
|
if (tmp && fragment < lastfrag) {
|
2006-06-25 08:47:27 -04:00
|
|
|
if (!phys) {
|
2005-04-16 18:20:36 -04:00
|
|
|
result = sb_getblk(sb, uspi->s_sbbase + tmp + blockoff);
|
2007-02-12 03:54:32 -05:00
|
|
|
if (tmp == ufs_data_ptr_to_cpu(sb, p)) {
|
|
|
|
UFSD("EXIT, result %llu\n",
|
|
|
|
(unsigned long long)tmp + blockoff);
|
2005-04-16 18:20:36 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
brelse (result);
|
|
|
|
goto repeat;
|
|
|
|
} else {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
*phys = uspi->s_sbbase + tmp + blockoff;
|
2005-04-16 18:20:36 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lastblock = ufs_fragstoblks (lastfrag);
|
|
|
|
lastblockoff = ufs_fragnum (lastfrag);
|
|
|
|
/*
|
|
|
|
* We will extend file into new block beyond last allocated block
|
|
|
|
*/
|
|
|
|
if (lastblock < block) {
|
|
|
|
/*
|
|
|
|
* We must reallocate last allocated block
|
|
|
|
*/
|
|
|
|
if (lastblockoff) {
|
2007-02-12 03:54:32 -05:00
|
|
|
p2 = ufs_get_direct_data_ptr(uspi, ufsi, lastblock);
|
|
|
|
tmp = ufs_new_fragments(inode, p2, lastfrag,
|
|
|
|
ufs_data_ptr_to_cpu(sb, p2),
|
|
|
|
uspi->s_fpb - lastblockoff,
|
|
|
|
err, locked_page);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (!tmp) {
|
|
|
|
if (lastfrag != ufsi->i_lastfrag)
|
|
|
|
goto repeat;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
lastfrag = ufsi->i_lastfrag;
|
|
|
|
|
|
|
|
}
|
2007-02-12 03:54:32 -05:00
|
|
|
tmp = ufs_data_ptr_to_cpu(sb,
|
|
|
|
ufs_get_direct_data_ptr(uspi, ufsi,
|
|
|
|
lastblock));
|
[PATCH] ufs: write to hole in big file
On UFS, this scenario:
open(O_TRUNC)
lseek(1024 * 1024 * 80)
write("A")
lseek(1024 * 2)
write("A")
may cause access to invalid address.
This happened because of "goal" is calculated in wrong way in block
allocation path, as I see this problem exists also in 2.4.
We use construction like this i_data[lastfrag], i_data array of pointers to
direct blocks, indirect and so on, it has ceratain size ~20 elements, and
lastfrag may have value for example 40000.
Also this patch fixes related to handling such scenario issues, wrong
zeroing metadata, in case of block(not fragment) allocation, and wrong goal
calculation, when we allocate block
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-08-27 04:23:45 -04:00
|
|
|
if (tmp)
|
|
|
|
goal = tmp + uspi->s_fpb;
|
2005-04-16 18:20:36 -04:00
|
|
|
tmp = ufs_new_fragments (inode, p, fragment - blockoff,
|
2006-06-25 08:47:20 -04:00
|
|
|
goal, required + blockoff,
|
2007-01-29 16:19:54 -05:00
|
|
|
err,
|
|
|
|
phys != NULL ? locked_page : NULL);
|
2007-02-12 03:54:32 -05:00
|
|
|
} else if (lastblock == block) {
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* We will extend last allocated block
|
|
|
|
*/
|
2007-02-12 03:54:32 -05:00
|
|
|
tmp = ufs_new_fragments(inode, p, fragment -
|
|
|
|
(blockoff - lastblockoff),
|
|
|
|
ufs_data_ptr_to_cpu(sb, p),
|
|
|
|
required + (blockoff - lastblockoff),
|
2007-01-29 16:19:54 -05:00
|
|
|
err, phys != NULL ? locked_page : NULL);
|
[PATCH] ufs: write to hole in big file
On UFS, this scenario:
open(O_TRUNC)
lseek(1024 * 1024 * 80)
write("A")
lseek(1024 * 2)
write("A")
may cause access to invalid address.
This happened because of "goal" is calculated in wrong way in block
allocation path, as I see this problem exists also in 2.4.
We use construction like this i_data[lastfrag], i_data array of pointers to
direct blocks, indirect and so on, it has ceratain size ~20 elements, and
lastfrag may have value for example 40000.
Also this patch fixes related to handling such scenario issues, wrong
zeroing metadata, in case of block(not fragment) allocation, and wrong goal
calculation, when we allocate block
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-08-27 04:23:45 -04:00
|
|
|
} else /* (lastblock > block) */ {
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* We will allocate new block before last allocated block
|
|
|
|
*/
|
[PATCH] ufs: write to hole in big file
On UFS, this scenario:
open(O_TRUNC)
lseek(1024 * 1024 * 80)
write("A")
lseek(1024 * 2)
write("A")
may cause access to invalid address.
This happened because of "goal" is calculated in wrong way in block
allocation path, as I see this problem exists also in 2.4.
We use construction like this i_data[lastfrag], i_data array of pointers to
direct blocks, indirect and so on, it has ceratain size ~20 elements, and
lastfrag may have value for example 40000.
Also this patch fixes related to handling such scenario issues, wrong
zeroing metadata, in case of block(not fragment) allocation, and wrong goal
calculation, when we allocate block
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-08-27 04:23:45 -04:00
|
|
|
if (block) {
|
2007-02-12 03:54:32 -05:00
|
|
|
tmp = ufs_data_ptr_to_cpu(sb,
|
|
|
|
ufs_get_direct_data_ptr(uspi, ufsi, block - 1));
|
[PATCH] ufs: write to hole in big file
On UFS, this scenario:
open(O_TRUNC)
lseek(1024 * 1024 * 80)
write("A")
lseek(1024 * 2)
write("A")
may cause access to invalid address.
This happened because of "goal" is calculated in wrong way in block
allocation path, as I see this problem exists also in 2.4.
We use construction like this i_data[lastfrag], i_data array of pointers to
direct blocks, indirect and so on, it has ceratain size ~20 elements, and
lastfrag may have value for example 40000.
Also this patch fixes related to handling such scenario issues, wrong
zeroing metadata, in case of block(not fragment) allocation, and wrong goal
calculation, when we allocate block
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-08-27 04:23:45 -04:00
|
|
|
if (tmp)
|
|
|
|
goal = tmp + uspi->s_fpb;
|
|
|
|
}
|
2006-06-25 08:47:20 -04:00
|
|
|
tmp = ufs_new_fragments(inode, p, fragment - blockoff,
|
2007-01-29 16:19:54 -05:00
|
|
|
goal, uspi->s_fpb, err,
|
|
|
|
phys != NULL ? locked_page : NULL);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
if (!tmp) {
|
2007-02-12 03:54:32 -05:00
|
|
|
if ((!blockoff && ufs_data_ptr_to_cpu(sb, p)) ||
|
2005-04-16 18:20:36 -04:00
|
|
|
(blockoff && lastfrag != ufsi->i_lastfrag))
|
|
|
|
goto repeat;
|
|
|
|
*err = -ENOSPC;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
if (!phys) {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
result = sb_getblk(sb, uspi->s_sbbase + tmp + blockoff);
|
2005-04-16 18:20:36 -04:00
|
|
|
} else {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
*phys = uspi->s_sbbase + tmp + blockoff;
|
2005-04-16 18:20:36 -04:00
|
|
|
result = NULL;
|
|
|
|
*err = 0;
|
|
|
|
*new = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inode->i_ctime = CURRENT_TIME_SEC;
|
|
|
|
if (IS_SYNC(inode))
|
|
|
|
ufs_sync_inode (inode);
|
|
|
|
mark_inode_dirty(inode);
|
2007-02-12 03:54:32 -05:00
|
|
|
UFSD("EXIT, result %llu\n", (unsigned long long)tmp + blockoff);
|
2005-04-16 18:20:36 -04:00
|
|
|
return result;
|
|
|
|
|
|
|
|
/* This part : To be implemented ....
|
|
|
|
Required only for writing, not required for READ-ONLY.
|
|
|
|
ufs2:
|
|
|
|
|
|
|
|
u2_block = ufs_fragstoblks(fragment);
|
|
|
|
u2_blockoff = ufs_fragnum(fragment);
|
|
|
|
p = ufsi->i_u1.u2_i_data + block;
|
|
|
|
goal = 0;
|
|
|
|
|
|
|
|
repeat2:
|
|
|
|
tmp = fs32_to_cpu(sb, *p);
|
|
|
|
lastfrag = ufsi->i_lastfrag;
|
|
|
|
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
/**
|
|
|
|
* ufs_inode_getblock() - allocate new block
|
|
|
|
* @inode - pointer to inode
|
|
|
|
* @bh - pointer to block which hold "pointer" to new allocated block
|
|
|
|
* @fragment - number of `fragment' which hold pointer
|
|
|
|
* to new allocated block
|
|
|
|
* @new_fragment - number of new allocated fragment
|
|
|
|
* (block will hold this fragment and also uspi->s_fpb-1)
|
|
|
|
* @err - see ufs_inode_getfrag()
|
|
|
|
* @phys - see ufs_inode_getfrag()
|
|
|
|
* @new - see ufs_inode_getfrag()
|
|
|
|
* @locked_page - see ufs_inode_getfrag()
|
|
|
|
*/
|
|
|
|
static struct buffer_head *
|
|
|
|
ufs_inode_getblock(struct inode *inode, struct buffer_head *bh,
|
2007-02-12 03:54:32 -05:00
|
|
|
u64 fragment, sector_t new_fragment, int *err,
|
2006-06-25 08:47:27 -04:00
|
|
|
long *phys, int *new, struct page *locked_page)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2006-06-25 08:47:27 -04:00
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
|
2005-04-16 18:20:36 -04:00
|
|
|
struct buffer_head * result;
|
2007-02-12 03:54:32 -05:00
|
|
|
unsigned blockoff;
|
|
|
|
u64 tmp, goal, block;
|
|
|
|
void *p;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
block = ufs_fragstoblks (fragment);
|
|
|
|
blockoff = ufs_fragnum (fragment);
|
|
|
|
|
2007-02-12 03:54:32 -05:00
|
|
|
UFSD("ENTER, ino %lu, fragment %llu, new_fragment %llu, metadata %d\n",
|
|
|
|
inode->i_ino, (unsigned long long)fragment,
|
|
|
|
(unsigned long long)new_fragment, !phys);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
result = NULL;
|
|
|
|
if (!bh)
|
|
|
|
goto out;
|
|
|
|
if (!buffer_uptodate(bh)) {
|
|
|
|
ll_rw_block (READ, 1, &bh);
|
|
|
|
wait_on_buffer (bh);
|
|
|
|
if (!buffer_uptodate(bh))
|
|
|
|
goto out;
|
|
|
|
}
|
2007-02-12 03:54:32 -05:00
|
|
|
if (uspi->fs_magic == UFS2_MAGIC)
|
|
|
|
p = (__fs64 *)bh->b_data + block;
|
|
|
|
else
|
|
|
|
p = (__fs32 *)bh->b_data + block;
|
2005-04-16 18:20:36 -04:00
|
|
|
repeat:
|
2007-02-12 03:54:32 -05:00
|
|
|
tmp = ufs_data_ptr_to_cpu(sb, p);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (tmp) {
|
2006-06-25 08:47:27 -04:00
|
|
|
if (!phys) {
|
2005-04-16 18:20:36 -04:00
|
|
|
result = sb_getblk(sb, uspi->s_sbbase + tmp + blockoff);
|
2007-02-12 03:54:32 -05:00
|
|
|
if (tmp == ufs_data_ptr_to_cpu(sb, p))
|
2005-04-16 18:20:36 -04:00
|
|
|
goto out;
|
|
|
|
brelse (result);
|
|
|
|
goto repeat;
|
|
|
|
} else {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
*phys = uspi->s_sbbase + tmp + blockoff;
|
2005-04-16 18:20:36 -04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-12 03:54:32 -05:00
|
|
|
if (block && (uspi->fs_magic == UFS2_MAGIC ?
|
|
|
|
(tmp = fs64_to_cpu(sb, ((__fs64 *)bh->b_data)[block-1])) :
|
|
|
|
(tmp = fs32_to_cpu(sb, ((__fs32 *)bh->b_data)[block-1]))))
|
2005-04-16 18:20:36 -04:00
|
|
|
goal = tmp + uspi->s_fpb;
|
|
|
|
else
|
|
|
|
goal = bh->b_blocknr + uspi->s_fpb;
|
2006-06-25 08:47:20 -04:00
|
|
|
tmp = ufs_new_fragments(inode, p, ufs_blknum(new_fragment), goal,
|
|
|
|
uspi->s_fpb, err, locked_page);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (!tmp) {
|
2007-02-12 03:54:32 -05:00
|
|
|
if (ufs_data_ptr_to_cpu(sb, p))
|
2005-04-16 18:20:36 -04:00
|
|
|
goto repeat;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:19 -04:00
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
if (!phys) {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
result = sb_getblk(sb, uspi->s_sbbase + tmp + blockoff);
|
2005-04-16 18:20:36 -04:00
|
|
|
} else {
|
[PATCH] ufs: zeroize the rest of block in truncate
This patch fix behaviour in such test scenario:
lseek(fd, BIG_OFFSET)
write(fd, buf, sizeof(buf))
truncate(BIG_OFFSET)
truncate(BIG_OFFSET + sizeof(buf))
read(fd, buf...)
Because of if file big enough(BIG_OFFSET) we start allocate space by block,
ordinary block size > page size, so we should zeroize the rest of block in
truncate(except last framgnet, about which VFS should care), to not get
garbage, when we extend file.
Also patch corrects conversion from pointer to block to physical block number,
this helps in case of not common used UFS types.
And add to debug output inode number.
Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-03-16 17:38:09 -04:00
|
|
|
*phys = uspi->s_sbbase + tmp + blockoff;
|
2005-04-16 18:20:36 -04:00
|
|
|
*new = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mark_buffer_dirty(bh);
|
|
|
|
if (IS_SYNC(inode))
|
|
|
|
sync_dirty_buffer(bh);
|
|
|
|
inode->i_ctime = CURRENT_TIME_SEC;
|
|
|
|
mark_inode_dirty(inode);
|
2007-02-12 03:54:32 -05:00
|
|
|
UFSD("result %llu\n", (unsigned long long)tmp + blockoff);
|
2005-04-16 18:20:36 -04:00
|
|
|
out:
|
|
|
|
brelse (bh);
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("EXIT\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
/**
|
|
|
|
* ufs_getfrag_bloc() - `get_block_t' function, interface between UFS and
|
|
|
|
* readpage, writepage and so on
|
2005-04-16 18:20:36 -04:00
|
|
|
*/
|
|
|
|
|
2006-06-25 08:47:27 -04:00
|
|
|
int ufs_getfrag_block(struct inode *inode, sector_t fragment, struct buffer_head *bh_result, int create)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
struct super_block * sb = inode->i_sb;
|
|
|
|
struct ufs_sb_private_info * uspi = UFS_SB(sb)->s_uspi;
|
|
|
|
struct buffer_head * bh;
|
|
|
|
int ret, err, new;
|
|
|
|
unsigned long ptr,phys;
|
|
|
|
u64 phys64 = 0;
|
|
|
|
|
|
|
|
if (!create) {
|
|
|
|
phys64 = ufs_frag_map(inode, fragment);
|
2006-06-29 05:24:29 -04:00
|
|
|
UFSD("phys64 = %llu\n", (unsigned long long)phys64);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (phys64)
|
|
|
|
map_bh(bh_result, sb, phys64);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This code entered only while writing ....? */
|
|
|
|
|
|
|
|
err = -EIO;
|
|
|
|
new = 0;
|
|
|
|
ret = 0;
|
|
|
|
bh = NULL;
|
|
|
|
|
|
|
|
lock_kernel();
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("ENTER, ino %lu, fragment %llu\n", inode->i_ino, (unsigned long long)fragment);
|
2005-04-16 18:20:36 -04:00
|
|
|
if (fragment < 0)
|
|
|
|
goto abort_negative;
|
|
|
|
if (fragment >
|
|
|
|
((UFS_NDADDR + uspi->s_apb + uspi->s_2apb + uspi->s_3apb)
|
|
|
|
<< uspi->s_fpbshift))
|
|
|
|
goto abort_too_big;
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
ptr = fragment;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ok, these macros clean the logic up a bit and make
|
|
|
|
* it much more readable:
|
|
|
|
*/
|
|
|
|
#define GET_INODE_DATABLOCK(x) \
|
2007-01-29 16:19:54 -05:00
|
|
|
ufs_inode_getfrag(inode, x, fragment, 1, &err, &phys, &new,\
|
|
|
|
bh_result->b_page)
|
2005-04-16 18:20:36 -04:00
|
|
|
#define GET_INODE_PTR(x) \
|
2007-01-29 16:19:54 -05:00
|
|
|
ufs_inode_getfrag(inode, x, fragment, uspi->s_fpb, &err, NULL, NULL,\
|
|
|
|
bh_result->b_page)
|
2005-04-16 18:20:36 -04:00
|
|
|
#define GET_INDIRECT_DATABLOCK(x) \
|
2006-06-25 08:47:27 -04:00
|
|
|
ufs_inode_getblock(inode, bh, x, fragment, \
|
[PATCH] fix garbage instead of zeroes in UFS
Looks like this is the problem, which point Al Viro some time ago:
ufs's get_block callback allocates 16k of disk at a time, and links that
entire 16k into the file's metadata. But because get_block is called for only
a single buffer_head (a 2k buffer_head in this case?) we are only able to tell
the VFS that this 2k is buffer_new().
So when ufs_getfrag_block() is later called to map some more data in the file,
and when that data resides within the remaining 14k of this fragment,
ufs_getfrag_block() will incorrectly return a !buffer_new() buffer_head.
I don't see _right_ way to do nullification of whole block, if use inode
page cache, some pages may be outside of inode limits (inode size), and
will be lost; if use blockdev page cache it is possible to zero real data,
if later inode page cache will be used.
The simpliest way, as can I see usage of block device page cache, but not only
mark dirty, but also sync it during "nullification". I use my simple tests
collection, which I used for check that create,open,write,read,close works on
ufs, and I see that this patch makes ufs code 18% slower then before.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2007-01-05 19:37:04 -05:00
|
|
|
&err, &phys, &new, bh_result->b_page)
|
2005-04-16 18:20:36 -04:00
|
|
|
#define GET_INDIRECT_PTR(x) \
|
2006-06-25 08:47:27 -04:00
|
|
|
ufs_inode_getblock(inode, bh, x, fragment, \
|
[PATCH] fix garbage instead of zeroes in UFS
Looks like this is the problem, which point Al Viro some time ago:
ufs's get_block callback allocates 16k of disk at a time, and links that
entire 16k into the file's metadata. But because get_block is called for only
a single buffer_head (a 2k buffer_head in this case?) we are only able to tell
the VFS that this 2k is buffer_new().
So when ufs_getfrag_block() is later called to map some more data in the file,
and when that data resides within the remaining 14k of this fragment,
ufs_getfrag_block() will incorrectly return a !buffer_new() buffer_head.
I don't see _right_ way to do nullification of whole block, if use inode
page cache, some pages may be outside of inode limits (inode size), and
will be lost; if use blockdev page cache it is possible to zero real data,
if later inode page cache will be used.
The simpliest way, as can I see usage of block device page cache, but not only
mark dirty, but also sync it during "nullification". I use my simple tests
collection, which I used for check that create,open,write,read,close works on
ufs, and I see that this patch makes ufs code 18% slower then before.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2007-01-05 19:37:04 -05:00
|
|
|
&err, NULL, NULL, NULL)
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
if (ptr < UFS_NDIR_FRAGMENT) {
|
|
|
|
bh = GET_INODE_DATABLOCK(ptr);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ptr -= UFS_NDIR_FRAGMENT;
|
|
|
|
if (ptr < (1 << (uspi->s_apbshift + uspi->s_fpbshift))) {
|
|
|
|
bh = GET_INODE_PTR(UFS_IND_FRAGMENT + (ptr >> uspi->s_apbshift));
|
|
|
|
goto get_indirect;
|
|
|
|
}
|
|
|
|
ptr -= 1 << (uspi->s_apbshift + uspi->s_fpbshift);
|
|
|
|
if (ptr < (1 << (uspi->s_2apbshift + uspi->s_fpbshift))) {
|
|
|
|
bh = GET_INODE_PTR(UFS_DIND_FRAGMENT + (ptr >> uspi->s_2apbshift));
|
|
|
|
goto get_double;
|
|
|
|
}
|
|
|
|
ptr -= 1 << (uspi->s_2apbshift + uspi->s_fpbshift);
|
|
|
|
bh = GET_INODE_PTR(UFS_TIND_FRAGMENT + (ptr >> uspi->s_3apbshift));
|
|
|
|
bh = GET_INDIRECT_PTR((ptr >> uspi->s_2apbshift) & uspi->s_apbmask);
|
|
|
|
get_double:
|
|
|
|
bh = GET_INDIRECT_PTR((ptr >> uspi->s_apbshift) & uspi->s_apbmask);
|
|
|
|
get_indirect:
|
|
|
|
bh = GET_INDIRECT_DATABLOCK(ptr & uspi->s_apbmask);
|
|
|
|
|
|
|
|
#undef GET_INODE_DATABLOCK
|
|
|
|
#undef GET_INODE_PTR
|
|
|
|
#undef GET_INDIRECT_DATABLOCK
|
|
|
|
#undef GET_INDIRECT_PTR
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (err)
|
|
|
|
goto abort;
|
|
|
|
if (new)
|
|
|
|
set_buffer_new(bh_result);
|
|
|
|
map_bh(bh_result, sb, phys);
|
|
|
|
abort:
|
|
|
|
unlock_kernel();
|
|
|
|
return err;
|
|
|
|
|
|
|
|
abort_negative:
|
|
|
|
ufs_warning(sb, "ufs_get_block", "block < 0");
|
|
|
|
goto abort;
|
|
|
|
|
|
|
|
abort_too_big:
|
|
|
|
ufs_warning(sb, "ufs_get_block", "block > big");
|
|
|
|
goto abort;
|
|
|
|
}
|
|
|
|
|
2006-06-25 08:47:32 -04:00
|
|
|
static struct buffer_head *ufs_getfrag(struct inode *inode,
|
|
|
|
unsigned int fragment,
|
|
|
|
int create, int *err)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
struct buffer_head dummy;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
dummy.b_state = 0;
|
|
|
|
dummy.b_blocknr = -1000;
|
|
|
|
error = ufs_getfrag_block(inode, fragment, &dummy, create);
|
|
|
|
*err = error;
|
|
|
|
if (!error && buffer_mapped(&dummy)) {
|
|
|
|
struct buffer_head *bh;
|
|
|
|
bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
|
|
|
|
if (buffer_new(&dummy)) {
|
|
|
|
memset(bh->b_data, 0, inode->i_sb->s_blocksize);
|
|
|
|
set_buffer_uptodate(bh);
|
|
|
|
mark_buffer_dirty(bh);
|
|
|
|
}
|
|
|
|
return bh;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct buffer_head * ufs_bread (struct inode * inode, unsigned fragment,
|
|
|
|
int create, int * err)
|
|
|
|
{
|
|
|
|
struct buffer_head * bh;
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("ENTER, ino %lu, fragment %u\n", inode->i_ino, fragment);
|
2005-04-16 18:20:36 -04:00
|
|
|
bh = ufs_getfrag (inode, fragment, create, err);
|
|
|
|
if (!bh || buffer_uptodate(bh))
|
|
|
|
return bh;
|
|
|
|
ll_rw_block (READ, 1, &bh);
|
|
|
|
wait_on_buffer (bh);
|
|
|
|
if (buffer_uptodate(bh))
|
|
|
|
return bh;
|
|
|
|
brelse (bh);
|
|
|
|
*err = -EIO;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ufs_writepage(struct page *page, struct writeback_control *wbc)
|
|
|
|
{
|
|
|
|
return block_write_full_page(page,ufs_getfrag_block,wbc);
|
|
|
|
}
|
2007-10-16 04:25:19 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
static int ufs_readpage(struct file *file, struct page *page)
|
|
|
|
{
|
|
|
|
return block_read_full_page(page,ufs_getfrag_block);
|
|
|
|
}
|
2007-10-16 04:25:19 -04:00
|
|
|
|
|
|
|
int __ufs_write_begin(struct file *file, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned flags,
|
|
|
|
struct page **pagep, void **fsdata)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2007-10-16 04:25:19 -04:00
|
|
|
return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
|
|
|
|
ufs_getfrag_block);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
2007-10-16 04:25:19 -04:00
|
|
|
|
|
|
|
static int ufs_write_begin(struct file *file, struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned flags,
|
|
|
|
struct page **pagep, void **fsdata)
|
|
|
|
{
|
|
|
|
*pagep = NULL;
|
|
|
|
return __ufs_write_begin(file, mapping, pos, len, flags, pagep, fsdata);
|
|
|
|
}
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
static sector_t ufs_bmap(struct address_space *mapping, sector_t block)
|
|
|
|
{
|
|
|
|
return generic_block_bmap(mapping,block,ufs_getfrag_block);
|
|
|
|
}
|
2007-10-16 04:25:19 -04:00
|
|
|
|
2006-06-28 07:26:44 -04:00
|
|
|
const struct address_space_operations ufs_aops = {
|
2005-04-16 18:20:36 -04:00
|
|
|
.readpage = ufs_readpage,
|
|
|
|
.writepage = ufs_writepage,
|
|
|
|
.sync_page = block_sync_page,
|
2007-10-16 04:25:19 -04:00
|
|
|
.write_begin = ufs_write_begin,
|
|
|
|
.write_end = generic_write_end,
|
2005-04-16 18:20:36 -04:00
|
|
|
.bmap = ufs_bmap
|
|
|
|
};
|
|
|
|
|
2006-06-25 08:47:21 -04:00
|
|
|
static void ufs_set_inode_ops(struct inode *inode)
|
|
|
|
{
|
|
|
|
if (S_ISREG(inode->i_mode)) {
|
|
|
|
inode->i_op = &ufs_file_inode_operations;
|
|
|
|
inode->i_fop = &ufs_file_operations;
|
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
|
|
|
} else if (S_ISDIR(inode->i_mode)) {
|
|
|
|
inode->i_op = &ufs_dir_inode_operations;
|
|
|
|
inode->i_fop = &ufs_dir_operations;
|
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
|
|
|
} else if (S_ISLNK(inode->i_mode)) {
|
|
|
|
if (!inode->i_blocks)
|
|
|
|
inode->i_op = &ufs_fast_symlink_inode_operations;
|
|
|
|
else {
|
|
|
|
inode->i_op = &page_symlink_inode_operations;
|
|
|
|
inode->i_mapping->a_ops = &ufs_aops;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
init_special_inode(inode, inode->i_mode,
|
|
|
|
ufs_get_inode_dev(inode->i_sb, UFS_I(inode)));
|
|
|
|
}
|
|
|
|
|
2007-04-17 01:53:24 -04:00
|
|
|
static int ufs1_read_inode(struct inode *inode, struct ufs_inode *ufs_inode)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
2006-06-27 05:53:59 -04:00
|
|
|
struct super_block *sb = inode->i_sb;
|
2005-04-16 18:20:36 -04:00
|
|
|
mode_t mode;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy data to the in-core inode.
|
|
|
|
*/
|
|
|
|
inode->i_mode = mode = fs16_to_cpu(sb, ufs_inode->ui_mode);
|
|
|
|
inode->i_nlink = fs16_to_cpu(sb, ufs_inode->ui_nlink);
|
2007-04-17 01:53:24 -04:00
|
|
|
if (inode->i_nlink == 0) {
|
2005-04-16 18:20:36 -04:00
|
|
|
ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
|
2007-04-17 01:53:24 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Linux now has 32-bit uid and gid, so we can support EFT.
|
|
|
|
*/
|
|
|
|
inode->i_uid = ufs_get_inode_uid(sb, ufs_inode);
|
|
|
|
inode->i_gid = ufs_get_inode_gid(sb, ufs_inode);
|
|
|
|
|
|
|
|
inode->i_size = fs64_to_cpu(sb, ufs_inode->ui_size);
|
|
|
|
inode->i_atime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_atime.tv_sec);
|
|
|
|
inode->i_ctime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_ctime.tv_sec);
|
|
|
|
inode->i_mtime.tv_sec = fs32_to_cpu(sb, ufs_inode->ui_mtime.tv_sec);
|
|
|
|
inode->i_mtime.tv_nsec = 0;
|
|
|
|
inode->i_atime.tv_nsec = 0;
|
|
|
|
inode->i_ctime.tv_nsec = 0;
|
|
|
|
inode->i_blocks = fs32_to_cpu(sb, ufs_inode->ui_blocks);
|
2007-02-12 03:54:31 -05:00
|
|
|
inode->i_generation = fs32_to_cpu(sb, ufs_inode->ui_gen);
|
2005-04-16 18:20:36 -04:00
|
|
|
ufsi->i_flags = fs32_to_cpu(sb, ufs_inode->ui_flags);
|
|
|
|
ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
|
|
|
|
ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
|
2006-06-27 05:53:59 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR); i++)
|
|
|
|
ufsi->i_u1.i_data[i] = ufs_inode->ui_u2.ui_addr.ui_db[i];
|
2006-06-25 08:47:25 -04:00
|
|
|
} else {
|
2005-04-16 18:20:36 -04:00
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR) * 4; i++)
|
|
|
|
ufsi->i_u1.i_symlink[i] = ufs_inode->ui_u2.ui_symlink[i];
|
|
|
|
}
|
2007-04-17 01:53:24 -04:00
|
|
|
return 0;
|
2006-06-27 05:53:59 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2007-04-17 01:53:24 -04:00
|
|
|
static int ufs2_read_inode(struct inode *inode, struct ufs2_inode *ufs2_inode)
|
2006-06-27 05:53:59 -04:00
|
|
|
{
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
mode_t mode;
|
|
|
|
unsigned i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("Reading ufs2 inode, ino %lu\n", inode->i_ino);
|
2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* Copy data to the in-core inode.
|
|
|
|
*/
|
|
|
|
inode->i_mode = mode = fs16_to_cpu(sb, ufs2_inode->ui_mode);
|
|
|
|
inode->i_nlink = fs16_to_cpu(sb, ufs2_inode->ui_nlink);
|
2007-04-17 01:53:24 -04:00
|
|
|
if (inode->i_nlink == 0) {
|
2005-04-16 18:20:36 -04:00
|
|
|
ufs_error (sb, "ufs_read_inode", "inode %lu has zero nlink\n", inode->i_ino);
|
2007-04-17 01:53:24 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Linux now has 32-bit uid and gid, so we can support EFT.
|
|
|
|
*/
|
|
|
|
inode->i_uid = fs32_to_cpu(sb, ufs2_inode->ui_uid);
|
|
|
|
inode->i_gid = fs32_to_cpu(sb, ufs2_inode->ui_gid);
|
|
|
|
|
|
|
|
inode->i_size = fs64_to_cpu(sb, ufs2_inode->ui_size);
|
2007-03-16 17:38:07 -04:00
|
|
|
inode->i_atime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_atime);
|
|
|
|
inode->i_ctime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_ctime);
|
|
|
|
inode->i_mtime.tv_sec = fs64_to_cpu(sb, ufs2_inode->ui_mtime);
|
|
|
|
inode->i_atime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_atimensec);
|
|
|
|
inode->i_ctime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_ctimensec);
|
|
|
|
inode->i_mtime.tv_nsec = fs32_to_cpu(sb, ufs2_inode->ui_mtimensec);
|
2005-04-16 18:20:36 -04:00
|
|
|
inode->i_blocks = fs64_to_cpu(sb, ufs2_inode->ui_blocks);
|
2007-02-12 03:54:31 -05:00
|
|
|
inode->i_generation = fs32_to_cpu(sb, ufs2_inode->ui_gen);
|
2005-04-16 18:20:36 -04:00
|
|
|
ufsi->i_flags = fs32_to_cpu(sb, ufs2_inode->ui_flags);
|
|
|
|
/*
|
|
|
|
ufsi->i_shadow = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_shadow);
|
|
|
|
ufsi->i_oeftflag = fs32_to_cpu(sb, ufs_inode->ui_u3.ui_sun.ui_oeftflag);
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (S_ISCHR(mode) || S_ISBLK(mode) || inode->i_blocks) {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR); i++)
|
|
|
|
ufsi->i_u1.u2_i_data[i] =
|
|
|
|
ufs2_inode->ui_u2.ui_addr.ui_db[i];
|
2006-06-27 05:53:59 -04:00
|
|
|
} else {
|
2005-04-16 18:20:36 -04:00
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR) * 4; i++)
|
|
|
|
ufsi->i_u1.i_symlink[i] = ufs2_inode->ui_u2.ui_symlink[i];
|
|
|
|
}
|
2007-04-17 01:53:24 -04:00
|
|
|
return 0;
|
2006-06-27 05:53:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void ufs_read_inode(struct inode * inode)
|
|
|
|
{
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
|
|
|
struct super_block * sb;
|
|
|
|
struct ufs_sb_private_info * uspi;
|
|
|
|
struct buffer_head * bh;
|
2007-04-17 01:53:24 -04:00
|
|
|
int err;
|
2006-06-27 05:53:59 -04:00
|
|
|
|
|
|
|
UFSD("ENTER, ino %lu\n", inode->i_ino);
|
|
|
|
|
|
|
|
sb = inode->i_sb;
|
|
|
|
uspi = UFS_SB(sb)->s_uspi;
|
|
|
|
|
|
|
|
if (inode->i_ino < UFS_ROOTINO ||
|
|
|
|
inode->i_ino > (uspi->s_ncg * uspi->s_ipg)) {
|
|
|
|
ufs_warning(sb, "ufs_read_inode", "bad inode number (%lu)\n",
|
|
|
|
inode->i_ino);
|
|
|
|
goto bad_inode;
|
|
|
|
}
|
|
|
|
|
|
|
|
bh = sb_bread(sb, uspi->s_sbbase + ufs_inotofsba(inode->i_ino));
|
|
|
|
if (!bh) {
|
|
|
|
ufs_warning(sb, "ufs_read_inode", "unable to read inode %lu\n",
|
|
|
|
inode->i_ino);
|
|
|
|
goto bad_inode;
|
|
|
|
}
|
|
|
|
if ((UFS_SB(sb)->s_flags & UFS_TYPE_MASK) == UFS_TYPE_UFS2) {
|
|
|
|
struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
|
|
|
|
|
2007-04-17 01:53:24 -04:00
|
|
|
err = ufs2_read_inode(inode,
|
|
|
|
ufs2_inode + ufs_inotofsbo(inode->i_ino));
|
2006-06-27 05:53:59 -04:00
|
|
|
} else {
|
|
|
|
struct ufs_inode *ufs_inode = (struct ufs_inode *)bh->b_data;
|
|
|
|
|
2007-04-17 01:53:24 -04:00
|
|
|
err = ufs1_read_inode(inode,
|
|
|
|
ufs_inode + ufs_inotofsbo(inode->i_ino));
|
2006-06-27 05:53:59 -04:00
|
|
|
}
|
|
|
|
|
2007-04-17 01:53:24 -04:00
|
|
|
if (err)
|
|
|
|
goto bad_inode;
|
2006-06-27 05:53:59 -04:00
|
|
|
inode->i_version++;
|
|
|
|
ufsi->i_lastfrag =
|
|
|
|
(inode->i_size + uspi->s_fsize - 1) >> uspi->s_fshift;
|
|
|
|
ufsi->i_dir_start_lookup = 0;
|
2005-04-16 18:20:36 -04:00
|
|
|
ufsi->i_osync = 0;
|
|
|
|
|
2006-06-25 08:47:21 -04:00
|
|
|
ufs_set_inode_ops(inode);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
brelse(bh);
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("EXIT\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return;
|
2006-06-27 05:53:59 -04:00
|
|
|
|
|
|
|
bad_inode:
|
|
|
|
make_bad_inode(inode);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2007-02-12 03:54:31 -05:00
|
|
|
static void ufs1_update_inode(struct inode *inode, struct ufs_inode *ufs_inode)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2007-02-12 03:54:31 -05:00
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
|
|
|
unsigned i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
|
|
|
|
ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
|
|
|
|
|
|
|
|
ufs_set_inode_uid(sb, ufs_inode, inode->i_uid);
|
|
|
|
ufs_set_inode_gid(sb, ufs_inode, inode->i_gid);
|
|
|
|
|
|
|
|
ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
|
|
|
|
ufs_inode->ui_atime.tv_sec = cpu_to_fs32(sb, inode->i_atime.tv_sec);
|
|
|
|
ufs_inode->ui_atime.tv_usec = 0;
|
|
|
|
ufs_inode->ui_ctime.tv_sec = cpu_to_fs32(sb, inode->i_ctime.tv_sec);
|
|
|
|
ufs_inode->ui_ctime.tv_usec = 0;
|
|
|
|
ufs_inode->ui_mtime.tv_sec = cpu_to_fs32(sb, inode->i_mtime.tv_sec);
|
|
|
|
ufs_inode->ui_mtime.tv_usec = 0;
|
|
|
|
ufs_inode->ui_blocks = cpu_to_fs32(sb, inode->i_blocks);
|
|
|
|
ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
|
2007-02-12 03:54:31 -05:00
|
|
|
ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2007-02-12 03:54:31 -05:00
|
|
|
if ((UFS_SB(sb)->s_flags & UFS_UID_MASK) == UFS_UID_EFT) {
|
2005-04-16 18:20:36 -04:00
|
|
|
ufs_inode->ui_u3.ui_sun.ui_shadow = cpu_to_fs32(sb, ufsi->i_shadow);
|
|
|
|
ufs_inode->ui_u3.ui_sun.ui_oeftflag = cpu_to_fs32(sb, ufsi->i_oeftflag);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
|
|
|
|
/* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
|
|
|
|
ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.i_data[0];
|
|
|
|
} else if (inode->i_blocks) {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR); i++)
|
|
|
|
ufs_inode->ui_u2.ui_addr.ui_db[i] = ufsi->i_u1.i_data[i];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR) * 4; i++)
|
|
|
|
ufs_inode->ui_u2.ui_symlink[i] = ufsi->i_u1.i_symlink[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inode->i_nlink)
|
|
|
|
memset (ufs_inode, 0, sizeof(struct ufs_inode));
|
2007-02-12 03:54:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ufs2_update_inode(struct inode *inode, struct ufs2_inode *ufs_inode)
|
|
|
|
{
|
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_inode_info *ufsi = UFS_I(inode);
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
UFSD("ENTER\n");
|
|
|
|
ufs_inode->ui_mode = cpu_to_fs16(sb, inode->i_mode);
|
|
|
|
ufs_inode->ui_nlink = cpu_to_fs16(sb, inode->i_nlink);
|
|
|
|
|
|
|
|
ufs_inode->ui_uid = cpu_to_fs32(sb, inode->i_uid);
|
|
|
|
ufs_inode->ui_gid = cpu_to_fs32(sb, inode->i_gid);
|
|
|
|
|
|
|
|
ufs_inode->ui_size = cpu_to_fs64(sb, inode->i_size);
|
2007-03-16 17:38:07 -04:00
|
|
|
ufs_inode->ui_atime = cpu_to_fs64(sb, inode->i_atime.tv_sec);
|
|
|
|
ufs_inode->ui_atimensec = cpu_to_fs32(sb, inode->i_atime.tv_nsec);
|
|
|
|
ufs_inode->ui_ctime = cpu_to_fs64(sb, inode->i_ctime.tv_sec);
|
|
|
|
ufs_inode->ui_ctimensec = cpu_to_fs32(sb, inode->i_ctime.tv_nsec);
|
|
|
|
ufs_inode->ui_mtime = cpu_to_fs64(sb, inode->i_mtime.tv_sec);
|
|
|
|
ufs_inode->ui_mtimensec = cpu_to_fs32(sb, inode->i_mtime.tv_nsec);
|
2007-02-12 03:54:31 -05:00
|
|
|
|
|
|
|
ufs_inode->ui_blocks = cpu_to_fs64(sb, inode->i_blocks);
|
|
|
|
ufs_inode->ui_flags = cpu_to_fs32(sb, ufsi->i_flags);
|
|
|
|
ufs_inode->ui_gen = cpu_to_fs32(sb, inode->i_generation);
|
|
|
|
|
|
|
|
if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
|
|
|
|
/* ufs_inode->ui_u2.ui_addr.ui_db[0] = cpu_to_fs32(sb, inode->i_rdev); */
|
|
|
|
ufs_inode->ui_u2.ui_addr.ui_db[0] = ufsi->i_u1.u2_i_data[0];
|
|
|
|
} else if (inode->i_blocks) {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR); i++)
|
|
|
|
ufs_inode->ui_u2.ui_addr.ui_db[i] = ufsi->i_u1.u2_i_data[i];
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < (UFS_NDADDR + UFS_NINDIR) * 4; i++)
|
|
|
|
ufs_inode->ui_u2.ui_symlink[i] = ufsi->i_u1.i_symlink[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inode->i_nlink)
|
|
|
|
memset (ufs_inode, 0, sizeof(struct ufs2_inode));
|
|
|
|
UFSD("EXIT\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ufs_update_inode(struct inode * inode, int do_sync)
|
|
|
|
{
|
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
|
|
|
|
struct buffer_head * bh;
|
|
|
|
|
|
|
|
UFSD("ENTER, ino %lu\n", inode->i_ino);
|
|
|
|
|
|
|
|
if (inode->i_ino < UFS_ROOTINO ||
|
|
|
|
inode->i_ino > (uspi->s_ncg * uspi->s_ipg)) {
|
|
|
|
ufs_warning (sb, "ufs_read_inode", "bad inode number (%lu)\n", inode->i_ino);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bh = sb_bread(sb, ufs_inotofsba(inode->i_ino));
|
|
|
|
if (!bh) {
|
|
|
|
ufs_warning (sb, "ufs_read_inode", "unable to read inode %lu\n", inode->i_ino);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (uspi->fs_magic == UFS2_MAGIC) {
|
|
|
|
struct ufs2_inode *ufs2_inode = (struct ufs2_inode *)bh->b_data;
|
|
|
|
|
|
|
|
ufs2_update_inode(inode,
|
|
|
|
ufs2_inode + ufs_inotofsbo(inode->i_ino));
|
|
|
|
} else {
|
|
|
|
struct ufs_inode *ufs_inode = (struct ufs_inode *) bh->b_data;
|
|
|
|
|
|
|
|
ufs1_update_inode(inode, ufs_inode + ufs_inotofsbo(inode->i_ino));
|
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
mark_buffer_dirty(bh);
|
|
|
|
if (do_sync)
|
|
|
|
sync_dirty_buffer(bh);
|
|
|
|
brelse (bh);
|
|
|
|
|
2006-06-25 08:47:24 -04:00
|
|
|
UFSD("EXIT\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ufs_write_inode (struct inode * inode, int wait)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
lock_kernel();
|
|
|
|
ret = ufs_update_inode (inode, wait);
|
|
|
|
unlock_kernel();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ufs_sync_inode (struct inode *inode)
|
|
|
|
{
|
|
|
|
return ufs_update_inode (inode, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ufs_delete_inode (struct inode * inode)
|
|
|
|
{
|
2006-07-01 07:36:24 -04:00
|
|
|
loff_t old_i_size;
|
|
|
|
|
2005-09-09 16:01:31 -04:00
|
|
|
truncate_inode_pages(&inode->i_data, 0);
|
2007-04-17 01:53:24 -04:00
|
|
|
if (is_bad_inode(inode))
|
|
|
|
goto no_delete;
|
2005-04-16 18:20:36 -04:00
|
|
|
/*UFS_I(inode)->i_dtime = CURRENT_TIME;*/
|
|
|
|
lock_kernel();
|
|
|
|
mark_inode_dirty(inode);
|
|
|
|
ufs_update_inode(inode, IS_SYNC(inode));
|
2006-07-01 07:36:24 -04:00
|
|
|
old_i_size = inode->i_size;
|
2005-04-16 18:20:36 -04:00
|
|
|
inode->i_size = 0;
|
2006-07-01 07:36:24 -04:00
|
|
|
if (inode->i_blocks && ufs_truncate(inode, old_i_size))
|
|
|
|
ufs_warning(inode->i_sb, __FUNCTION__, "ufs_truncate failed\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
ufs_free_inode (inode);
|
|
|
|
unlock_kernel();
|
2007-04-17 01:53:24 -04:00
|
|
|
return;
|
|
|
|
no_delete:
|
|
|
|
clear_inode(inode); /* We must guarantee clearing of inode... */
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|