blob: b72307ccdf7afc08c2062741a585b971d0e99a15 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dir.c
3 *
4 * Copyright (c) 1999 Al Smith
5 */
6
7#include <linux/buffer_head.h>
Christoph Hellwig45254b42008-02-23 15:23:51 -08008#include "efs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Al Viro7aa123a2013-05-16 01:41:10 -040010static int efs_readdir(struct file *, struct dir_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080012const struct file_operations efs_dir_operations = {
Al Viroe7ec9522009-06-16 23:35:46 -040013 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 .read = generic_read_dir,
Al Viro7aa123a2013-05-16 01:41:10 -040015 .iterate = efs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016};
17
Arjan van de Ven754661f2007-02-12 00:55:38 -080018const struct inode_operations efs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 .lookup = efs_lookup,
20};
21
Al Viro7aa123a2013-05-16 01:41:10 -040022static int efs_readdir(struct file *file, struct dir_context *ctx)
23{
24 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 efs_block_t block;
Al Viro7aa123a2013-05-16 01:41:10 -040026 int slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 if (inode->i_size & (EFS_DIRBSIZE-1))
29 printk(KERN_WARNING "EFS: WARNING: readdir(): directory size not a multiple of EFS_DIRBSIZE\n");
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 /* work out where this entry can be found */
Al Viro7aa123a2013-05-16 01:41:10 -040032 block = ctx->pos >> EFS_DIRBSIZE_BITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 /* each block contains at most 256 slots */
Al Viro7aa123a2013-05-16 01:41:10 -040035 slot = ctx->pos & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 /* look at all blocks */
38 while (block < inode->i_blocks) {
Al Viro7aa123a2013-05-16 01:41:10 -040039 struct efs_dir *dirblock;
40 struct buffer_head *bh;
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 /* read the dir block */
43 bh = sb_bread(inode->i_sb, efs_bmap(inode, block));
44
45 if (!bh) {
46 printk(KERN_ERR "EFS: readdir(): failed to read dir block %d\n", block);
47 break;
48 }
49
50 dirblock = (struct efs_dir *) bh->b_data;
51
52 if (be16_to_cpu(dirblock->magic) != EFS_DIRBLK_MAGIC) {
53 printk(KERN_ERR "EFS: readdir(): invalid directory block\n");
54 brelse(bh);
55 break;
56 }
57
Al Viro7aa123a2013-05-16 01:41:10 -040058 for (; slot < dirblock->slots; slot++) {
59 struct efs_dentry *dirslot;
60 efs_ino_t inodenum;
61 const char *nameptr;
62 int namelen;
63
64 if (dirblock->space[slot] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 dirslot = (struct efs_dentry *) (((char *) bh->b_data) + EFS_SLOTAT(dirblock, slot));
68
69 inodenum = be32_to_cpu(dirslot->inode);
70 namelen = dirslot->namelen;
71 nameptr = dirslot->name;
72
73#ifdef DEBUG
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);
75#endif
Al Viro7aa123a2013-05-16 01:41:10 -040076 if (!namelen)
77 continue;
78 /* found the next entry */
79 ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Al Viro7aa123a2013-05-16 01:41:10 -040081 /* sanity check */
82 if (nameptr - (char *) dirblock + namelen > EFS_DIRBSIZE) {
83 printk(KERN_WARNING "EFS: directory entry %d exceeds directory block\n", slot);
84 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
Al Viro7aa123a2013-05-16 01:41:10 -040086
87 /* copy filename and data in dirslot */
88 if (!dir_emit(ctx, nameptr, namelen, inodenum, DT_UNKNOWN)) {
89 brelse(bh);
90 return 0;
91 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93 brelse(bh);
94
95 slot = 0;
96 block++;
97 }
Al Viro7aa123a2013-05-16 01:41:10 -040098 ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
100}
101