提交 725bebb2 编写于 作者: A Al Viro

[readdir] convert ext4

and trim the living hell out bogosities in inline dir case
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 4deb398a
...@@ -29,8 +29,7 @@ ...@@ -29,8 +29,7 @@
#include "ext4.h" #include "ext4.h"
#include "xattr.h" #include "xattr.h"
static int ext4_dx_readdir(struct file *filp, static int ext4_dx_readdir(struct file *, struct dir_context *);
void *dirent, filldir_t filldir);
/** /**
* Check if the given dir-inode refers to an htree-indexed directory * Check if the given dir-inode refers to an htree-indexed directory
...@@ -103,60 +102,56 @@ int __ext4_check_dir_entry(const char *function, unsigned int line, ...@@ -103,60 +102,56 @@ int __ext4_check_dir_entry(const char *function, unsigned int line,
return 1; return 1;
} }
static int ext4_readdir(struct file *filp, static int ext4_readdir(struct file *file, struct dir_context *ctx)
void *dirent, filldir_t filldir)
{ {
int error = 0;
unsigned int offset; unsigned int offset;
int i, stored; int i, stored;
struct ext4_dir_entry_2 *de; struct ext4_dir_entry_2 *de;
int err; int err;
struct inode *inode = file_inode(filp); struct inode *inode = file_inode(file);
struct super_block *sb = inode->i_sb; struct super_block *sb = inode->i_sb;
int ret = 0;
int dir_has_error = 0; int dir_has_error = 0;
if (is_dx_dir(inode)) { if (is_dx_dir(inode)) {
err = ext4_dx_readdir(filp, dirent, filldir); err = ext4_dx_readdir(file, ctx);
if (err != ERR_BAD_DX_DIR) { if (err != ERR_BAD_DX_DIR) {
ret = err; return err;
goto out;
} }
/* /*
* We don't set the inode dirty flag since it's not * We don't set the inode dirty flag since it's not
* critical that it get flushed back to the disk. * critical that it get flushed back to the disk.
*/ */
ext4_clear_inode_flag(file_inode(filp), ext4_clear_inode_flag(file_inode(file),
EXT4_INODE_INDEX); EXT4_INODE_INDEX);
} }
if (ext4_has_inline_data(inode)) { if (ext4_has_inline_data(inode)) {
int has_inline_data = 1; int has_inline_data = 1;
ret = ext4_read_inline_dir(filp, dirent, filldir, int ret = ext4_read_inline_dir(file, ctx,
&has_inline_data); &has_inline_data);
if (has_inline_data) if (has_inline_data)
return ret; return ret;
} }
stored = 0; stored = 0;
offset = filp->f_pos & (sb->s_blocksize - 1); offset = ctx->pos & (sb->s_blocksize - 1);
while (!error && !stored && filp->f_pos < inode->i_size) { while (ctx->pos < inode->i_size) {
struct ext4_map_blocks map; struct ext4_map_blocks map;
struct buffer_head *bh = NULL; struct buffer_head *bh = NULL;
map.m_lblk = filp->f_pos >> EXT4_BLOCK_SIZE_BITS(sb); map.m_lblk = ctx->pos >> EXT4_BLOCK_SIZE_BITS(sb);
map.m_len = 1; map.m_len = 1;
err = ext4_map_blocks(NULL, inode, &map, 0); err = ext4_map_blocks(NULL, inode, &map, 0);
if (err > 0) { if (err > 0) {
pgoff_t index = map.m_pblk >> pgoff_t index = map.m_pblk >>
(PAGE_CACHE_SHIFT - inode->i_blkbits); (PAGE_CACHE_SHIFT - inode->i_blkbits);
if (!ra_has_index(&filp->f_ra, index)) if (!ra_has_index(&file->f_ra, index))
page_cache_sync_readahead( page_cache_sync_readahead(
sb->s_bdev->bd_inode->i_mapping, sb->s_bdev->bd_inode->i_mapping,
&filp->f_ra, filp, &file->f_ra, file,
index, 1); index, 1);
filp->f_ra.prev_pos = (loff_t)index << PAGE_CACHE_SHIFT; file->f_ra.prev_pos = (loff_t)index << PAGE_CACHE_SHIFT;
bh = ext4_bread(NULL, inode, map.m_lblk, 0, &err); bh = ext4_bread(NULL, inode, map.m_lblk, 0, &err);
} }
...@@ -166,16 +161,16 @@ static int ext4_readdir(struct file *filp, ...@@ -166,16 +161,16 @@ static int ext4_readdir(struct file *filp,
*/ */
if (!bh) { if (!bh) {
if (!dir_has_error) { if (!dir_has_error) {
EXT4_ERROR_FILE(filp, 0, EXT4_ERROR_FILE(file, 0,
"directory contains a " "directory contains a "
"hole at offset %llu", "hole at offset %llu",
(unsigned long long) filp->f_pos); (unsigned long long) ctx->pos);
dir_has_error = 1; dir_has_error = 1;
} }
/* corrupt size? Maybe no more blocks to read */ /* corrupt size? Maybe no more blocks to read */
if (filp->f_pos > inode->i_blocks << 9) if (ctx->pos > inode->i_blocks << 9)
break; break;
filp->f_pos += sb->s_blocksize - offset; ctx->pos += sb->s_blocksize - offset;
continue; continue;
} }
...@@ -183,21 +178,20 @@ static int ext4_readdir(struct file *filp, ...@@ -183,21 +178,20 @@ static int ext4_readdir(struct file *filp,
if (!buffer_verified(bh) && if (!buffer_verified(bh) &&
!ext4_dirent_csum_verify(inode, !ext4_dirent_csum_verify(inode,
(struct ext4_dir_entry *)bh->b_data)) { (struct ext4_dir_entry *)bh->b_data)) {
EXT4_ERROR_FILE(filp, 0, "directory fails checksum " EXT4_ERROR_FILE(file, 0, "directory fails checksum "
"at offset %llu", "at offset %llu",
(unsigned long long)filp->f_pos); (unsigned long long)ctx->pos);
filp->f_pos += sb->s_blocksize - offset; ctx->pos += sb->s_blocksize - offset;
brelse(bh); brelse(bh);
continue; continue;
} }
set_buffer_verified(bh); set_buffer_verified(bh);
revalidate:
/* If the dir block has changed since the last call to /* If the dir block has changed since the last call to
* readdir(2), then we might be pointing to an invalid * readdir(2), then we might be pointing to an invalid
* dirent right now. Scan from the start of the block * dirent right now. Scan from the start of the block
* to make sure. */ * to make sure. */
if (filp->f_version != inode->i_version) { if (file->f_version != inode->i_version) {
for (i = 0; i < sb->s_blocksize && i < offset; ) { for (i = 0; i < sb->s_blocksize && i < offset; ) {
de = (struct ext4_dir_entry_2 *) de = (struct ext4_dir_entry_2 *)
(bh->b_data + i); (bh->b_data + i);
...@@ -214,57 +208,46 @@ static int ext4_readdir(struct file *filp, ...@@ -214,57 +208,46 @@ static int ext4_readdir(struct file *filp,
sb->s_blocksize); sb->s_blocksize);
} }
offset = i; offset = i;
filp->f_pos = (filp->f_pos & ~(sb->s_blocksize - 1)) ctx->pos = (ctx->pos & ~(sb->s_blocksize - 1))
| offset; | offset;
filp->f_version = inode->i_version; file->f_version = inode->i_version;
} }
while (!error && filp->f_pos < inode->i_size while (ctx->pos < inode->i_size
&& offset < sb->s_blocksize) { && offset < sb->s_blocksize) {
de = (struct ext4_dir_entry_2 *) (bh->b_data + offset); de = (struct ext4_dir_entry_2 *) (bh->b_data + offset);
if (ext4_check_dir_entry(inode, filp, de, bh, if (ext4_check_dir_entry(inode, file, de, bh,
bh->b_data, bh->b_size, bh->b_data, bh->b_size,
offset)) { offset)) {
/* /*
* On error, skip the f_pos to the next block * On error, skip to the next block
*/ */
filp->f_pos = (filp->f_pos | ctx->pos = (ctx->pos |
(sb->s_blocksize - 1)) + 1; (sb->s_blocksize - 1)) + 1;
brelse(bh); break;
ret = stored;
goto out;
} }
offset += ext4_rec_len_from_disk(de->rec_len, offset += ext4_rec_len_from_disk(de->rec_len,
sb->s_blocksize); sb->s_blocksize);
if (le32_to_cpu(de->inode)) { if (le32_to_cpu(de->inode)) {
/* We might block in the next section if (!dir_emit(ctx, de->name,
* if the data destination is
* currently swapped out. So, use a
* version stamp to detect whether or
* not the directory has been modified
* during the copy operation.
*/
u64 version = filp->f_version;
error = filldir(dirent, de->name,
de->name_len, de->name_len,
filp->f_pos,
le32_to_cpu(de->inode), le32_to_cpu(de->inode),
get_dtype(sb, de->file_type)); get_dtype(sb, de->file_type))) {
if (error) brelse(bh);
break; return 0;
if (version != filp->f_version) }
goto revalidate;
stored++;
} }
filp->f_pos += ext4_rec_len_from_disk(de->rec_len, ctx->pos += ext4_rec_len_from_disk(de->rec_len,
sb->s_blocksize); sb->s_blocksize);
} }
offset = 0; offset = 0;
brelse(bh); brelse(bh);
if (ctx->pos < inode->i_size) {
if (!dir_relax(inode))
return 0;
}
} }
out: return 0;
return ret;
} }
static inline int is_32bit_api(void) static inline int is_32bit_api(void)
...@@ -492,16 +475,12 @@ int ext4_htree_store_dirent(struct file *dir_file, __u32 hash, ...@@ -492,16 +475,12 @@ int ext4_htree_store_dirent(struct file *dir_file, __u32 hash,
* for all entres on the fname linked list. (Normally there is only * for all entres on the fname linked list. (Normally there is only
* one entry on the linked list, unless there are 62 bit hash collisions.) * one entry on the linked list, unless there are 62 bit hash collisions.)
*/ */
static int call_filldir(struct file *filp, void *dirent, static int call_filldir(struct file *file, struct dir_context *ctx,
filldir_t filldir, struct fname *fname) struct fname *fname)
{ {
struct dir_private_info *info = filp->private_data; struct dir_private_info *info = file->private_data;
loff_t curr_pos; struct inode *inode = file_inode(file);
struct inode *inode = file_inode(filp); struct super_block *sb = inode->i_sb;
struct super_block *sb;
int error;
sb = inode->i_sb;
if (!fname) { if (!fname) {
ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: comm %s: " ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: comm %s: "
...@@ -509,47 +488,44 @@ static int call_filldir(struct file *filp, void *dirent, ...@@ -509,47 +488,44 @@ static int call_filldir(struct file *filp, void *dirent,
inode->i_ino, current->comm); inode->i_ino, current->comm);
return 0; return 0;
} }
curr_pos = hash2pos(filp, fname->hash, fname->minor_hash); ctx->pos = hash2pos(file, fname->hash, fname->minor_hash);
while (fname) { while (fname) {
error = filldir(dirent, fname->name, if (!dir_emit(ctx, fname->name,
fname->name_len, curr_pos, fname->name_len,
fname->inode, fname->inode,
get_dtype(sb, fname->file_type)); get_dtype(sb, fname->file_type))) {
if (error) {
filp->f_pos = curr_pos;
info->extra_fname = fname; info->extra_fname = fname;
return error; return 1;
} }
fname = fname->next; fname = fname->next;
} }
return 0; return 0;
} }
static int ext4_dx_readdir(struct file *filp, static int ext4_dx_readdir(struct file *file, struct dir_context *ctx)
void *dirent, filldir_t filldir)
{ {
struct dir_private_info *info = filp->private_data; struct dir_private_info *info = file->private_data;
struct inode *inode = file_inode(filp); struct inode *inode = file_inode(file);
struct fname *fname; struct fname *fname;
int ret; int ret;
if (!info) { if (!info) {
info = ext4_htree_create_dir_info(filp, filp->f_pos); info = ext4_htree_create_dir_info(file, ctx->pos);
if (!info) if (!info)
return -ENOMEM; return -ENOMEM;
filp->private_data = info; file->private_data = info;
} }
if (filp->f_pos == ext4_get_htree_eof(filp)) if (ctx->pos == ext4_get_htree_eof(file))
return 0; /* EOF */ return 0; /* EOF */
/* Some one has messed with f_pos; reset the world */ /* Some one has messed with f_pos; reset the world */
if (info->last_pos != filp->f_pos) { if (info->last_pos != ctx->pos) {
free_rb_tree_fname(&info->root); free_rb_tree_fname(&info->root);
info->curr_node = NULL; info->curr_node = NULL;
info->extra_fname = NULL; info->extra_fname = NULL;
info->curr_hash = pos2maj_hash(filp, filp->f_pos); info->curr_hash = pos2maj_hash(file, ctx->pos);
info->curr_minor_hash = pos2min_hash(filp, filp->f_pos); info->curr_minor_hash = pos2min_hash(file, ctx->pos);
} }
/* /*
...@@ -557,7 +533,7 @@ static int ext4_dx_readdir(struct file *filp, ...@@ -557,7 +533,7 @@ static int ext4_dx_readdir(struct file *filp,
* chain, return them first. * chain, return them first.
*/ */
if (info->extra_fname) { if (info->extra_fname) {
if (call_filldir(filp, dirent, filldir, info->extra_fname)) if (call_filldir(file, ctx, info->extra_fname))
goto finished; goto finished;
info->extra_fname = NULL; info->extra_fname = NULL;
goto next_node; goto next_node;
...@@ -571,17 +547,17 @@ static int ext4_dx_readdir(struct file *filp, ...@@ -571,17 +547,17 @@ static int ext4_dx_readdir(struct file *filp,
* cached entries. * cached entries.
*/ */
if ((!info->curr_node) || if ((!info->curr_node) ||
(filp->f_version != inode->i_version)) { (file->f_version != inode->i_version)) {
info->curr_node = NULL; info->curr_node = NULL;
free_rb_tree_fname(&info->root); free_rb_tree_fname(&info->root);
filp->f_version = inode->i_version; file->f_version = inode->i_version;
ret = ext4_htree_fill_tree(filp, info->curr_hash, ret = ext4_htree_fill_tree(file, info->curr_hash,
info->curr_minor_hash, info->curr_minor_hash,
&info->next_hash); &info->next_hash);
if (ret < 0) if (ret < 0)
return ret; return ret;
if (ret == 0) { if (ret == 0) {
filp->f_pos = ext4_get_htree_eof(filp); ctx->pos = ext4_get_htree_eof(file);
break; break;
} }
info->curr_node = rb_first(&info->root); info->curr_node = rb_first(&info->root);
...@@ -590,7 +566,7 @@ static int ext4_dx_readdir(struct file *filp, ...@@ -590,7 +566,7 @@ static int ext4_dx_readdir(struct file *filp,
fname = rb_entry(info->curr_node, struct fname, rb_hash); fname = rb_entry(info->curr_node, struct fname, rb_hash);
info->curr_hash = fname->hash; info->curr_hash = fname->hash;
info->curr_minor_hash = fname->minor_hash; info->curr_minor_hash = fname->minor_hash;
if (call_filldir(filp, dirent, filldir, fname)) if (call_filldir(file, ctx, fname))
break; break;
next_node: next_node:
info->curr_node = rb_next(info->curr_node); info->curr_node = rb_next(info->curr_node);
...@@ -601,7 +577,7 @@ static int ext4_dx_readdir(struct file *filp, ...@@ -601,7 +577,7 @@ static int ext4_dx_readdir(struct file *filp,
info->curr_minor_hash = fname->minor_hash; info->curr_minor_hash = fname->minor_hash;
} else { } else {
if (info->next_hash == ~0) { if (info->next_hash == ~0) {
filp->f_pos = ext4_get_htree_eof(filp); ctx->pos = ext4_get_htree_eof(file);
break; break;
} }
info->curr_hash = info->next_hash; info->curr_hash = info->next_hash;
...@@ -609,7 +585,7 @@ static int ext4_dx_readdir(struct file *filp, ...@@ -609,7 +585,7 @@ static int ext4_dx_readdir(struct file *filp,
} }
} }
finished: finished:
info->last_pos = filp->f_pos; info->last_pos = ctx->pos;
return 0; return 0;
} }
...@@ -624,7 +600,7 @@ static int ext4_release_dir(struct inode *inode, struct file *filp) ...@@ -624,7 +600,7 @@ static int ext4_release_dir(struct inode *inode, struct file *filp)
const struct file_operations ext4_dir_operations = { const struct file_operations ext4_dir_operations = {
.llseek = ext4_dir_llseek, .llseek = ext4_dir_llseek,
.read = generic_read_dir, .read = generic_read_dir,
.readdir = ext4_readdir, .iterate = ext4_readdir,
.unlocked_ioctl = ext4_ioctl, .unlocked_ioctl = ext4_ioctl,
#ifdef CONFIG_COMPAT #ifdef CONFIG_COMPAT
.compat_ioctl = ext4_compat_ioctl, .compat_ioctl = ext4_compat_ioctl,
......
...@@ -2515,7 +2515,7 @@ extern int ext4_try_create_inline_dir(handle_t *handle, ...@@ -2515,7 +2515,7 @@ extern int ext4_try_create_inline_dir(handle_t *handle,
struct inode *parent, struct inode *parent,
struct inode *inode); struct inode *inode);
extern int ext4_read_inline_dir(struct file *filp, extern int ext4_read_inline_dir(struct file *filp,
void *dirent, filldir_t filldir, struct dir_context *ctx,
int *has_inline_data); int *has_inline_data);
extern int htree_inlinedir_to_tree(struct file *dir_file, extern int htree_inlinedir_to_tree(struct file *dir_file,
struct inode *dir, ext4_lblk_t block, struct inode *dir, ext4_lblk_t block,
......
...@@ -1404,16 +1404,15 @@ int htree_inlinedir_to_tree(struct file *dir_file, ...@@ -1404,16 +1404,15 @@ int htree_inlinedir_to_tree(struct file *dir_file,
* offset as if '.' and '..' really take place. * offset as if '.' and '..' really take place.
* *
*/ */
int ext4_read_inline_dir(struct file *filp, int ext4_read_inline_dir(struct file *file,
void *dirent, filldir_t filldir, struct dir_context *ctx,
int *has_inline_data) int *has_inline_data)
{ {
int error = 0;
unsigned int offset, parent_ino; unsigned int offset, parent_ino;
int i, stored; int i;
struct ext4_dir_entry_2 *de; struct ext4_dir_entry_2 *de;
struct super_block *sb; struct super_block *sb;
struct inode *inode = file_inode(filp); struct inode *inode = file_inode(file);
int ret, inline_size = 0; int ret, inline_size = 0;
struct ext4_iloc iloc; struct ext4_iloc iloc;
void *dir_buf = NULL; void *dir_buf = NULL;
...@@ -1444,9 +1443,8 @@ int ext4_read_inline_dir(struct file *filp, ...@@ -1444,9 +1443,8 @@ int ext4_read_inline_dir(struct file *filp,
goto out; goto out;
sb = inode->i_sb; sb = inode->i_sb;
stored = 0;
parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode); parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
offset = filp->f_pos; offset = ctx->pos;
/* /*
* dotdot_offset and dotdot_size is the real offset and * dotdot_offset and dotdot_size is the real offset and
...@@ -1460,104 +1458,74 @@ int ext4_read_inline_dir(struct file *filp, ...@@ -1460,104 +1458,74 @@ int ext4_read_inline_dir(struct file *filp,
extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE; extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
extra_size = extra_offset + inline_size; extra_size = extra_offset + inline_size;
while (!error && !stored && filp->f_pos < extra_size) { /*
revalidate: * If the version has changed since the last call to
/* * readdir(2), then we might be pointing to an invalid
* If the version has changed since the last call to * dirent right now. Scan from the start of the inline
* readdir(2), then we might be pointing to an invalid * dir to make sure.
* dirent right now. Scan from the start of the inline */
* dir to make sure. if (file->f_version != inode->i_version) {
*/ for (i = 0; i < extra_size && i < offset;) {
if (filp->f_version != inode->i_version) { /*
for (i = 0; i < extra_size && i < offset;) { * "." is with offset 0 and
/* * ".." is dotdot_offset.
* "." is with offset 0 and */
* ".." is dotdot_offset. if (!i) {
*/ i = dotdot_offset;
if (!i) { continue;
i = dotdot_offset; } else if (i == dotdot_offset) {
continue; i = dotdot_size;
} else if (i == dotdot_offset) {
i = dotdot_size;
continue;
}
/* for other entry, the real offset in
* the buf has to be tuned accordingly.
*/
de = (struct ext4_dir_entry_2 *)
(dir_buf + i - extra_offset);
/* It's too expensive to do a full
* dirent test each time round this
* loop, but we do have to test at
* least that it is non-zero. A
* failure will be detected in the
* dirent test below. */
if (ext4_rec_len_from_disk(de->rec_len,
extra_size) < EXT4_DIR_REC_LEN(1))
break;
i += ext4_rec_len_from_disk(de->rec_len,
extra_size);
}
offset = i;
filp->f_pos = offset;
filp->f_version = inode->i_version;
}
while (!error && filp->f_pos < extra_size) {
if (filp->f_pos == 0) {
error = filldir(dirent, ".", 1, 0, inode->i_ino,
DT_DIR);
if (error)
break;
stored++;
filp->f_pos = dotdot_offset;
continue; continue;
} }
/* for other entry, the real offset in
* the buf has to be tuned accordingly.
*/
de = (struct ext4_dir_entry_2 *)
(dir_buf + i - extra_offset);
/* It's too expensive to do a full
* dirent test each time round this
* loop, but we do have to test at
* least that it is non-zero. A
* failure will be detected in the
* dirent test below. */
if (ext4_rec_len_from_disk(de->rec_len, extra_size)
< EXT4_DIR_REC_LEN(1))
break;
i += ext4_rec_len_from_disk(de->rec_len,
extra_size);
}
offset = i;
ctx->pos = offset;
file->f_version = inode->i_version;
}
if (filp->f_pos == dotdot_offset) { while (ctx->pos < extra_size) {
error = filldir(dirent, "..", 2, if (ctx->pos == 0) {
dotdot_offset, if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
parent_ino, DT_DIR); goto out;
if (error) ctx->pos = dotdot_offset;
break; continue;
stored++; }
filp->f_pos = dotdot_size; if (ctx->pos == dotdot_offset) {
continue; if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
} goto out;
ctx->pos = dotdot_size;
continue;
}
de = (struct ext4_dir_entry_2 *) de = (struct ext4_dir_entry_2 *)
(dir_buf + filp->f_pos - extra_offset); (dir_buf + ctx->pos - extra_offset);
if (ext4_check_dir_entry(inode, filp, de, if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
iloc.bh, dir_buf, extra_size, ctx->pos))
extra_size, filp->f_pos)) { goto out;
ret = stored; if (le32_to_cpu(de->inode)) {
if (!dir_emit(ctx, de->name, de->name_len,
le32_to_cpu(de->inode),
get_dtype(sb, de->file_type)))
goto out; goto out;
}
if (le32_to_cpu(de->inode)) {
/* We might block in the next section
* if the data destination is
* currently swapped out. So, use a
* version stamp to detect whether or
* not the directory has been modified
* during the copy operation.
*/
u64 version = filp->f_version;
error = filldir(dirent, de->name,
de->name_len,
filp->f_pos,
le32_to_cpu(de->inode),
get_dtype(sb, de->file_type));
if (error)
break;
if (version != filp->f_version)
goto revalidate;
stored++;
}
filp->f_pos += ext4_rec_len_from_disk(de->rec_len,
extra_size);
} }
ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
} }
out: out:
kfree(dir_buf); kfree(dir_buf);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册