4 * Copyright (c) 1999 Al Smith
7 #include <linux/buffer_head.h>
10 static int efs_readdir(struct file *, struct dir_context *);
12 const struct file_operations efs_dir_operations = {
13 .llseek = generic_file_llseek,
14 .read = generic_read_dir,
15 .iterate = efs_readdir,
18 const struct inode_operations efs_dir_inode_operations = {
22 static int efs_readdir(struct file *file, struct dir_context *ctx)
24 struct inode *inode = file_inode(file);
28 if (inode->i_size & (EFS_DIRBSIZE-1))
29 printk(KERN_WARNING "EFS: WARNING: readdir(): directory size not a multiple of EFS_DIRBSIZE\n");
31 /* work out where this entry can be found */
32 block = ctx->pos >> EFS_DIRBSIZE_BITS;
34 /* each block contains at most 256 slots */
35 slot = ctx->pos & 0xff;
37 /* look at all blocks */
38 while (block < inode->i_blocks) {
39 struct efs_dir *dirblock;
40 struct buffer_head *bh;
42 /* read the dir block */
43 bh = sb_bread(inode->i_sb, efs_bmap(inode, block));
46 printk(KERN_ERR "EFS: readdir(): failed to read dir block %d\n", block);
50 dirblock = (struct efs_dir *) bh->b_data;
52 if (be16_to_cpu(dirblock->magic) != EFS_DIRBLK_MAGIC) {
53 printk(KERN_ERR "EFS: readdir(): invalid directory block\n");
58 for (; slot < dirblock->slots; slot++) {
59 struct efs_dentry *dirslot;
64 if (dirblock->space[slot] == 0)
67 dirslot = (struct efs_dentry *) (((char *) bh->b_data) + EFS_SLOTAT(dirblock, slot));
69 inodenum = be32_to_cpu(dirslot->inode);
70 namelen = dirslot->namelen;
71 nameptr = dirslot->name;
74 printk(KERN_DEBUG "EFS: readdir(): block %d slot %d/%d: inode %u, name \"%s\", namelen %u\n", block, slot, dirblock->slots-1, inodenum, nameptr, namelen);
78 /* found the next entry */
79 ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot;
82 if (nameptr - (char *) dirblock + namelen > EFS_DIRBSIZE) {
83 printk(KERN_WARNING "EFS: directory entry %d exceeds directory block\n", slot);
87 /* copy filename and data in dirslot */
88 if (!dir_emit(ctx, nameptr, namelen, inodenum, DT_UNKNOWN)) {
98 ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot;