inode.c 16.7 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11
/*
 *  linux/fs/hfsplus/inode.c
 *
 * Copyright (C) 2001
 * Brad Boyer (flar@allandria.com)
 * (C) 2003 Ardis Technologies <roman@ardistech.com>
 *
 * Inode handling routines
 */

12
#include <linux/blkdev.h>
L
Linus Torvalds 已提交
13 14 15 16
#include <linux/mm.h>
#include <linux/fs.h>
#include <linux/pagemap.h>
#include <linux/mpage.h>
A
Alexey Dobriyan 已提交
17
#include <linux/sched.h>
18
#include <linux/cred.h>
19
#include <linux/uio.h>
L
Linus Torvalds 已提交
20 21 22

#include "hfsplus_fs.h"
#include "hfsplus_raw.h"
23
#include "xattr.h"
24
#include "acl.h"
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32 33 34 35

static int hfsplus_readpage(struct file *file, struct page *page)
{
	return block_read_full_page(page, hfsplus_get_block);
}

static int hfsplus_writepage(struct page *page, struct writeback_control *wbc)
{
	return block_write_full_page(page, hfsplus_get_block, wbc);
}

M
Marco Stornelli 已提交
36 37 38 39 40
static void hfsplus_write_failed(struct address_space *mapping, loff_t to)
{
	struct inode *inode = mapping->host;

	if (to > inode->i_size) {
41
		truncate_pagecache(inode, inode->i_size);
M
Marco Stornelli 已提交
42 43 44 45
		hfsplus_file_truncate(inode);
	}
}

N
Nick Piggin 已提交
46 47 48
static int hfsplus_write_begin(struct file *file, struct address_space *mapping,
			loff_t pos, unsigned len, unsigned flags,
			struct page **pagep, void **fsdata)
L
Linus Torvalds 已提交
49
{
50 51
	int ret;

N
Nick Piggin 已提交
52
	*pagep = NULL;
53
	ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
N
Nick Piggin 已提交
54
				hfsplus_get_block,
55
				&HFSPLUS_I(mapping->host)->phys_size);
M
Marco Stornelli 已提交
56 57
	if (unlikely(ret))
		hfsplus_write_failed(mapping, pos + len);
58 59

	return ret;
L
Linus Torvalds 已提交
60 61 62 63 64 65 66
}

static sector_t hfsplus_bmap(struct address_space *mapping, sector_t block)
{
	return generic_block_bmap(mapping, block, hfsplus_get_block);
}

A
Al Viro 已提交
67
static int hfsplus_releasepage(struct page *page, gfp_t mask)
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77
{
	struct inode *inode = page->mapping->host;
	struct super_block *sb = inode->i_sb;
	struct hfs_btree *tree;
	struct hfs_bnode *node;
	u32 nidx;
	int i, res = 1;

	switch (inode->i_ino) {
	case HFSPLUS_EXT_CNID:
78
		tree = HFSPLUS_SB(sb)->ext_tree;
L
Linus Torvalds 已提交
79 80
		break;
	case HFSPLUS_CAT_CNID:
81
		tree = HFSPLUS_SB(sb)->cat_tree;
L
Linus Torvalds 已提交
82 83
		break;
	case HFSPLUS_ATTR_CNID:
84
		tree = HFSPLUS_SB(sb)->attr_tree;
L
Linus Torvalds 已提交
85 86 87 88 89
		break;
	default:
		BUG();
		return 0;
	}
90 91
	if (!tree)
		return 0;
92
	if (tree->node_size >= PAGE_SIZE) {
93
		nidx = page->index >>
94
			(tree->node_size_shift - PAGE_SHIFT);
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102 103 104 105 106
		spin_lock(&tree->hash_lock);
		node = hfs_bnode_findhash(tree, nidx);
		if (!node)
			;
		else if (atomic_read(&node->refcnt))
			res = 0;
		if (res && node) {
			hfs_bnode_unhash(node);
			hfs_bnode_free(node);
		}
		spin_unlock(&tree->hash_lock);
	} else {
107
		nidx = page->index <<
108 109
			(PAGE_SHIFT - tree->node_size_shift);
		i = 1 << (PAGE_SHIFT - tree->node_size_shift);
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
		spin_lock(&tree->hash_lock);
		do {
			node = hfs_bnode_findhash(tree, nidx++);
			if (!node)
				continue;
			if (atomic_read(&node->refcnt)) {
				res = 0;
				break;
			}
			hfs_bnode_unhash(node);
			hfs_bnode_free(node);
		} while (--i && nidx < tree->node_count);
		spin_unlock(&tree->hash_lock);
	}
	return res ? try_to_free_buffers(page) : 0;
}

127
static ssize_t hfsplus_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
L
Linus Torvalds 已提交
128 129
{
	struct file *file = iocb->ki_filp;
M
Marco Stornelli 已提交
130
	struct address_space *mapping = file->f_mapping;
131
	struct inode *inode = mapping->host;
132
	size_t count = iov_iter_count(iter);
133
	ssize_t ret;
L
Linus Torvalds 已提交
134

135
	ret = blockdev_direct_IO(iocb, inode, iter, hfsplus_get_block);
136 137 138 139 140

	/*
	 * In case of error extending write may have instantiated a few
	 * blocks outside i_size. Trim these off again.
	 */
141
	if (unlikely(iov_iter_rw(iter) == WRITE && ret < 0)) {
142
		loff_t isize = i_size_read(inode);
143
		loff_t end = iocb->ki_pos + count;
144 145

		if (end > isize)
M
Marco Stornelli 已提交
146
			hfsplus_write_failed(mapping, end);
147 148 149
	}

	return ret;
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157
}

static int hfsplus_writepages(struct address_space *mapping,
			      struct writeback_control *wbc)
{
	return mpage_writepages(mapping, wbc, hfsplus_get_block);
}

158
const struct address_space_operations hfsplus_btree_aops = {
L
Linus Torvalds 已提交
159 160
	.readpage	= hfsplus_readpage,
	.writepage	= hfsplus_writepage,
N
Nick Piggin 已提交
161 162
	.write_begin	= hfsplus_write_begin,
	.write_end	= generic_write_end,
L
Linus Torvalds 已提交
163 164 165 166
	.bmap		= hfsplus_bmap,
	.releasepage	= hfsplus_releasepage,
};

167
const struct address_space_operations hfsplus_aops = {
L
Linus Torvalds 已提交
168 169
	.readpage	= hfsplus_readpage,
	.writepage	= hfsplus_writepage,
N
Nick Piggin 已提交
170 171
	.write_begin	= hfsplus_write_begin,
	.write_end	= generic_write_end,
L
Linus Torvalds 已提交
172 173 174 175 176
	.bmap		= hfsplus_bmap,
	.direct_IO	= hfsplus_direct_IO,
	.writepages	= hfsplus_writepages,
};

177
const struct dentry_operations hfsplus_dentry_operations = {
178 179 180 181
	.d_hash       = hfsplus_hash_dentry,
	.d_compare    = hfsplus_compare_dentry,
};

182 183
static void hfsplus_get_perms(struct inode *inode,
		struct hfsplus_perm *perms, int dir)
L
Linus Torvalds 已提交
184
{
185
	struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
L
Linus Torvalds 已提交
186 187 188 189
	u16 mode;

	mode = be16_to_cpu(perms->mode);

190 191
	i_uid_write(inode, be32_to_cpu(perms->owner));
	if (!i_uid_read(inode) && !mode)
192
		inode->i_uid = sbi->uid;
L
Linus Torvalds 已提交
193

194 195
	i_gid_write(inode, be32_to_cpu(perms->group));
	if (!i_gid_read(inode) && !mode)
196
		inode->i_gid = sbi->gid;
L
Linus Torvalds 已提交
197 198

	if (dir) {
199
		mode = mode ? (mode & S_IALLUGO) : (S_IRWXUGO & ~(sbi->umask));
L
Linus Torvalds 已提交
200 201
		mode |= S_IFDIR;
	} else if (!mode)
202
		mode = S_IFREG | ((S_IRUGO|S_IWUGO) & ~(sbi->umask));
L
Linus Torvalds 已提交
203 204
	inode->i_mode = mode;

205
	HFSPLUS_I(inode)->userflags = perms->userflags;
L
Linus Torvalds 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218
	if (perms->rootflags & HFSPLUS_FLG_IMMUTABLE)
		inode->i_flags |= S_IMMUTABLE;
	else
		inode->i_flags &= ~S_IMMUTABLE;
	if (perms->rootflags & HFSPLUS_FLG_APPEND)
		inode->i_flags |= S_APPEND;
	else
		inode->i_flags &= ~S_APPEND;
}

static int hfsplus_file_open(struct inode *inode, struct file *file)
{
	if (HFSPLUS_IS_RSRC(inode))
219
		inode = HFSPLUS_I(inode)->rsrc_inode;
A
Alan Cox 已提交
220 221
	if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
		return -EOVERFLOW;
222
	atomic_inc(&HFSPLUS_I(inode)->opencnt);
L
Linus Torvalds 已提交
223 224 225 226 227 228 229 230
	return 0;
}

static int hfsplus_file_release(struct inode *inode, struct file *file)
{
	struct super_block *sb = inode->i_sb;

	if (HFSPLUS_IS_RSRC(inode))
231 232
		inode = HFSPLUS_I(inode)->rsrc_inode;
	if (atomic_dec_and_test(&HFSPLUS_I(inode)->opencnt)) {
A
Al Viro 已提交
233
		inode_lock(inode);
L
Linus Torvalds 已提交
234 235
		hfsplus_file_truncate(inode);
		if (inode->i_flags & S_DEAD) {
236 237
			hfsplus_delete_cat(inode->i_ino,
					   HFSPLUS_SB(sb)->hidden_dir, NULL);
L
Linus Torvalds 已提交
238 239
			hfsplus_delete_inode(inode);
		}
A
Al Viro 已提交
240
		inode_unlock(inode);
L
Linus Torvalds 已提交
241 242 243 244
	}
	return 0;
}

C
Christoph Hellwig 已提交
245 246
static int hfsplus_setattr(struct dentry *dentry, struct iattr *attr)
{
247
	struct inode *inode = d_inode(dentry);
C
Christoph Hellwig 已提交
248 249
	int error;

250
	error = setattr_prepare(dentry, attr);
C
Christoph Hellwig 已提交
251 252
	if (error)
		return error;
C
Christoph Hellwig 已提交
253 254 255

	if ((attr->ia_valid & ATTR_SIZE) &&
	    attr->ia_size != i_size_read(inode)) {
256
		inode_dio_wait(inode);
257 258 259 260 261 262
		if (attr->ia_size > inode->i_size) {
			error = generic_cont_expand_simple(inode,
							   attr->ia_size);
			if (error)
				return error;
		}
M
Marco Stornelli 已提交
263 264
		truncate_setsize(inode, attr->ia_size);
		hfsplus_file_truncate(inode);
C
Christoph Hellwig 已提交
265 266 267 268
	}

	setattr_copy(inode, attr);
	mark_inode_dirty(inode);
269 270

	if (attr->ia_valid & ATTR_MODE) {
271
		error = posix_acl_chmod(inode, inode->i_mode);
272 273 274 275
		if (unlikely(error))
			return error;
	}

C
Christoph Hellwig 已提交
276
	return 0;
C
Christoph Hellwig 已提交
277 278
}

279 280
int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end,
		       int datasync)
A
Al Viro 已提交
281
{
C
Christoph Hellwig 已提交
282
	struct inode *inode = file->f_mapping->host;
C
Christoph Hellwig 已提交
283
	struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
C
Christoph Hellwig 已提交
284
	struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
C
Christoph Hellwig 已提交
285
	int error = 0, error2;
A
Al Viro 已提交
286

287
	error = file_write_and_wait_range(file, start, end);
288 289
	if (error)
		return error;
A
Al Viro 已提交
290
	inode_lock(inode);
291

C
Christoph Hellwig 已提交
292 293 294 295 296 297 298 299
	/*
	 * Sync inode metadata into the catalog and extent trees.
	 */
	sync_inode_metadata(inode, 1);

	/*
	 * And explicitly write out the btrees.
	 */
C
Christoph Hellwig 已提交
300 301 302 303
	if (test_and_clear_bit(HFSPLUS_I_CAT_DIRTY, &hip->flags))
		error = filemap_write_and_wait(sbi->cat_tree->inode->i_mapping);

	if (test_and_clear_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags)) {
304 305
		error2 =
			filemap_write_and_wait(sbi->ext_tree->inode->i_mapping);
C
Christoph Hellwig 已提交
306 307 308 309
		if (!error)
			error = error2;
	}

310 311 312 313 314 315 316 317
	if (test_and_clear_bit(HFSPLUS_I_ATTR_DIRTY, &hip->flags)) {
		if (sbi->attr_tree) {
			error2 =
				filemap_write_and_wait(
					    sbi->attr_tree->inode->i_mapping);
			if (!error)
				error = error2;
		} else {
318
			pr_err("sync non-existent attributes tree\n");
319 320 321
		}
	}

C
Christoph Hellwig 已提交
322 323 324 325 326 327
	if (test_and_clear_bit(HFSPLUS_I_ALLOC_DIRTY, &hip->flags)) {
		error2 = filemap_write_and_wait(sbi->alloc_file->i_mapping);
		if (!error)
			error = error2;
	}

328 329 330
	if (!test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags))
		blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL);

A
Al Viro 已提交
331
	inode_unlock(inode);
332

C
Christoph Hellwig 已提交
333
	return error;
A
Al Viro 已提交
334 335
}

336
static const struct inode_operations hfsplus_file_inode_operations = {
C
Christoph Hellwig 已提交
337
	.setattr	= hfsplus_setattr,
L
Linus Torvalds 已提交
338
	.listxattr	= hfsplus_listxattr,
339 340
#ifdef CONFIG_HFSPLUS_FS_POSIX_ACL
	.get_acl	= hfsplus_get_posix_acl,
341
	.set_acl	= hfsplus_set_posix_acl,
342
#endif
L
Linus Torvalds 已提交
343 344
};

345
static const struct file_operations hfsplus_file_operations = {
346
	.llseek		= generic_file_llseek,
347
	.read_iter	= generic_file_read_iter,
348
	.write_iter	= generic_file_write_iter,
L
Linus Torvalds 已提交
349
	.mmap		= generic_file_mmap,
350
	.splice_read	= generic_file_splice_read,
A
Al Viro 已提交
351
	.fsync		= hfsplus_file_fsync,
L
Linus Torvalds 已提交
352 353
	.open		= hfsplus_file_open,
	.release	= hfsplus_file_release,
354
	.unlocked_ioctl = hfsplus_ioctl,
L
Linus Torvalds 已提交
355 356
};

357 358
struct inode *hfsplus_new_inode(struct super_block *sb, struct inode *dir,
				umode_t mode)
L
Linus Torvalds 已提交
359
{
360
	struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
L
Linus Torvalds 已提交
361
	struct inode *inode = new_inode(sb);
362
	struct hfsplus_inode_info *hip;
363

L
Linus Torvalds 已提交
364 365 366
	if (!inode)
		return NULL;

367
	inode->i_ino = sbi->next_cnid++;
368
	inode_init_owner(inode, dir, mode);
M
Miklos Szeredi 已提交
369
	set_nlink(inode, 1);
370
	inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
371 372 373

	hip = HFSPLUS_I(inode);
	INIT_LIST_HEAD(&hip->open_dir_list);
A
Al Viro 已提交
374
	spin_lock_init(&hip->open_dir_lock);
375 376
	mutex_init(&hip->extents_lock);
	atomic_set(&hip->opencnt, 0);
C
Christoph Hellwig 已提交
377
	hip->extent_state = 0;
378
	hip->flags = 0;
M
Matthew Garrett 已提交
379
	hip->userflags = 0;
380
	hip->subfolders = 0;
381 382 383 384 385 386 387 388 389
	memset(hip->first_extents, 0, sizeof(hfsplus_extent_rec));
	memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
	hip->alloc_blocks = 0;
	hip->first_blocks = 0;
	hip->cached_start = 0;
	hip->cached_blocks = 0;
	hip->phys_size = 0;
	hip->fs_blocks = 0;
	hip->rsrc_inode = NULL;
L
Linus Torvalds 已提交
390 391
	if (S_ISDIR(inode->i_mode)) {
		inode->i_size = 2;
392
		sbi->folder_count++;
L
Linus Torvalds 已提交
393 394 395
		inode->i_op = &hfsplus_dir_inode_operations;
		inode->i_fop = &hfsplus_dir_operations;
	} else if (S_ISREG(inode->i_mode)) {
396
		sbi->file_count++;
L
Linus Torvalds 已提交
397 398 399
		inode->i_op = &hfsplus_file_inode_operations;
		inode->i_fop = &hfsplus_file_operations;
		inode->i_mapping->a_ops = &hfsplus_aops;
400
		hip->clump_blocks = sbi->data_clump_blocks;
L
Linus Torvalds 已提交
401
	} else if (S_ISLNK(inode->i_mode)) {
402
		sbi->file_count++;
L
Linus Torvalds 已提交
403
		inode->i_op = &page_symlink_inode_operations;
404
		inode_nohighmem(inode);
L
Linus Torvalds 已提交
405
		inode->i_mapping->a_ops = &hfsplus_aops;
406
		hip->clump_blocks = 1;
L
Linus Torvalds 已提交
407
	} else
408
		sbi->file_count++;
L
Linus Torvalds 已提交
409 410
	insert_inode_hash(inode);
	mark_inode_dirty(inode);
411
	hfsplus_mark_mdb_dirty(sb);
L
Linus Torvalds 已提交
412 413 414 415 416 417 418 419 420

	return inode;
}

void hfsplus_delete_inode(struct inode *inode)
{
	struct super_block *sb = inode->i_sb;

	if (S_ISDIR(inode->i_mode)) {
421
		HFSPLUS_SB(sb)->folder_count--;
422
		hfsplus_mark_mdb_dirty(sb);
L
Linus Torvalds 已提交
423 424
		return;
	}
425
	HFSPLUS_SB(sb)->file_count--;
L
Linus Torvalds 已提交
426 427 428 429 430 431 432 433 434
	if (S_ISREG(inode->i_mode)) {
		if (!inode->i_nlink) {
			inode->i_size = 0;
			hfsplus_file_truncate(inode);
		}
	} else if (S_ISLNK(inode->i_mode)) {
		inode->i_size = 0;
		hfsplus_file_truncate(inode);
	}
435
	hfsplus_mark_mdb_dirty(sb);
L
Linus Torvalds 已提交
436 437 438 439 440
}

void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
{
	struct super_block *sb = inode->i_sb;
441
	struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
442
	struct hfsplus_inode_info *hip = HFSPLUS_I(inode);
L
Linus Torvalds 已提交
443 444 445
	u32 count;
	int i;

446
	memcpy(&hip->first_extents, &fork->extents, sizeof(hfsplus_extent_rec));
L
Linus Torvalds 已提交
447 448
	for (count = 0, i = 0; i < 8; i++)
		count += be32_to_cpu(fork->extents[i].block_count);
449 450 451 452 453 454 455 456 457 458 459
	hip->first_blocks = count;
	memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));
	hip->cached_start = 0;
	hip->cached_blocks = 0;

	hip->alloc_blocks = be32_to_cpu(fork->total_blocks);
	hip->phys_size = inode->i_size = be64_to_cpu(fork->total_size);
	hip->fs_blocks =
		(inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
	inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits);
	hip->clump_blocks =
460
		be32_to_cpu(fork->clump_size) >> sbi->alloc_blksz_shift;
461 462
	if (!hip->clump_blocks) {
		hip->clump_blocks = HFSPLUS_IS_RSRC(inode) ?
463 464 465
			sbi->rsrc_clump_blocks :
			sbi->data_clump_blocks;
	}
L
Linus Torvalds 已提交
466 467
}

468 469
void hfsplus_inode_write_fork(struct inode *inode,
		struct hfsplus_fork_raw *fork)
L
Linus Torvalds 已提交
470
{
471
	memcpy(&fork->extents, &HFSPLUS_I(inode)->first_extents,
L
Linus Torvalds 已提交
472 473
	       sizeof(hfsplus_extent_rec));
	fork->total_size = cpu_to_be64(inode->i_size);
474
	fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode)->alloc_blocks);
L
Linus Torvalds 已提交
475 476 477 478 479 480 481 482 483 484
}

int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd)
{
	hfsplus_cat_entry entry;
	int res = 0;
	u16 type;

	type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset);

C
Christoph Hellwig 已提交
485
	HFSPLUS_I(inode)->linkid = 0;
L
Linus Torvalds 已提交
486 487 488 489 490 491 492 493
	if (type == HFSPLUS_FOLDER) {
		struct hfsplus_cat_folder *folder = &entry.folder;

		if (fd->entrylength < sizeof(struct hfsplus_cat_folder))
			/* panic? */;
		hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
					sizeof(struct hfsplus_cat_folder));
		hfsplus_get_perms(inode, &folder->permissions, 1);
M
Miklos Szeredi 已提交
494
		set_nlink(inode, 1);
L
Linus Torvalds 已提交
495 496 497
		inode->i_size = 2 + be32_to_cpu(folder->valence);
		inode->i_atime = hfsp_mt2ut(folder->access_date);
		inode->i_mtime = hfsp_mt2ut(folder->content_mod_date);
R
Roman Zippel 已提交
498
		inode->i_ctime = hfsp_mt2ut(folder->attribute_mod_date);
499 500
		HFSPLUS_I(inode)->create_date = folder->create_date;
		HFSPLUS_I(inode)->fs_blocks = 0;
501 502 503 504
		if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
			HFSPLUS_I(inode)->subfolders =
				be32_to_cpu(folder->subfolders);
		}
L
Linus Torvalds 已提交
505 506 507 508 509 510 511 512 513 514
		inode->i_op = &hfsplus_dir_inode_operations;
		inode->i_fop = &hfsplus_dir_operations;
	} else if (type == HFSPLUS_FILE) {
		struct hfsplus_cat_file *file = &entry.file;

		if (fd->entrylength < sizeof(struct hfsplus_cat_file))
			/* panic? */;
		hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
					sizeof(struct hfsplus_cat_file));

C
Christoph Hellwig 已提交
515 516
		hfsplus_inode_read_fork(inode, HFSPLUS_IS_RSRC(inode) ?
					&file->rsrc_fork : &file->data_fork);
L
Linus Torvalds 已提交
517
		hfsplus_get_perms(inode, &file->permissions, 0);
M
Miklos Szeredi 已提交
518
		set_nlink(inode, 1);
L
Linus Torvalds 已提交
519 520
		if (S_ISREG(inode->i_mode)) {
			if (file->permissions.dev)
M
Miklos Szeredi 已提交
521 522
				set_nlink(inode,
					  be32_to_cpu(file->permissions.dev));
L
Linus Torvalds 已提交
523 524 525 526 527
			inode->i_op = &hfsplus_file_inode_operations;
			inode->i_fop = &hfsplus_file_operations;
			inode->i_mapping->a_ops = &hfsplus_aops;
		} else if (S_ISLNK(inode->i_mode)) {
			inode->i_op = &page_symlink_inode_operations;
528
			inode_nohighmem(inode);
L
Linus Torvalds 已提交
529 530 531 532 533 534 535
			inode->i_mapping->a_ops = &hfsplus_aops;
		} else {
			init_special_inode(inode, inode->i_mode,
					   be32_to_cpu(file->permissions.dev));
		}
		inode->i_atime = hfsp_mt2ut(file->access_date);
		inode->i_mtime = hfsp_mt2ut(file->content_mod_date);
R
Roman Zippel 已提交
536
		inode->i_ctime = hfsp_mt2ut(file->attribute_mod_date);
537
		HFSPLUS_I(inode)->create_date = file->create_date;
L
Linus Torvalds 已提交
538
	} else {
539
		pr_err("bad catalog entry used to create inode\n");
L
Linus Torvalds 已提交
540 541 542 543 544 545 546 547 548 549 550 551
		res = -EIO;
	}
	return res;
}

int hfsplus_cat_write_inode(struct inode *inode)
{
	struct inode *main_inode = inode;
	struct hfs_find_data fd;
	hfsplus_cat_entry entry;

	if (HFSPLUS_IS_RSRC(inode))
552
		main_inode = HFSPLUS_I(inode)->rsrc_inode;
L
Linus Torvalds 已提交
553 554 555 556

	if (!main_inode->i_nlink)
		return 0;

557
	if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb)->cat_tree, &fd))
L
Linus Torvalds 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
		/* panic? */
		return -EIO;

	if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd))
		/* panic? */
		goto out;

	if (S_ISDIR(main_inode->i_mode)) {
		struct hfsplus_cat_folder *folder = &entry.folder;

		if (fd.entrylength < sizeof(struct hfsplus_cat_folder))
			/* panic? */;
		hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
					sizeof(struct hfsplus_cat_folder));
		/* simple node checks? */
573
		hfsplus_cat_set_perms(inode, &folder->permissions);
L
Linus Torvalds 已提交
574 575 576 577
		folder->access_date = hfsp_ut2mt(inode->i_atime);
		folder->content_mod_date = hfsp_ut2mt(inode->i_mtime);
		folder->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
		folder->valence = cpu_to_be32(inode->i_size - 2);
578 579 580 581
		if (folder->flags & cpu_to_be16(HFSPLUS_HAS_FOLDER_COUNT)) {
			folder->subfolders =
				cpu_to_be32(HFSPLUS_I(inode)->subfolders);
		}
L
Linus Torvalds 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
		hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
					 sizeof(struct hfsplus_cat_folder));
	} else if (HFSPLUS_IS_RSRC(inode)) {
		struct hfsplus_cat_file *file = &entry.file;
		hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
			       sizeof(struct hfsplus_cat_file));
		hfsplus_inode_write_fork(inode, &file->rsrc_fork);
		hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
				sizeof(struct hfsplus_cat_file));
	} else {
		struct hfsplus_cat_file *file = &entry.file;

		if (fd.entrylength < sizeof(struct hfsplus_cat_file))
			/* panic? */;
		hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
					sizeof(struct hfsplus_cat_file));
		hfsplus_inode_write_fork(inode, &file->data_fork);
599
		hfsplus_cat_set_perms(inode, &file->permissions);
600 601 602
		if (HFSPLUS_FLG_IMMUTABLE &
				(file->permissions.rootflags |
					file->permissions.userflags))
L
Linus Torvalds 已提交
603 604 605 606 607 608 609 610 611
			file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
		else
			file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED);
		file->access_date = hfsp_ut2mt(inode->i_atime);
		file->content_mod_date = hfsp_ut2mt(inode->i_mtime);
		file->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
		hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
					 sizeof(struct hfsplus_cat_file));
	}
C
Christoph Hellwig 已提交
612 613

	set_bit(HFSPLUS_I_CAT_DIRTY, &HFSPLUS_I(inode)->flags);
L
Linus Torvalds 已提交
614 615 616 617
out:
	hfs_find_exit(&fd);
	return 0;
}