blob: eee9b0b31b639b17f35e63158abfa5b7cd72dcf8 [file] [log] [blame]
Gao Xiang29b24f62019-07-31 23:57:31 +08001// SPDX-License-Identifier: GPL-2.0-only
Gao Xiang3aa8ec72018-07-26 20:21:49 +08002/*
Gao Xiang3aa8ec72018-07-26 20:21:49 +08003 * Copyright (C) 2017-2018 HUAWEI, Inc.
Alexander A. Klimov592e7cd2020-07-13 15:09:44 +02004 * https://www.huawei.com/
Gao Xiang3aa8ec72018-07-26 20:21:49 +08005 */
6#include "internal.h"
7
Gao Xiang33bac912019-03-29 04:14:58 +08008static void debug_one_dentry(unsigned char d_type, const char *de_name,
9 unsigned int de_namelen)
10{
11#ifdef CONFIG_EROFS_FS_DEBUG
12 /* since the on-disk name could not have the trailing '\0' */
13 unsigned char dbg_namebuf[EROFS_NAME_LEN + 1];
14
15 memcpy(dbg_namebuf, de_name, de_namelen);
16 dbg_namebuf[de_namelen] = '\0';
17
Gao Xiang4f761fa2019-09-04 10:09:09 +080018 erofs_dbg("found dirent %s de_len %u d_type %d", dbg_namebuf,
19 de_namelen, d_type);
Gao Xiang33bac912019-03-29 04:14:58 +080020#endif
21}
22
Gao Xianga6b9b1d2019-08-14 18:37:03 +080023static int erofs_fill_dentries(struct inode *dir, struct dir_context *ctx,
Bhanusree Polacbebe5d2019-02-19 14:55:25 +053024 void *dentry_blk, unsigned int *ofs,
25 unsigned int nameoff, unsigned int maxsize)
Gao Xiang3aa8ec72018-07-26 20:21:49 +080026{
Colin Ian King5c8004c2019-06-17 13:55:29 +010027 struct erofs_dirent *de = dentry_blk + *ofs;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080028 const struct erofs_dirent *end = dentry_blk + nameoff;
29
Gao Xiang3aa8ec72018-07-26 20:21:49 +080030 while (de < end) {
31 const char *de_name;
Gao Xiang33bac912019-03-29 04:14:58 +080032 unsigned int de_namelen;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080033 unsigned char d_type;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080034
Gao Xiang1d819c52019-08-16 15:11:42 +080035 d_type = fs_ftype_to_dtype(de->file_type);
Gao Xiang3aa8ec72018-07-26 20:21:49 +080036
37 nameoff = le16_to_cpu(de->nameoff);
38 de_name = (char *)dentry_blk + nameoff;
39
Gao Xiang33bac912019-03-29 04:14:58 +080040 /* the last dirent in the block? */
41 if (de + 1 >= end)
42 de_namelen = strnlen(de_name, maxsize - nameoff);
43 else
44 de_namelen = le16_to_cpu(de[1].nameoff) - nameoff;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080045
Gao Xiang8b987bc2018-12-05 21:23:13 +080046 /* a corrupted entry is found */
Gao Xiang8d8a09b2019-08-30 00:38:27 +080047 if (nameoff + de_namelen > maxsize ||
48 de_namelen > EROFS_NAME_LEN) {
Gao Xiang4f761fa2019-09-04 10:09:09 +080049 erofs_err(dir->i_sb, "bogus dirent @ nid %llu",
50 EROFS_I(dir)->nid);
Gao Xiang8b987bc2018-12-05 21:23:13 +080051 DBG_BUGON(1);
Gao Xianga6b9b1d2019-08-14 18:37:03 +080052 return -EFSCORRUPTED;
Gao Xiang8b987bc2018-12-05 21:23:13 +080053 }
Gao Xiang3aa8ec72018-07-26 20:21:49 +080054
Gao Xiang33bac912019-03-29 04:14:58 +080055 debug_one_dentry(d_type, de_name, de_namelen);
Gao Xiang3aa8ec72018-07-26 20:21:49 +080056 if (!dir_emit(ctx, de_name, de_namelen,
Aaron Strahlberger019ec6c2018-12-11 11:54:41 +010057 le64_to_cpu(de->nid), d_type))
58 /* stopped by some reason */
Gao Xiang3aa8ec72018-07-26 20:21:49 +080059 return 1;
60 ++de;
61 *ofs += sizeof(struct erofs_dirent);
62 }
63 *ofs = maxsize;
64 return 0;
65}
66
67static int erofs_readdir(struct file *f, struct dir_context *ctx)
68{
69 struct inode *dir = file_inode(f);
70 struct address_space *mapping = dir->i_mapping;
71 const size_t dirsize = i_size_read(dir);
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +020072 unsigned int i = ctx->pos / EROFS_BLKSIZ;
73 unsigned int ofs = ctx->pos % EROFS_BLKSIZ;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080074 int err = 0;
75 bool initial = true;
76
77 while (ctx->pos < dirsize) {
78 struct page *dentry_page;
79 struct erofs_dirent *de;
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +020080 unsigned int nameoff, maxsize;
Gao Xiang3aa8ec72018-07-26 20:21:49 +080081
82 dentry_page = read_mapping_page(mapping, i, NULL);
Gao Xiangacb383f2019-08-18 20:54:57 +080083 if (dentry_page == ERR_PTR(-ENOMEM)) {
84 err = -ENOMEM;
85 break;
86 } else if (IS_ERR(dentry_page)) {
Gao Xiang4f761fa2019-09-04 10:09:09 +080087 erofs_err(dir->i_sb,
88 "fail to readdir of logical block %u of nid %llu",
89 i, EROFS_I(dir)->nid);
Gao Xiangacb383f2019-08-18 20:54:57 +080090 err = -EFSCORRUPTED;
91 break;
92 }
Gao Xiang3aa8ec72018-07-26 20:21:49 +080093
Gao Xiang3aa8ec72018-07-26 20:21:49 +080094 de = (struct erofs_dirent *)kmap(dentry_page);
95
96 nameoff = le16_to_cpu(de->nameoff);
97
Gao Xiang8d8a09b2019-08-30 00:38:27 +080098 if (nameoff < sizeof(struct erofs_dirent) ||
99 nameoff >= PAGE_SIZE) {
Gao Xiang4f761fa2019-09-04 10:09:09 +0800100 erofs_err(dir->i_sb,
101 "invalid de[0].nameoff %u @ nid %llu",
102 nameoff, EROFS_I(dir)->nid);
Gao Xianga6b9b1d2019-08-14 18:37:03 +0800103 err = -EFSCORRUPTED;
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800104 goto skip_this;
105 }
106
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +0200107 maxsize = min_t(unsigned int,
108 dirsize - ctx->pos + ofs, PAGE_SIZE);
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800109
110 /* search dirents at the arbitrary position */
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800111 if (initial) {
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800112 initial = false;
113
114 ofs = roundup(ofs, sizeof(struct erofs_dirent));
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800115 if (ofs >= nameoff)
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800116 goto skip_this;
117 }
118
Gao Xianga6b9b1d2019-08-14 18:37:03 +0800119 err = erofs_fill_dentries(dir, ctx, de, &ofs,
120 nameoff, maxsize);
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800121skip_this:
122 kunmap(dentry_page);
123
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800124 put_page(dentry_page);
125
126 ctx->pos = blknr_to_addr(i) + ofs;
127
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800128 if (err)
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800129 break;
130 ++i;
131 ofs = 0;
132 }
133 return err < 0 ? err : 0;
134}
135
136const struct file_operations erofs_dir_fops = {
137 .llseek = generic_file_llseek,
138 .read = generic_read_dir,
Gao Xiangbee15682019-02-21 10:34:11 +0800139 .iterate_shared = erofs_readdir,
Gao Xiang3aa8ec72018-07-26 20:21:49 +0800140};