1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2017-2018 HUAWEI, Inc.
4 * https://www.huawei.com/
5 * Copyright (C) 2022, Alibaba Cloud
9 #include <trace/events/erofs.h>
12 const unsigned char *name;
13 const unsigned char *end;
16 /* based on the end of qn is accurate and it must have the trailing '\0' */
17 static inline int erofs_dirnamecmp(const struct erofs_qstr *qn,
18 const struct erofs_qstr *qd,
19 unsigned int *matched)
21 unsigned int i = *matched;
24 * on-disk error, let's only BUG_ON in the debugging mode.
25 * otherwise, it will return 1 to just skip the invalid name
26 * and go on (in consideration of the lookup performance).
28 DBG_BUGON(qd->name > qd->end);
30 /* qd could not have trailing '\0' */
31 /* However it is absolutely safe if < qd->end */
32 while (qd->name + i < qd->end && qd->name[i] != '\0') {
33 if (qn->name[i] != qd->name[i]) {
35 return qn->name[i] > qd->name[i] ? 1 : -1;
40 /* See comments in __d_alloc on the terminating NUL character */
41 return qn->name[i] == '\0' ? 0 : 1;
44 #define nameoff_from_disk(off, sz) (le16_to_cpu(off) & ((sz) - 1))
46 static struct erofs_dirent *find_target_dirent(struct erofs_qstr *name,
48 unsigned int dirblksize,
52 unsigned int startprfx, endprfx;
53 struct erofs_dirent *const de = (struct erofs_dirent *)data;
55 /* since the 1st dirent has been evaluated previously */
58 startprfx = endprfx = 0;
60 while (head <= back) {
61 const int mid = head + (back - head) / 2;
62 const int nameoff = nameoff_from_disk(de[mid].nameoff,
64 unsigned int matched = min(startprfx, endprfx);
65 struct erofs_qstr dname = {
66 .name = data + nameoff,
67 .end = mid >= ndirents - 1 ?
69 data + nameoff_from_disk(de[mid + 1].nameoff,
73 /* string comparison without already matched prefix */
74 int ret = erofs_dirnamecmp(name, &dname, &matched);
87 return ERR_PTR(-ENOENT);
90 static void *find_target_block_classic(struct erofs_buf *target,
92 struct erofs_qstr *name,
95 unsigned int startprfx, endprfx;
97 void *candidate = ERR_PTR(-ENOENT);
99 startprfx = endprfx = 0;
101 back = erofs_inode_datablocks(dir) - 1;
103 while (head <= back) {
104 const int mid = head + (back - head) / 2;
105 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
106 struct erofs_dirent *de;
108 de = erofs_bread(&buf, dir, mid, EROFS_KMAP);
110 const int nameoff = nameoff_from_disk(de->nameoff,
112 const int ndirents = nameoff / sizeof(*de);
114 unsigned int matched;
115 struct erofs_qstr dname;
118 erofs_put_metabuf(&buf);
120 "corrupted dir block %d @ nid %llu",
121 mid, EROFS_I(dir)->nid);
123 de = ERR_PTR(-EFSCORRUPTED);
127 matched = min(startprfx, endprfx);
129 dname.name = (u8 *)de + nameoff;
131 dname.end = (u8 *)de + EROFS_BLKSIZ;
133 dname.end = (u8 *)de +
134 nameoff_from_disk(de[1].nameoff,
137 /* string comparison without already matched prefix */
138 diff = erofs_dirnamecmp(name, &dname, &matched);
143 } else if (diff > 0) {
147 if (!IS_ERR(candidate))
148 erofs_put_metabuf(target);
151 *_ndirents = ndirents;
153 erofs_put_metabuf(&buf);
160 out: /* free if the candidate is valid */
161 if (!IS_ERR(candidate))
162 erofs_put_metabuf(target);
168 int erofs_namei(struct inode *dir, const struct qstr *name, erofs_nid_t *nid,
169 unsigned int *d_type)
172 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
173 struct erofs_dirent *de;
174 struct erofs_qstr qn;
179 qn.name = name->name;
180 qn.end = name->name + name->len;
184 de = find_target_block_classic(&buf, dir, &qn, &ndirents);
189 de = find_target_dirent(&qn, (u8 *)de, EROFS_BLKSIZ, ndirents);
192 *nid = le64_to_cpu(de->nid);
193 *d_type = de->file_type;
195 erofs_put_metabuf(&buf);
196 return PTR_ERR_OR_ZERO(de);
199 static struct dentry *erofs_lookup(struct inode *dir, struct dentry *dentry,
207 trace_erofs_lookup(dir, dentry, flags);
209 if (dentry->d_name.len > EROFS_NAME_LEN)
210 return ERR_PTR(-ENAMETOOLONG);
212 err = erofs_namei(dir, &dentry->d_name, &nid, &d_type);
214 if (err == -ENOENT) {
215 /* negative dentry */
218 inode = ERR_PTR(err);
220 erofs_dbg("%s, %pd (nid %llu) found, d_type %u", __func__,
221 dentry, nid, d_type);
222 inode = erofs_iget(dir->i_sb, nid);
224 return d_splice_alias(inode, dentry);
227 const struct inode_operations erofs_dir_iops = {
228 .lookup = erofs_lookup,
229 .getattr = erofs_getattr,
230 .listxattr = erofs_listxattr,
231 .get_acl = erofs_get_acl,
232 .fiemap = erofs_fiemap,