2 * Copyright (c) 2000-2001 Christoph Hellwig.
3 * Copyright (c) 2016 Krzysztof Blaszkowski
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions, and the following disclaimer,
11 * without modification.
12 * 2. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
15 * Alternatively, this software may be distributed under the terms of the
16 * GNU General Public License ("GPL").
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
22 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * Veritas filesystem driver - superblock related routines.
34 #include <linux/init.h>
35 #include <linux/module.h>
37 #include <linux/blkdev.h>
39 #include <linux/buffer_head.h>
40 #include <linux/kernel.h>
41 #include <linux/slab.h>
42 #include <linux/stat.h>
43 #include <linux/vfs.h>
44 #include <linux/mount.h>
47 #include "vxfs_extern.h"
49 #include "vxfs_inode.h"
52 MODULE_AUTHOR("Christoph Hellwig, Krzysztof Blaszkowski");
53 MODULE_DESCRIPTION("Veritas Filesystem (VxFS) driver");
54 MODULE_LICENSE("Dual BSD/GPL");
56 static struct kmem_cache *vxfs_inode_cachep;
59 * vxfs_put_super - free superblock resources
60 * @sbp: VFS superblock.
63 * vxfs_put_super frees all resources allocated for @sbp
64 * after the last instance of the filesystem is unmounted.
68 vxfs_put_super(struct super_block *sbp)
70 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
72 iput(infp->vsi_fship);
73 iput(infp->vsi_ilist);
74 iput(infp->vsi_stilist);
81 * vxfs_statfs - get filesystem information
82 * @dentry: VFS dentry to locate superblock
83 * @bufp: output buffer
86 * vxfs_statfs fills the statfs buffer @bufp with information
87 * about the filesystem described by @dentry.
96 * This is everything but complete...
99 vxfs_statfs(struct dentry *dentry, struct kstatfs *bufp)
101 struct vxfs_sb_info *infp = VXFS_SBI(dentry->d_sb);
102 struct vxfs_sb *raw_sb = infp->vsi_raw;
104 bufp->f_type = VXFS_SUPER_MAGIC;
105 bufp->f_bsize = dentry->d_sb->s_blocksize;
106 bufp->f_blocks = fs32_to_cpu(infp, raw_sb->vs_dsize);
107 bufp->f_bfree = fs32_to_cpu(infp, raw_sb->vs_free);
110 bufp->f_ffree = fs32_to_cpu(infp, raw_sb->vs_ifree);
111 bufp->f_namelen = VXFS_NAMELEN;
116 static int vxfs_remount(struct super_block *sb, int *flags, char *data)
123 static struct inode *vxfs_alloc_inode(struct super_block *sb)
125 struct vxfs_inode_info *vi;
127 vi = kmem_cache_alloc(vxfs_inode_cachep, GFP_KERNEL);
130 inode_init_once(&vi->vfs_inode);
131 return &vi->vfs_inode;
134 static void vxfs_i_callback(struct rcu_head *head)
136 struct inode *inode = container_of(head, struct inode, i_rcu);
138 kmem_cache_free(vxfs_inode_cachep, VXFS_INO(inode));
141 static void vxfs_destroy_inode(struct inode *inode)
143 call_rcu(&inode->i_rcu, vxfs_i_callback);
146 static const struct super_operations vxfs_super_ops = {
147 .alloc_inode = vxfs_alloc_inode,
148 .destroy_inode = vxfs_destroy_inode,
149 .evict_inode = vxfs_evict_inode,
150 .put_super = vxfs_put_super,
151 .statfs = vxfs_statfs,
152 .remount_fs = vxfs_remount,
155 static int vxfs_try_sb_magic(struct super_block *sbp, int silent,
156 unsigned blk, __fs32 magic)
158 struct buffer_head *bp;
159 struct vxfs_sb *rsbp;
160 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
163 bp = sb_bread(sbp, blk);
165 if (!bp || !buffer_mapped(bp)) {
168 "vxfs: unable to read disk superblock at %u\n",
175 rsbp = (struct vxfs_sb *)bp->b_data;
176 if (rsbp->vs_magic != magic) {
179 "vxfs: WRONG superblock magic %08x at %u\n",
180 rsbp->vs_magic, blk);
185 infp->vsi_raw = rsbp;
190 infp->vsi_raw = NULL;
199 * vxfs_read_super - read superblock into memory and initialize filesystem
200 * @sbp: VFS superblock (to fill)
201 * @dp: fs private mount data
202 * @silent: do not complain loudly when sth is wrong
205 * We are called on the first mount of a filesystem to read the
206 * superblock into memory and do some basic setup.
209 * The superblock on success, else %NULL.
212 * We are under @sbp->s_lock.
214 static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent)
216 struct vxfs_sb_info *infp;
217 struct vxfs_sb *rsbp;
223 sbp->s_flags |= SB_RDONLY;
225 infp = kzalloc(sizeof(*infp), GFP_KERNEL);
227 printk(KERN_WARNING "vxfs: unable to allocate incore superblock\n");
231 bsize = sb_min_blocksize(sbp, BLOCK_SIZE);
233 printk(KERN_WARNING "vxfs: unable to set blocksize\n");
237 sbp->s_op = &vxfs_super_ops;
238 sbp->s_fs_info = infp;
240 if (!vxfs_try_sb_magic(sbp, silent, 1,
241 (__force __fs32)cpu_to_le32(VXFS_SUPER_MAGIC))) {
243 infp->byte_order = VXFS_BO_LE;
244 } else if (!vxfs_try_sb_magic(sbp, silent, 8,
245 (__force __fs32)cpu_to_be32(VXFS_SUPER_MAGIC))) {
247 infp->byte_order = VXFS_BO_BE;
250 printk(KERN_NOTICE "vxfs: can't find superblock.\n");
254 rsbp = infp->vsi_raw;
255 j = fs32_to_cpu(infp, rsbp->vs_version);
256 if ((j < 2 || j > 4) && !silent) {
257 printk(KERN_NOTICE "vxfs: unsupported VxFS version (%d)\n", j);
262 printk(KERN_DEBUG "vxfs: supported VxFS version (%d)\n", j);
263 printk(KERN_DEBUG "vxfs: blocksize: %d\n",
264 fs32_to_cpu(infp, rsbp->vs_bsize));
267 sbp->s_magic = fs32_to_cpu(infp, rsbp->vs_magic);
269 infp->vsi_oltext = fs32_to_cpu(infp, rsbp->vs_oltext[0]);
270 infp->vsi_oltsize = fs32_to_cpu(infp, rsbp->vs_oltsize);
272 j = fs32_to_cpu(infp, rsbp->vs_bsize);
273 if (!sb_set_blocksize(sbp, j)) {
274 printk(KERN_WARNING "vxfs: unable to set final block size\n");
278 if (vxfs_read_olt(sbp, bsize)) {
279 printk(KERN_WARNING "vxfs: unable to read olt\n");
283 if (vxfs_read_fshead(sbp)) {
284 printk(KERN_WARNING "vxfs: unable to read fshead\n");
288 root = vxfs_iget(sbp, VXFS_ROOT_INO);
293 sbp->s_root = d_make_root(root);
295 printk(KERN_WARNING "vxfs: unable to get root dentry.\n");
302 iput(infp->vsi_fship);
303 iput(infp->vsi_ilist);
304 iput(infp->vsi_stilist);
306 brelse(infp->vsi_bp);
312 * The usual module blurb.
314 static struct dentry *vxfs_mount(struct file_system_type *fs_type,
315 int flags, const char *dev_name, void *data)
317 return mount_bdev(fs_type, flags, dev_name, data, vxfs_fill_super);
320 static struct file_system_type vxfs_fs_type = {
321 .owner = THIS_MODULE,
324 .kill_sb = kill_block_super,
325 .fs_flags = FS_REQUIRES_DEV,
327 MODULE_ALIAS_FS("vxfs"); /* makes mount -t vxfs autoload the module */
328 MODULE_ALIAS("vxfs");
335 vxfs_inode_cachep = kmem_cache_create_usercopy("vxfs_inode",
336 sizeof(struct vxfs_inode_info), 0,
337 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
338 offsetof(struct vxfs_inode_info, vii_immed.vi_immed),
339 sizeof_field(struct vxfs_inode_info,
342 if (!vxfs_inode_cachep)
344 rv = register_filesystem(&vxfs_fs_type);
346 kmem_cache_destroy(vxfs_inode_cachep);
353 unregister_filesystem(&vxfs_fs_type);
355 * Make sure all delayed rcu free inodes are flushed before we
359 kmem_cache_destroy(vxfs_inode_cachep);
362 module_init(vxfs_init);
363 module_exit(vxfs_cleanup);