blob: 963be644297aeb45c2d376721c5cc70ee8ce28f5 [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
11#include <linux/mm.h>
12#include <linux/fs.h>
13#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mpage.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include "hfsplus_fs.h"
18#include "hfsplus_raw.h"
19
20static int hfsplus_readpage(struct file *file, struct page *page)
21{
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 return block_read_full_page(page, hfsplus_get_block);
23}
24
25static int hfsplus_writepage(struct page *page, struct writeback_control *wbc)
26{
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 return block_write_full_page(page, hfsplus_get_block, wbc);
28}
29
Nick Piggin7c0efc62007-10-16 01:25:09 -070030static int hfsplus_write_begin(struct file *file, struct address_space *mapping,
31 loff_t pos, unsigned len, unsigned flags,
32 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Nick Piggin7c0efc62007-10-16 01:25:09 -070034 *pagep = NULL;
35 return cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
36 hfsplus_get_block,
37 &HFSPLUS_I(mapping->host).phys_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
40static sector_t hfsplus_bmap(struct address_space *mapping, sector_t block)
41{
42 return generic_block_bmap(mapping, block, hfsplus_get_block);
43}
44
Al Viro27496a82005-10-21 03:20:48 -040045static int hfsplus_releasepage(struct page *page, gfp_t mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 struct inode *inode = page->mapping->host;
48 struct super_block *sb = inode->i_sb;
49 struct hfs_btree *tree;
50 struct hfs_bnode *node;
51 u32 nidx;
52 int i, res = 1;
53
54 switch (inode->i_ino) {
55 case HFSPLUS_EXT_CNID:
56 tree = HFSPLUS_SB(sb).ext_tree;
57 break;
58 case HFSPLUS_CAT_CNID:
59 tree = HFSPLUS_SB(sb).cat_tree;
60 break;
61 case HFSPLUS_ATTR_CNID:
62 tree = HFSPLUS_SB(sb).attr_tree;
63 break;
64 default:
65 BUG();
66 return 0;
67 }
Eric Sesterhenn70632242008-05-12 14:02:21 -070068 if (!tree)
69 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (tree->node_size >= PAGE_CACHE_SIZE) {
71 nidx = page->index >> (tree->node_size_shift - PAGE_CACHE_SHIFT);
72 spin_lock(&tree->hash_lock);
73 node = hfs_bnode_findhash(tree, nidx);
74 if (!node)
75 ;
76 else if (atomic_read(&node->refcnt))
77 res = 0;
78 if (res && node) {
79 hfs_bnode_unhash(node);
80 hfs_bnode_free(node);
81 }
82 spin_unlock(&tree->hash_lock);
83 } else {
84 nidx = page->index << (PAGE_CACHE_SHIFT - tree->node_size_shift);
85 i = 1 << (PAGE_CACHE_SHIFT - tree->node_size_shift);
86 spin_lock(&tree->hash_lock);
87 do {
88 node = hfs_bnode_findhash(tree, nidx++);
89 if (!node)
90 continue;
91 if (atomic_read(&node->refcnt)) {
92 res = 0;
93 break;
94 }
95 hfs_bnode_unhash(node);
96 hfs_bnode_free(node);
97 } while (--i && nidx < tree->node_count);
98 spin_unlock(&tree->hash_lock);
99 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return res ? try_to_free_buffers(page) : 0;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static ssize_t hfsplus_direct_IO(int rw, struct kiocb *iocb,
104 const struct iovec *iov, loff_t offset, unsigned long nr_segs)
105{
106 struct file *file = iocb->ki_filp;
Josef Sipekf44ea032006-12-08 02:37:04 -0800107 struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -0800110 offset, nr_segs, hfsplus_get_block, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static int hfsplus_writepages(struct address_space *mapping,
114 struct writeback_control *wbc)
115{
116 return mpage_writepages(mapping, wbc, hfsplus_get_block);
117}
118
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700119const struct address_space_operations hfsplus_btree_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .readpage = hfsplus_readpage,
121 .writepage = hfsplus_writepage,
122 .sync_page = block_sync_page,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700123 .write_begin = hfsplus_write_begin,
124 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .bmap = hfsplus_bmap,
126 .releasepage = hfsplus_releasepage,
127};
128
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700129const struct address_space_operations hfsplus_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 .readpage = hfsplus_readpage,
131 .writepage = hfsplus_writepage,
132 .sync_page = block_sync_page,
Nick Piggin7c0efc62007-10-16 01:25:09 -0700133 .write_begin = hfsplus_write_begin,
134 .write_end = generic_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .bmap = hfsplus_bmap,
136 .direct_IO = hfsplus_direct_IO,
137 .writepages = hfsplus_writepages,
138};
139
Duane Griffind45bce82007-07-15 23:41:23 -0700140struct dentry_operations hfsplus_dentry_operations = {
141 .d_hash = hfsplus_hash_dentry,
142 .d_compare = hfsplus_compare_dentry,
143};
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static struct dentry *hfsplus_file_lookup(struct inode *dir, struct dentry *dentry,
146 struct nameidata *nd)
147{
148 struct hfs_find_data fd;
149 struct super_block *sb = dir->i_sb;
150 struct inode *inode = NULL;
151 int err;
152
153 if (HFSPLUS_IS_RSRC(dir) || strcmp(dentry->d_name.name, "rsrc"))
154 goto out;
155
156 inode = HFSPLUS_I(dir).rsrc_inode;
157 if (inode)
158 goto out;
159
160 inode = new_inode(sb);
161 if (!inode)
162 return ERR_PTR(-ENOMEM);
163
164 inode->i_ino = dir->i_ino;
165 INIT_LIST_HEAD(&HFSPLUS_I(inode).open_dir_list);
Matthias Kaehlcke895c23f2008-07-25 01:46:36 -0700166 mutex_init(&HFSPLUS_I(inode).extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 HFSPLUS_I(inode).flags = HFSPLUS_FLG_RSRC;
168
169 hfs_find_init(HFSPLUS_SB(sb).cat_tree, &fd);
170 err = hfsplus_find_cat(sb, dir->i_ino, &fd);
171 if (!err)
172 err = hfsplus_cat_read_inode(inode, &fd);
173 hfs_find_exit(&fd);
174 if (err) {
175 iput(inode);
176 return ERR_PTR(err);
177 }
178 HFSPLUS_I(inode).rsrc_inode = dir;
179 HFSPLUS_I(dir).rsrc_inode = inode;
180 igrab(dir);
181 hlist_add_head(&inode->i_hash, &HFSPLUS_SB(sb).rsrc_inodes);
182 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183out:
184 d_add(dentry, inode);
185 return NULL;
186}
187
188static void hfsplus_get_perms(struct inode *inode, struct hfsplus_perm *perms, int dir)
189{
190 struct super_block *sb = inode->i_sb;
191 u16 mode;
192
193 mode = be16_to_cpu(perms->mode);
194
195 inode->i_uid = be32_to_cpu(perms->owner);
196 if (!inode->i_uid && !mode)
197 inode->i_uid = HFSPLUS_SB(sb).uid;
198
199 inode->i_gid = be32_to_cpu(perms->group);
200 if (!inode->i_gid && !mode)
201 inode->i_gid = HFSPLUS_SB(sb).gid;
202
203 if (dir) {
204 mode = mode ? (mode & S_IALLUGO) :
205 (S_IRWXUGO & ~(HFSPLUS_SB(sb).umask));
206 mode |= S_IFDIR;
207 } else if (!mode)
208 mode = S_IFREG | ((S_IRUGO|S_IWUGO) &
209 ~(HFSPLUS_SB(sb).umask));
210 inode->i_mode = mode;
211
212 HFSPLUS_I(inode).rootflags = perms->rootflags;
213 HFSPLUS_I(inode).userflags = perms->userflags;
214 if (perms->rootflags & HFSPLUS_FLG_IMMUTABLE)
215 inode->i_flags |= S_IMMUTABLE;
216 else
217 inode->i_flags &= ~S_IMMUTABLE;
218 if (perms->rootflags & HFSPLUS_FLG_APPEND)
219 inode->i_flags |= S_APPEND;
220 else
221 inode->i_flags &= ~S_APPEND;
222}
223
224static void hfsplus_set_perms(struct inode *inode, struct hfsplus_perm *perms)
225{
226 if (inode->i_flags & S_IMMUTABLE)
227 perms->rootflags |= HFSPLUS_FLG_IMMUTABLE;
228 else
229 perms->rootflags &= ~HFSPLUS_FLG_IMMUTABLE;
230 if (inode->i_flags & S_APPEND)
231 perms->rootflags |= HFSPLUS_FLG_APPEND;
232 else
233 perms->rootflags &= ~HFSPLUS_FLG_APPEND;
234 perms->userflags = HFSPLUS_I(inode).userflags;
235 perms->mode = cpu_to_be16(inode->i_mode);
236 perms->owner = cpu_to_be32(inode->i_uid);
237 perms->group = cpu_to_be32(inode->i_gid);
238 perms->dev = cpu_to_be32(HFSPLUS_I(inode).dev);
239}
240
Al Viroe6305c42008-07-15 21:03:57 -0400241static int hfsplus_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 /* MAY_EXEC is also used for lookup, if no x bit is set allow lookup,
244 * open_exec has the same test, so it's still not executable, if a x bit
245 * is set fall back to standard permission check.
246 */
247 if (S_ISREG(inode->i_mode) && mask & MAY_EXEC && !(inode->i_mode & 0111))
248 return 0;
249 return generic_permission(inode, mask, NULL);
250}
251
252
253static int hfsplus_file_open(struct inode *inode, struct file *file)
254{
255 if (HFSPLUS_IS_RSRC(inode))
256 inode = HFSPLUS_I(inode).rsrc_inode;
Alan Cox6e715292008-10-18 20:28:01 -0700257 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
258 return -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 atomic_inc(&HFSPLUS_I(inode).opencnt);
260 return 0;
261}
262
263static int hfsplus_file_release(struct inode *inode, struct file *file)
264{
265 struct super_block *sb = inode->i_sb;
266
267 if (HFSPLUS_IS_RSRC(inode))
268 inode = HFSPLUS_I(inode).rsrc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (atomic_dec_and_test(&HFSPLUS_I(inode).opencnt)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800270 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 hfsplus_file_truncate(inode);
272 if (inode->i_flags & S_DEAD) {
273 hfsplus_delete_cat(inode->i_ino, HFSPLUS_SB(sb).hidden_dir, NULL);
274 hfsplus_delete_inode(inode);
275 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800276 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278 return 0;
279}
280
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800281static const struct inode_operations hfsplus_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .lookup = hfsplus_file_lookup,
283 .truncate = hfsplus_file_truncate,
284 .permission = hfsplus_permission,
285 .setxattr = hfsplus_setxattr,
286 .getxattr = hfsplus_getxattr,
287 .listxattr = hfsplus_listxattr,
288};
289
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800290static const struct file_operations hfsplus_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -0700292 .read = do_sync_read,
293 .aio_read = generic_file_aio_read,
294 .write = do_sync_write,
295 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .mmap = generic_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +0200297 .splice_read = generic_file_splice_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 .fsync = file_fsync,
299 .open = hfsplus_file_open,
300 .release = hfsplus_file_release,
301 .ioctl = hfsplus_ioctl,
302};
303
304struct inode *hfsplus_new_inode(struct super_block *sb, int mode)
305{
306 struct inode *inode = new_inode(sb);
307 if (!inode)
308 return NULL;
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 inode->i_ino = HFSPLUS_SB(sb).next_cnid++;
311 inode->i_mode = mode;
312 inode->i_uid = current->fsuid;
313 inode->i_gid = current->fsgid;
314 inode->i_nlink = 1;
315 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 INIT_LIST_HEAD(&HFSPLUS_I(inode).open_dir_list);
Matthias Kaehlcke895c23f2008-07-25 01:46:36 -0700317 mutex_init(&HFSPLUS_I(inode).extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 atomic_set(&HFSPLUS_I(inode).opencnt, 0);
319 HFSPLUS_I(inode).flags = 0;
320 memset(HFSPLUS_I(inode).first_extents, 0, sizeof(hfsplus_extent_rec));
321 memset(HFSPLUS_I(inode).cached_extents, 0, sizeof(hfsplus_extent_rec));
322 HFSPLUS_I(inode).alloc_blocks = 0;
323 HFSPLUS_I(inode).first_blocks = 0;
324 HFSPLUS_I(inode).cached_start = 0;
325 HFSPLUS_I(inode).cached_blocks = 0;
326 HFSPLUS_I(inode).phys_size = 0;
327 HFSPLUS_I(inode).fs_blocks = 0;
328 HFSPLUS_I(inode).rsrc_inode = NULL;
329 if (S_ISDIR(inode->i_mode)) {
330 inode->i_size = 2;
331 HFSPLUS_SB(sb).folder_count++;
332 inode->i_op = &hfsplus_dir_inode_operations;
333 inode->i_fop = &hfsplus_dir_operations;
334 } else if (S_ISREG(inode->i_mode)) {
335 HFSPLUS_SB(sb).file_count++;
336 inode->i_op = &hfsplus_file_inode_operations;
337 inode->i_fop = &hfsplus_file_operations;
338 inode->i_mapping->a_ops = &hfsplus_aops;
339 HFSPLUS_I(inode).clump_blocks = HFSPLUS_SB(sb).data_clump_blocks;
340 } else if (S_ISLNK(inode->i_mode)) {
341 HFSPLUS_SB(sb).file_count++;
342 inode->i_op = &page_symlink_inode_operations;
343 inode->i_mapping->a_ops = &hfsplus_aops;
344 HFSPLUS_I(inode).clump_blocks = 1;
345 } else
346 HFSPLUS_SB(sb).file_count++;
347 insert_inode_hash(inode);
348 mark_inode_dirty(inode);
349 sb->s_dirt = 1;
350
351 return inode;
352}
353
354void hfsplus_delete_inode(struct inode *inode)
355{
356 struct super_block *sb = inode->i_sb;
357
358 if (S_ISDIR(inode->i_mode)) {
359 HFSPLUS_SB(sb).folder_count--;
360 sb->s_dirt = 1;
361 return;
362 }
363 HFSPLUS_SB(sb).file_count--;
364 if (S_ISREG(inode->i_mode)) {
365 if (!inode->i_nlink) {
366 inode->i_size = 0;
367 hfsplus_file_truncate(inode);
368 }
369 } else if (S_ISLNK(inode->i_mode)) {
370 inode->i_size = 0;
371 hfsplus_file_truncate(inode);
372 }
373 sb->s_dirt = 1;
374}
375
376void hfsplus_inode_read_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
377{
378 struct super_block *sb = inode->i_sb;
379 u32 count;
380 int i;
381
382 memcpy(&HFSPLUS_I(inode).first_extents, &fork->extents,
383 sizeof(hfsplus_extent_rec));
384 for (count = 0, i = 0; i < 8; i++)
385 count += be32_to_cpu(fork->extents[i].block_count);
386 HFSPLUS_I(inode).first_blocks = count;
387 memset(HFSPLUS_I(inode).cached_extents, 0, sizeof(hfsplus_extent_rec));
388 HFSPLUS_I(inode).cached_start = 0;
389 HFSPLUS_I(inode).cached_blocks = 0;
390
391 HFSPLUS_I(inode).alloc_blocks = be32_to_cpu(fork->total_blocks);
392 inode->i_size = HFSPLUS_I(inode).phys_size = be64_to_cpu(fork->total_size);
393 HFSPLUS_I(inode).fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
394 inode_set_bytes(inode, HFSPLUS_I(inode).fs_blocks << sb->s_blocksize_bits);
395 HFSPLUS_I(inode).clump_blocks = be32_to_cpu(fork->clump_size) >> HFSPLUS_SB(sb).alloc_blksz_shift;
396 if (!HFSPLUS_I(inode).clump_blocks)
397 HFSPLUS_I(inode).clump_blocks = HFSPLUS_IS_RSRC(inode) ? HFSPLUS_SB(sb).rsrc_clump_blocks :
398 HFSPLUS_SB(sb).data_clump_blocks;
399}
400
401void hfsplus_inode_write_fork(struct inode *inode, struct hfsplus_fork_raw *fork)
402{
403 memcpy(&fork->extents, &HFSPLUS_I(inode).first_extents,
404 sizeof(hfsplus_extent_rec));
405 fork->total_size = cpu_to_be64(inode->i_size);
406 fork->total_blocks = cpu_to_be32(HFSPLUS_I(inode).alloc_blocks);
407}
408
409int hfsplus_cat_read_inode(struct inode *inode, struct hfs_find_data *fd)
410{
411 hfsplus_cat_entry entry;
412 int res = 0;
413 u16 type;
414
415 type = hfs_bnode_read_u16(fd->bnode, fd->entryoffset);
416
417 HFSPLUS_I(inode).dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (type == HFSPLUS_FOLDER) {
419 struct hfsplus_cat_folder *folder = &entry.folder;
420
421 if (fd->entrylength < sizeof(struct hfsplus_cat_folder))
422 /* panic? */;
423 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
424 sizeof(struct hfsplus_cat_folder));
425 hfsplus_get_perms(inode, &folder->permissions, 1);
426 inode->i_nlink = 1;
427 inode->i_size = 2 + be32_to_cpu(folder->valence);
428 inode->i_atime = hfsp_mt2ut(folder->access_date);
429 inode->i_mtime = hfsp_mt2ut(folder->content_mod_date);
Roman Zippel9a4cad92006-01-18 17:43:09 -0800430 inode->i_ctime = hfsp_mt2ut(folder->attribute_mod_date);
431 HFSPLUS_I(inode).create_date = folder->create_date;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 HFSPLUS_I(inode).fs_blocks = 0;
433 inode->i_op = &hfsplus_dir_inode_operations;
434 inode->i_fop = &hfsplus_dir_operations;
435 } else if (type == HFSPLUS_FILE) {
436 struct hfsplus_cat_file *file = &entry.file;
437
438 if (fd->entrylength < sizeof(struct hfsplus_cat_file))
439 /* panic? */;
440 hfs_bnode_read(fd->bnode, &entry, fd->entryoffset,
441 sizeof(struct hfsplus_cat_file));
442
443 hfsplus_inode_read_fork(inode, HFSPLUS_IS_DATA(inode) ?
444 &file->data_fork : &file->rsrc_fork);
445 hfsplus_get_perms(inode, &file->permissions, 0);
446 inode->i_nlink = 1;
447 if (S_ISREG(inode->i_mode)) {
448 if (file->permissions.dev)
449 inode->i_nlink = be32_to_cpu(file->permissions.dev);
450 inode->i_op = &hfsplus_file_inode_operations;
451 inode->i_fop = &hfsplus_file_operations;
452 inode->i_mapping->a_ops = &hfsplus_aops;
453 } else if (S_ISLNK(inode->i_mode)) {
454 inode->i_op = &page_symlink_inode_operations;
455 inode->i_mapping->a_ops = &hfsplus_aops;
456 } else {
457 init_special_inode(inode, inode->i_mode,
458 be32_to_cpu(file->permissions.dev));
459 }
460 inode->i_atime = hfsp_mt2ut(file->access_date);
461 inode->i_mtime = hfsp_mt2ut(file->content_mod_date);
Roman Zippel9a4cad92006-01-18 17:43:09 -0800462 inode->i_ctime = hfsp_mt2ut(file->attribute_mod_date);
463 HFSPLUS_I(inode).create_date = file->create_date;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 } else {
Roman Zippel634725a2006-01-18 17:43:05 -0800465 printk(KERN_ERR "hfs: bad catalog entry used to create inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 res = -EIO;
467 }
468 return res;
469}
470
471int hfsplus_cat_write_inode(struct inode *inode)
472{
473 struct inode *main_inode = inode;
474 struct hfs_find_data fd;
475 hfsplus_cat_entry entry;
476
477 if (HFSPLUS_IS_RSRC(inode))
478 main_inode = HFSPLUS_I(inode).rsrc_inode;
479
480 if (!main_inode->i_nlink)
481 return 0;
482
483 if (hfs_find_init(HFSPLUS_SB(main_inode->i_sb).cat_tree, &fd))
484 /* panic? */
485 return -EIO;
486
487 if (hfsplus_find_cat(main_inode->i_sb, main_inode->i_ino, &fd))
488 /* panic? */
489 goto out;
490
491 if (S_ISDIR(main_inode->i_mode)) {
492 struct hfsplus_cat_folder *folder = &entry.folder;
493
494 if (fd.entrylength < sizeof(struct hfsplus_cat_folder))
495 /* panic? */;
496 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
497 sizeof(struct hfsplus_cat_folder));
498 /* simple node checks? */
499 hfsplus_set_perms(inode, &folder->permissions);
500 folder->access_date = hfsp_ut2mt(inode->i_atime);
501 folder->content_mod_date = hfsp_ut2mt(inode->i_mtime);
502 folder->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
503 folder->valence = cpu_to_be32(inode->i_size - 2);
504 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
505 sizeof(struct hfsplus_cat_folder));
506 } else if (HFSPLUS_IS_RSRC(inode)) {
507 struct hfsplus_cat_file *file = &entry.file;
508 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
509 sizeof(struct hfsplus_cat_file));
510 hfsplus_inode_write_fork(inode, &file->rsrc_fork);
511 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
512 sizeof(struct hfsplus_cat_file));
513 } else {
514 struct hfsplus_cat_file *file = &entry.file;
515
516 if (fd.entrylength < sizeof(struct hfsplus_cat_file))
517 /* panic? */;
518 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
519 sizeof(struct hfsplus_cat_file));
520 hfsplus_inode_write_fork(inode, &file->data_fork);
521 if (S_ISREG(inode->i_mode))
522 HFSPLUS_I(inode).dev = inode->i_nlink;
523 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
524 HFSPLUS_I(inode).dev = kdev_t_to_nr(inode->i_rdev);
525 hfsplus_set_perms(inode, &file->permissions);
526 if ((file->permissions.rootflags | file->permissions.userflags) & HFSPLUS_FLG_IMMUTABLE)
527 file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
528 else
529 file->flags &= cpu_to_be16(~HFSPLUS_FILE_LOCKED);
530 file->access_date = hfsp_ut2mt(inode->i_atime);
531 file->content_mod_date = hfsp_ut2mt(inode->i_mtime);
532 file->attribute_mod_date = hfsp_ut2mt(inode->i_ctime);
533 hfs_bnode_write(fd.bnode, &entry, fd.entryoffset,
534 sizeof(struct hfsplus_cat_file));
535 }
536out:
537 hfs_find_exit(&fd);
538 return 0;
539}