1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * linux/fs/hfsplus/inode.c 4 * 5 * Copyright (C) 2001 6 * Brad Boyer (flar@allandria.com) 7 * (C) 2003 Ardis Technologies <roman@ardistech.com> 8 * 9 * Inode handling routines 10 */ 11 12 #include <linux/blkdev.h> 13 #include <linux/mm.h> 14 #include <linux/fs.h> 15 #include <linux/pagemap.h> 16 #include <linux/mpage.h> 17 #include <linux/sched.h> 18 #include <linux/cred.h> 19 #include <linux/uio.h> 20 #include <linux/fileattr.h> 21 22 #include "hfsplus_fs.h" 23 #include "hfsplus_raw.h" 24 #include "xattr.h" 25 26 static int hfsplus_read_folio(struct file *file, struct folio *folio) 27 { 28 return block_read_full_folio(folio, hfsplus_get_block); 29 } 30 31 static void hfsplus_write_failed(struct address_space *mapping, loff_t to) 32 { 33 struct inode *inode = mapping->host; 34 35 if (to > inode->i_size) { 36 truncate_pagecache(inode, inode->i_size); 37 hfsplus_file_truncate(inode); 38 } 39 } 40 41 int hfsplus_write_begin(const struct kiocb *iocb, 42 struct address_space *mapping, loff_t pos, 43 unsigned len, struct folio **foliop, 44 void **fsdata) 45 { 46 int ret; 47 48 ret = cont_write_begin(iocb, mapping, pos, len, foliop, fsdata, 49 hfsplus_get_block, 50 &HFSPLUS_I(mapping->host)->phys_size); 51 if (unlikely(ret)) 52 hfsplus_write_failed(mapping, pos + len); 53 54 return ret; 55 } 56 57 static sector_t hfsplus_bmap(struct address_space *mapping, sector_t block) 58 { 59 return generic_block_bmap(mapping, block, hfsplus_get_block); 60 } 61 62 static bool hfsplus_release_folio(struct folio *folio, gfp_t mask) 63 { 64 struct inode *inode = folio->mapping->host; 65 struct super_block *sb = inode->i_sb; 66 struct hfs_btree *tree; 67 struct hfs_bnode *node; 68 u32 nidx; 69 int i; 70 bool res = true; 71 72 switch (inode->i_ino) { 73 case HFSPLUS_EXT_CNID: 74 tree = HFSPLUS_SB(sb)->ext_tree; 75 break; 76 case HFSPLUS_CAT_CNID: 77 tree = HFSPLUS_SB(sb)->cat_tree; 78 break; 79 case HFSPLUS_ATTR_CNID: 80 tree = HFSPLUS_SB(sb)->attr_tree; 81 break; 82 default: 83 BUG(); 84 return false; 85 } 86 if (!tree) 87 return false; 88 if (tree->node_size >= PAGE_SIZE) { 89 nidx = folio->index >> 90 (tree->node_size_shift - PAGE_SHIFT); 91 spin_lock(&tree->hash_lock); 92 node = hfs_bnode_findhash(tree, nidx); 93 if (!node) 94 ; 95 else if (atomic_read(&node->refcnt)) 96 res = false; 97 if (res && node) { 98 hfs_bnode_unhash(node); 99 hfs_bnode_free(node); 100 } 101 spin_unlock(&tree->hash_lock); 102 } else { 103 nidx = folio->index << 104 (PAGE_SHIFT - tree->node_size_shift); 105 i = 1 << (PAGE_SHIFT - tree->node_size_shift); 106 spin_lock(&tree->hash_lock); 107 do { 108 node = hfs_bnode_findhash(tree, nidx++); 109 if (!node) 110 continue; 111 if (atomic_read(&node->refcnt)) { 112 res = false; 113 break; 114 } 115 hfs_bnode_unhash(node); 116 hfs_bnode_free(node); 117 } while (--i && nidx < tree->node_count); 118 spin_unlock(&tree->hash_lock); 119 } 120 return res ? try_to_free_buffers(folio) : false; 121 } 122 123 static ssize_t hfsplus_direct_IO(struct kiocb *iocb, struct iov_iter *iter) 124 { 125 struct file *file = iocb->ki_filp; 126 struct address_space *mapping = file->f_mapping; 127 struct inode *inode = mapping->host; 128 size_t count = iov_iter_count(iter); 129 ssize_t ret; 130 131 ret = blockdev_direct_IO(iocb, inode, iter, hfsplus_get_block); 132 133 /* 134 * In case of error extending write may have instantiated a few 135 * blocks outside i_size. Trim these off again. 136 */ 137 if (unlikely(iov_iter_rw(iter) == WRITE && ret < 0)) { 138 loff_t isize = i_size_read(inode); 139 loff_t end = iocb->ki_pos + count; 140 141 if (end > isize) 142 hfsplus_write_failed(mapping, end); 143 } 144 145 return ret; 146 } 147 148 static int hfsplus_writepages(struct address_space *mapping, 149 struct writeback_control *wbc) 150 { 151 return mpage_writepages(mapping, wbc, hfsplus_get_block); 152 } 153 154 const struct address_space_operations hfsplus_btree_aops = { 155 .dirty_folio = block_dirty_folio, 156 .invalidate_folio = block_invalidate_folio, 157 .read_folio = hfsplus_read_folio, 158 .writepages = hfsplus_writepages, 159 .write_begin = hfsplus_write_begin, 160 .write_end = generic_write_end, 161 .migrate_folio = buffer_migrate_folio, 162 .bmap = hfsplus_bmap, 163 .release_folio = hfsplus_release_folio, 164 }; 165 166 const struct address_space_operations hfsplus_aops = { 167 .dirty_folio = block_dirty_folio, 168 .invalidate_folio = block_invalidate_folio, 169 .read_folio = hfsplus_read_folio, 170 .write_begin = hfsplus_write_begin, 171 .write_end = generic_write_end, 172 .bmap = hfsplus_bmap, 173 .direct_IO = hfsplus_direct_IO, 174 .writepages = hfsplus_writepages, 175 .migrate_folio = buffer_migrate_folio, 176 }; 177 178 const struct dentry_operations hfsplus_dentry_operations = { 179 .d_hash = hfsplus_hash_dentry, 180 .d_compare = hfsplus_compare_dentry, 181 }; 182 183 static int hfsplus_get_perms(struct inode *inode, 184 struct hfsplus_perm *perms, int dir) 185 { 186 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb); 187 u16 mode; 188 189 mode = be16_to_cpu(perms->mode); 190 if (dir) { 191 if (mode && !S_ISDIR(mode)) 192 goto bad_type; 193 } else if (mode) { 194 switch (mode & S_IFMT) { 195 case S_IFREG: 196 case S_IFLNK: 197 case S_IFCHR: 198 case S_IFBLK: 199 case S_IFIFO: 200 case S_IFSOCK: 201 break; 202 default: 203 goto bad_type; 204 } 205 } 206 207 i_uid_write(inode, be32_to_cpu(perms->owner)); 208 if ((test_bit(HFSPLUS_SB_UID, &sbi->flags)) || (!i_uid_read(inode) && !mode)) 209 inode->i_uid = sbi->uid; 210 211 i_gid_write(inode, be32_to_cpu(perms->group)); 212 if ((test_bit(HFSPLUS_SB_GID, &sbi->flags)) || (!i_gid_read(inode) && !mode)) 213 inode->i_gid = sbi->gid; 214 215 if (dir) { 216 mode = mode ? (mode & S_IALLUGO) : (S_IRWXUGO & ~(sbi->umask)); 217 mode |= S_IFDIR; 218 } else if (!mode) 219 mode = S_IFREG | ((S_IRUGO|S_IWUGO) & ~(sbi->umask)); 220 inode->i_mode = mode; 221 222 HFSPLUS_I(inode)->userflags = perms->userflags; 223 if (perms->rootflags & HFSPLUS_FLG_IMMUTABLE) 224 inode->i_flags |= S_IMMUTABLE; 225 else 226 inode->i_flags &= ~S_IMMUTABLE; 227 if (perms->rootflags & HFSPLUS_FLG_APPEND) 228 inode->i_flags |= S_APPEND; 229 else 230 inode->i_flags &= ~S_APPEND; 231 return 0; 232 bad_type: 233 pr_err("invalid file type 0%04o for inode %lu\n", mode, inode->i_ino); 234 return -EIO; 235 } 236 237 static int hfsplus_file_open(struct inode *inode, struct file *file) 238 { 239 if (HFSPLUS_IS_RSRC(inode)) 240 inode = HFSPLUS_I(inode)->rsrc_inode; 241 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS) 242 return -EOVERFLOW; 243 atomic_inc(&HFSPLUS_I(inode)->opencnt); 244 return 0; 245 } 246 247 static int hfsplus_file_release(struct inode *inode, struct file *file) 248 { 249 struct super_block *sb = inode->i_sb; 250 251 if (HFSPLUS_IS_RSRC(inode)) 252 inode = HFSPLUS_I(inode)->rsrc_inode; 253 if (atomic_dec_and_test(&HFSPLUS_I(inode)->opencnt)) { 254 inode_lock(inode); 255 hfsplus_file_truncate(inode); 256 if (inode->i_flags & S_DEAD) { 257 hfsplus_delete_cat(inode->i_ino, 258 HFSPLUS_SB(sb)->hidden_dir, NULL); 259 hfsplus_delete_inode(inode); 260 } 261 inode_unlock(inode); 262 } 263 return 0; 264 } 265 266 static int hfsplus_setattr(struct mnt_idmap *idmap, 267 struct dentry *dentry, struct iattr *attr) 268 { 269 struct inode *inode = d_inode(dentry); 270 int error; 271 272 error = setattr_prepare(&nop_mnt_idmap, dentry, attr); 273 if (error) 274 return error; 275 276 if ((attr->ia_valid & ATTR_SIZE) && 277 attr->ia_size != i_size_read(inode)) { 278 inode_dio_wait(inode); 279 if (attr->ia_size > inode->i_size) { 280 error = generic_cont_expand_simple(inode, 281 attr->ia_size); 282 if (error) 283 return error; 284 } 285 truncate_setsize(inode, attr->ia_size); 286 hfsplus_file_truncate(inode); 287 inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode)); 288 } 289 290 setattr_copy(&nop_mnt_idmap, inode, attr); 291 mark_inode_dirty(inode); 292 293 return 0; 294 } 295 296 int hfsplus_getattr(struct mnt_idmap *idmap, const struct path *path, 297 struct kstat *stat, u32 request_mask, 298 unsigned int query_flags) 299 { 300 struct inode *inode = d_inode(path->dentry); 301 struct hfsplus_inode_info *hip = HFSPLUS_I(inode); 302 303 if (request_mask & STATX_BTIME) { 304 stat->result_mask |= STATX_BTIME; 305 stat->btime = hfsp_mt2ut(hip->create_date); 306 } 307 308 if (inode->i_flags & S_APPEND) 309 stat->attributes |= STATX_ATTR_APPEND; 310 if (inode->i_flags & S_IMMUTABLE) 311 stat->attributes |= STATX_ATTR_IMMUTABLE; 312 if (hip->userflags & HFSPLUS_FLG_NODUMP) 313 stat->attributes |= STATX_ATTR_NODUMP; 314 315 stat->attributes_mask |= STATX_ATTR_APPEND | STATX_ATTR_IMMUTABLE | 316 STATX_ATTR_NODUMP; 317 318 generic_fillattr(&nop_mnt_idmap, request_mask, inode, stat); 319 return 0; 320 } 321 322 int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end, 323 int datasync) 324 { 325 struct inode *inode = file->f_mapping->host; 326 struct hfsplus_inode_info *hip = HFSPLUS_I(inode); 327 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb); 328 struct hfsplus_vh *vhdr = sbi->s_vhdr; 329 int error = 0, error2; 330 331 error = file_write_and_wait_range(file, start, end); 332 if (error) 333 return error; 334 inode_lock(inode); 335 336 /* 337 * Sync inode metadata into the catalog and extent trees. 338 */ 339 sync_inode_metadata(inode, 1); 340 341 /* 342 * And explicitly write out the btrees. 343 */ 344 if (test_and_clear_bit(HFSPLUS_I_CAT_DIRTY, &hip->flags)) 345 error = filemap_write_and_wait(sbi->cat_tree->inode->i_mapping); 346 347 if (test_and_clear_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags)) { 348 error2 = 349 filemap_write_and_wait(sbi->ext_tree->inode->i_mapping); 350 if (!error) 351 error = error2; 352 } 353 354 if (test_and_clear_bit(HFSPLUS_I_ATTR_DIRTY, &hip->flags)) { 355 if (sbi->attr_tree) { 356 error2 = 357 filemap_write_and_wait( 358 sbi->attr_tree->inode->i_mapping); 359 if (!error) 360 error = error2; 361 } else { 362 pr_err("sync non-existent attributes tree\n"); 363 } 364 } 365 366 if (test_and_clear_bit(HFSPLUS_I_ALLOC_DIRTY, &hip->flags)) { 367 error2 = filemap_write_and_wait(sbi->alloc_file->i_mapping); 368 if (!error) 369 error = error2; 370 } 371 372 mutex_lock(&sbi->vh_mutex); 373 hfsplus_prepare_volume_header_for_commit(vhdr); 374 mutex_unlock(&sbi->vh_mutex); 375 376 error2 = hfsplus_commit_superblock(inode->i_sb); 377 if (!error) 378 error = error2; 379 380 if (!test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags)) 381 blkdev_issue_flush(inode->i_sb->s_bdev); 382 383 inode_unlock(inode); 384 385 return error; 386 } 387 388 static const struct inode_operations hfsplus_file_inode_operations = { 389 .setattr = hfsplus_setattr, 390 .getattr = hfsplus_getattr, 391 .listxattr = hfsplus_listxattr, 392 .fileattr_get = hfsplus_fileattr_get, 393 .fileattr_set = hfsplus_fileattr_set, 394 }; 395 396 static const struct file_operations hfsplus_file_operations = { 397 .llseek = generic_file_llseek, 398 .read_iter = generic_file_read_iter, 399 .write_iter = generic_file_write_iter, 400 .mmap_prepare = generic_file_mmap_prepare, 401 .splice_read = filemap_splice_read, 402 .splice_write = iter_file_splice_write, 403 .fsync = hfsplus_file_fsync, 404 .open = hfsplus_file_open, 405 .release = hfsplus_file_release, 406 .unlocked_ioctl = hfsplus_ioctl, 407 }; 408 409 struct inode *hfsplus_new_inode(struct super_block *sb, struct inode *dir, 410 umode_t mode) 411 { 412 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb); 413 struct inode *inode = new_inode(sb); 414 struct hfsplus_inode_info *hip; 415 416 if (!inode) 417 return NULL; 418 419 inode->i_ino = sbi->next_cnid++; 420 inode_init_owner(&nop_mnt_idmap, inode, dir, mode); 421 set_nlink(inode, 1); 422 simple_inode_init_ts(inode); 423 424 hip = HFSPLUS_I(inode); 425 INIT_LIST_HEAD(&hip->open_dir_list); 426 spin_lock_init(&hip->open_dir_lock); 427 mutex_init(&hip->extents_lock); 428 atomic_set(&hip->opencnt, 0); 429 hip->extent_state = 0; 430 hip->flags = 0; 431 hip->userflags = 0; 432 hip->subfolders = 0; 433 memset(hip->first_extents, 0, sizeof(hfsplus_extent_rec)); 434 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec)); 435 hip->alloc_blocks = 0; 436 hip->first_blocks = 0; 437 hip->cached_start = 0; 438 hip->cached_blocks = 0; 439 hip->phys_size = 0; 440 hip->fs_blocks = 0; 441 hip->rsrc_inode = NULL; 442 if (S_ISDIR(inode->i_mode)) { 443 inode->i_size = 2; 444 sbi->folder_count++; 445 inode->i_op = &hfsplus_dir_inode_operations; 446 inode->i_fop = &hfsplus_dir_operations; 447 } else if (S_ISREG(inode->i_mode)) { 448 sbi->file_count++; 449 inode->i_op = &hfsplus_file_inode_operations; 450 inode->i_fop = &hfsplus_file_operations; 451 inode->i_mapping->a_ops = &hfsplus_aops; 452 hip->clump_blocks = sbi->data_clump_blocks; 453 } else if (S_ISLNK(inode->i_mode)) { 454 sbi->file_count++; 455 inode->i_op = &page_symlink_inode_operations; 456 inode_nohighmem(inode); 457 inode->i_mapping->a_ops = &hfsplus_aops; 458 hip->clump_blocks = 1; 459 } else 460 sbi->file_count++; 461 insert_inode_hash(inode); 462 mark_inode_dirty(inode); 463 hfsplus_mark_mdb_dirty(sb); 464 465 return inode; 466 } 467 468 void hfsplus_delete_inode(struct inode *inode) 469 { 470 struct super_block *sb = inode->i_sb; 471 472 if (S_ISDIR(inode->i_mode)) { 473 HFSPLUS_SB(sb)->folder_count--; 474 hfsplus_mark_mdb_dirty(sb); 475 return; 476 } 477 HFSPLUS_SB(sb)->file_count--; 478 if (S_ISREG(inode->i_mode)) { 479 if (!inode->i_nlink) { 480 inode->i_size = 0; 481 hfsplus_file_truncate(inode); 482 } 483 } else if (S_ISLNK(inode->i_mode)) { 484 inode->i_size = 0; 485 hfsplus_file_truncate(inode); 486 } 487 hfsplus_mark_mdb_dirty(sb); 488 } 489 490 void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork) 491 { 492 struct super_block *sb = inode->i_sb; 493 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb); 494 struct hfsplus_inode_info *hip = HFSPLUS_I(inode); 495 u32 count; 496 int i; 497 498 memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec)); 499 for (count = 0, i = 0; i < 8; i++) 500 count += be32_to_cpu(fork->extents[i].block_count); 501 hip->first_blocks = count; 502 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec)); 503 hip->cached_start = 0; 504 hip->cached_blocks = 0; 505 506 hip->alloc_blocks = be32_to_cpu(fork->total_blocks); 507 hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size); 508 hip->fs_blocks = 509 (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits; 510 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits); 511 hip->clump_blocks = 512 be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift; 513 if (!hip->clump_blocks) { 514 hip->clump_blocks = HFSPLUS_IS_RSRC(inode) ? 515 sbi->rsrc_clump_blocks : 516 sbi->data_clump_blocks; 517 } 518 } 519 520 void hfsplus_inode_write_fork(struct inode *inode, 521 struct hfsplus_fork_raw *fork) 522 { 523 memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents, 524 sizeof(hfsplus_extent_rec)); 525 fork->total_size = cpu_to_be64(inode->i_size); 526 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks); 527 } 528 529 int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd) 530 { 531 hfsplus_cat_entry entry; 532 int res = 0; 533 u16 type; 534 535 type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset); 536 537 HFSPLUS_I(inode)->linkid = 0; 538 if (type == HFSPLUS_FOLDER) { 539 struct hfsplus_cat_folder *folder = &entry.folder; 540 541 if (fd->entrylength < sizeof(struct hfsplus_cat_folder)) { 542 pr_err("bad catalog folder entry\n"); 543 res = -EIO; 544 goto out; 545 } 546 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset, 547 sizeof(struct hfsplus_cat_folder)); 548 res = hfsplus_get_perms(inode, &folder->permissions, 1); 549 if (res) 550 goto out; 551 set_nlink(inode, 1); 552 inode->i_size = 2 + be32_to_cpu(folder->valence); 553 inode_set_atime_to_ts(inode, hfsp_mt2ut(folder->access_date)); 554 inode_set_mtime_to_ts(inode, 555 hfsp_mt2ut(folder->content_mod_date)); 556 inode_set_ctime_to_ts(inode, 557 hfsp_mt2ut(folder->attribute_mod_date)); 558 HFSPLUS_I(inode)->create_date = folder->create_date; 559 HFSPLUS_I(inode)->fs_blocks = 0; 560 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) { 561 HFSPLUS_I(inode)->subfolders = 562 be32_to_cpu(folder->subfolders); 563 } 564 inode->i_op = &hfsplus_dir_inode_operations; 565 inode->i_fop = &hfsplus_dir_operations; 566 } else if (type == HFSPLUS_FILE) { 567 struct hfsplus_cat_file *file = &entry.file; 568 569 if (fd->entrylength < sizeof(struct hfsplus_cat_file)) { 570 pr_err("bad catalog file entry\n"); 571 res = -EIO; 572 goto out; 573 } 574 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset, 575 sizeof(struct hfsplus_cat_file)); 576 577 hfsplus_inode_read_fork(inode, HFSPLUS_IS_RSRC(inode) ? 578 &file->rsrc_fork : &file->data_fork); 579 res = hfsplus_get_perms(inode, &file->permissions, 0); 580 if (res) 581 goto out; 582 set_nlink(inode, 1); 583 if (S_ISREG(inode->i_mode)) { 584 if (file->permissions.dev) 585 set_nlink(inode, 586 be32_to_cpu(file->permissions.dev)); 587 inode->i_op = &hfsplus_file_inode_operations; 588 inode->i_fop = &hfsplus_file_operations; 589 inode->i_mapping->a_ops = &hfsplus_aops; 590 } else if (S_ISLNK(inode->i_mode)) { 591 inode->i_op = &page_symlink_inode_operations; 592 inode_nohighmem(inode); 593 inode->i_mapping->a_ops = &hfsplus_aops; 594 } else { 595 init_special_inode(inode, inode->i_mode, 596 be32_to_cpu(file->permissions.dev)); 597 } 598 inode_set_atime_to_ts(inode, hfsp_mt2ut(file->access_date)); 599 inode_set_mtime_to_ts(inode, 600 hfsp_mt2ut(file->content_mod_date)); 601 inode_set_ctime_to_ts(inode, 602 hfsp_mt2ut(file->attribute_mod_date)); 603 HFSPLUS_I(inode)->create_date = file->create_date; 604 } else { 605 pr_err("bad catalog entry used to create inode\n"); 606 res = -EIO; 607 } 608 out: 609 return res; 610 } 611 612 int hfsplus_cat_write_inode(struct inode *inode) 613 { 614 struct inode *main_inode = inode; 615 struct hfs_find_data fd; 616 hfsplus_cat_entry entry; 617 int res = 0; 618 619 if (HFSPLUS_IS_RSRC(inode)) 620 main_inode = HFSPLUS_I(inode)->rsrc_inode; 621 622 if (!main_inode->i_nlink) 623 return 0; 624 625 if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb)->cat_tree, &fd)) 626 /* panic? */ 627 return -EIO; 628 629 if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd)) 630 /* panic? */ 631 goto out; 632 633 if (S_ISDIR(main_inode->i_mode)) { 634 struct hfsplus_cat_folder *folder = &entry.folder; 635 636 if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) { 637 pr_err("bad catalog folder entry\n"); 638 res = -EIO; 639 goto out; 640 } 641 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, 642 sizeof(struct hfsplus_cat_folder)); 643 /* simple node checks? */ 644 hfsplus_cat_set_perms(inode, &folder->permissions); 645 folder->access_date = hfsp_ut2mt(inode_get_atime(inode)); 646 folder->content_mod_date = hfsp_ut2mt(inode_get_mtime(inode)); 647 folder->attribute_mod_date = hfsp_ut2mt(inode_get_ctime(inode)); 648 folder->valence = cpu_to_be32(inode->i_size - 2); 649 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) { 650 folder->subfolders = 651 cpu_to_be32(HFSPLUS_I(inode)->subfolders); 652 } 653 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset, 654 sizeof(struct hfsplus_cat_folder)); 655 } else if (HFSPLUS_IS_RSRC(inode)) { 656 struct hfsplus_cat_file *file = &entry.file; 657 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, 658 sizeof(struct hfsplus_cat_file)); 659 hfsplus_inode_write_fork(inode, &file->rsrc_fork); 660 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset, 661 sizeof(struct hfsplus_cat_file)); 662 } else { 663 struct hfsplus_cat_file *file = &entry.file; 664 665 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { 666 pr_err("bad catalog file entry\n"); 667 res = -EIO; 668 goto out; 669 } 670 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, 671 sizeof(struct hfsplus_cat_file)); 672 hfsplus_inode_write_fork(inode, &file->data_fork); 673 hfsplus_cat_set_perms(inode, &file->permissions); 674 if (HFSPLUS_FLG_IMMUTABLE & 675 (file->permissions.rootflags | 676 file->permissions.userflags)) 677 file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED); 678 else 679 file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED); 680 file->access_date = hfsp_ut2mt(inode_get_atime(inode)); 681 file->content_mod_date = hfsp_ut2mt(inode_get_mtime(inode)); 682 file->attribute_mod_date = hfsp_ut2mt(inode_get_ctime(inode)); 683 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset, 684 sizeof(struct hfsplus_cat_file)); 685 } 686 687 set_bit(HFSPLUS_I_CAT_DIRTY, &HFSPLUS_I(inode)->flags); 688 out: 689 hfs_find_exit(&fd); 690 return res; 691 } 692 693 int hfsplus_fileattr_get(struct dentry *dentry, struct file_kattr *fa) 694 { 695 struct inode *inode = d_inode(dentry); 696 struct hfsplus_inode_info *hip = HFSPLUS_I(inode); 697 unsigned int flags = 0; 698 699 if (inode->i_flags & S_IMMUTABLE) 700 flags |= FS_IMMUTABLE_FL; 701 if (inode->i_flags & S_APPEND) 702 flags |= FS_APPEND_FL; 703 if (hip->userflags & HFSPLUS_FLG_NODUMP) 704 flags |= FS_NODUMP_FL; 705 706 fileattr_fill_flags(fa, flags); 707 708 return 0; 709 } 710 711 int hfsplus_fileattr_set(struct mnt_idmap *idmap, 712 struct dentry *dentry, struct file_kattr *fa) 713 { 714 struct inode *inode = d_inode(dentry); 715 struct hfsplus_inode_info *hip = HFSPLUS_I(inode); 716 unsigned int new_fl = 0; 717 718 if (fileattr_has_fsx(fa)) 719 return -EOPNOTSUPP; 720 721 /* don't silently ignore unsupported ext2 flags */ 722 if (fa->flags & ~(FS_IMMUTABLE_FL|FS_APPEND_FL|FS_NODUMP_FL)) 723 return -EOPNOTSUPP; 724 725 if (fa->flags & FS_IMMUTABLE_FL) 726 new_fl |= S_IMMUTABLE; 727 728 if (fa->flags & FS_APPEND_FL) 729 new_fl |= S_APPEND; 730 731 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND); 732 733 if (fa->flags & FS_NODUMP_FL) 734 hip->userflags |= HFSPLUS_FLG_NODUMP; 735 else 736 hip->userflags &= ~HFSPLUS_FLG_NODUMP; 737 738 inode_set_ctime_current(inode); 739 mark_inode_dirty(inode); 740 741 return 0; 742 } 743