blob: 1aab8aa7801e290bdea3050405f6ad91ea8a803f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/super.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/pagemap.h>
13#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/vfs.h>
16#include <linux/nls.h>
17
18static struct inode *hfsplus_alloc_inode(struct super_block *sb);
19static void hfsplus_destroy_inode(struct inode *inode);
20
21#include "hfsplus_fs.h"
22
David Howells63525392008-02-07 00:15:40 -080023struct inode *hfsplus_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
25 struct hfs_find_data fd;
26 struct hfsplus_vh *vhdr;
David Howells63525392008-02-07 00:15:40 -080027 struct inode *inode;
28 long err = -EIO;
29
30 inode = iget_locked(sb, ino);
31 if (!inode)
32 return ERR_PTR(-ENOMEM);
33 if (!(inode->i_state & I_NEW))
34 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 INIT_LIST_HEAD(&HFSPLUS_I(inode).open_dir_list);
Matthias Kaehlcke895c23f2008-07-25 01:46:36 -070037 mutex_init(&HFSPLUS_I(inode).extents_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 HFSPLUS_I(inode).flags = 0;
39 HFSPLUS_I(inode).rsrc_inode = NULL;
Peter Wainwright94c1d312005-10-26 01:59:02 -070040 atomic_set(&HFSPLUS_I(inode).opencnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 if (inode->i_ino >= HFSPLUS_FIRSTUSER_CNID) {
43 read_inode:
44 hfs_find_init(HFSPLUS_SB(inode->i_sb).cat_tree, &fd);
45 err = hfsplus_find_cat(inode->i_sb, inode->i_ino, &fd);
46 if (!err)
47 err = hfsplus_cat_read_inode(inode, &fd);
48 hfs_find_exit(&fd);
49 if (err)
50 goto bad_inode;
David Howells63525392008-02-07 00:15:40 -080051 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 }
53 vhdr = HFSPLUS_SB(inode->i_sb).s_vhdr;
54 switch(inode->i_ino) {
55 case HFSPLUS_ROOT_CNID:
56 goto read_inode;
57 case HFSPLUS_EXT_CNID:
58 hfsplus_inode_read_fork(inode, &vhdr->ext_file);
59 inode->i_mapping->a_ops = &hfsplus_btree_aops;
60 break;
61 case HFSPLUS_CAT_CNID:
62 hfsplus_inode_read_fork(inode, &vhdr->cat_file);
63 inode->i_mapping->a_ops = &hfsplus_btree_aops;
64 break;
65 case HFSPLUS_ALLOC_CNID:
66 hfsplus_inode_read_fork(inode, &vhdr->alloc_file);
67 inode->i_mapping->a_ops = &hfsplus_aops;
68 break;
69 case HFSPLUS_START_CNID:
70 hfsplus_inode_read_fork(inode, &vhdr->start_file);
71 break;
72 case HFSPLUS_ATTR_CNID:
73 hfsplus_inode_read_fork(inode, &vhdr->attr_file);
74 inode->i_mapping->a_ops = &hfsplus_btree_aops;
75 break;
76 default:
77 goto bad_inode;
78 }
79
David Howells63525392008-02-07 00:15:40 -080080done:
81 unlock_new_inode(inode);
82 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
David Howells63525392008-02-07 00:15:40 -080084bad_inode:
85 iget_failed(inode);
86 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89static int hfsplus_write_inode(struct inode *inode, int unused)
90{
91 struct hfsplus_vh *vhdr;
92 int ret = 0;
93
94 dprint(DBG_INODE, "hfsplus_write_inode: %lu\n", inode->i_ino);
95 hfsplus_ext_write_extent(inode);
96 if (inode->i_ino >= HFSPLUS_FIRSTUSER_CNID) {
97 return hfsplus_cat_write_inode(inode);
98 }
99 vhdr = HFSPLUS_SB(inode->i_sb).s_vhdr;
100 switch (inode->i_ino) {
101 case HFSPLUS_ROOT_CNID:
102 ret = hfsplus_cat_write_inode(inode);
103 break;
104 case HFSPLUS_EXT_CNID:
105 if (vhdr->ext_file.total_size != cpu_to_be64(inode->i_size)) {
106 HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
107 inode->i_sb->s_dirt = 1;
108 }
109 hfsplus_inode_write_fork(inode, &vhdr->ext_file);
110 hfs_btree_write(HFSPLUS_SB(inode->i_sb).ext_tree);
111 break;
112 case HFSPLUS_CAT_CNID:
113 if (vhdr->cat_file.total_size != cpu_to_be64(inode->i_size)) {
114 HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
115 inode->i_sb->s_dirt = 1;
116 }
117 hfsplus_inode_write_fork(inode, &vhdr->cat_file);
118 hfs_btree_write(HFSPLUS_SB(inode->i_sb).cat_tree);
119 break;
120 case HFSPLUS_ALLOC_CNID:
121 if (vhdr->alloc_file.total_size != cpu_to_be64(inode->i_size)) {
122 HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
123 inode->i_sb->s_dirt = 1;
124 }
125 hfsplus_inode_write_fork(inode, &vhdr->alloc_file);
126 break;
127 case HFSPLUS_START_CNID:
128 if (vhdr->start_file.total_size != cpu_to_be64(inode->i_size)) {
129 HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
130 inode->i_sb->s_dirt = 1;
131 }
132 hfsplus_inode_write_fork(inode, &vhdr->start_file);
133 break;
134 case HFSPLUS_ATTR_CNID:
135 if (vhdr->attr_file.total_size != cpu_to_be64(inode->i_size)) {
136 HFSPLUS_SB(inode->i_sb).flags |= HFSPLUS_SB_WRITEBACKUP;
137 inode->i_sb->s_dirt = 1;
138 }
139 hfsplus_inode_write_fork(inode, &vhdr->attr_file);
140 hfs_btree_write(HFSPLUS_SB(inode->i_sb).attr_tree);
141 break;
142 }
143 return ret;
144}
145
146static void hfsplus_clear_inode(struct inode *inode)
147{
148 dprint(DBG_INODE, "hfsplus_clear_inode: %lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (HFSPLUS_IS_RSRC(inode)) {
150 HFSPLUS_I(HFSPLUS_I(inode).rsrc_inode).rsrc_inode = NULL;
151 iput(HFSPLUS_I(inode).rsrc_inode);
152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155static void hfsplus_write_super(struct super_block *sb)
156{
157 struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
158
159 dprint(DBG_SUPER, "hfsplus_write_super\n");
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200160
161 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 sb->s_dirt = 0;
163 if (sb->s_flags & MS_RDONLY)
164 /* warn? */
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200165 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 vhdr->free_blocks = cpu_to_be32(HFSPLUS_SB(sb).free_blocks);
168 vhdr->next_alloc = cpu_to_be32(HFSPLUS_SB(sb).next_alloc);
169 vhdr->next_cnid = cpu_to_be32(HFSPLUS_SB(sb).next_cnid);
170 vhdr->folder_count = cpu_to_be32(HFSPLUS_SB(sb).folder_count);
171 vhdr->file_count = cpu_to_be32(HFSPLUS_SB(sb).file_count);
172
173 mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
174 if (HFSPLUS_SB(sb).flags & HFSPLUS_SB_WRITEBACKUP) {
175 if (HFSPLUS_SB(sb).sect_count) {
176 struct buffer_head *bh;
177 u32 block, offset;
178
179 block = HFSPLUS_SB(sb).blockoffset;
180 block += (HFSPLUS_SB(sb).sect_count - 2) >> (sb->s_blocksize_bits - 9);
181 offset = ((HFSPLUS_SB(sb).sect_count - 2) << 9) & (sb->s_blocksize - 1);
Roman Zippel634725a2006-01-18 17:43:05 -0800182 printk(KERN_DEBUG "hfs: backup: %u,%u,%u,%u\n", HFSPLUS_SB(sb).blockoffset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 HFSPLUS_SB(sb).sect_count, block, offset);
184 bh = sb_bread(sb, block);
185 if (bh) {
186 vhdr = (struct hfsplus_vh *)(bh->b_data + offset);
187 if (be16_to_cpu(vhdr->signature) == HFSPLUS_VOLHEAD_SIG) {
188 memcpy(vhdr, HFSPLUS_SB(sb).s_vhdr, sizeof(*vhdr));
189 mark_buffer_dirty(bh);
190 brelse(bh);
191 } else
Roman Zippel634725a2006-01-18 17:43:05 -0800192 printk(KERN_WARNING "hfs: backup not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194 }
195 HFSPLUS_SB(sb).flags &= ~HFSPLUS_SB_WRITEBACKUP;
196 }
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200197 out:
198 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201static void hfsplus_put_super(struct super_block *sb)
202{
203 dprint(DBG_SUPER, "hfsplus_put_super\n");
Colin Leroy945b0922005-05-01 08:59:16 -0700204 if (!sb->s_fs_info)
205 return;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200206
207 lock_kernel();
208
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200209 if (sb->s_dirt)
210 hfsplus_write_super(sb);
Colin Leroy945b0922005-05-01 08:59:16 -0700211 if (!(sb->s_flags & MS_RDONLY) && HFSPLUS_SB(sb).s_vhdr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
213
214 vhdr->modify_date = hfsp_now2mt();
215 vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_UNMNT);
216 vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_INCNSTNT);
217 mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
Jan Karae39f07c2005-09-06 15:19:16 -0700218 sync_dirty_buffer(HFSPLUS_SB(sb).s_vhbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221 hfs_btree_close(HFSPLUS_SB(sb).cat_tree);
222 hfs_btree_close(HFSPLUS_SB(sb).ext_tree);
223 iput(HFSPLUS_SB(sb).alloc_file);
224 iput(HFSPLUS_SB(sb).hidden_dir);
225 brelse(HFSPLUS_SB(sb).s_vhbh);
226 if (HFSPLUS_SB(sb).nls)
227 unload_nls(HFSPLUS_SB(sb).nls);
Colin Leroy945b0922005-05-01 08:59:16 -0700228 kfree(sb->s_fs_info);
229 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200230
231 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
David Howells726c3342006-06-23 02:02:58 -0700234static int hfsplus_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
David Howells726c3342006-06-23 02:02:58 -0700236 struct super_block *sb = dentry->d_sb;
Coly Li25564dd2009-04-02 16:59:36 -0700237 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
David Howells726c3342006-06-23 02:02:58 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 buf->f_type = HFSPLUS_SUPER_MAGIC;
240 buf->f_bsize = sb->s_blocksize;
241 buf->f_blocks = HFSPLUS_SB(sb).total_blocks << HFSPLUS_SB(sb).fs_shift;
242 buf->f_bfree = HFSPLUS_SB(sb).free_blocks << HFSPLUS_SB(sb).fs_shift;
243 buf->f_bavail = buf->f_bfree;
244 buf->f_files = 0xFFFFFFFF;
245 buf->f_ffree = 0xFFFFFFFF - HFSPLUS_SB(sb).next_cnid;
Coly Li25564dd2009-04-02 16:59:36 -0700246 buf->f_fsid.val[0] = (u32)id;
247 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 buf->f_namelen = HFSPLUS_MAX_STRLEN;
249
250 return 0;
251}
252
253static int hfsplus_remount(struct super_block *sb, int *flags, char *data)
254{
255 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
256 return 0;
257 if (!(*flags & MS_RDONLY)) {
258 struct hfsplus_vh *vhdr = HFSPLUS_SB(sb).s_vhdr;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800259 struct hfsplus_sb_info sbi;
260
261 memset(&sbi, 0, sizeof(struct hfsplus_sb_info));
262 sbi.nls = HFSPLUS_SB(sb).nls;
263 if (!hfsplus_parse_options(data, &sbi))
264 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
Roman Zippel634725a2006-01-18 17:43:05 -0800267 printk(KERN_WARNING "hfs: filesystem was not cleanly unmounted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 "running fsck.hfsplus is recommended. leaving read-only.\n");
269 sb->s_flags |= MS_RDONLY;
270 *flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800271 } else if (sbi.flags & HFSPLUS_SB_FORCE) {
272 /* nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800274 printk(KERN_WARNING "hfs: filesystem is marked locked, leaving read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 sb->s_flags |= MS_RDONLY;
276 *flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800277 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800278 printk(KERN_WARNING "hfs: filesystem is marked journaled, leaving read-only.\n");
Roman Zippelb0b623c2005-11-29 19:34:41 -0800279 sb->s_flags |= MS_RDONLY;
280 *flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 }
283 return 0;
284}
285
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800286static const struct super_operations hfsplus_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .alloc_inode = hfsplus_alloc_inode,
288 .destroy_inode = hfsplus_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 .write_inode = hfsplus_write_inode,
290 .clear_inode = hfsplus_clear_inode,
291 .put_super = hfsplus_put_super,
292 .write_super = hfsplus_write_super,
293 .statfs = hfsplus_statfs,
294 .remount_fs = hfsplus_remount,
Roman Zippel717dd802005-09-06 15:18:48 -0700295 .show_options = hfsplus_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296};
297
298static int hfsplus_fill_super(struct super_block *sb, void *data, int silent)
299{
300 struct hfsplus_vh *vhdr;
301 struct hfsplus_sb_info *sbi;
302 hfsplus_cat_entry entry;
303 struct hfs_find_data fd;
David Howells63525392008-02-07 00:15:40 -0800304 struct inode *root, *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct qstr str;
306 struct nls_table *nls = NULL;
307 int err = -EINVAL;
308
Wyatt Banksa5001a22007-07-15 23:40:50 -0700309 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!sbi)
311 return -ENOMEM;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 sb->s_fs_info = sbi;
314 INIT_HLIST_HEAD(&sbi->rsrc_inodes);
Roman Zippel717dd802005-09-06 15:18:48 -0700315 hfsplus_fill_defaults(sbi);
316 if (!hfsplus_parse_options(data, sbi)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800317 printk(KERN_ERR "hfs: unable to parse mount options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 err = -EINVAL;
319 goto cleanup;
320 }
321
322 /* temporarily use utf8 to correctly find the hidden dir below */
323 nls = sbi->nls;
324 sbi->nls = load_nls("utf8");
Joshua Kwanbd6a59b2006-01-06 00:09:45 -0800325 if (!sbi->nls) {
Roman Zippel634725a2006-01-18 17:43:05 -0800326 printk(KERN_ERR "hfs: unable to load nls for utf8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 err = -EINVAL;
328 goto cleanup;
329 }
330
331 /* Grab the volume header */
332 if (hfsplus_read_wrapper(sb)) {
333 if (!silent)
Roman Zippel634725a2006-01-18 17:43:05 -0800334 printk(KERN_WARNING "hfs: unable to find HFS+ superblock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 err = -EINVAL;
336 goto cleanup;
337 }
338 vhdr = HFSPLUS_SB(sb).s_vhdr;
339
340 /* Copy parts of the volume header into the superblock */
David Elliott2179d372006-01-18 17:43:08 -0800341 sb->s_magic = HFSPLUS_VOLHEAD_SIG;
342 if (be16_to_cpu(vhdr->version) < HFSPLUS_MIN_VERSION ||
343 be16_to_cpu(vhdr->version) > HFSPLUS_CURRENT_VERSION) {
Roman Zippel634725a2006-01-18 17:43:05 -0800344 printk(KERN_ERR "hfs: wrong filesystem version\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 goto cleanup;
346 }
347 HFSPLUS_SB(sb).total_blocks = be32_to_cpu(vhdr->total_blocks);
348 HFSPLUS_SB(sb).free_blocks = be32_to_cpu(vhdr->free_blocks);
349 HFSPLUS_SB(sb).next_alloc = be32_to_cpu(vhdr->next_alloc);
350 HFSPLUS_SB(sb).next_cnid = be32_to_cpu(vhdr->next_cnid);
351 HFSPLUS_SB(sb).file_count = be32_to_cpu(vhdr->file_count);
352 HFSPLUS_SB(sb).folder_count = be32_to_cpu(vhdr->folder_count);
353 HFSPLUS_SB(sb).data_clump_blocks = be32_to_cpu(vhdr->data_clump_sz) >> HFSPLUS_SB(sb).alloc_blksz_shift;
354 if (!HFSPLUS_SB(sb).data_clump_blocks)
355 HFSPLUS_SB(sb).data_clump_blocks = 1;
356 HFSPLUS_SB(sb).rsrc_clump_blocks = be32_to_cpu(vhdr->rsrc_clump_sz) >> HFSPLUS_SB(sb).alloc_blksz_shift;
357 if (!HFSPLUS_SB(sb).rsrc_clump_blocks)
358 HFSPLUS_SB(sb).rsrc_clump_blocks = 1;
359
360 /* Set up operations so we can load metadata */
361 sb->s_op = &hfsplus_sops;
362 sb->s_maxbytes = MAX_LFS_FILESIZE;
363
364 if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
Roman Zippel634725a2006-01-18 17:43:05 -0800365 printk(KERN_WARNING "hfs: Filesystem was not cleanly unmounted, "
366 "running fsck.hfsplus is recommended. mounting read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 sb->s_flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800368 } else if (sbi->flags & HFSPLUS_SB_FORCE) {
369 /* nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800371 printk(KERN_WARNING "hfs: Filesystem is marked locked, mounting read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 sb->s_flags |= MS_RDONLY;
Mike Crowe81a73712008-10-15 22:04:05 -0700373 } else if ((vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) && !(sb->s_flags & MS_RDONLY)) {
Dave Jones355a4692008-04-29 16:01:22 -0400374 printk(KERN_WARNING "hfs: write access to a journaled filesystem is not supported, "
Roman Zippel634725a2006-01-18 17:43:05 -0800375 "use the force option at your own risk, mounting read-only.\n");
Roman Zippelb0b623c2005-11-29 19:34:41 -0800376 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Roman Zippelb0b623c2005-11-29 19:34:41 -0800378 sbi->flags &= ~HFSPLUS_SB_FORCE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 /* Load metadata objects (B*Trees) */
381 HFSPLUS_SB(sb).ext_tree = hfs_btree_open(sb, HFSPLUS_EXT_CNID);
382 if (!HFSPLUS_SB(sb).ext_tree) {
Roman Zippel634725a2006-01-18 17:43:05 -0800383 printk(KERN_ERR "hfs: failed to load extents file\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 goto cleanup;
385 }
386 HFSPLUS_SB(sb).cat_tree = hfs_btree_open(sb, HFSPLUS_CAT_CNID);
387 if (!HFSPLUS_SB(sb).cat_tree) {
Roman Zippel634725a2006-01-18 17:43:05 -0800388 printk(KERN_ERR "hfs: failed to load catalog file\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 goto cleanup;
390 }
391
David Howells63525392008-02-07 00:15:40 -0800392 inode = hfsplus_iget(sb, HFSPLUS_ALLOC_CNID);
393 if (IS_ERR(inode)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800394 printk(KERN_ERR "hfs: failed to load allocation file\n");
David Howells63525392008-02-07 00:15:40 -0800395 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto cleanup;
397 }
David Howells63525392008-02-07 00:15:40 -0800398 HFSPLUS_SB(sb).alloc_file = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* Load the root directory */
David Howells63525392008-02-07 00:15:40 -0800401 root = hfsplus_iget(sb, HFSPLUS_ROOT_CNID);
402 if (IS_ERR(root)) {
403 printk(KERN_ERR "hfs: failed to load root directory\n");
404 err = PTR_ERR(root);
405 goto cleanup;
406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sb->s_root = d_alloc_root(root);
408 if (!sb->s_root) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 iput(root);
David Howells63525392008-02-07 00:15:40 -0800410 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 goto cleanup;
412 }
Duane Griffind45bce82007-07-15 23:41:23 -0700413 sb->s_root->d_op = &hfsplus_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 str.len = sizeof(HFSP_HIDDENDIR_NAME) - 1;
416 str.name = HFSP_HIDDENDIR_NAME;
417 hfs_find_init(HFSPLUS_SB(sb).cat_tree, &fd);
418 hfsplus_cat_build_key(sb, fd.search_key, HFSPLUS_ROOT_CNID, &str);
419 if (!hfs_brec_read(&fd, &entry, sizeof(entry))) {
420 hfs_find_exit(&fd);
421 if (entry.type != cpu_to_be16(HFSPLUS_FOLDER))
422 goto cleanup;
David Howells63525392008-02-07 00:15:40 -0800423 inode = hfsplus_iget(sb, be32_to_cpu(entry.folder.id));
424 if (IS_ERR(inode)) {
425 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 goto cleanup;
David Howells63525392008-02-07 00:15:40 -0800427 }
428 HFSPLUS_SB(sb).hidden_dir = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 } else
430 hfs_find_exit(&fd);
431
432 if (sb->s_flags & MS_RDONLY)
433 goto out;
434
435 /* H+LX == hfsplusutils, H+Lx == this driver, H+lx is unused
436 * all three are registered with Apple for our use
437 */
438 vhdr->last_mount_vers = cpu_to_be32(HFSP_MOUNT_VERSION);
439 vhdr->modify_date = hfsp_now2mt();
Marcin Slusarz20c79e72008-04-30 00:54:47 -0700440 be32_add_cpu(&vhdr->write_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_UNMNT);
442 vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_INCNSTNT);
443 mark_buffer_dirty(HFSPLUS_SB(sb).s_vhbh);
Jan Karae39f07c2005-09-06 15:19:16 -0700444 sync_dirty_buffer(HFSPLUS_SB(sb).s_vhbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (!HFSPLUS_SB(sb).hidden_dir) {
Roman Zippel634725a2006-01-18 17:43:05 -0800447 printk(KERN_DEBUG "hfs: create hidden dir...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 HFSPLUS_SB(sb).hidden_dir = hfsplus_new_inode(sb, S_IFDIR);
449 hfsplus_create_cat(HFSPLUS_SB(sb).hidden_dir->i_ino, sb->s_root->d_inode,
450 &str, HFSPLUS_SB(sb).hidden_dir);
451 mark_inode_dirty(HFSPLUS_SB(sb).hidden_dir);
452 }
453out:
454 unload_nls(sbi->nls);
455 sbi->nls = nls;
456 return 0;
457
458cleanup:
459 hfsplus_put_super(sb);
460 if (nls)
461 unload_nls(nls);
462 return err;
463}
464
465MODULE_AUTHOR("Brad Boyer");
466MODULE_DESCRIPTION("Extended Macintosh Filesystem");
467MODULE_LICENSE("GPL");
468
Christoph Lametere18b8902006-12-06 20:33:20 -0800469static struct kmem_cache *hfsplus_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471static struct inode *hfsplus_alloc_inode(struct super_block *sb)
472{
473 struct hfsplus_inode_info *i;
474
Christoph Lametere94b1762006-12-06 20:33:17 -0800475 i = kmem_cache_alloc(hfsplus_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return i ? &i->vfs_inode : NULL;
477}
478
479static void hfsplus_destroy_inode(struct inode *inode)
480{
481 kmem_cache_free(hfsplus_inode_cachep, &HFSPLUS_I(inode));
482}
483
484#define HFSPLUS_INODE_SIZE sizeof(struct hfsplus_inode_info)
485
David Howells454e2392006-06-23 02:02:57 -0700486static int hfsplus_get_sb(struct file_system_type *fs_type,
487 int flags, const char *dev_name, void *data,
488 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
David Howells454e2392006-06-23 02:02:57 -0700490 return get_sb_bdev(fs_type, flags, dev_name, data, hfsplus_fill_super,
491 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494static struct file_system_type hfsplus_fs_type = {
495 .owner = THIS_MODULE,
496 .name = "hfsplus",
497 .get_sb = hfsplus_get_sb,
498 .kill_sb = kill_block_super,
499 .fs_flags = FS_REQUIRES_DEV,
500};
501
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700502static void hfsplus_init_once(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 struct hfsplus_inode_info *i = p;
505
Christoph Lametera35afb82007-05-16 22:10:57 -0700506 inode_init_once(&i->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509static int __init init_hfsplus_fs(void)
510{
511 int err;
512
513 hfsplus_inode_cachep = kmem_cache_create("hfsplus_icache",
514 HFSPLUS_INODE_SIZE, 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900515 hfsplus_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!hfsplus_inode_cachep)
517 return -ENOMEM;
518 err = register_filesystem(&hfsplus_fs_type);
519 if (err)
520 kmem_cache_destroy(hfsplus_inode_cachep);
521 return err;
522}
523
524static void __exit exit_hfsplus_fs(void)
525{
526 unregister_filesystem(&hfsplus_fs_type);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700527 kmem_cache_destroy(hfsplus_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530module_init(init_hfsplus_fs)
531module_exit(exit_hfsplus_fs)