1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (c) 1999 Al Smith
8 #include <linux/buffer_head.h>
11 static int efs_readdir(struct file
*, struct dir_context
*);
13 const struct file_operations efs_dir_operations
= {
14 .llseek
= generic_file_llseek
,
15 .read
= generic_read_dir
,
16 .iterate_shared
= efs_readdir
,
19 const struct inode_operations efs_dir_inode_operations
= {
23 static int efs_readdir(struct file
*file
, struct dir_context
*ctx
)
25 struct inode
*inode
= file_inode(file
);
29 if (inode
->i_size
& (EFS_DIRBSIZE
-1))
30 pr_warn("%s(): directory size not a multiple of EFS_DIRBSIZE\n",
33 /* work out where this entry can be found */
34 block
= ctx
->pos
>> EFS_DIRBSIZE_BITS
;
36 /* each block contains at most 256 slots */
37 slot
= ctx
->pos
& 0xff;
39 /* look at all blocks */
40 while (block
< inode
->i_blocks
) {
41 struct efs_dir
*dirblock
;
42 struct buffer_head
*bh
;
44 /* read the dir block */
45 bh
= sb_bread(inode
->i_sb
, efs_bmap(inode
, block
));
48 pr_err("%s(): failed to read dir block %d\n",
53 dirblock
= (struct efs_dir
*) bh
->b_data
;
55 if (be16_to_cpu(dirblock
->magic
) != EFS_DIRBLK_MAGIC
) {
56 pr_err("%s(): invalid directory block\n", __func__
);
61 for (; slot
< dirblock
->slots
; slot
++) {
62 struct efs_dentry
*dirslot
;
67 if (dirblock
->space
[slot
] == 0)
70 dirslot
= (struct efs_dentry
*) (((char *) bh
->b_data
) + EFS_SLOTAT(dirblock
, slot
));
72 inodenum
= be32_to_cpu(dirslot
->inode
);
73 namelen
= dirslot
->namelen
;
74 nameptr
= dirslot
->name
;
75 pr_debug("%s(): block %d slot %d/%d: inode %u, name \"%s\", namelen %u\n",
76 __func__
, block
, slot
, dirblock
->slots
-1,
77 inodenum
, nameptr
, namelen
);
80 /* found the next entry */
81 ctx
->pos
= (block
<< EFS_DIRBSIZE_BITS
) | slot
;
84 if (nameptr
- (char *) dirblock
+ namelen
> EFS_DIRBSIZE
) {
85 pr_warn("directory entry %d exceeds directory block\n",
90 /* copy filename and data in dirslot */
91 if (!dir_emit(ctx
, nameptr
, namelen
, inodenum
, DT_UNKNOWN
)) {
101 ctx
->pos
= (block
<< EFS_DIRBSIZE_BITS
) | slot
;