blob: 642e067d8fe8a11bbabc4b49b576569e6696557d [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
Christian Brauner2f221d62021-01-21 14:19:26 +0100249 error = setattr_prepare(&init_user_ns, 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 Hellwig562c72aa52011-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);
Ernesto A. Fernándezdc8844a2018-10-30 15:06:27 -0700264 inode->i_mtime = inode->i_ctime = current_time(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200265 }
266
Christian Brauner2f221d62021-01-21 14:19:26 +0100267 setattr_copy(&init_user_ns, inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200268 mark_inode_dirty(inode);
Vyacheslav Dubeykob4c11072013-09-11 14:24:30 -0700269
Christoph Hellwig10257742010-06-04 11:30:02 +0200270 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200271}
272
Ernesto A. Fernándezf93ca1e2019-01-03 15:27:46 -0800273int hfsplus_getattr(const struct path *path, struct kstat *stat,
274 u32 request_mask, unsigned int query_flags)
275{
276 struct inode *inode = d_inode(path->dentry);
277 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
278
279 if (inode->i_flags & S_APPEND)
280 stat->attributes |= STATX_ATTR_APPEND;
281 if (inode->i_flags & S_IMMUTABLE)
282 stat->attributes |= STATX_ATTR_IMMUTABLE;
283 if (hip->userflags & HFSPLUS_FLG_NODUMP)
284 stat->attributes |= STATX_ATTR_NODUMP;
285
286 stat->attributes_mask |= STATX_ATTR_APPEND | STATX_ATTR_IMMUTABLE |
287 STATX_ATTR_NODUMP;
288
Christian Brauner0d56a452021-01-21 14:19:30 +0100289 generic_fillattr(&init_user_ns, inode, stat);
Ernesto A. Fernándezf93ca1e2019-01-03 15:27:46 -0800290 return 0;
291}
292
Josef Bacik02c24a82011-07-16 20:44:56 -0400293int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end,
294 int datasync)
Al Virob5fc5102010-07-04 12:24:09 +0400295{
Christoph Hellwig28146972010-11-23 14:38:06 +0100296 struct inode *inode = file->f_mapping->host;
Christoph Hellwige3494702010-11-23 14:38:15 +0100297 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Christoph Hellwig28146972010-11-23 14:38:06 +0100298 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Christoph Hellwige3494702010-11-23 14:38:15 +0100299 int error = 0, error2;
Al Virob5fc5102010-07-04 12:24:09 +0400300
Jeff Layton3b49c9a2017-07-07 15:20:52 -0400301 error = file_write_and_wait_range(file, start, end);
Josef Bacik02c24a82011-07-16 20:44:56 -0400302 if (error)
303 return error;
Al Viro59551022016-01-22 15:40:57 -0500304 inode_lock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400305
Christoph Hellwig28146972010-11-23 14:38:06 +0100306 /*
307 * Sync inode metadata into the catalog and extent trees.
308 */
309 sync_inode_metadata(inode, 1);
Al Virob5fc5102010-07-04 12:24:09 +0400310
Christoph Hellwig28146972010-11-23 14:38:06 +0100311 /*
312 * And explicitly write out the btrees.
313 */
Christoph Hellwige3494702010-11-23 14:38:15 +0100314 if (test_and_clear_bit(HFSPLUS_I_CAT_DIRTY, &hip->flags))
315 error = filemap_write_and_wait(sbi->cat_tree->inode->i_mapping);
316
317 if (test_and_clear_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags)) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200318 error2 =
319 filemap_write_and_wait(sbi->ext_tree->inode->i_mapping);
Christoph Hellwige3494702010-11-23 14:38:15 +0100320 if (!error)
321 error = error2;
322 }
323
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800324 if (test_and_clear_bit(HFSPLUS_I_ATTR_DIRTY, &hip->flags)) {
325 if (sbi->attr_tree) {
326 error2 =
327 filemap_write_and_wait(
328 sbi->attr_tree->inode->i_mapping);
329 if (!error)
330 error = error2;
331 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700332 pr_err("sync non-existent attributes tree\n");
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800333 }
334 }
335
Christoph Hellwige3494702010-11-23 14:38:15 +0100336 if (test_and_clear_bit(HFSPLUS_I_ALLOC_DIRTY, &hip->flags)) {
337 error2 = filemap_write_and_wait(sbi->alloc_file->i_mapping);
338 if (!error)
339 error = error2;
340 }
341
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100342 if (!test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags))
Christoph Hellwig93985542020-05-13 14:36:00 +0200343 blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL);
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100344
Al Viro59551022016-01-22 15:40:57 -0500345 inode_unlock(inode);
Josef Bacik02c24a82011-07-16 20:44:56 -0400346
Christoph Hellwig28146972010-11-23 14:38:06 +0100347 return error;
Al Virob5fc5102010-07-04 12:24:09 +0400348}
349
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800350static const struct inode_operations hfsplus_file_inode_operations = {
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200351 .setattr = hfsplus_setattr,
Ernesto A. Fernándezf93ca1e2019-01-03 15:27:46 -0800352 .getattr = hfsplus_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 .listxattr = hfsplus_listxattr,
354};
355
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800356static const struct file_operations hfsplus_file_operations = {
Anton Salikhmetov20b76432010-12-16 18:08:40 +0200357 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -0400358 .read_iter = generic_file_read_iter,
Al Viro81742022014-04-03 03:17:43 -0400359 .write_iter = generic_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 .mmap = generic_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200361 .splice_read = generic_file_splice_read,
Al Virob5fc5102010-07-04 12:24:09 +0400362 .fsync = hfsplus_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .open = hfsplus_file_open,
364 .release = hfsplus_file_release,
Arnd Bergmann7cc4bcc2010-04-27 16:24:20 +0200365 .unlocked_ioctl = hfsplus_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366};
367
Ernesto A. Fernandezb0cd38c2018-02-06 15:49:02 -0800368struct inode *hfsplus_new_inode(struct super_block *sb, struct inode *dir,
369 umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200371 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct inode *inode = new_inode(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200373 struct hfsplus_inode_info *hip;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (!inode)
376 return NULL;
377
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200378 inode->i_ino = sbi->next_cnid++;
Christian Brauner21cb47b2021-01-21 14:19:25 +0100379 inode_init_owner(&init_user_ns, inode, dir, mode);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200380 set_nlink(inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700381 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200382
383 hip = HFSPLUS_I(inode);
384 INIT_LIST_HEAD(&hip->open_dir_list);
Al Viro323ee8f2016-05-12 20:02:09 -0400385 spin_lock_init(&hip->open_dir_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200386 mutex_init(&hip->extents_lock);
387 atomic_set(&hip->opencnt, 0);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100388 hip->extent_state = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200389 hip->flags = 0;
Matthew Garrettf3922382012-03-13 12:10:34 -0400390 hip->userflags = 0;
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700391 hip->subfolders = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200392 memset(hip->first_extents, 0, sizeof(hfsplus_extent_rec));
393 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
394 hip->alloc_blocks = 0;
395 hip->first_blocks = 0;
396 hip->cached_start = 0;
397 hip->cached_blocks = 0;
398 hip->phys_size = 0;
399 hip->fs_blocks = 0;
400 hip->rsrc_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (S_ISDIR(inode->i_mode)) {
402 inode->i_size = 2;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200403 sbi->folder_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 inode->i_op = &hfsplus_dir_inode_operations;
405 inode->i_fop = &hfsplus_dir_operations;
406 } else if (S_ISREG(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200407 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 inode->i_op = &hfsplus_file_inode_operations;
409 inode->i_fop = &hfsplus_file_operations;
410 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200411 hip->clump_blocks = sbi->data_clump_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 } else if (S_ISLNK(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200413 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500415 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200417 hip->clump_blocks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 } else
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200419 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 insert_inode_hash(inode);
421 mark_inode_dirty(inode);
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300422 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 return inode;
425}
426
427void hfsplus_delete_inode(struct inode *inode)
428{
429 struct super_block *sb = inode->i_sb;
430
431 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200432 HFSPLUS_SB(sb)->folder_count--;
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300433 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return;
435 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200436 HFSPLUS_SB(sb)->file_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (S_ISREG(inode->i_mode)) {
438 if (!inode->i_nlink) {
439 inode->i_size = 0;
440 hfsplus_file_truncate(inode);
441 }
442 } else if (S_ISLNK(inode->i_mode)) {
443 inode->i_size = 0;
444 hfsplus_file_truncate(inode);
445 }
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300446 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
450{
451 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200452 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200453 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 u32 count;
455 int i;
456
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200457 memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 for (count = 0, i = 0; i < 8; i++)
459 count += be32_to_cpu(fork->extents[i].block_count);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200460 hip->first_blocks = count;
461 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
462 hip->cached_start = 0;
463 hip->cached_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200465 hip->alloc_blocks = be32_to_cpu(fork->total_blocks);
466 hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size);
467 hip->fs_blocks =
468 (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
469 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
470 hip->clump_blocks =
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200471 be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200472 if (!hip->clump_blocks) {
473 hip->clump_blocks = HFSPLUS_IS_RSRC(inode) ?
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200474 sbi->rsrc_clump_blocks :
475 sbi->data_clump_blocks;
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200479void hfsplus_inode_write_fork(struct inode *inode,
480 struct hfsplus_fork_raw *fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200482 memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 sizeof(hfsplus_extent_rec));
484 fork->total_size = cpu_to_be64(inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200485 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
488int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd)
489{
490 hfsplus_cat_entry entry;
491 int res = 0;
492 u16 type;
493
494 type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset);
495
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400496 HFSPLUS_I(inode)->linkid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (type == HFSPLUS_FOLDER) {
498 struct hfsplus_cat_folder *folder = &entry.folder;
499
500 if (fd->entrylength < sizeof(struct hfsplus_cat_folder))
501 /* panic? */;
502 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
503 sizeof(struct hfsplus_cat_folder));
504 hfsplus_get_perms(inode, &folder->permissions, 1);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200505 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 inode->i_size = 2 + be32_to_cpu(folder->valence);
Arnd Bergmann4ddfc3dc2018-06-20 09:47:26 +0200507 inode->i_atime = hfsp_mt2ut(folder->access_date);
508 inode->i_mtime = hfsp_mt2ut(folder->content_mod_date);
509 inode->i_ctime = hfsp_mt2ut(folder->attribute_mod_date);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200510 HFSPLUS_I(inode)->create_date = folder->create_date;
511 HFSPLUS_I(inode)->fs_blocks = 0;
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700512 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
513 HFSPLUS_I(inode)->subfolders =
514 be32_to_cpu(folder->subfolders);
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 inode->i_op = &hfsplus_dir_inode_operations;
517 inode->i_fop = &hfsplus_dir_operations;
518 } else if (type == HFSPLUS_FILE) {
519 struct hfsplus_cat_file *file = &entry.file;
520
521 if (fd->entrylength < sizeof(struct hfsplus_cat_file))
522 /* panic? */;
523 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
524 sizeof(struct hfsplus_cat_file));
525
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100526 hfsplus_inode_read_fork(inode, HFSPLUS_IS_RSRC(inode) ?
527 &file->rsrc_fork : &file->data_fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 hfsplus_get_perms(inode, &file->permissions, 0);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200529 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (S_ISREG(inode->i_mode)) {
531 if (file->permissions.dev)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200532 set_nlink(inode,
533 be32_to_cpu(file->permissions.dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 inode->i_op = &hfsplus_file_inode_operations;
535 inode->i_fop = &hfsplus_file_operations;
536 inode->i_mapping->a_ops = &hfsplus_aops;
537 } else if (S_ISLNK(inode->i_mode)) {
538 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500539 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 inode->i_mapping->a_ops = &hfsplus_aops;
541 } else {
542 init_special_inode(inode, inode->i_mode,
543 be32_to_cpu(file->permissions.dev));
544 }
Arnd Bergmann4ddfc3dc2018-06-20 09:47:26 +0200545 inode->i_atime = hfsp_mt2ut(file->access_date);
546 inode->i_mtime = hfsp_mt2ut(file->content_mod_date);
547 inode->i_ctime = hfsp_mt2ut(file->attribute_mod_date);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200548 HFSPLUS_I(inode)->create_date = file->create_date;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700550 pr_err("bad catalog entry used to create inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 res = -EIO;
552 }
553 return res;
554}
555
556int hfsplus_cat_write_inode(struct inode *inode)
557{
558 struct inode *main_inode = inode;
559 struct hfs_find_data fd;
560 hfsplus_cat_entry entry;
561
562 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200563 main_inode = HFSPLUS_I(inode)->rsrc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (!main_inode->i_nlink)
566 return 0;
567
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200568 if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb)->cat_tree, &fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* panic? */
570 return -EIO;
571
572 if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd))
573 /* panic? */
574 goto out;
575
576 if (S_ISDIR(main_inode->i_mode)) {
577 struct hfsplus_cat_folder *folder = &entry.folder;
578
579 if (fd.entrylength < sizeof(struct hfsplus_cat_folder))
580 /* panic? */;
581 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
582 sizeof(struct hfsplus_cat_folder));
583 /* simple node checks? */
Christoph Hellwig90e61692010-10-14 09:54:39 -0400584 hfsplus_cat_set_perms(inode, &folder->permissions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 folder->access_date = hfsp_ut2mt(inode->i_atime);
586 folder->content_mod_date = hfsp_ut2mt(inode->i_mtime);
587 folder->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
588 folder->valence = cpu_to_be32(inode->i_size - 2);
Sergei Antonovd7d673a2014-03-10 15:49:51 -0700589 if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
590 folder->subfolders =
591 cpu_to_be32(HFSPLUS_I(inode)->subfolders);
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
594 sizeof(struct hfsplus_cat_folder));
595 } else if (HFSPLUS_IS_RSRC(inode)) {
596 struct hfsplus_cat_file *file = &entry.file;
597 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
598 sizeof(struct hfsplus_cat_file));
599 hfsplus_inode_write_fork(inode, &file->rsrc_fork);
600 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
601 sizeof(struct hfsplus_cat_file));
602 } else {
603 struct hfsplus_cat_file *file = &entry.file;
604
605 if (fd.entrylength < sizeof(struct hfsplus_cat_file))
606 /* panic? */;
607 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
608 sizeof(struct hfsplus_cat_file));
609 hfsplus_inode_write_fork(inode, &file->data_fork);
Christoph Hellwig90e61692010-10-14 09:54:39 -0400610 hfsplus_cat_set_perms(inode, &file->permissions);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200611 if (HFSPLUS_FLG_IMMUTABLE &
612 (file->permissions.rootflags |
613 file->permissions.userflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
615 else
616 file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED);
617 file->access_date = hfsp_ut2mt(inode->i_atime);
618 file->content_mod_date = hfsp_ut2mt(inode->i_mtime);
619 file->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
620 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
621 sizeof(struct hfsplus_cat_file));
622 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100623
624 set_bit(HFSPLUS_I_CAT_DIRTY, &HFSPLUS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625out:
626 hfs_find_exit(&fd);
627 return 0;
628}