blob: eb2b9e09c99624917c8d5cb843437ba06d773d2a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2000-2001 Christoph Hellwig.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions, and the following disclaimer,
10 * without modification.
11 * 2. The name of the author may not be used to endorse or promote products
12 * derived from this software without specific prior written permission.
13 *
14 * Alternatively, this software may be distributed under the terms of the
15 * GNU General Public License ("GPL").
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30/*
31 * Veritas filesystem driver - superblock related routines.
32 */
33#include <linux/init.h>
34#include <linux/module.h>
35
36#include <linux/blkdev.h>
37#include <linux/fs.h>
38#include <linux/buffer_head.h>
39#include <linux/kernel.h>
40#include <linux/slab.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040041#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/stat.h>
43#include <linux/vfs.h>
David Howells726c3342006-06-23 02:02:58 -070044#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include "vxfs.h"
47#include "vxfs_extern.h"
48#include "vxfs_dir.h"
49#include "vxfs_inode.h"
50
51
52MODULE_AUTHOR("Christoph Hellwig");
53MODULE_DESCRIPTION("Veritas Filesystem (VxFS) driver");
54MODULE_LICENSE("Dual BSD/GPL");
55
56MODULE_ALIAS("vxfs"); /* makes mount -t vxfs autoload the module */
57
58
59static void vxfs_put_super(struct super_block *);
David Howells726c3342006-06-23 02:02:58 -070060static int vxfs_statfs(struct dentry *, struct kstatfs *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static int vxfs_remount(struct super_block *, int *, char *);
62
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080063static const struct super_operations vxfs_super_ops = {
Al Virob57922d2010-06-07 14:34:48 -040064 .evict_inode = vxfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .put_super = vxfs_put_super,
66 .statfs = vxfs_statfs,
67 .remount_fs = vxfs_remount,
68};
69
70/**
71 * vxfs_put_super - free superblock resources
72 * @sbp: VFS superblock.
73 *
74 * Description:
75 * vxfs_put_super frees all resources allocated for @sbp
76 * after the last instance of the filesystem is unmounted.
77 */
78
79static void
80vxfs_put_super(struct super_block *sbp)
81{
82 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
83
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020084 lock_kernel();
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 vxfs_put_fake_inode(infp->vsi_fship);
87 vxfs_put_fake_inode(infp->vsi_ilist);
88 vxfs_put_fake_inode(infp->vsi_stilist);
89
90 brelse(infp->vsi_bp);
91 kfree(infp);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020092
93 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96/**
97 * vxfs_statfs - get filesystem information
David Howells726c3342006-06-23 02:02:58 -070098 * @dentry: VFS dentry to locate superblock
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * @bufp: output buffer
100 *
101 * Description:
102 * vxfs_statfs fills the statfs buffer @bufp with information
David Howells726c3342006-06-23 02:02:58 -0700103 * about the filesystem described by @dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 *
105 * Returns:
106 * Zero.
107 *
108 * Locking:
109 * No locks held.
110 *
111 * Notes:
112 * This is everything but complete...
113 */
114static int
David Howells726c3342006-06-23 02:02:58 -0700115vxfs_statfs(struct dentry *dentry, struct kstatfs *bufp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
David Howells726c3342006-06-23 02:02:58 -0700117 struct vxfs_sb_info *infp = VXFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 bufp->f_type = VXFS_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -0700120 bufp->f_bsize = dentry->d_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 bufp->f_blocks = infp->vsi_raw->vs_dsize;
122 bufp->f_bfree = infp->vsi_raw->vs_free;
123 bufp->f_bavail = 0;
124 bufp->f_files = 0;
125 bufp->f_ffree = infp->vsi_raw->vs_ifree;
126 bufp->f_namelen = VXFS_NAMELEN;
127
128 return 0;
129}
130
131static int vxfs_remount(struct super_block *sb, int *flags, char *data)
132{
133 *flags |= MS_RDONLY;
134 return 0;
135}
136
137/**
Uwe Kleine-König421f91d2010-06-11 12:17:00 +0200138 * vxfs_read_super - read superblock into memory and initialize filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * @sbp: VFS superblock (to fill)
140 * @dp: fs private mount data
141 * @silent: do not complain loudly when sth is wrong
142 *
143 * Description:
144 * We are called on the first mount of a filesystem to read the
145 * superblock into memory and do some basic setup.
146 *
147 * Returns:
148 * The superblock on success, else %NULL.
149 *
150 * Locking:
Jan Blunckdb719222010-08-15 22:51:10 +0200151 * We are under @sbp->s_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
153static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent)
154{
155 struct vxfs_sb_info *infp;
156 struct vxfs_sb *rsbp;
157 struct buffer_head *bp = NULL;
158 u_long bsize;
159 struct inode *root;
David Howellsd0b07942008-02-07 00:15:39 -0800160 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Jan Blunckdb719222010-08-15 22:51:10 +0200162 lock_kernel();
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 sbp->s_flags |= MS_RDONLY;
165
Pekka Enberge915fc42005-09-06 15:18:35 -0700166 infp = kzalloc(sizeof(*infp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!infp) {
168 printk(KERN_WARNING "vxfs: unable to allocate incore superblock\n");
Jan Blunckdb719222010-08-15 22:51:10 +0200169 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ENOMEM;
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 bsize = sb_min_blocksize(sbp, BLOCK_SIZE);
174 if (!bsize) {
175 printk(KERN_WARNING "vxfs: unable to set blocksize\n");
176 goto out;
177 }
178
179 bp = sb_bread(sbp, 1);
180 if (!bp || !buffer_mapped(bp)) {
181 if (!silent) {
182 printk(KERN_WARNING
183 "vxfs: unable to read disk superblock\n");
184 }
185 goto out;
186 }
187
188 rsbp = (struct vxfs_sb *)bp->b_data;
189 if (rsbp->vs_magic != VXFS_SUPER_MAGIC) {
190 if (!silent)
191 printk(KERN_NOTICE "vxfs: WRONG superblock magic\n");
192 goto out;
193 }
194
195 if ((rsbp->vs_version < 2 || rsbp->vs_version > 4) && !silent) {
196 printk(KERN_NOTICE "vxfs: unsupported VxFS version (%d)\n",
197 rsbp->vs_version);
198 goto out;
199 }
200
201#ifdef DIAGNOSTIC
202 printk(KERN_DEBUG "vxfs: supported VxFS version (%d)\n", rsbp->vs_version);
203 printk(KERN_DEBUG "vxfs: blocksize: %d\n", rsbp->vs_bsize);
204#endif
205
206 sbp->s_magic = rsbp->vs_magic;
Pekka Enberg8cb681b2005-06-30 02:59:05 -0700207 sbp->s_fs_info = infp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 infp->vsi_raw = rsbp;
210 infp->vsi_bp = bp;
211 infp->vsi_oltext = rsbp->vs_oltext[0];
212 infp->vsi_oltsize = rsbp->vs_oltsize;
213
214 if (!sb_set_blocksize(sbp, rsbp->vs_bsize)) {
215 printk(KERN_WARNING "vxfs: unable to set final block size\n");
216 goto out;
217 }
218
219 if (vxfs_read_olt(sbp, bsize)) {
220 printk(KERN_WARNING "vxfs: unable to read olt\n");
221 goto out;
222 }
223
224 if (vxfs_read_fshead(sbp)) {
225 printk(KERN_WARNING "vxfs: unable to read fshead\n");
226 goto out;
227 }
228
229 sbp->s_op = &vxfs_super_ops;
David Howellsd0b07942008-02-07 00:15:39 -0800230 root = vxfs_iget(sbp, VXFS_ROOT_INO);
231 if (IS_ERR(root)) {
232 ret = PTR_ERR(root);
233 goto out;
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 sbp->s_root = d_alloc_root(root);
236 if (!sbp->s_root) {
237 iput(root);
238 printk(KERN_WARNING "vxfs: unable to get root dentry.\n");
239 goto out_free_ilist;
240 }
241
Jan Blunckdb719222010-08-15 22:51:10 +0200242 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244
245out_free_ilist:
246 vxfs_put_fake_inode(infp->vsi_fship);
247 vxfs_put_fake_inode(infp->vsi_ilist);
248 vxfs_put_fake_inode(infp->vsi_stilist);
249out:
250 brelse(bp);
251 kfree(infp);
Jan Blunckdb719222010-08-15 22:51:10 +0200252 unlock_kernel();
David Howellsd0b07942008-02-07 00:15:39 -0800253 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/*
257 * The usual module blurb.
258 */
David Howells454e2392006-06-23 02:02:57 -0700259static int vxfs_get_sb(struct file_system_type *fs_type,
260 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
David Howells454e2392006-06-23 02:02:57 -0700262 return get_sb_bdev(fs_type, flags, dev_name, data, vxfs_fill_super,
263 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266static struct file_system_type vxfs_fs_type = {
267 .owner = THIS_MODULE,
268 .name = "vxfs",
269 .get_sb = vxfs_get_sb,
270 .kill_sb = kill_block_super,
271 .fs_flags = FS_REQUIRES_DEV,
272};
273
274static int __init
275vxfs_init(void)
276{
Alexey Dobriyana4376e12006-09-29 02:01:04 -0700277 int rv;
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 vxfs_inode_cachep = kmem_cache_create("vxfs_inode",
Paul Mundt20c2df82007-07-20 10:11:58 +0900280 sizeof(struct vxfs_inode_info), 0,
281 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, NULL);
Alexey Dobriyana4376e12006-09-29 02:01:04 -0700282 if (!vxfs_inode_cachep)
283 return -ENOMEM;
284 rv = register_filesystem(&vxfs_fs_type);
285 if (rv < 0)
286 kmem_cache_destroy(vxfs_inode_cachep);
287 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290static void __exit
291vxfs_cleanup(void)
292{
293 unregister_filesystem(&vxfs_fs_type);
294 kmem_cache_destroy(vxfs_inode_cachep);
295}
296
297module_init(vxfs_init);
298module_exit(vxfs_cleanup);