blob: f833d35630abbd4d98c4ca322e32704d792cf9e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/inode.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Inode handling routines
9 */
10
Christoph Hellwig34a2d312010-11-23 14:38:21 +010011#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/mm.h>
13#include <linux/fs.h>
14#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/mpage.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040016#include <linux/sched.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070017#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include "hfsplus_fs.h"
20#include "hfsplus_raw.h"
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080021#include "xattr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23static int hfsplus_readpage(struct file *file, struct page *page)
24{
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 return block_read_full_page(page, hfsplus_get_block);
26}
27
28static int hfsplus_writepage(struct page *page, struct writeback_control *wbc)
29{
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 return block_write_full_page(page, hfsplus_get_block, wbc);
31}
32
Marco Stornellid5068482012-12-15 11:55:07 +010033static void hfsplus_write_failed(struct address_space *mapping, loff_t to)
34{
35 struct inode *inode = mapping->host;
36
37 if (to > inode->i_size) {
38 truncate_pagecache(inode, to, inode->i_size);
39 hfsplus_file_truncate(inode);
40 }
41}
42
Nick Piggin7c0efc62007-10-16 01:25:09 -070043static int hfsplus_write_begin(struct file *file, struct address_space *mapping,
44 loff_t pos, unsigned len, unsigned flags,
45 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Christoph Hellwig282dc172010-06-04 11:29:55 +020047 int ret;
48
Nick Piggin7c0efc62007-10-16 01:25:09 -070049 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +020050 ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Nick Piggin7c0efc62007-10-16 01:25:09 -070051 hfsplus_get_block,
Christoph Hellwig6af502d2010-10-01 05:43:31 +020052 &HFSPLUS_I(mapping->host)->phys_size);
Marco Stornellid5068482012-12-15 11:55:07 +010053 if (unlikely(ret))
54 hfsplus_write_failed(mapping, pos + len);
Christoph Hellwig282dc172010-06-04 11:29:55 +020055
56 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59static sector_t hfsplus_bmap(struct address_space *mapping, sector_t block)
60{
61 return generic_block_bmap(mapping, block, hfsplus_get_block);
62}
63
Al Viro27496a82005-10-21 03:20:48 -040064static int hfsplus_releasepage(struct page *page, gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct inode *inode = page->mapping->host;
67 struct super_block *sb = inode->i_sb;
68 struct hfs_btree *tree;
69 struct hfs_bnode *node;
70 u32 nidx;
71 int i, res = 1;
72
73 switch (inode->i_ino) {
74 case HFSPLUS_EXT_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020075 tree = HFSPLUS_SB(sb)->ext_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 break;
77 case HFSPLUS_CAT_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020078 tree = HFSPLUS_SB(sb)->cat_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 break;
80 case HFSPLUS_ATTR_CNID:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020081 tree = HFSPLUS_SB(sb)->attr_tree;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 break;
83 default:
84 BUG();
85 return 0;
86 }
Eric Sesterhenn70632242008-05-12 14:02:21 -070087 if (!tree)
88 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (tree->node_size >= PAGE_CACHE_SIZE) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020090 nidx = page->index >>
91 (tree->node_size_shift - PAGE_CACHE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 spin_lock(&tree->hash_lock);
93 node = hfs_bnode_findhash(tree, nidx);
94 if (!node)
95 ;
96 else if (atomic_read(&node->refcnt))
97 res = 0;
98 if (res && node) {
99 hfs_bnode_unhash(node);
100 hfs_bnode_free(node);
101 }
102 spin_unlock(&tree->hash_lock);
103 } else {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200104 nidx = page->index <<
105 (PAGE_CACHE_SHIFT - tree->node_size_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 i = 1 << (PAGE_CACHE_SHIFT - tree->node_size_shift);
107 spin_lock(&tree->hash_lock);
108 do {
109 node = hfs_bnode_findhash(tree, nidx++);
110 if (!node)
111 continue;
112 if (atomic_read(&node->refcnt)) {
113 res = 0;
114 break;
115 }
116 hfs_bnode_unhash(node);
117 hfs_bnode_free(node);
118 } while (--i && nidx < tree->node_count);
119 spin_unlock(&tree->hash_lock);
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return res ? try_to_free_buffers(page) : 0;
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static ssize_t hfsplus_direct_IO(int rw, struct kiocb *iocb,
125 const struct iovec *iov, loff_t offset, unsigned long nr_segs)
126{
127 struct file *file = iocb->ki_filp;
Marco Stornellid5068482012-12-15 11:55:07 +0100128 struct address_space *mapping = file->f_mapping;
Al Viro496ad9a2013-01-23 17:07:38 -0500129 struct inode *inode = file_inode(file)->i_mapping->host;
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200130 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Christoph Hellwigaacfc19c2011-06-24 14:29:47 -0400132 ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
133 hfsplus_get_block);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200134
135 /*
136 * In case of error extending write may have instantiated a few
137 * blocks outside i_size. Trim these off again.
138 */
139 if (unlikely((rw & WRITE) && ret < 0)) {
140 loff_t isize = i_size_read(inode);
141 loff_t end = offset + iov_length(iov, nr_segs);
142
143 if (end > isize)
Marco Stornellid5068482012-12-15 11:55:07 +0100144 hfsplus_write_failed(mapping, end);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +0200145 }
146
147 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150static int hfsplus_writepages(struct address_space *mapping,
151 struct writeback_control *wbc)
152{
153 return mpage_writepages(mapping, wbc, hfsplus_get_block);
154}
155
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700156const struct address_space_operations hfsplus_btree_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 .readpage = hfsplus_readpage,
158 .writepage = hfsplus_writepage,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700159 .write_begin = hfsplus_write_begin,
160 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .bmap = hfsplus_bmap,
162 .releasepage = hfsplus_releasepage,
163};
164
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700165const struct address_space_operations hfsplus_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 .readpage = hfsplus_readpage,
167 .writepage = hfsplus_writepage,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700168 .write_begin = hfsplus_write_begin,
169 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .bmap = hfsplus_bmap,
171 .direct_IO = hfsplus_direct_IO,
172 .writepages = hfsplus_writepages,
173};
174
Al Viroe16404e2009-02-20 05:55:13 +0000175const struct dentry_operations hfsplus_dentry_operations = {
Duane Griffind45bce82007-07-15 23:41:23 -0700176 .d_hash = hfsplus_hash_dentry,
177 .d_compare = hfsplus_compare_dentry,
178};
179
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200180static struct dentry *hfsplus_file_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -0400181 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 struct hfs_find_data fd;
184 struct super_block *sb = dir->i_sb;
185 struct inode *inode = NULL;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200186 struct hfsplus_inode_info *hip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 int err;
188
189 if (HFSPLUS_IS_RSRC(dir) || strcmp(dentry->d_name.name, "rsrc"))
190 goto out;
191
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200192 inode = HFSPLUS_I(dir)->rsrc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 if (inode)
194 goto out;
195
196 inode = new_inode(sb);
197 if (!inode)
198 return ERR_PTR(-ENOMEM);
199
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200200 hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 inode->i_ino = dir->i_ino;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200202 INIT_LIST_HEAD(&hip->open_dir_list);
203 mutex_init(&hip->extents_lock);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100204 hip->extent_state = 0;
205 hip->flags = 0;
Matthew Garrettf3922382012-03-13 12:10:34 -0400206 hip->userflags = 0;
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100207 set_bit(HFSPLUS_I_RSRC, &hip->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400209 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
210 if (!err) {
211 err = hfsplus_find_cat(sb, dir->i_ino, &fd);
212 if (!err)
213 err = hfsplus_cat_read_inode(inode, &fd);
214 hfs_find_exit(&fd);
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (err) {
217 iput(inode);
218 return ERR_PTR(err);
219 }
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200220 hip->rsrc_inode = dir;
221 HFSPLUS_I(dir)->rsrc_inode = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 igrab(dir);
Christoph Hellwig58a818f2010-10-01 05:44:02 +0200223
224 /*
225 * __mark_inode_dirty expects inodes to be hashed. Since we don't
226 * want resource fork inodes in the regular inode space, we make them
227 * appear hashed, but do not put on any lists. hlist_del()
228 * will work fine and require no locking.
229 */
Al Viro756acc22010-10-23 15:23:40 -0400230 hlist_add_fake(&inode->i_hash);
Christoph Hellwig58a818f2010-10-01 05:44:02 +0200231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233out:
234 d_add(dentry, inode);
235 return NULL;
236}
237
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200238static void hfsplus_get_perms(struct inode *inode,
239 struct hfsplus_perm *perms, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200241 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 u16 mode;
243
244 mode = be16_to_cpu(perms->mode);
245
Eric W. Biederman16525e32012-02-07 16:27:17 -0800246 i_uid_write(inode, be32_to_cpu(perms->owner));
247 if (!i_uid_read(inode) && !mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200248 inode->i_uid = sbi->uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Eric W. Biederman16525e32012-02-07 16:27:17 -0800250 i_gid_write(inode, be32_to_cpu(perms->group));
251 if (!i_gid_read(inode) && !mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200252 inode->i_gid = sbi->gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (dir) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200255 mode = mode ? (mode & S_IALLUGO) : (S_IRWXUGO & ~(sbi->umask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 mode |= S_IFDIR;
257 } else if (!mode)
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200258 mode = S_IFREG | ((S_IRUGO|S_IWUGO) & ~(sbi->umask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 inode->i_mode = mode;
260
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200261 HFSPLUS_I(inode)->userflags = perms->userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (perms->rootflags & HFSPLUS_FLG_IMMUTABLE)
263 inode->i_flags |= S_IMMUTABLE;
264 else
265 inode->i_flags &= ~S_IMMUTABLE;
266 if (perms->rootflags & HFSPLUS_FLG_APPEND)
267 inode->i_flags |= S_APPEND;
268 else
269 inode->i_flags &= ~S_APPEND;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static int hfsplus_file_open(struct inode *inode, struct file *file)
273{
274 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200275 inode = HFSPLUS_I(inode)->rsrc_inode;
Alan Cox6e715292008-10-18 20:28:01 -0700276 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
277 return -EOVERFLOW;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200278 atomic_inc(&HFSPLUS_I(inode)->opencnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return 0;
280}
281
282static int hfsplus_file_release(struct inode *inode, struct file *file)
283{
284 struct super_block *sb = inode->i_sb;
285
286 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200287 inode = HFSPLUS_I(inode)->rsrc_inode;
288 if (atomic_dec_and_test(&HFSPLUS_I(inode)->opencnt)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800289 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 hfsplus_file_truncate(inode);
291 if (inode->i_flags & S_DEAD) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200292 hfsplus_delete_cat(inode->i_ino,
293 HFSPLUS_SB(sb)->hidden_dir, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 hfsplus_delete_inode(inode);
295 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800296 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 return 0;
299}
300
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200301static int hfsplus_setattr(struct dentry *dentry, struct iattr *attr)
302{
303 struct inode *inode = dentry->d_inode;
304 int error;
305
306 error = inode_change_ok(inode, attr);
307 if (error)
308 return error;
Christoph Hellwig10257742010-06-04 11:30:02 +0200309
310 if ((attr->ia_valid & ATTR_SIZE) &&
311 attr->ia_size != i_size_read(inode)) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -0400312 inode_dio_wait(inode);
Marco Stornellid5068482012-12-15 11:55:07 +0100313 truncate_setsize(inode, attr->ia_size);
314 hfsplus_file_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200315 }
316
317 setattr_copy(inode, attr);
318 mark_inode_dirty(inode);
319 return 0;
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200320}
321
Josef Bacik02c24a82011-07-16 20:44:56 -0400322int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end,
323 int datasync)
Al Virob5fc5102010-07-04 12:24:09 +0400324{
Christoph Hellwig28146972010-11-23 14:38:06 +0100325 struct inode *inode = file->f_mapping->host;
Christoph Hellwige3494702010-11-23 14:38:15 +0100326 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Christoph Hellwig28146972010-11-23 14:38:06 +0100327 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Christoph Hellwige3494702010-11-23 14:38:15 +0100328 int error = 0, error2;
Al Virob5fc5102010-07-04 12:24:09 +0400329
Josef Bacik02c24a82011-07-16 20:44:56 -0400330 error = filemap_write_and_wait_range(inode->i_mapping, start, end);
331 if (error)
332 return error;
333 mutex_lock(&inode->i_mutex);
334
Christoph Hellwig28146972010-11-23 14:38:06 +0100335 /*
336 * Sync inode metadata into the catalog and extent trees.
337 */
338 sync_inode_metadata(inode, 1);
Al Virob5fc5102010-07-04 12:24:09 +0400339
Christoph Hellwig28146972010-11-23 14:38:06 +0100340 /*
341 * And explicitly write out the btrees.
342 */
Christoph Hellwige3494702010-11-23 14:38:15 +0100343 if (test_and_clear_bit(HFSPLUS_I_CAT_DIRTY, &hip->flags))
344 error = filemap_write_and_wait(sbi->cat_tree->inode->i_mapping);
345
346 if (test_and_clear_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags)) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200347 error2 =
348 filemap_write_and_wait(sbi->ext_tree->inode->i_mapping);
Christoph Hellwige3494702010-11-23 14:38:15 +0100349 if (!error)
350 error = error2;
351 }
352
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800353 if (test_and_clear_bit(HFSPLUS_I_ATTR_DIRTY, &hip->flags)) {
354 if (sbi->attr_tree) {
355 error2 =
356 filemap_write_and_wait(
357 sbi->attr_tree->inode->i_mapping);
358 if (!error)
359 error = error2;
360 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700361 pr_err("sync non-existent attributes tree\n");
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800362 }
363 }
364
Christoph Hellwige3494702010-11-23 14:38:15 +0100365 if (test_and_clear_bit(HFSPLUS_I_ALLOC_DIRTY, &hip->flags)) {
366 error2 = filemap_write_and_wait(sbi->alloc_file->i_mapping);
367 if (!error)
368 error = error2;
369 }
370
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100371 if (!test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags))
372 blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL);
373
Josef Bacik02c24a82011-07-16 20:44:56 -0400374 mutex_unlock(&inode->i_mutex);
375
Christoph Hellwig28146972010-11-23 14:38:06 +0100376 return error;
Al Virob5fc5102010-07-04 12:24:09 +0400377}
378
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800379static const struct inode_operations hfsplus_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .lookup = hfsplus_file_lookup,
Christoph Hellwigd39aae92010-06-04 11:29:59 +0200381 .setattr = hfsplus_setattr,
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800382 .setxattr = generic_setxattr,
383 .getxattr = generic_getxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 .listxattr = hfsplus_listxattr,
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800385 .removexattr = hfsplus_removexattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800388static const struct file_operations hfsplus_file_operations = {
Anton Salikhmetov20b76432010-12-16 18:08:40 +0200389 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -0700390 .read = do_sync_read,
391 .aio_read = generic_file_aio_read,
392 .write = do_sync_write,
393 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 .mmap = generic_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200395 .splice_read = generic_file_splice_read,
Al Virob5fc5102010-07-04 12:24:09 +0400396 .fsync = hfsplus_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 .open = hfsplus_file_open,
398 .release = hfsplus_file_release,
Arnd Bergmann7cc4bcc2010-04-27 16:24:20 +0200399 .unlocked_ioctl = hfsplus_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400};
401
Al Viroc47da792011-07-26 03:26:51 -0400402struct inode *hfsplus_new_inode(struct super_block *sb, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200404 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 struct inode *inode = new_inode(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200406 struct hfsplus_inode_info *hip;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!inode)
409 return NULL;
410
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200411 inode->i_ino = sbi->next_cnid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 inode->i_mode = mode;
David Howells4ac84892008-11-14 10:38:54 +1100413 inode->i_uid = current_fsuid();
414 inode->i_gid = current_fsgid();
Miklos Szeredibfe86842011-10-28 14:13:29 +0200415 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200417
418 hip = HFSPLUS_I(inode);
419 INIT_LIST_HEAD(&hip->open_dir_list);
420 mutex_init(&hip->extents_lock);
421 atomic_set(&hip->opencnt, 0);
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100422 hip->extent_state = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200423 hip->flags = 0;
Matthew Garrettf3922382012-03-13 12:10:34 -0400424 hip->userflags = 0;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200425 memset(hip->first_extents, 0, sizeof(hfsplus_extent_rec));
426 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
427 hip->alloc_blocks = 0;
428 hip->first_blocks = 0;
429 hip->cached_start = 0;
430 hip->cached_blocks = 0;
431 hip->phys_size = 0;
432 hip->fs_blocks = 0;
433 hip->rsrc_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (S_ISDIR(inode->i_mode)) {
435 inode->i_size = 2;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200436 sbi->folder_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 inode->i_op = &hfsplus_dir_inode_operations;
438 inode->i_fop = &hfsplus_dir_operations;
439 } else if (S_ISREG(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200440 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 inode->i_op = &hfsplus_file_inode_operations;
442 inode->i_fop = &hfsplus_file_operations;
443 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200444 hip->clump_blocks = sbi->data_clump_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else if (S_ISLNK(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200446 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 inode->i_op = &page_symlink_inode_operations;
448 inode->i_mapping->a_ops = &hfsplus_aops;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200449 hip->clump_blocks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 } else
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200451 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 insert_inode_hash(inode);
453 mark_inode_dirty(inode);
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300454 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 return inode;
457}
458
459void hfsplus_delete_inode(struct inode *inode)
460{
461 struct super_block *sb = inode->i_sb;
462
463 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200464 HFSPLUS_SB(sb)->folder_count--;
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300465 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return;
467 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200468 HFSPLUS_SB(sb)->file_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (S_ISREG(inode->i_mode)) {
470 if (!inode->i_nlink) {
471 inode->i_size = 0;
472 hfsplus_file_truncate(inode);
473 }
474 } else if (S_ISLNK(inode->i_mode)) {
475 inode->i_size = 0;
476 hfsplus_file_truncate(inode);
477 }
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300478 hfsplus_mark_mdb_dirty(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
482{
483 struct super_block *sb = inode->i_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200484 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200485 struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 u32 count;
487 int i;
488
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200489 memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 for (count = 0, i = 0; i < 8; i++)
491 count += be32_to_cpu(fork->extents[i].block_count);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200492 hip->first_blocks = count;
493 memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
494 hip->cached_start = 0;
495 hip->cached_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200497 hip->alloc_blocks = be32_to_cpu(fork->total_blocks);
498 hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size);
499 hip->fs_blocks =
500 (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
501 inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
502 hip->clump_blocks =
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200503 be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200504 if (!hip->clump_blocks) {
505 hip->clump_blocks = HFSPLUS_IS_RSRC(inode) ?
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200506 sbi->rsrc_clump_blocks :
507 sbi->data_clump_blocks;
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200511void hfsplus_inode_write_fork(struct inode *inode,
512 struct hfsplus_fork_raw *fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200514 memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 sizeof(hfsplus_extent_rec));
516 fork->total_size = cpu_to_be64(inode->i_size);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200517 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd)
521{
522 hfsplus_cat_entry entry;
523 int res = 0;
524 u16 type;
525
526 type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset);
527
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400528 HFSPLUS_I(inode)->linkid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (type == HFSPLUS_FOLDER) {
530 struct hfsplus_cat_folder *folder = &entry.folder;
531
532 if (fd->entrylength < sizeof(struct hfsplus_cat_folder))
533 /* panic? */;
534 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
535 sizeof(struct hfsplus_cat_folder));
536 hfsplus_get_perms(inode, &folder->permissions, 1);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200537 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 inode->i_size = 2 + be32_to_cpu(folder->valence);
539 inode->i_atime = hfsp_mt2ut(folder->access_date);
540 inode->i_mtime = hfsp_mt2ut(folder->content_mod_date);
Roman Zippel9a4cad92006-01-18 17:43:09 -0800541 inode->i_ctime = hfsp_mt2ut(folder->attribute_mod_date);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200542 HFSPLUS_I(inode)->create_date = folder->create_date;
543 HFSPLUS_I(inode)->fs_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 inode->i_op = &hfsplus_dir_inode_operations;
545 inode->i_fop = &hfsplus_dir_operations;
546 } else if (type == HFSPLUS_FILE) {
547 struct hfsplus_cat_file *file = &entry.file;
548
549 if (fd->entrylength < sizeof(struct hfsplus_cat_file))
550 /* panic? */;
551 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
552 sizeof(struct hfsplus_cat_file));
553
Christoph Hellwigb33b7922010-11-23 14:38:13 +0100554 hfsplus_inode_read_fork(inode, HFSPLUS_IS_RSRC(inode) ?
555 &file->rsrc_fork : &file->data_fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 hfsplus_get_perms(inode, &file->permissions, 0);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200557 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (S_ISREG(inode->i_mode)) {
559 if (file->permissions.dev)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200560 set_nlink(inode,
561 be32_to_cpu(file->permissions.dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 inode->i_op = &hfsplus_file_inode_operations;
563 inode->i_fop = &hfsplus_file_operations;
564 inode->i_mapping->a_ops = &hfsplus_aops;
565 } else if (S_ISLNK(inode->i_mode)) {
566 inode->i_op = &page_symlink_inode_operations;
567 inode->i_mapping->a_ops = &hfsplus_aops;
568 } else {
569 init_special_inode(inode, inode->i_mode,
570 be32_to_cpu(file->permissions.dev));
571 }
572 inode->i_atime = hfsp_mt2ut(file->access_date);
573 inode->i_mtime = hfsp_mt2ut(file->content_mod_date);
Roman Zippel9a4cad92006-01-18 17:43:09 -0800574 inode->i_ctime = hfsp_mt2ut(file->attribute_mod_date);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200575 HFSPLUS_I(inode)->create_date = file->create_date;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700577 pr_err("bad catalog entry used to create inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 res = -EIO;
579 }
580 return res;
581}
582
583int hfsplus_cat_write_inode(struct inode *inode)
584{
585 struct inode *main_inode = inode;
586 struct hfs_find_data fd;
587 hfsplus_cat_entry entry;
588
589 if (HFSPLUS_IS_RSRC(inode))
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200590 main_inode = HFSPLUS_I(inode)->rsrc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!main_inode->i_nlink)
593 return 0;
594
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200595 if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb)->cat_tree, &fd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* panic? */
597 return -EIO;
598
599 if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd))
600 /* panic? */
601 goto out;
602
603 if (S_ISDIR(main_inode->i_mode)) {
604 struct hfsplus_cat_folder *folder = &entry.folder;
605
606 if (fd.entrylength < sizeof(struct hfsplus_cat_folder))
607 /* panic? */;
608 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
609 sizeof(struct hfsplus_cat_folder));
610 /* simple node checks? */
Christoph Hellwig90e61692010-10-14 09:54:39 -0400611 hfsplus_cat_set_perms(inode, &folder->permissions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 folder->access_date = hfsp_ut2mt(inode->i_atime);
613 folder->content_mod_date = hfsp_ut2mt(inode->i_mtime);
614 folder->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
615 folder->valence = cpu_to_be32(inode->i_size - 2);
616 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
617 sizeof(struct hfsplus_cat_folder));
618 } else if (HFSPLUS_IS_RSRC(inode)) {
619 struct hfsplus_cat_file *file = &entry.file;
620 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
621 sizeof(struct hfsplus_cat_file));
622 hfsplus_inode_write_fork(inode, &file->rsrc_fork);
623 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
624 sizeof(struct hfsplus_cat_file));
625 } else {
626 struct hfsplus_cat_file *file = &entry.file;
627
628 if (fd.entrylength < sizeof(struct hfsplus_cat_file))
629 /* panic? */;
630 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
631 sizeof(struct hfsplus_cat_file));
632 hfsplus_inode_write_fork(inode, &file->data_fork);
Christoph Hellwig90e61692010-10-14 09:54:39 -0400633 hfsplus_cat_set_perms(inode, &file->permissions);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200634 if (HFSPLUS_FLG_IMMUTABLE &
635 (file->permissions.rootflags |
636 file->permissions.userflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
638 else
639 file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED);
640 file->access_date = hfsp_ut2mt(inode->i_atime);
641 file->content_mod_date = hfsp_ut2mt(inode->i_mtime);
642 file->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
643 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
644 sizeof(struct hfsplus_cat_file));
645 }
Christoph Hellwige3494702010-11-23 14:38:15 +0100646
647 set_bit(HFSPLUS_I_CAT_DIRTY, &HFSPLUS_I(inode)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648out:
649 hfs_find_exit(&fd);
650 return 0;
651}