blob: cbbda476a8054e5409b843616e1a1b7023e63824 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/affs/dir.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
9 *
10 * (C) 1991 Linus Torvalds - minix filesystem
11 *
12 * affs directory handling functions
13 *
14 */
15
16#include "affs.h"
17
Al Viro0edf9772013-05-17 17:44:42 -040018static int affs_readdir(struct file *, struct dir_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080020const struct file_operations affs_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -040022 .llseek = generic_file_llseek,
Al Viro0edf9772013-05-17 17:44:42 -040023 .iterate = affs_readdir,
Al Viroc4758792009-06-08 01:22:00 -040024 .fsync = affs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
27/*
28 * directories can handle most operations...
29 */
Arjan van de Ven754661f2007-02-12 00:55:38 -080030const struct inode_operations affs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .create = affs_create,
32 .lookup = affs_lookup,
33 .link = affs_link,
34 .unlink = affs_unlink,
35 .symlink = affs_symlink,
36 .mkdir = affs_mkdir,
37 .rmdir = affs_rmdir,
38 .rename = affs_rename,
39 .setattr = affs_notify_change,
40};
41
42static int
Al Viro0edf9772013-05-17 17:44:42 -040043affs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Al Viro0edf9772013-05-17 17:44:42 -040045 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct super_block *sb = inode->i_sb;
Al Viro0edf9772013-05-17 17:44:42 -040047 struct buffer_head *dir_bh = NULL;
48 struct buffer_head *fh_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 unsigned char *name;
50 int namelen;
51 u32 i;
52 int hash_pos;
53 int chain_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 u32 ino;
Fabian Frederickd40c4d42014-04-07 15:39:00 -070055 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Fabian Frederickd40c4d42014-04-07 15:39:00 -070057 pr_debug("AFFS: readdir(ino=%lu,f_pos=%lx)\n",
58 inode->i_ino, (unsigned long)ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Al Viro0edf9772013-05-17 17:44:42 -040060 if (ctx->pos < 2) {
61 file->private_data = (void *)0;
62 if (!dir_emit_dots(file, ctx))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
66 affs_lock_dir(inode);
Al Viro0edf9772013-05-17 17:44:42 -040067 chain_pos = (ctx->pos - 2) & 0xffff;
68 hash_pos = (ctx->pos - 2) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (chain_pos == 0xffff) {
70 affs_warning(sb, "readdir", "More than 65535 entries in chain");
71 chain_pos = 0;
72 hash_pos++;
Al Viro0edf9772013-05-17 17:44:42 -040073 ctx->pos = ((hash_pos << 16) | chain_pos) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
75 dir_bh = affs_bread(sb, inode->i_ino);
76 if (!dir_bh)
Fabian Frederickd40c4d42014-04-07 15:39:00 -070077 goto out_unlock_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 /* If the directory hasn't changed since the last call to readdir(),
80 * we can jump directly to where we left off.
81 */
Al Viro0edf9772013-05-17 17:44:42 -040082 ino = (u32)(long)file->private_data;
83 if (ino && file->f_version == inode->i_version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 pr_debug("AFFS: readdir() left off=%d\n", ino);
85 goto inside;
86 }
87
88 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]);
89 for (i = 0; ino && i < chain_pos; i++) {
90 fh_bh = affs_bread(sb, ino);
91 if (!fh_bh) {
92 affs_error(sb, "readdir","Cannot read block %d", i);
Fabian Frederickd40c4d42014-04-07 15:39:00 -070093 error = -EIO;
94 goto out_brelse_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96 ino = be32_to_cpu(AFFS_TAIL(sb, fh_bh)->hash_chain);
97 affs_brelse(fh_bh);
98 fh_bh = NULL;
99 }
100 if (ino)
101 goto inside;
102 hash_pos++;
103
104 for (; hash_pos < AFFS_SB(sb)->s_hashsize; hash_pos++) {
105 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]);
106 if (!ino)
107 continue;
Al Viro0edf9772013-05-17 17:44:42 -0400108 ctx->pos = (hash_pos << 16) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109inside:
110 do {
111 fh_bh = affs_bread(sb, ino);
112 if (!fh_bh) {
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700113 affs_error(sb, "readdir",
114 "Cannot read block %d", ino);
Al Viro0edf9772013-05-17 17:44:42 -0400115 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117
118 namelen = min(AFFS_TAIL(sb, fh_bh)->name[0], (u8)30);
119 name = AFFS_TAIL(sb, fh_bh)->name + 1;
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700120 pr_debug("AFFS: readdir(): dir_emit(\"%.*s\", "
121 "ino=%u), hash=%d, f_pos=%x\n",
Al Viro0edf9772013-05-17 17:44:42 -0400122 namelen, name, ino, hash_pos, (u32)ctx->pos);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700123
Al Viro0edf9772013-05-17 17:44:42 -0400124 if (!dir_emit(ctx, name, namelen, ino, DT_UNKNOWN))
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700125 goto done;
Al Viro0edf9772013-05-17 17:44:42 -0400126 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 ino = be32_to_cpu(AFFS_TAIL(sb, fh_bh)->hash_chain);
128 affs_brelse(fh_bh);
129 fh_bh = NULL;
130 } while (ino);
131 }
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700132done:
Al Viro0edf9772013-05-17 17:44:42 -0400133 file->f_version = inode->i_version;
134 file->private_data = (void *)(long)ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 affs_brelse(fh_bh);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700136
137out_brelse_dir:
138 affs_brelse(dir_bh);
139
140out_unlock_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 affs_unlock_dir(inode);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700142 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}