vserver 1.9.5.x5
[linux-2.6.git] / fs / hfs / super.c
1 /*
2  *  linux/fs/hfs/super.c
3  *
4  * Copyright (C) 1995-1997  Paul H. Hargrove
5  * (C) 2003 Ardis Technologies <roman@ardistech.com>
6  * This file may be distributed under the terms of the GNU General Public License.
7  *
8  * This file contains hfs_read_super(), some of the super_ops and
9  * init_module() and cleanup_module().  The remaining super_ops are in
10  * inode.c since they deal with inodes.
11  *
12  * Based on the minix file system code, (C) 1991, 1992 by Linus Torvalds
13  */
14
15 #include <linux/config.h>
16 #include <linux/module.h>
17 #include <linux/blkdev.h>
18 #include <linux/init.h>
19 #include <linux/vfs.h>
20
21 #include "hfs_fs.h"
22 #include "btree.h"
23
24 const char hfs_version[]="0.96";
25
26 static kmem_cache_t *hfs_inode_cachep;
27
28 MODULE_LICENSE("GPL");
29
30 /*
31  * hfs_write_super()
32  *
33  * Description:
34  *   This function is called by the VFS only. When the filesystem
35  *   is mounted r/w it updates the MDB on disk.
36  * Input Variable(s):
37  *   struct super_block *sb: Pointer to the hfs superblock
38  * Output Variable(s):
39  *   NONE
40  * Returns:
41  *   void
42  * Preconditions:
43  *   'sb' points to a "valid" (struct super_block).
44  * Postconditions:
45  *   The MDB is marked 'unsuccessfully unmounted' by clearing bit 8 of drAtrb
46  *   (hfs_put_super() must set this flag!). Some MDB fields are updated
47  *   and the MDB buffer is written to disk by calling hfs_mdb_commit().
48  */
49 static void hfs_write_super(struct super_block *sb)
50 {
51         sb->s_dirt = 0;
52         if (sb->s_flags & MS_RDONLY)
53                 return;
54         /* sync everything to the buffers */
55         hfs_mdb_commit(sb);
56 }
57
58 /*
59  * hfs_put_super()
60  *
61  * This is the put_super() entry in the super_operations structure for
62  * HFS filesystems.  The purpose is to release the resources
63  * associated with the superblock sb.
64  */
65 static void hfs_put_super(struct super_block *sb)
66 {
67         hfs_mdb_close(sb);
68         /* release the MDB's resources */
69         hfs_mdb_put(sb);
70 }
71
72 /*
73  * hfs_statfs()
74  *
75  * This is the statfs() entry in the super_operations structure for
76  * HFS filesystems.  The purpose is to return various data about the
77  * filesystem.
78  *
79  * changed f_files/f_ffree to reflect the fs_ablock/free_ablocks.
80  */
81 static int hfs_statfs(struct super_block *sb, struct kstatfs *buf)
82 {
83         buf->f_type = HFS_SUPER_MAGIC;
84         buf->f_bsize = sb->s_blocksize;
85         buf->f_blocks = (u32)HFS_SB(sb)->fs_ablocks * HFS_SB(sb)->fs_div;
86         buf->f_bfree = (u32)HFS_SB(sb)->free_ablocks * HFS_SB(sb)->fs_div;
87         buf->f_bavail = buf->f_bfree;
88         buf->f_files = HFS_SB(sb)->fs_ablocks;
89         buf->f_ffree = HFS_SB(sb)->free_ablocks;
90         buf->f_namelen = HFS_NAMELEN;
91
92         return 0;
93 }
94
95 int hfs_remount(struct super_block *sb, int *flags, char *data)
96 {
97         *flags |= MS_NODIRATIME;
98         if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
99                 return 0;
100         if (!(*flags & MS_RDONLY)) {
101                 if (!(HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_UNMNT))) {
102                         printk("HFS-fs warning: Filesystem was not cleanly unmounted, "
103                                "running fsck.hfs is recommended.  leaving read-only.\n");
104                         sb->s_flags |= MS_RDONLY;
105                         *flags |= MS_RDONLY;
106                 } else if (HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_SLOCK)) {
107                         printk("HFS-fs: Filesystem is marked locked, leaving read-only.\n");
108                         sb->s_flags |= MS_RDONLY;
109                         *flags |= MS_RDONLY;
110                 }
111         }
112         return 0;
113 }
114
115 static struct inode *hfs_alloc_inode(struct super_block *sb)
116 {
117         struct hfs_inode_info *i;
118
119         i = kmem_cache_alloc(hfs_inode_cachep, SLAB_KERNEL);
120         return i ? &i->vfs_inode : NULL;
121 }
122
123 static void hfs_destroy_inode(struct inode *inode)
124 {
125         kmem_cache_free(hfs_inode_cachep, HFS_I(inode));
126 }
127
128 static struct super_operations hfs_super_operations = {
129         .alloc_inode    = hfs_alloc_inode,
130         .destroy_inode  = hfs_destroy_inode,
131         .write_inode    = hfs_write_inode,
132         .clear_inode    = hfs_clear_inode,
133         .put_super      = hfs_put_super,
134         .write_super    = hfs_write_super,
135         .statfs         = hfs_statfs,
136         .remount_fs     = hfs_remount,
137 };
138
139 /*
140  * parse_options()
141  *
142  * adapted from linux/fs/msdos/inode.c written 1992,93 by Werner Almesberger
143  * This function is called by hfs_read_super() to parse the mount options.
144  */
145 static int parse_options(char *options, struct hfs_sb_info *hsb)
146 {
147         char *this_char, *value;
148
149         /* initialize the sb with defaults */
150         hsb->s_uid = current->uid;
151         hsb->s_gid = current->gid;
152         hsb->s_file_umask = 0644;
153         hsb->s_dir_umask = 0755;
154         hsb->s_type = hsb->s_creator = cpu_to_be32(0x3f3f3f3f); /* == '????' */
155         hsb->s_quiet = 0;
156         hsb->part = -1;
157         hsb->session = -1;
158
159         if (!options)
160                 return 1;
161
162         while ((this_char = strsep(&options, ",")) != 0) {
163                 if (!*this_char)
164                         continue;
165                 value = strchr(this_char, '=');
166                 if (value)
167                         *value++ = 0;
168
169         /* Numeric-valued options */
170                 if (!strcmp(this_char, "uid")) {
171                         if (!value || !*value)
172                                 return 0;
173                         hsb->s_uid = simple_strtoul(value, &value, 0);
174                         if (*value)
175                                 return 0;
176                 } else if (!strcmp(this_char, "gid")) {
177                         if (!value || !*value)
178                                 return 0;
179                         hsb->s_gid = simple_strtoul(value, &value, 0);
180                         if (*value)
181                                 return 0;
182                 } else if (!strcmp(this_char, "umask")) {
183                         if (!value || !*value)
184                                 return 0;
185                         hsb->s_file_umask = simple_strtoul(value, &value, 8);
186                         hsb->s_dir_umask = hsb->s_file_umask;
187                         if (*value)
188                                 return 0;
189                 } else if (!strcmp(this_char, "file_umask")) {
190                         if (!value || !*value)
191                                 return 0;
192                         hsb->s_file_umask = simple_strtoul(value, &value, 8);
193                         if (*value)
194                                 return 0;
195                 } else if (!strcmp(this_char, "dir_umask")) {
196                         if (!value || !*value)
197                                 return 0;
198                         hsb->s_dir_umask = simple_strtoul(value, &value, 8);
199                         if (*value)
200                                 return 0;
201                 } else if (!strcmp(this_char, "part")) {
202                         if (!value || !*value)
203                                 return 0;
204                         hsb->part = simple_strtoul(value, &value, 0);
205                         if (*value)
206                                 return 0;
207                 } else if (!strcmp(this_char, "session")) {
208                         if (!value || !*value)
209                                 return 0;
210                         hsb->session = simple_strtoul(value, &value, 0);
211                         if (*value)
212                                 return 0;
213         /* String-valued options */
214                 } else if (!strcmp(this_char, "type") && value) {
215                         if (strlen(value) != 4)
216                                 return 0;
217                         memcpy(&hsb->s_type, value, 4);
218                 } else if (!strcmp(this_char, "creator") && value) {
219                         if (strlen(value) != 4)
220                                 return 0;
221                         memcpy(&hsb->s_creator, value, 4);
222         /* Boolean-valued options */
223                 } else if (!strcmp(this_char, "quiet")) {
224                         if (value)
225                                 return 0;
226                         hsb->s_quiet = 1;
227                 } else
228                         return 0;
229         }
230
231         hsb->s_dir_umask &= 0777;
232         hsb->s_file_umask &= 0777;
233
234         return 1;
235 }
236
237 /*
238  * hfs_read_super()
239  *
240  * This is the function that is responsible for mounting an HFS
241  * filesystem.  It performs all the tasks necessary to get enough data
242  * from the disk to read the root inode.  This includes parsing the
243  * mount options, dealing with Macintosh partitions, reading the
244  * superblock and the allocation bitmap blocks, calling
245  * hfs_btree_init() to get the necessary data about the extents and
246  * catalog B-trees and, finally, reading the root inode into memory.
247  */
248 static int hfs_fill_super(struct super_block *sb, void *data, int silent)
249 {
250         struct hfs_sb_info *sbi;
251         struct hfs_find_data fd;
252         hfs_cat_rec rec;
253         struct inode *root_inode;
254         int res;
255
256         sbi = kmalloc(sizeof(struct hfs_sb_info), GFP_KERNEL);
257         if (!sbi)
258                 return -ENOMEM;
259         sb->s_fs_info = sbi;
260         memset(sbi, 0, sizeof(struct hfs_sb_info));
261         INIT_HLIST_HEAD(&sbi->rsrc_inodes);
262
263         res = -EINVAL;
264         if (!parse_options((char *)data, sbi)) {
265                 hfs_warn("hfs_fs: unable to parse mount options.\n");
266                 goto bail3;
267         }
268
269         sb->s_op = &hfs_super_operations;
270         sb->s_flags |= MS_NODIRATIME;
271         init_MUTEX(&sbi->bitmap_lock);
272
273         res = hfs_mdb_get(sb);
274         if (res) {
275                 if (!silent)
276                         hfs_warn("VFS: Can't find a HFS filesystem on dev %s.\n",
277                                 hfs_mdb_name(sb));
278                 res = -EINVAL;
279                 goto bail2;
280         }
281
282         /* try to get the root inode */
283         hfs_find_init(HFS_SB(sb)->cat_tree, &fd);
284         res = hfs_cat_find_brec(sb, HFS_ROOT_CNID, &fd);
285         if (!res)
286                 hfs_bnode_read(fd.bnode, &rec, fd.entryoffset, fd.entrylength);
287         if (res) {
288                 hfs_find_exit(&fd);
289                 goto bail_no_root;
290         }
291         root_inode = hfs_iget(sb, &fd.search_key->cat, &rec);
292         hfs_find_exit(&fd);
293         if (!root_inode)
294                 goto bail_no_root;
295
296         sb->s_root = d_alloc_root(root_inode);
297         if (!sb->s_root)
298                 goto bail_iput;
299
300         sb->s_root->d_op = &hfs_dentry_operations;
301
302         /* everything's okay */
303         return 0;
304
305 bail_iput:
306         iput(root_inode);
307 bail_no_root:
308         hfs_warn("hfs_fs: get root inode failed.\n");
309         hfs_mdb_put(sb);
310 bail2:
311 bail3:
312         kfree(sbi);
313         return res;
314 }
315
316 static struct super_block *hfs_get_sb(struct file_system_type *fs_type,
317                                       int flags, const char *dev_name, void *data)
318 {
319         return get_sb_bdev(fs_type, flags, dev_name, data, hfs_fill_super);
320 }
321
322 static struct file_system_type hfs_fs_type = {
323         .owner          = THIS_MODULE,
324         .name           = "hfs",
325         .get_sb         = hfs_get_sb,
326         .kill_sb        = kill_block_super,
327         .fs_flags       = FS_REQUIRES_DEV,
328 };
329
330 static void hfs_init_once(void *p, kmem_cache_t *cachep, unsigned long flags)
331 {
332         struct hfs_inode_info *i = p;
333
334         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) == SLAB_CTOR_CONSTRUCTOR)
335                 inode_init_once(&i->vfs_inode);
336 }
337
338 static int __init init_hfs_fs(void)
339 {
340         int err;
341
342         hfs_inode_cachep = kmem_cache_create("hfs_inode_cache",
343                 sizeof(struct hfs_inode_info), 0, SLAB_HWCACHE_ALIGN,
344                 hfs_init_once, NULL);
345         if (!hfs_inode_cachep)
346                 return -ENOMEM;
347         err = register_filesystem(&hfs_fs_type);
348         if (err)
349                 kmem_cache_destroy(hfs_inode_cachep);
350         return err;
351 }
352
353 static void __exit exit_hfs_fs(void)
354 {
355         unregister_filesystem(&hfs_fs_type);
356         if (kmem_cache_destroy(hfs_inode_cachep))
357                 printk(KERN_INFO "hfs_inode_cache: not all structures were freed\n");
358 }
359
360 module_init(init_hfs_fs)
361 module_exit(exit_hfs_fs)