blob: 1bf00b9ecc1ad37b7274093813623bf8886dd615 [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:
Christoph Hellwigdd73a012010-10-01 05:42:59 +020044 hfs_find_init(HFSPLUS_SB(inode->i_sb)->cat_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 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 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +020053 vhdr = HFSPLUS_SB(inode->i_sb)->s_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 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
Christoph Hellwiga9185b42010-03-05 09:21:37 +010089static int hfsplus_write_inode(struct inode *inode,
90 struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Christoph Hellwigdd73a012010-10-01 05:42:59 +020092 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct hfsplus_vh *vhdr;
94 int ret = 0;
95
96 dprint(DBG_INODE, "hfsplus_write_inode: %lu\n", inode->i_ino);
97 hfsplus_ext_write_extent(inode);
98 if (inode->i_ino >= HFSPLUS_FIRSTUSER_CNID) {
99 return hfsplus_cat_write_inode(inode);
100 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200101 vhdr = sbi->s_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 switch (inode->i_ino) {
103 case HFSPLUS_ROOT_CNID:
104 ret = hfsplus_cat_write_inode(inode);
105 break;
106 case HFSPLUS_EXT_CNID:
107 if (vhdr->ext_file.total_size != cpu_to_be64(inode->i_size)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200108 sbi->flags |= HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 inode->i_sb->s_dirt = 1;
110 }
111 hfsplus_inode_write_fork(inode, &vhdr->ext_file);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200112 hfs_btree_write(sbi->ext_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 break;
114 case HFSPLUS_CAT_CNID:
115 if (vhdr->cat_file.total_size != cpu_to_be64(inode->i_size)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200116 sbi->flags |= HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 inode->i_sb->s_dirt = 1;
118 }
119 hfsplus_inode_write_fork(inode, &vhdr->cat_file);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200120 hfs_btree_write(sbi->cat_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 break;
122 case HFSPLUS_ALLOC_CNID:
123 if (vhdr->alloc_file.total_size != cpu_to_be64(inode->i_size)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200124 sbi->flags |= HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 inode->i_sb->s_dirt = 1;
126 }
127 hfsplus_inode_write_fork(inode, &vhdr->alloc_file);
128 break;
129 case HFSPLUS_START_CNID:
130 if (vhdr->start_file.total_size != cpu_to_be64(inode->i_size)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200131 sbi->flags |= HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 inode->i_sb->s_dirt = 1;
133 }
134 hfsplus_inode_write_fork(inode, &vhdr->start_file);
135 break;
136 case HFSPLUS_ATTR_CNID:
137 if (vhdr->attr_file.total_size != cpu_to_be64(inode->i_size)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200138 sbi->flags |= HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 inode->i_sb->s_dirt = 1;
140 }
141 hfsplus_inode_write_fork(inode, &vhdr->attr_file);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200142 hfs_btree_write(sbi->attr_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break;
144 }
145 return ret;
146}
147
Al Virob57922d2010-06-07 14:34:48 -0400148static void hfsplus_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Al Virob57922d2010-06-07 14:34:48 -0400150 dprint(DBG_INODE, "hfsplus_evict_inode: %lu\n", inode->i_ino);
151 truncate_inode_pages(&inode->i_data, 0);
152 end_writeback(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (HFSPLUS_IS_RSRC(inode)) {
154 HFSPLUS_I(HFSPLUS_I(inode).rsrc_inode).rsrc_inode = NULL;
155 iput(HFSPLUS_I(inode).rsrc_inode);
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Al Virob5fc5102010-07-04 12:24:09 +0400159int hfsplus_sync_fs(struct super_block *sb, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200161 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
162 struct hfsplus_vh *vhdr = sbi->s_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 dprint(DBG_SUPER, "hfsplus_write_super\n");
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200165
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200166 mutex_lock(&sbi->alloc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 sb->s_dirt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200169 vhdr->free_blocks = cpu_to_be32(sbi->free_blocks);
170 vhdr->next_alloc = cpu_to_be32(sbi->next_alloc);
171 vhdr->next_cnid = cpu_to_be32(sbi->next_cnid);
172 vhdr->folder_count = cpu_to_be32(sbi->folder_count);
173 vhdr->file_count = cpu_to_be32(sbi->file_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200175 mark_buffer_dirty(sbi->s_vhbh);
176 if (sbi->flags & HFSPLUS_SB_WRITEBACKUP) {
177 if (sbi->sect_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct buffer_head *bh;
179 u32 block, offset;
180
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200181 block = sbi->blockoffset;
182 block += (sbi->sect_count - 2) >> (sb->s_blocksize_bits - 9);
183 offset = ((sbi->sect_count - 2) << 9) & (sb->s_blocksize - 1);
184 printk(KERN_DEBUG "hfs: backup: %u,%u,%u,%u\n",
185 sbi->blockoffset, sbi->sect_count,
186 block, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 bh = sb_bread(sb, block);
188 if (bh) {
189 vhdr = (struct hfsplus_vh *)(bh->b_data + offset);
190 if (be16_to_cpu(vhdr->signature) == HFSPLUS_VOLHEAD_SIG) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200191 memcpy(vhdr, sbi->s_vhdr, sizeof(*vhdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 mark_buffer_dirty(bh);
193 brelse(bh);
194 } else
Roman Zippel634725a2006-01-18 17:43:05 -0800195 printk(KERN_WARNING "hfs: backup not found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200198 sbi->flags &= ~HFSPLUS_SB_WRITEBACKUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200200 mutex_unlock(&sbi->alloc_mutex);
Christoph Hellwig7fbc6df2009-06-08 10:05:12 +0200201 return 0;
202}
203
204static void hfsplus_write_super(struct super_block *sb)
205{
206 if (!(sb->s_flags & MS_RDONLY))
207 hfsplus_sync_fs(sb, 1);
208 else
209 sb->s_dirt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
212static void hfsplus_put_super(struct super_block *sb)
213{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200214 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dprint(DBG_SUPER, "hfsplus_put_super\n");
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200217
Colin Leroy945b0922005-05-01 08:59:16 -0700218 if (!sb->s_fs_info)
219 return;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200220
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200221 if (sb->s_dirt)
222 hfsplus_write_super(sb);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200223 if (!(sb->s_flags & MS_RDONLY) && sbi->s_vhdr) {
224 struct hfsplus_vh *vhdr = sbi->s_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 vhdr->modify_date = hfsp_now2mt();
227 vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_UNMNT);
228 vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_INCNSTNT);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200229 mark_buffer_dirty(sbi->s_vhbh);
230 sync_dirty_buffer(sbi->s_vhbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200233 hfs_btree_close(sbi->cat_tree);
234 hfs_btree_close(sbi->ext_tree);
235 iput(sbi->alloc_file);
236 iput(sbi->hidden_dir);
237 brelse(sbi->s_vhbh);
238 unload_nls(sbi->nls);
Colin Leroy945b0922005-05-01 08:59:16 -0700239 kfree(sb->s_fs_info);
240 sb->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
David Howells726c3342006-06-23 02:02:58 -0700243static int hfsplus_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
David Howells726c3342006-06-23 02:02:58 -0700245 struct super_block *sb = dentry->d_sb;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200246 struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
Coly Li25564dd2009-04-02 16:59:36 -0700247 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
David Howells726c3342006-06-23 02:02:58 -0700248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 buf->f_type = HFSPLUS_SUPER_MAGIC;
250 buf->f_bsize = sb->s_blocksize;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200251 buf->f_blocks = sbi->total_blocks << sbi->fs_shift;
252 buf->f_bfree = sbi->free_blocks << sbi->fs_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 buf->f_bavail = buf->f_bfree;
254 buf->f_files = 0xFFFFFFFF;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200255 buf->f_ffree = 0xFFFFFFFF - sbi->next_cnid;
Coly Li25564dd2009-04-02 16:59:36 -0700256 buf->f_fsid.val[0] = (u32)id;
257 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 buf->f_namelen = HFSPLUS_MAX_STRLEN;
259
260 return 0;
261}
262
263static int hfsplus_remount(struct super_block *sb, int *flags, char *data)
264{
265 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
266 return 0;
267 if (!(*flags & MS_RDONLY)) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200268 struct hfsplus_vh *vhdr = HFSPLUS_SB(sb)->s_vhdr;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800269 struct hfsplus_sb_info sbi;
270
271 memset(&sbi, 0, sizeof(struct hfsplus_sb_info));
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200272 sbi.nls = HFSPLUS_SB(sb)->nls;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800273 if (!hfsplus_parse_options(data, &sbi))
274 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
Roman Zippel634725a2006-01-18 17:43:05 -0800277 printk(KERN_WARNING "hfs: filesystem was not cleanly unmounted, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 "running fsck.hfsplus is recommended. leaving read-only.\n");
279 sb->s_flags |= MS_RDONLY;
280 *flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800281 } else if (sbi.flags & HFSPLUS_SB_FORCE) {
282 /* nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800284 printk(KERN_WARNING "hfs: filesystem is marked locked, leaving read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 sb->s_flags |= MS_RDONLY;
286 *flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800287 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800288 printk(KERN_WARNING "hfs: filesystem is marked journaled, leaving read-only.\n");
Roman Zippelb0b623c2005-11-29 19:34:41 -0800289 sb->s_flags |= MS_RDONLY;
290 *flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 }
293 return 0;
294}
295
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800296static const struct super_operations hfsplus_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .alloc_inode = hfsplus_alloc_inode,
298 .destroy_inode = hfsplus_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .write_inode = hfsplus_write_inode,
Al Virob57922d2010-06-07 14:34:48 -0400300 .evict_inode = hfsplus_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 .put_super = hfsplus_put_super,
302 .write_super = hfsplus_write_super,
Christoph Hellwig7fbc6df2009-06-08 10:05:12 +0200303 .sync_fs = hfsplus_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .statfs = hfsplus_statfs,
305 .remount_fs = hfsplus_remount,
Roman Zippel717dd802005-09-06 15:18:48 -0700306 .show_options = hfsplus_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
309static int hfsplus_fill_super(struct super_block *sb, void *data, int silent)
310{
311 struct hfsplus_vh *vhdr;
312 struct hfsplus_sb_info *sbi;
313 hfsplus_cat_entry entry;
314 struct hfs_find_data fd;
David Howells63525392008-02-07 00:15:40 -0800315 struct inode *root, *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct qstr str;
317 struct nls_table *nls = NULL;
318 int err = -EINVAL;
319
Wyatt Banksa5001a22007-07-15 23:40:50 -0700320 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (!sbi)
322 return -ENOMEM;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 sb->s_fs_info = sbi;
325 INIT_HLIST_HEAD(&sbi->rsrc_inodes);
Christoph Hellwig40bf48a2010-10-01 05:41:39 +0200326 mutex_init(&sbi->alloc_mutex);
Roman Zippel717dd802005-09-06 15:18:48 -0700327 hfsplus_fill_defaults(sbi);
328 if (!hfsplus_parse_options(data, sbi)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800329 printk(KERN_ERR "hfs: unable to parse mount options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 err = -EINVAL;
331 goto cleanup;
332 }
333
334 /* temporarily use utf8 to correctly find the hidden dir below */
335 nls = sbi->nls;
336 sbi->nls = load_nls("utf8");
Joshua Kwanbd6a59b2006-01-06 00:09:45 -0800337 if (!sbi->nls) {
Roman Zippel634725a2006-01-18 17:43:05 -0800338 printk(KERN_ERR "hfs: unable to load nls for utf8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 err = -EINVAL;
340 goto cleanup;
341 }
342
343 /* Grab the volume header */
344 if (hfsplus_read_wrapper(sb)) {
345 if (!silent)
Roman Zippel634725a2006-01-18 17:43:05 -0800346 printk(KERN_WARNING "hfs: unable to find HFS+ superblock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 err = -EINVAL;
348 goto cleanup;
349 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200350 vhdr = sbi->s_vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 /* Copy parts of the volume header into the superblock */
David Elliott2179d372006-01-18 17:43:08 -0800353 sb->s_magic = HFSPLUS_VOLHEAD_SIG;
354 if (be16_to_cpu(vhdr->version) < HFSPLUS_MIN_VERSION ||
355 be16_to_cpu(vhdr->version) > HFSPLUS_CURRENT_VERSION) {
Roman Zippel634725a2006-01-18 17:43:05 -0800356 printk(KERN_ERR "hfs: wrong filesystem version\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto cleanup;
358 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200359 sbi->total_blocks = be32_to_cpu(vhdr->total_blocks);
360 sbi->free_blocks = be32_to_cpu(vhdr->free_blocks);
361 sbi->next_alloc = be32_to_cpu(vhdr->next_alloc);
362 sbi->next_cnid = be32_to_cpu(vhdr->next_cnid);
363 sbi->file_count = be32_to_cpu(vhdr->file_count);
364 sbi->folder_count = be32_to_cpu(vhdr->folder_count);
365 sbi->data_clump_blocks =
366 be32_to_cpu(vhdr->data_clump_sz) >> sbi->alloc_blksz_shift;
367 if (!sbi->data_clump_blocks)
368 sbi->data_clump_blocks = 1;
369 sbi->rsrc_clump_blocks =
370 be32_to_cpu(vhdr->rsrc_clump_sz) >> sbi->alloc_blksz_shift;
371 if (!sbi->rsrc_clump_blocks)
372 sbi->rsrc_clump_blocks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* Set up operations so we can load metadata */
375 sb->s_op = &hfsplus_sops;
376 sb->s_maxbytes = MAX_LFS_FILESIZE;
377
378 if (!(vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_UNMNT))) {
Roman Zippel634725a2006-01-18 17:43:05 -0800379 printk(KERN_WARNING "hfs: Filesystem was not cleanly unmounted, "
380 "running fsck.hfsplus is recommended. mounting read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 sb->s_flags |= MS_RDONLY;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800382 } else if (sbi->flags & HFSPLUS_SB_FORCE) {
383 /* nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 } else if (vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_SOFTLOCK)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800385 printk(KERN_WARNING "hfs: Filesystem is marked locked, mounting read-only.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 sb->s_flags |= MS_RDONLY;
Mike Crowe81a73712008-10-15 22:04:05 -0700387 } else if ((vhdr->attributes & cpu_to_be32(HFSPLUS_VOL_JOURNALED)) && !(sb->s_flags & MS_RDONLY)) {
Dave Jones355a4692008-04-29 16:01:22 -0400388 printk(KERN_WARNING "hfs: write access to a journaled filesystem is not supported, "
Roman Zippel634725a2006-01-18 17:43:05 -0800389 "use the force option at your own risk, mounting read-only.\n");
Roman Zippelb0b623c2005-11-29 19:34:41 -0800390 sb->s_flags |= MS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
Roman Zippelb0b623c2005-11-29 19:34:41 -0800392 sbi->flags &= ~HFSPLUS_SB_FORCE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 /* Load metadata objects (B*Trees) */
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200395 sbi->ext_tree = hfs_btree_open(sb, HFSPLUS_EXT_CNID);
396 if (!sbi->ext_tree) {
Roman Zippel634725a2006-01-18 17:43:05 -0800397 printk(KERN_ERR "hfs: failed to load extents file\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 goto cleanup;
399 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200400 sbi->cat_tree = hfs_btree_open(sb, HFSPLUS_CAT_CNID);
401 if (!sbi->cat_tree) {
Roman Zippel634725a2006-01-18 17:43:05 -0800402 printk(KERN_ERR "hfs: failed to load catalog file\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 goto cleanup;
404 }
405
David Howells63525392008-02-07 00:15:40 -0800406 inode = hfsplus_iget(sb, HFSPLUS_ALLOC_CNID);
407 if (IS_ERR(inode)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800408 printk(KERN_ERR "hfs: failed to load allocation file\n");
David Howells63525392008-02-07 00:15:40 -0800409 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto cleanup;
411 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200412 sbi->alloc_file = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* Load the root directory */
David Howells63525392008-02-07 00:15:40 -0800415 root = hfsplus_iget(sb, HFSPLUS_ROOT_CNID);
416 if (IS_ERR(root)) {
417 printk(KERN_ERR "hfs: failed to load root directory\n");
418 err = PTR_ERR(root);
419 goto cleanup;
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 sb->s_root = d_alloc_root(root);
422 if (!sb->s_root) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 iput(root);
David Howells63525392008-02-07 00:15:40 -0800424 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 goto cleanup;
426 }
Duane Griffind45bce82007-07-15 23:41:23 -0700427 sb->s_root->d_op = &hfsplus_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 str.len = sizeof(HFSP_HIDDENDIR_NAME) - 1;
430 str.name = HFSP_HIDDENDIR_NAME;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200431 hfs_find_init(sbi->cat_tree, &fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 hfsplus_cat_build_key(sb, fd.search_key, HFSPLUS_ROOT_CNID, &str);
433 if (!hfs_brec_read(&fd, &entry, sizeof(entry))) {
434 hfs_find_exit(&fd);
435 if (entry.type != cpu_to_be16(HFSPLUS_FOLDER))
436 goto cleanup;
David Howells63525392008-02-07 00:15:40 -0800437 inode = hfsplus_iget(sb, be32_to_cpu(entry.folder.id));
438 if (IS_ERR(inode)) {
439 err = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto cleanup;
David Howells63525392008-02-07 00:15:40 -0800441 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200442 sbi->hidden_dir = inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 } else
444 hfs_find_exit(&fd);
445
446 if (sb->s_flags & MS_RDONLY)
447 goto out;
448
449 /* H+LX == hfsplusutils, H+Lx == this driver, H+lx is unused
450 * all three are registered with Apple for our use
451 */
452 vhdr->last_mount_vers = cpu_to_be32(HFSP_MOUNT_VERSION);
453 vhdr->modify_date = hfsp_now2mt();
Marcin Slusarz20c79e72008-04-30 00:54:47 -0700454 be32_add_cpu(&vhdr->write_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 vhdr->attributes &= cpu_to_be32(~HFSPLUS_VOL_UNMNT);
456 vhdr->attributes |= cpu_to_be32(HFSPLUS_VOL_INCNSTNT);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200457 mark_buffer_dirty(sbi->s_vhbh);
458 sync_dirty_buffer(sbi->s_vhbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200460 if (!sbi->hidden_dir) {
Roman Zippel634725a2006-01-18 17:43:05 -0800461 printk(KERN_DEBUG "hfs: create hidden dir...\n");
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200462 sbi->hidden_dir = hfsplus_new_inode(sb, S_IFDIR);
463 hfsplus_create_cat(sbi->hidden_dir->i_ino, sb->s_root->d_inode,
464 &str, sbi->hidden_dir);
465 mark_inode_dirty(sbi->hidden_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467out:
468 unload_nls(sbi->nls);
469 sbi->nls = nls;
470 return 0;
471
472cleanup:
473 hfsplus_put_super(sb);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000474 unload_nls(nls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return err;
476}
477
478MODULE_AUTHOR("Brad Boyer");
479MODULE_DESCRIPTION("Extended Macintosh Filesystem");
480MODULE_LICENSE("GPL");
481
Christoph Lametere18b8902006-12-06 20:33:20 -0800482static struct kmem_cache *hfsplus_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484static struct inode *hfsplus_alloc_inode(struct super_block *sb)
485{
486 struct hfsplus_inode_info *i;
487
Christoph Lametere94b1762006-12-06 20:33:17 -0800488 i = kmem_cache_alloc(hfsplus_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return i ? &i->vfs_inode : NULL;
490}
491
492static void hfsplus_destroy_inode(struct inode *inode)
493{
494 kmem_cache_free(hfsplus_inode_cachep, &HFSPLUS_I(inode));
495}
496
497#define HFSPLUS_INODE_SIZE sizeof(struct hfsplus_inode_info)
498
David Howells454e2392006-06-23 02:02:57 -0700499static int hfsplus_get_sb(struct file_system_type *fs_type,
500 int flags, const char *dev_name, void *data,
501 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
David Howells454e2392006-06-23 02:02:57 -0700503 return get_sb_bdev(fs_type, flags, dev_name, data, hfsplus_fill_super,
504 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507static struct file_system_type hfsplus_fs_type = {
508 .owner = THIS_MODULE,
509 .name = "hfsplus",
510 .get_sb = hfsplus_get_sb,
511 .kill_sb = kill_block_super,
512 .fs_flags = FS_REQUIRES_DEV,
513};
514
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700515static void hfsplus_init_once(void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct hfsplus_inode_info *i = p;
518
Christoph Lametera35afb82007-05-16 22:10:57 -0700519 inode_init_once(&i->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522static int __init init_hfsplus_fs(void)
523{
524 int err;
525
526 hfsplus_inode_cachep = kmem_cache_create("hfsplus_icache",
527 HFSPLUS_INODE_SIZE, 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900528 hfsplus_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (!hfsplus_inode_cachep)
530 return -ENOMEM;
531 err = register_filesystem(&hfsplus_fs_type);
532 if (err)
533 kmem_cache_destroy(hfsplus_inode_cachep);
534 return err;
535}
536
537static void __exit exit_hfsplus_fs(void)
538{
539 unregister_filesystem(&hfsplus_fs_type);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700540 kmem_cache_destroy(hfsplus_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543module_init(init_hfsplus_fs)
544module_exit(exit_hfsplus_fs)