blob: 8e9427a42b8195e95c77fab60eae4e84e8b51674 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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
Christoph Hellwig34a2d312010-11-23 14:38:21 +010012#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/fs.h>
15#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mpage.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040017#include <linux/sched.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010018#include <linux/cred.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080019#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "hfsplus_fs.h"
22#include "hfsplus_raw.h"
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080023#include "xattr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25static int hfsplus_readpage(struct file *file, struct page *page)
26{
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 return block_read_full_page(page, hfsplus_get_block);
28}
29
30static int hfsplus_writepage(struct page *page, struct writeback_control *wbc)
31{
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return block_write_full_page(page, hfsplus_get_block, wbc);
33}
34
Marco Stornellid5068482012-12-15 11:55:07 +010035static void hfsplus_write_failed(struct address_space *mapping, loff_t to)
36{
37 struct inode *inode = mapping->host;
38
39 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -070040 truncate_pagecache(inode, inode->i_size);
Marco Stornellid5068482012-12-15 11:55:07 +010041 hfsplus_file_truncate(inode);
42 }
43}
44
Nick Piggin7c0efc62007-10-16 01:25:09 -070045static int hfsplus_write_begin(struct file *file, struct address_space *mapping,
46 loff_t pos, unsigned len, unsigned flags,
47 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Christoph Hellwig282dc172010-06-04 11:29:55 +020049 int ret;
50
Nick Piggin7c0efc62007-10-16 01:25:09 -070051 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +020052 ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Nick Piggin7c0efc62007-10-16 01:25:09 -070053 hfsplus_get_block,
Christoph Hellwig6af502d2010-10-01 05:43:31 +020054 &HFSPLUS_I(mapping->host)->phys_size);
Marco Stornellid5068482012-12-15 11:55:07 +010055 if (unlikely(ret))
56 hfsplus_write_failed(mapping, pos + len);
Christoph Hellwig282dc172010-06-04 11:29:55 +020057
58 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61static sector_t hfsplus_bmap(struct address_space *mapping, sector_t block)
62{
63 return generic_block_bmap(mapping, block, hfsplus_get_block);
64}
65
Al Viro27496a82005-10-21 03:20:48 -040066static int hfsplus_releasepage(struct page *page, gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 struct inode *inode = page->mapping->host;
69 struct super_block *sb = inode->i_sb;
70 struct hfs_btree *tree;
71 struct hfs_bnode *node;
72 u32 nidx;
73 int i, res = 1;
74
75 switch (inode->i_ino) {
76 case HFSPLUS_EXT_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020077 tree = HFSPLUS_SB(sb)->ext_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 break;
79 case HFSPLUS_CAT_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020080 tree = HFSPLUS_SB(sb)->cat_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 break;
82 case HFSPLUS_ATTR_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020083 tree = HFSPLUS_SB(sb)->attr_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 break;
85 default:
86 BUG();
87 return 0;
88 }
Eric Sesterhenn70632242008-05-12 14:02:21 -070089 if (!tree)
90 return 0;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030091 if (tree->node_size >= PAGE_SIZE) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020092 nidx = page->index >>
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030093 (tree->node_size_shift - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 spin_lock(&tree->hash_lock);
95 node = hfs_bnode_findhash(tree, nidx);
96 if (!node)
97 ;
98 else if (atomic_read(&node->refcnt))
99 res = 0;
100 if (res && node) {
101 hfs_bnode_unhash(node);
102 hfs_bnode_free(node);
103 }
104 spin_unlock(&tree->hash_lock);
105 } else {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200106 nidx = page->index <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300107 (PAGE_SHIFT - tree->node_size_shift);
108 i = 1 << (PAGE_SHIFT - tree->node_size_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 spin_lock(&tree->hash_lock);
110 do {
111 node = hfs_bnode_findhash(tree, nidx++);
112 if (!node)
113 continue;
114 if (atomic_read(&node->refcnt)) {
115 res = 0;
116 break;
117 }
118 hfs_bnode_unhash(node);
119 hfs_bnode_free(node);
120 } while (--i && nidx < tree->node_count);
121 spin_unlock(&tree->hash_lock);
122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return res ? try_to_free_buffers(page) : 0;
124}
125
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700126static ssize_t hfsplus_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 struct file *file = iocb->ki_filp;
Marco Stornellid5068482012-12-15 11:55:07 +0100129 struct address_space *mapping = file->f_mapping;
Al Viro93c76a32015-12-04 23:45:44 -0500130 struct inode *inode = mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -0500131 size_t count = iov_iter_count(iter);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200132 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700134 ret = blockdev_direct_IO(iocb, inode, iter, hfsplus_get_block);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200135
136 /*
137 * In case of error extending write may have instantiated a few
138 * blocks outside i_size. Trim these off again.
139 */
Omar Sandoval6f673762015-03-16 04:33:52 -0700140 if (unlikely(iov_iter_rw(iter) == WRITE && ret < 0)) {
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200141 loff_t isize = i_size_read(inode);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700142 loff_t end = iocb->ki_pos + count;
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200143
144 if (end > isize)
Marco Stornellid5068482012-12-15 11:55:07 +0100145 hfsplus_write_failed(mapping, end);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200146 }
147
148 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151static int hfsplus_writepages(struct address_space *mapping,
152 struct writeback_control *wbc)
153{
154 return mpage_writepages(mapping, wbc, hfsplus_get_block);
155}
156
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700157const struct address_space_operations hfsplus_btree_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .readpage = hfsplus_readpage,
159 .writepage = hfsplus_writepage,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700160 .write_begin = hfsplus_write_begin,
161 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 .bmap = hfsplus_bmap,
163 .releasepage = hfsplus_releasepage,
164};
165
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700166const struct address_space_operations hfsplus_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .readpage = hfsplus_readpage,
168 .writepage = hfsplus_writepage,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700169 .write_begin = hfsplus_write_begin,
170 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .bmap = hfsplus_bmap,
172 .direct_IO = hfsplus_direct_IO,
173 .writepages = hfsplus_writepages,
174};
175
Al Viroe16404e2009-02-20 05:55:13 +0000176const struct dentry_operations hfsplus_dentry_operations = {
Duane Griffind45bce82007-07-15 23:41:23 -0700177 .d_hash = hfsplus_hash_dentry,
178 .d_compare = hfsplus_compare_dentry,
179};
180
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200181static void hfsplus_get_perms(struct inode *inode,
182 struct hfsplus_perm *perms, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200184 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 u16 mode;
186
187 mode = be16_to_cpu(perms->mode);
188
Eric W. Biederman16525e32012-02-07 16:27:17 -0800189 i_uid_write(inode, be32_to_cpu(perms->owner));
190 if (!i_uid_read(inode) && !mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200191 inode->i_uid = sbi->uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Eric W. Biederman16525e32012-02-07 16:27:17 -0800193 i_gid_write(inode, be32_to_cpu(perms->group));
194 if (!i_gid_read(inode) && !mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200195 inode->i_gid = sbi->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if (dir) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200198 mode = mode ? (mode & S_IALLUGO) : (S_IRWXUGO & ~(sbi->umask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 mode |= S_IFDIR;
200 } else if (!mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200201 mode = S_IFREG | ((S_IRUGO|S_IWUGO) & ~(sbi->umask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 inode->i_mode = mode;
203
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200204 HFSPLUS_I(inode)->userflags = perms->userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (perms->rootflags & HFSPLUS_FLG_IMMUTABLE)
206 inode->i_flags |= S_IMMUTABLE;
207 else
208 inode->i_flags &= ~S_IMMUTABLE;
209 if (perms->rootflags & HFSPLUS_FLG_APPEND)
210 inode->i_flags |= S_APPEND;
211 else
212 inode->i_flags &= ~S_APPEND;
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static int hfsplus_file_open(struct inode *inode, struct file *file)
216{
217 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200218 inode = HFSPLUS_I(inode)->rsrc_inode;
Alan Cox6e715292008-10-18 20:28:01 -0700219 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
220 return -EOVERFLOW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200221 atomic_inc(&HFSPLUS_I(inode)->opencnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
225static int hfsplus_file_release(struct inode *inode, struct file *file)
226{
227 struct super_block *sb = inode->i_sb;
228
229 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200230 inode = HFSPLUS_I(inode)->rsrc_inode;
231 if (atomic_dec_and_test(&HFSPLUS_I(inode)->opencnt)) {
Al Viro59551022016-01-22 15:40:57 -0500232 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 hfsplus_file_truncate(inode);
234 if (inode->i_flags & S_DEAD) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200235 hfsplus_delete_cat(inode->i_ino,
236 HFSPLUS_SB(sb)->hidden_dir, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 hfsplus_delete_inode(inode);
238 }
Al Viro59551022016-01-22 15:40:57 -0500239 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241 return 0;
242}
243
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200244static int hfsplus_setattr(struct dentry *dentry, struct iattr *attr)
245{
David Howells2b0143b2015-03-17 22:25:59 +0000246 struct inode *inode = d_inode(dentry);
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200247 int error;
248
Jan Kara31051c82016-05-26 16:55:18 +0200249 error = setattr_prepare(dentry, attr);
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200250 if (error)
251 return error;
Christoph Hellwig10257742010-06-04 11:30:02 +0200252
253 if ((attr->ia_valid & ATTR_SIZE) &&
254 attr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400255 inode_dio_wait(inode);
Sergei Antonov059a7042015-04-16 12:47:15 -0700256 if (attr->ia_size > inode->i_size) {
257 error = generic_cont_expand_simple(inode,
258 attr->ia_size);
259 if (error)
260 return error;
261 }
Marco Stornellid5068482012-12-15 11:55:07 +0100262 truncate_setsize(inode, attr->ia_size);
263 hfsplus_file_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200264 }
265
266 setattr_copy(inode, attr);
267 mark_inode_dirty(inode);
Vyacheslav Dubeykob4c11072013-09-11 14:24:30 -0700268
Christoph Hellwig10257742010-06-04 11:30:02 +0200269 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200270}
271
Josef Bacik02c24a82011-07-16 20:44:56 -0400272int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end,
273 int datasync)
Al Virob5fc5102010-07-04 12:24:09 +0400274{
Christoph Hellwig28146972010-11-23 14:38:06 +0100275 struct inode *inode = file->f_mapping->host;
Christoph Hellwige3494702010-11-23 14:38:15 +0100276 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Christoph Hellwig28146972010-11-23 14:38:06 +0100277 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Christoph Hellwige3494702010-11-23 14:38:15 +0100278 int error = 0, error2;
Al Virob5fc5102010-07-04 12:24:09 +0400279
Jeff Layton3b49c9a2017-07-07 15:20:52 -0400280 error = file_write_and_wait_range(file, start, end);
Josef Bacik02c24a82011-07-16 20:44:56 -0400281 if (error)
282 return error;
Al Viro59551022016-01-22 15:40:57 -0500283 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400284
Christoph Hellwig28146972010-11-23 14:38:06 +0100285 /*
286 * Sync inode metadata into the catalog and extent trees.
287 */
288 sync_inode_metadata(inode, 1);
Al Virob5fc5102010-07-04 12:24:09 +0400289
Christoph Hellwig28146972010-11-23 14:38:06 +0100290 /*
291 * And explicitly write out the btrees.
292 */
Christoph Hellwige3494702010-11-23 14:38:15 +0100293 if (test_and_clear_bit(HFSPLUS_I_CAT_DIRTY, &hip->flags))
294 error = filemap_write_and_wait(sbi->cat_tree->inode->i_mapping);
295
296 if (test_and_clear_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags)) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200297 error2 =
298 filemap_write_and_wait(sbi->ext_tree->inode->i_mapping);
Christoph Hellwige3494702010-11-23 14:38:15 +0100299 if (!error)
300 error = error2;
301 }
302
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800303 if (test_and_clear_bit(HFSPLUS_I_ATTR_DIRTY, &hip->flags)) {
304 if (sbi->attr_tree) {
305 error2 =
306 filemap_write_and_wait(
307 sbi->attr_tree->inode->i_mapping);
308 if (!error)
309 error = error2;
310 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700311 pr_err("sync non-existent attributes tree\n");
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800312 }
313 }
314
Christoph Hellwige3494702010-11-23 14:38:15 +0100315 if (test_and_clear_bit(HFSPLUS_I_ALLOC_DIRTY, &hip->flags)) {
316 error2 = filemap_write_and_wait(sbi->alloc_file->i_mapping);
317 if (!error)
318 error = error2;
319 }
320
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100321 if (!test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags))
322 blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL);
323
Al Viro59551022016-01-22 15:40:57 -0500324 inode_unlock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400325
Christoph Hellwig28146972010-11-23 14:38:06 +0100326 return error;
Al Virob5fc5102010-07-04 12:24:09 +0400327}
328
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800329static const struct inode_operations hfsplus_file_inode_operations = {
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200330 .setattr = hfsplus_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 .listxattr = hfsplus_listxattr,
332};
333
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800334static const struct file_operations hfsplus_file_operations = {
Anton Salikhmetov20b76432010-12-16 18:08:40 +0200335 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -0400336 .read_iter = generic_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -0400337 .write_iter = generic_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .mmap = generic_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200339 .splice_read = generic_file_splice_read,
Al Virob5fc5102010-07-04 12:24:09 +0400340 .fsync = hfsplus_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 .open = hfsplus_file_open,
342 .release = hfsplus_file_release,
Arnd Bergmann7cc4bcc2010-04-27 16:24:20 +0200343 .unlocked_ioctl = hfsplus_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};
345
Ernesto A. Fernandezb0cd38c2018-02-06 15:49:02 -0800346struct inode *hfsplus_new_inode(struct super_block *sb, struct inode *dir,
347 umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200349 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct inode *inode = new_inode(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200351 struct hfsplus_inode_info *hip;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (!inode)
354 return NULL;
355
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200356 inode->i_ino = sbi->next_cnid++;
Ernesto A. Fernandezb0cd38c2018-02-06 15:49:02 -0800357 inode_init_owner(inode, dir, mode);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200358 set_nlink(inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700359 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200360
361 hip = HFSPLUS_I(inode);
362 INIT_LIST_HEAD(&hip->open_dir_list);
Al Viro323ee8f2016-05-12 20:02:09 -0400363 spin_lock_init(&hip->open_dir_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200364 mutex_init(&hip->extents_lock);
365 atomic_set(&hip->opencnt, 0);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100366 hip->extent_state = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200367 hip->flags = 0;
Matthew Garrettf3922382012-03-13 12:10:34 -0400368 hip->userflags = 0;
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700369 hip->subfolders = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200370 memset(hip->first_extents, 0, sizeof(hfsplus_extent_rec));
371 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
372 hip->alloc_blocks = 0;
373 hip->first_blocks = 0;
374 hip->cached_start = 0;
375 hip->cached_blocks = 0;
376 hip->phys_size = 0;
377 hip->fs_blocks = 0;
378 hip->rsrc_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (S_ISDIR(inode->i_mode)) {
380 inode->i_size = 2;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200381 sbi->folder_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 inode->i_op = &hfsplus_dir_inode_operations;
383 inode->i_fop = &hfsplus_dir_operations;
384 } else if (S_ISREG(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200385 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 inode->i_op = &hfsplus_file_inode_operations;
387 inode->i_fop = &hfsplus_file_operations;
388 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200389 hip->clump_blocks = sbi->data_clump_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 } else if (S_ISLNK(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200391 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500393 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200395 hip->clump_blocks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 } else
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200397 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 insert_inode_hash(inode);
399 mark_inode_dirty(inode);
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300400 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 return inode;
403}
404
405void hfsplus_delete_inode(struct inode *inode)
406{
407 struct super_block *sb = inode->i_sb;
408
409 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200410 HFSPLUS_SB(sb)->folder_count--;
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300411 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return;
413 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200414 HFSPLUS_SB(sb)->file_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (S_ISREG(inode->i_mode)) {
416 if (!inode->i_nlink) {
417 inode->i_size = 0;
418 hfsplus_file_truncate(inode);
419 }
420 } else if (S_ISLNK(inode->i_mode)) {
421 inode->i_size = 0;
422 hfsplus_file_truncate(inode);
423 }
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300424 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
427void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
428{
429 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200430 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200431 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 u32 count;
433 int i;
434
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200435 memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 for (count = 0, i = 0; i < 8; i++)
437 count += be32_to_cpu(fork->extents[i].block_count);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200438 hip->first_blocks = count;
439 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
440 hip->cached_start = 0;
441 hip->cached_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200443 hip->alloc_blocks = be32_to_cpu(fork->total_blocks);
444 hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size);
445 hip->fs_blocks =
446 (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
447 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
448 hip->clump_blocks =
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200449 be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200450 if (!hip->clump_blocks) {
451 hip->clump_blocks = HFSPLUS_IS_RSRC(inode) ?
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200452 sbi->rsrc_clump_blocks :
453 sbi->data_clump_blocks;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200457void hfsplus_inode_write_fork(struct inode *inode,
458 struct hfsplus_fork_raw *fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200460 memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sizeof(hfsplus_extent_rec));
462 fork->total_size = cpu_to_be64(inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200463 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd)
467{
468 hfsplus_cat_entry entry;
469 int res = 0;
470 u16 type;
471
472 type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset);
473
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400474 HFSPLUS_I(inode)->linkid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (type == HFSPLUS_FOLDER) {
476 struct hfsplus_cat_folder *folder = &entry.folder;
477
478 if (fd->entrylength < sizeof(struct hfsplus_cat_folder))
479 /* panic? */;
480 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
481 sizeof(struct hfsplus_cat_folder));
482 hfsplus_get_perms(inode, &folder->permissions, 1);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200483 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 inode->i_size = 2 + be32_to_cpu(folder->valence);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700485 inode->i_atime = timespec_to_timespec64(hfsp_mt2ut(folder->access_date));
486 inode->i_mtime = timespec_to_timespec64(hfsp_mt2ut(folder->content_mod_date));
487 inode->i_ctime = timespec_to_timespec64(hfsp_mt2ut(folder->attribute_mod_date));
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200488 HFSPLUS_I(inode)->create_date = folder->create_date;
489 HFSPLUS_I(inode)->fs_blocks = 0;
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700490 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
491 HFSPLUS_I(inode)->subfolders =
492 be32_to_cpu(folder->subfolders);
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 inode->i_op = &hfsplus_dir_inode_operations;
495 inode->i_fop = &hfsplus_dir_operations;
496 } else if (type == HFSPLUS_FILE) {
497 struct hfsplus_cat_file *file = &entry.file;
498
499 if (fd->entrylength < sizeof(struct hfsplus_cat_file))
500 /* panic? */;
501 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
502 sizeof(struct hfsplus_cat_file));
503
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100504 hfsplus_inode_read_fork(inode, HFSPLUS_IS_RSRC(inode) ?
505 &file->rsrc_fork : &file->data_fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 hfsplus_get_perms(inode, &file->permissions, 0);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200507 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (S_ISREG(inode->i_mode)) {
509 if (file->permissions.dev)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200510 set_nlink(inode,
511 be32_to_cpu(file->permissions.dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 inode->i_op = &hfsplus_file_inode_operations;
513 inode->i_fop = &hfsplus_file_operations;
514 inode->i_mapping->a_ops = &hfsplus_aops;
515 } else if (S_ISLNK(inode->i_mode)) {
516 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500517 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 inode->i_mapping->a_ops = &hfsplus_aops;
519 } else {
520 init_special_inode(inode, inode->i_mode,
521 be32_to_cpu(file->permissions.dev));
522 }
Deepa Dinamani95582b02018-05-08 19:36:02 -0700523 inode->i_atime = timespec_to_timespec64(hfsp_mt2ut(file->access_date));
524 inode->i_mtime = timespec_to_timespec64(hfsp_mt2ut(file->content_mod_date));
525 inode->i_ctime = timespec_to_timespec64(hfsp_mt2ut(file->attribute_mod_date));
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200526 HFSPLUS_I(inode)->create_date = file->create_date;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700528 pr_err("bad catalog entry used to create inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 res = -EIO;
530 }
531 return res;
532}
533
534int hfsplus_cat_write_inode(struct inode *inode)
535{
536 struct inode *main_inode = inode;
537 struct hfs_find_data fd;
538 hfsplus_cat_entry entry;
539
540 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200541 main_inode = HFSPLUS_I(inode)->rsrc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 if (!main_inode->i_nlink)
544 return 0;
545
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200546 if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb)->cat_tree, &fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* panic? */
548 return -EIO;
549
550 if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd))
551 /* panic? */
552 goto out;
553
554 if (S_ISDIR(main_inode->i_mode)) {
555 struct hfsplus_cat_folder *folder = &entry.folder;
556
557 if (fd.entrylength < sizeof(struct hfsplus_cat_folder))
558 /* panic? */;
559 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
560 sizeof(struct hfsplus_cat_folder));
561 /* simple node checks? */
Christoph Hellwig90e61692010-10-14 09:54:39 -0400562 hfsplus_cat_set_perms(inode, &folder->permissions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 folder->access_date = hfsp_ut2mt(inode->i_atime);
564 folder->content_mod_date = hfsp_ut2mt(inode->i_mtime);
565 folder->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
566 folder->valence = cpu_to_be32(inode->i_size - 2);
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700567 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
568 folder->subfolders =
569 cpu_to_be32(HFSPLUS_I(inode)->subfolders);
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
572 sizeof(struct hfsplus_cat_folder));
573 } else if (HFSPLUS_IS_RSRC(inode)) {
574 struct hfsplus_cat_file *file = &entry.file;
575 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
576 sizeof(struct hfsplus_cat_file));
577 hfsplus_inode_write_fork(inode, &file->rsrc_fork);
578 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
579 sizeof(struct hfsplus_cat_file));
580 } else {
581 struct hfsplus_cat_file *file = &entry.file;
582
583 if (fd.entrylength < sizeof(struct hfsplus_cat_file))
584 /* panic? */;
585 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
586 sizeof(struct hfsplus_cat_file));
587 hfsplus_inode_write_fork(inode, &file->data_fork);
Christoph Hellwig90e61692010-10-14 09:54:39 -0400588 hfsplus_cat_set_perms(inode, &file->permissions);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200589 if (HFSPLUS_FLG_IMMUTABLE &
590 (file->permissions.rootflags |
591 file->permissions.userflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
593 else
594 file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED);
595 file->access_date = hfsp_ut2mt(inode->i_atime);
596 file->content_mod_date = hfsp_ut2mt(inode->i_mtime);
597 file->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
598 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
599 sizeof(struct hfsplus_cat_file));
600 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100601
602 set_bit(HFSPLUS_I_CAT_DIRTY, &HFSPLUS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603out:
604 hfs_find_exit(&fd);
605 return 0;
606}