1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2017-2018 HUAWEI, Inc.
4 * https://www.huawei.com/
5 * Created by Gao Xiang <gaoxiang25@huawei.com>
6 */
7 #include "xattr.h"
8
9 #include <trace/events/erofs.h>
10
11 /*
12 * if inode is successfully read, return its inode page (or sometimes
13 * the inode payload page if it's an extended inode) in order to fill
14 * inline data if possible.
15 */
erofs_read_inode(struct inode * inode,unsigned int * ofs)16 static struct page *erofs_read_inode(struct inode *inode,
17 unsigned int *ofs)
18 {
19 struct super_block *sb = inode->i_sb;
20 struct erofs_sb_info *sbi = EROFS_SB(sb);
21 struct erofs_inode *vi = EROFS_I(inode);
22 const erofs_off_t inode_loc = iloc(sbi, vi->nid);
23
24 erofs_blk_t blkaddr, nblks = 0;
25 struct page *page;
26 struct erofs_inode_compact *dic;
27 struct erofs_inode_extended *die, *copied = NULL;
28 unsigned int ifmt;
29 int err;
30
31 blkaddr = erofs_blknr(inode_loc);
32 *ofs = erofs_blkoff(inode_loc);
33
34 erofs_dbg("%s, reading inode nid %llu at %u of blkaddr %u",
35 __func__, vi->nid, *ofs, blkaddr);
36
37 page = erofs_get_meta_page(sb, blkaddr);
38 if (IS_ERR(page)) {
39 erofs_err(sb, "failed to get inode (nid: %llu) page, err %ld",
40 vi->nid, PTR_ERR(page));
41 return page;
42 }
43
44 dic = page_address(page) + *ofs;
45 ifmt = le16_to_cpu(dic->i_format);
46
47 if (ifmt & ~EROFS_I_ALL) {
48 erofs_err(inode->i_sb, "unsupported i_format %u of nid %llu",
49 ifmt, vi->nid);
50 err = -EOPNOTSUPP;
51 goto err_out;
52 }
53
54 vi->datalayout = erofs_inode_datalayout(ifmt);
55 if (vi->datalayout >= EROFS_INODE_DATALAYOUT_MAX) {
56 erofs_err(inode->i_sb, "unsupported datalayout %u of nid %llu",
57 vi->datalayout, vi->nid);
58 err = -EOPNOTSUPP;
59 goto err_out;
60 }
61
62 switch (erofs_inode_version(ifmt)) {
63 case EROFS_INODE_LAYOUT_EXTENDED:
64 vi->inode_isize = sizeof(struct erofs_inode_extended);
65 /* check if the inode acrosses page boundary */
66 if (*ofs + vi->inode_isize <= PAGE_SIZE) {
67 *ofs += vi->inode_isize;
68 die = (struct erofs_inode_extended *)dic;
69 } else {
70 const unsigned int gotten = PAGE_SIZE - *ofs;
71
72 copied = kmalloc(vi->inode_isize, GFP_NOFS);
73 if (!copied) {
74 err = -ENOMEM;
75 goto err_out;
76 }
77 memcpy(copied, dic, gotten);
78 unlock_page(page);
79 put_page(page);
80
81 page = erofs_get_meta_page(sb, blkaddr + 1);
82 if (IS_ERR(page)) {
83 erofs_err(sb, "failed to get inode payload page (nid: %llu), err %ld",
84 vi->nid, PTR_ERR(page));
85 kfree(copied);
86 return page;
87 }
88 *ofs = vi->inode_isize - gotten;
89 memcpy((u8 *)copied + gotten, page_address(page), *ofs);
90 die = copied;
91 }
92 vi->xattr_isize = erofs_xattr_ibody_size(die->i_xattr_icount);
93
94 inode->i_mode = le16_to_cpu(die->i_mode);
95 switch (inode->i_mode & S_IFMT) {
96 case S_IFREG:
97 case S_IFDIR:
98 case S_IFLNK:
99 vi->raw_blkaddr = le32_to_cpu(die->i_u.raw_blkaddr);
100 break;
101 case S_IFCHR:
102 case S_IFBLK:
103 inode->i_rdev =
104 new_decode_dev(le32_to_cpu(die->i_u.rdev));
105 break;
106 case S_IFIFO:
107 case S_IFSOCK:
108 inode->i_rdev = 0;
109 break;
110 default:
111 goto bogusimode;
112 }
113 i_uid_write(inode, le32_to_cpu(die->i_uid));
114 i_gid_write(inode, le32_to_cpu(die->i_gid));
115 set_nlink(inode, le32_to_cpu(die->i_nlink));
116
117 /* extended inode has its own timestamp */
118 inode->i_ctime.tv_sec = le64_to_cpu(die->i_ctime);
119 inode->i_ctime.tv_nsec = le32_to_cpu(die->i_ctime_nsec);
120
121 inode->i_size = le64_to_cpu(die->i_size);
122
123 /* total blocks for compressed files */
124 if (erofs_inode_is_data_compressed(vi->datalayout))
125 nblks = le32_to_cpu(die->i_u.compressed_blocks);
126
127 kfree(copied);
128 break;
129 case EROFS_INODE_LAYOUT_COMPACT:
130 vi->inode_isize = sizeof(struct erofs_inode_compact);
131 *ofs += vi->inode_isize;
132 vi->xattr_isize = erofs_xattr_ibody_size(dic->i_xattr_icount);
133
134 inode->i_mode = le16_to_cpu(dic->i_mode);
135 switch (inode->i_mode & S_IFMT) {
136 case S_IFREG:
137 case S_IFDIR:
138 case S_IFLNK:
139 vi->raw_blkaddr = le32_to_cpu(dic->i_u.raw_blkaddr);
140 break;
141 case S_IFCHR:
142 case S_IFBLK:
143 inode->i_rdev =
144 new_decode_dev(le32_to_cpu(dic->i_u.rdev));
145 break;
146 case S_IFIFO:
147 case S_IFSOCK:
148 inode->i_rdev = 0;
149 break;
150 default:
151 goto bogusimode;
152 }
153 i_uid_write(inode, le16_to_cpu(dic->i_uid));
154 i_gid_write(inode, le16_to_cpu(dic->i_gid));
155 set_nlink(inode, le16_to_cpu(dic->i_nlink));
156
157 /* use build time for compact inodes */
158 inode->i_ctime.tv_sec = sbi->build_time;
159 inode->i_ctime.tv_nsec = sbi->build_time_nsec;
160
161 inode->i_size = le32_to_cpu(dic->i_size);
162 if (erofs_inode_is_data_compressed(vi->datalayout))
163 nblks = le32_to_cpu(dic->i_u.compressed_blocks);
164 break;
165 default:
166 erofs_err(inode->i_sb,
167 "unsupported on-disk inode version %u of nid %llu",
168 erofs_inode_version(ifmt), vi->nid);
169 err = -EOPNOTSUPP;
170 goto err_out;
171 }
172
173 inode->i_mtime.tv_sec = inode->i_ctime.tv_sec;
174 inode->i_atime.tv_sec = inode->i_ctime.tv_sec;
175 inode->i_mtime.tv_nsec = inode->i_ctime.tv_nsec;
176 inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec;
177
178 inode->i_flags &= ~S_DAX;
179 if (test_opt(&sbi->ctx, DAX_ALWAYS) && S_ISREG(inode->i_mode) &&
180 vi->datalayout == EROFS_INODE_FLAT_PLAIN)
181 inode->i_flags |= S_DAX;
182 if (!nblks)
183 /* measure inode.i_blocks as generic filesystems */
184 inode->i_blocks = roundup(inode->i_size, EROFS_BLKSIZ) >> 9;
185 else
186 inode->i_blocks = nblks << LOG_SECTORS_PER_BLOCK;
187 return page;
188
189 bogusimode:
190 erofs_err(inode->i_sb, "bogus i_mode (%o) @ nid %llu",
191 inode->i_mode, vi->nid);
192 err = -EFSCORRUPTED;
193 err_out:
194 DBG_BUGON(1);
195 kfree(copied);
196 unlock_page(page);
197 put_page(page);
198 return ERR_PTR(err);
199 }
200
erofs_fill_symlink(struct inode * inode,void * data,unsigned int m_pofs)201 static int erofs_fill_symlink(struct inode *inode, void *data,
202 unsigned int m_pofs)
203 {
204 struct erofs_inode *vi = EROFS_I(inode);
205 char *lnk;
206
207 /* if it cannot be handled with fast symlink scheme */
208 if (vi->datalayout != EROFS_INODE_FLAT_INLINE ||
209 inode->i_size >= PAGE_SIZE) {
210 inode->i_op = &erofs_symlink_iops;
211 return 0;
212 }
213
214 lnk = kmalloc(inode->i_size + 1, GFP_KERNEL);
215 if (!lnk)
216 return -ENOMEM;
217
218 m_pofs += vi->xattr_isize;
219 /* inline symlink data shouldn't cross page boundary as well */
220 if (m_pofs + inode->i_size > PAGE_SIZE) {
221 kfree(lnk);
222 erofs_err(inode->i_sb,
223 "inline data cross block boundary @ nid %llu",
224 vi->nid);
225 DBG_BUGON(1);
226 return -EFSCORRUPTED;
227 }
228
229 memcpy(lnk, data + m_pofs, inode->i_size);
230 lnk[inode->i_size] = '\0';
231
232 inode->i_link = lnk;
233 inode->i_op = &erofs_fast_symlink_iops;
234 return 0;
235 }
236
erofs_fill_inode(struct inode * inode,int isdir)237 static int erofs_fill_inode(struct inode *inode, int isdir)
238 {
239 struct erofs_inode *vi = EROFS_I(inode);
240 struct page *page;
241 unsigned int ofs;
242 int err = 0;
243
244 trace_erofs_fill_inode(inode, isdir);
245
246 /* read inode base data from disk */
247 page = erofs_read_inode(inode, &ofs);
248 if (IS_ERR(page))
249 return PTR_ERR(page);
250
251 /* setup the new inode */
252 switch (inode->i_mode & S_IFMT) {
253 case S_IFREG:
254 inode->i_op = &erofs_generic_iops;
255 if (erofs_inode_is_data_compressed(vi->datalayout))
256 inode->i_fop = &generic_ro_fops;
257 else
258 inode->i_fop = &erofs_file_fops;
259 break;
260 case S_IFDIR:
261 inode->i_op = &erofs_dir_iops;
262 inode->i_fop = &erofs_dir_fops;
263 break;
264 case S_IFLNK:
265 err = erofs_fill_symlink(inode, page_address(page), ofs);
266 if (err)
267 goto out_unlock;
268 inode_nohighmem(inode);
269 break;
270 case S_IFCHR:
271 case S_IFBLK:
272 case S_IFIFO:
273 case S_IFSOCK:
274 inode->i_op = &erofs_generic_iops;
275 init_special_inode(inode, inode->i_mode, inode->i_rdev);
276 goto out_unlock;
277 default:
278 err = -EFSCORRUPTED;
279 goto out_unlock;
280 }
281
282 if (erofs_inode_is_data_compressed(vi->datalayout)) {
283 err = z_erofs_fill_inode(inode);
284 goto out_unlock;
285 }
286 inode->i_mapping->a_ops = &erofs_raw_access_aops;
287
288 out_unlock:
289 unlock_page(page);
290 put_page(page);
291 return err;
292 }
293
294 /*
295 * erofs nid is 64bits, but i_ino is 'unsigned long', therefore
296 * we should do more for 32-bit platform to find the right inode.
297 */
erofs_ilookup_test_actor(struct inode * inode,void * opaque)298 static int erofs_ilookup_test_actor(struct inode *inode, void *opaque)
299 {
300 const erofs_nid_t nid = *(erofs_nid_t *)opaque;
301
302 return EROFS_I(inode)->nid == nid;
303 }
304
erofs_iget_set_actor(struct inode * inode,void * opaque)305 static int erofs_iget_set_actor(struct inode *inode, void *opaque)
306 {
307 const erofs_nid_t nid = *(erofs_nid_t *)opaque;
308
309 inode->i_ino = erofs_inode_hash(nid);
310 return 0;
311 }
312
erofs_iget_locked(struct super_block * sb,erofs_nid_t nid)313 static inline struct inode *erofs_iget_locked(struct super_block *sb,
314 erofs_nid_t nid)
315 {
316 const unsigned long hashval = erofs_inode_hash(nid);
317
318 return iget5_locked(sb, hashval, erofs_ilookup_test_actor,
319 erofs_iget_set_actor, &nid);
320 }
321
erofs_iget(struct super_block * sb,erofs_nid_t nid,bool isdir)322 struct inode *erofs_iget(struct super_block *sb,
323 erofs_nid_t nid,
324 bool isdir)
325 {
326 struct inode *inode = erofs_iget_locked(sb, nid);
327
328 if (!inode)
329 return ERR_PTR(-ENOMEM);
330
331 if (inode->i_state & I_NEW) {
332 int err;
333 struct erofs_inode *vi = EROFS_I(inode);
334
335 vi->nid = nid;
336
337 err = erofs_fill_inode(inode, isdir);
338 if (!err)
339 unlock_new_inode(inode);
340 else {
341 iget_failed(inode);
342 inode = ERR_PTR(err);
343 }
344 }
345 return inode;
346 }
347
erofs_getattr(const struct path * path,struct kstat * stat,u32 request_mask,unsigned int query_flags)348 int erofs_getattr(const struct path *path, struct kstat *stat,
349 u32 request_mask, unsigned int query_flags)
350 {
351 struct inode *const inode = d_inode(path->dentry);
352
353 if (erofs_inode_is_data_compressed(EROFS_I(inode)->datalayout))
354 stat->attributes |= STATX_ATTR_COMPRESSED;
355
356 stat->attributes |= STATX_ATTR_IMMUTABLE;
357 stat->attributes_mask |= (STATX_ATTR_COMPRESSED |
358 STATX_ATTR_IMMUTABLE);
359
360 generic_fillattr(inode, stat);
361 return 0;
362 }
363
364 const struct inode_operations erofs_generic_iops = {
365 .getattr = erofs_getattr,
366 .listxattr = erofs_listxattr,
367 .get_acl = erofs_get_acl,
368 };
369
370 const struct inode_operations erofs_symlink_iops = {
371 .get_link = page_get_link,
372 .getattr = erofs_getattr,
373 .listxattr = erofs_listxattr,
374 .get_acl = erofs_get_acl,
375 };
376
377 const struct inode_operations erofs_fast_symlink_iops = {
378 .get_link = simple_get_link,
379 .getattr = erofs_getattr,
380 .listxattr = erofs_listxattr,
381 .get_acl = erofs_get_acl,
382 };
383
384