blob: b2bf7016e1b34655e3431e6f4fc2036c7491f9a2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/affs/dir.c
4 *
5 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 *
7 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 *
9 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
10 *
11 * (C) 1991 Linus Torvalds - minix filesystem
12 *
13 * affs directory handling functions
14 *
15 */
16
Jeff Layton9dffe562017-12-11 06:35:10 -050017#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "affs.h"
19
Al Viro0edf9772013-05-17 17:44:42 -040020static int affs_readdir(struct file *, struct dir_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080022const struct file_operations affs_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 .read = generic_read_dir,
Al Viro59af1582008-08-24 07:24:41 -040024 .llseek = generic_file_llseek,
Al Viro3b0a3c12016-04-20 23:42:46 -040025 .iterate_shared = affs_readdir,
Al Viroc4758792009-06-08 01:22:00 -040026 .fsync = affs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027};
28
29/*
30 * directories can handle most operations...
31 */
Arjan van de Ven754661f2007-02-12 00:55:38 -080032const struct inode_operations affs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .create = affs_create,
34 .lookup = affs_lookup,
35 .link = affs_link,
36 .unlink = affs_unlink,
37 .symlink = affs_symlink,
38 .mkdir = affs_mkdir,
39 .rmdir = affs_rmdir,
Fabian Frederickc6184022017-05-05 20:51:42 +020040 .rename = affs_rename2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .setattr = affs_notify_change,
42};
43
44static int
Al Viro0edf9772013-05-17 17:44:42 -040045affs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Al Viro0edf9772013-05-17 17:44:42 -040047 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct super_block *sb = inode->i_sb;
Al Viro0edf9772013-05-17 17:44:42 -040049 struct buffer_head *dir_bh = NULL;
50 struct buffer_head *fh_bh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 unsigned char *name;
52 int namelen;
53 u32 i;
54 int hash_pos;
55 int chain_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 u32 ino;
Fabian Frederickd40c4d42014-04-07 15:39:00 -070057 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -080059 pr_debug("%s(ino=%lu,f_pos=%llx)\n", __func__, inode->i_ino, ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Al Viro0edf9772013-05-17 17:44:42 -040061 if (ctx->pos < 2) {
62 file->private_data = (void *)0;
63 if (!dir_emit_dots(file, ctx))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66
67 affs_lock_dir(inode);
Al Viro0edf9772013-05-17 17:44:42 -040068 chain_pos = (ctx->pos - 2) & 0xffff;
69 hash_pos = (ctx->pos - 2) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (chain_pos == 0xffff) {
71 affs_warning(sb, "readdir", "More than 65535 entries in chain");
72 chain_pos = 0;
73 hash_pos++;
Al Viro0edf9772013-05-17 17:44:42 -040074 ctx->pos = ((hash_pos << 16) | chain_pos) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76 dir_bh = affs_bread(sb, inode->i_ino);
77 if (!dir_bh)
Fabian Frederickd40c4d42014-04-07 15:39:00 -070078 goto out_unlock_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* If the directory hasn't changed since the last call to readdir(),
81 * we can jump directly to where we left off.
82 */
Al Viro0edf9772013-05-17 17:44:42 -040083 ino = (u32)(long)file->private_data;
Goffredo Baroncellic472c072018-02-01 08:15:25 -050084 if (ino && inode_eq_iversion(inode, file->f_version)) {
Fabian Frederick9606d9a2014-06-06 14:37:25 -070085 pr_debug("readdir() left off=%d\n", ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 goto inside;
87 }
88
89 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]);
90 for (i = 0; ino && i < chain_pos; i++) {
91 fh_bh = affs_bread(sb, ino);
92 if (!fh_bh) {
93 affs_error(sb, "readdir","Cannot read block %d", i);
Fabian Frederickd40c4d42014-04-07 15:39:00 -070094 error = -EIO;
95 goto out_brelse_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97 ino = be32_to_cpu(AFFS_TAIL(sb, fh_bh)->hash_chain);
98 affs_brelse(fh_bh);
99 fh_bh = NULL;
100 }
101 if (ino)
102 goto inside;
103 hash_pos++;
104
105 for (; hash_pos < AFFS_SB(sb)->s_hashsize; hash_pos++) {
106 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]);
107 if (!ino)
108 continue;
Al Viro0edf9772013-05-17 17:44:42 -0400109 ctx->pos = (hash_pos << 16) + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110inside:
111 do {
112 fh_bh = affs_bread(sb, ino);
113 if (!fh_bh) {
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700114 affs_error(sb, "readdir",
115 "Cannot read block %d", ino);
Al Viro0edf9772013-05-17 17:44:42 -0400116 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
Fabian Frederickf1578532015-02-17 13:46:23 -0800119 namelen = min(AFFS_TAIL(sb, fh_bh)->name[0],
120 (u8)AFFSNAMEMAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 name = AFFS_TAIL(sb, fh_bh)->name + 1;
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800122 pr_debug("readdir(): dir_emit(\"%.*s\", ino=%u), hash=%d, f_pos=%llx\n",
123 namelen, name, ino, hash_pos, ctx->pos);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700124
Al Viro0edf9772013-05-17 17:44:42 -0400125 if (!dir_emit(ctx, name, namelen, ino, DT_UNKNOWN))
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700126 goto done;
Al Viro0edf9772013-05-17 17:44:42 -0400127 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 ino = be32_to_cpu(AFFS_TAIL(sb, fh_bh)->hash_chain);
129 affs_brelse(fh_bh);
130 fh_bh = NULL;
131 } while (ino);
132 }
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700133done:
Jeff Layton9dffe562017-12-11 06:35:10 -0500134 file->f_version = inode_query_iversion(inode);
Al Viro0edf9772013-05-17 17:44:42 -0400135 file->private_data = (void *)(long)ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 affs_brelse(fh_bh);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700137
138out_brelse_dir:
139 affs_brelse(dir_bh);
140
141out_unlock_dir:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 affs_unlock_dir(inode);
Fabian Frederickd40c4d42014-04-07 15:39:00 -0700143 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}