1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Squashfs - a compressed read only filesystem for Linux
5 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
6 * Phillip Lougher <phillip@squashfs.org.uk>
12 * This file implements code to read directories from disk.
14 * See namei.c for a description of directory organisation on disk.
18 #include <linux/vfs.h>
19 #include <linux/slab.h>
21 #include "squashfs_fs.h"
22 #include "squashfs_fs_sb.h"
23 #include "squashfs_fs_i.h"
26 static const unsigned char squashfs_filetype_table[] = {
27 DT_UNKNOWN, DT_DIR, DT_REG, DT_LNK, DT_BLK, DT_CHR, DT_FIFO, DT_SOCK
31 * Lookup offset (f_pos) in the directory index, returning the
32 * metadata block containing it.
34 * If we get an error reading the index then return the part of the index
35 * (if any) we have managed to read - the index isn't essential, just
38 static int get_dir_index_using_offset(struct super_block *sb,
39 u64 *next_block, int *next_offset, u64 index_start, int index_offset,
40 int i_count, u64 f_pos)
42 struct squashfs_sb_info *msblk = sb->s_fs_info;
43 int err, i, index, length = 0;
45 struct squashfs_dir_index dir_index;
47 TRACE("Entered get_dir_index_using_offset, i_count %d, f_pos %lld\n",
51 * Translate from external f_pos to the internal f_pos. This
52 * is offset by 3 because we invent "." and ".." entries which are
53 * not actually stored in the directory.
59 for (i = 0; i < i_count; i++) {
60 err = squashfs_read_metadata(sb, &dir_index, &index_start,
61 &index_offset, sizeof(dir_index));
65 index = le32_to_cpu(dir_index.index);
68 * Found the index we're looking for.
72 size = le32_to_cpu(dir_index.size) + 1;
74 /* size should never be larger than SQUASHFS_NAME_LEN */
75 if (size > SQUASHFS_NAME_LEN)
78 err = squashfs_read_metadata(sb, NULL, &index_start,
84 *next_block = le32_to_cpu(dir_index.start_block) +
85 msblk->directory_table;
88 *next_offset = (length + *next_offset) % SQUASHFS_METADATA_SIZE;
91 * Translate back from internal f_pos to external f_pos.
97 static int squashfs_readdir(struct file *file, struct dir_context *ctx)
99 struct inode *inode = file_inode(file);
100 struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
101 u64 block = squashfs_i(inode)->start + msblk->directory_table;
102 int offset = squashfs_i(inode)->offset, length, err;
103 unsigned int inode_number, dir_count, size, type;
104 struct squashfs_dir_header dirh;
105 struct squashfs_dir_entry *dire;
107 TRACE("Entered squashfs_readdir [%llx:%x]\n", block, offset);
109 dire = kmalloc(sizeof(*dire) + SQUASHFS_NAME_LEN + 1, GFP_KERNEL);
111 ERROR("Failed to allocate squashfs_dir_entry\n");
116 * Return "." and ".." entries as the first two filenames in the
117 * directory. To maximise compression these two entries are not
118 * stored in the directory, and so we invent them here.
120 * It also means that the external f_pos is offset by 3 from the
121 * on-disk directory f_pos.
123 while (ctx->pos < 3) {
130 i_ino = inode->i_ino;
134 i_ino = squashfs_i(inode)->parent;
137 if (!dir_emit(ctx, name, size, i_ino,
138 squashfs_filetype_table[1]))
144 length = get_dir_index_using_offset(inode->i_sb, &block, &offset,
145 squashfs_i(inode)->dir_idx_start,
146 squashfs_i(inode)->dir_idx_offset,
147 squashfs_i(inode)->dir_idx_cnt,
150 while (length < i_size_read(inode)) {
152 * Read directory header
154 err = squashfs_read_metadata(inode->i_sb, &dirh, &block,
155 &offset, sizeof(dirh));
159 length += sizeof(dirh);
161 dir_count = le32_to_cpu(dirh.count) + 1;
163 if (dir_count > SQUASHFS_DIR_COUNT)
166 while (dir_count--) {
168 * Read directory entry.
170 err = squashfs_read_metadata(inode->i_sb, dire, &block,
171 &offset, sizeof(*dire));
175 size = le16_to_cpu(dire->size) + 1;
177 /* size should never be larger than SQUASHFS_NAME_LEN */
178 if (size > SQUASHFS_NAME_LEN)
181 err = squashfs_read_metadata(inode->i_sb, dire->name,
182 &block, &offset, size);
186 length += sizeof(*dire) + size;
188 if (ctx->pos >= length)
191 dire->name[size] = '\0';
192 inode_number = le32_to_cpu(dirh.inode_number) +
193 ((short) le16_to_cpu(dire->inode_number));
194 type = le16_to_cpu(dire->type);
196 if (type > SQUASHFS_MAX_DIR_TYPE)
199 if (!dir_emit(ctx, dire->name, size,
201 squashfs_filetype_table[type]))
213 ERROR("Unable to read directory block [%llx:%x]\n", block, offset);
219 const struct file_operations squashfs_dir_ops = {
220 .read = generic_read_dir,
221 .iterate_shared = squashfs_readdir,
222 .llseek = generic_file_llseek,