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