1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2000-2001 Christoph Hellwig.
4 * Copyright (c) 2016 Krzysztof Blaszkowski
8 * Veritas filesystem driver - superblock related routines.
10 #include <linux/init.h>
11 #include <linux/module.h>
13 #include <linux/blkdev.h>
15 #include <linux/buffer_head.h>
16 #include <linux/kernel.h>
17 #include <linux/slab.h>
18 #include <linux/stat.h>
19 #include <linux/vfs.h>
20 #include <linux/mount.h>
23 #include "vxfs_extern.h"
25 #include "vxfs_inode.h"
28 MODULE_AUTHOR("Christoph Hellwig, Krzysztof Blaszkowski");
29 MODULE_DESCRIPTION("Veritas Filesystem (VxFS) driver");
30 MODULE_LICENSE("Dual BSD/GPL");
32 static struct kmem_cache *vxfs_inode_cachep;
35 * vxfs_put_super - free superblock resources
36 * @sbp: VFS superblock.
39 * vxfs_put_super frees all resources allocated for @sbp
40 * after the last instance of the filesystem is unmounted.
44 vxfs_put_super(struct super_block *sbp)
46 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
48 iput(infp->vsi_fship);
49 iput(infp->vsi_ilist);
50 iput(infp->vsi_stilist);
57 * vxfs_statfs - get filesystem information
58 * @dentry: VFS dentry to locate superblock
59 * @bufp: output buffer
62 * vxfs_statfs fills the statfs buffer @bufp with information
63 * about the filesystem described by @dentry.
72 * This is everything but complete...
75 vxfs_statfs(struct dentry *dentry, struct kstatfs *bufp)
77 struct vxfs_sb_info *infp = VXFS_SBI(dentry->d_sb);
78 struct vxfs_sb *raw_sb = infp->vsi_raw;
80 bufp->f_type = VXFS_SUPER_MAGIC;
81 bufp->f_bsize = dentry->d_sb->s_blocksize;
82 bufp->f_blocks = fs32_to_cpu(infp, raw_sb->vs_dsize);
83 bufp->f_bfree = fs32_to_cpu(infp, raw_sb->vs_free);
86 bufp->f_ffree = fs32_to_cpu(infp, raw_sb->vs_ifree);
87 bufp->f_namelen = VXFS_NAMELEN;
92 static int vxfs_remount(struct super_block *sb, int *flags, char *data)
99 static struct inode *vxfs_alloc_inode(struct super_block *sb)
101 struct vxfs_inode_info *vi;
103 vi = alloc_inode_sb(sb, vxfs_inode_cachep, GFP_KERNEL);
106 inode_init_once(&vi->vfs_inode);
107 return &vi->vfs_inode;
110 static void vxfs_free_inode(struct inode *inode)
112 kmem_cache_free(vxfs_inode_cachep, VXFS_INO(inode));
115 static const struct super_operations vxfs_super_ops = {
116 .alloc_inode = vxfs_alloc_inode,
117 .free_inode = vxfs_free_inode,
118 .evict_inode = vxfs_evict_inode,
119 .put_super = vxfs_put_super,
120 .statfs = vxfs_statfs,
121 .remount_fs = vxfs_remount,
124 static int vxfs_try_sb_magic(struct super_block *sbp, int silent,
125 unsigned blk, __fs32 magic)
127 struct buffer_head *bp;
128 struct vxfs_sb *rsbp;
129 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
132 bp = sb_bread(sbp, blk);
134 if (!bp || !buffer_mapped(bp)) {
137 "vxfs: unable to read disk superblock at %u\n",
144 rsbp = (struct vxfs_sb *)bp->b_data;
145 if (rsbp->vs_magic != magic) {
148 "vxfs: WRONG superblock magic %08x at %u\n",
149 rsbp->vs_magic, blk);
154 infp->vsi_raw = rsbp;
159 infp->vsi_raw = NULL;
168 * vxfs_read_super - read superblock into memory and initialize filesystem
169 * @sbp: VFS superblock (to fill)
170 * @dp: fs private mount data
171 * @silent: do not complain loudly when sth is wrong
174 * We are called on the first mount of a filesystem to read the
175 * superblock into memory and do some basic setup.
178 * The superblock on success, else %NULL.
181 * We are under @sbp->s_lock.
183 static int vxfs_fill_super(struct super_block *sbp, void *dp, int silent)
185 struct vxfs_sb_info *infp;
186 struct vxfs_sb *rsbp;
192 sbp->s_flags |= SB_RDONLY;
194 infp = kzalloc(sizeof(*infp), GFP_KERNEL);
196 printk(KERN_WARNING "vxfs: unable to allocate incore superblock\n");
200 bsize = sb_min_blocksize(sbp, BLOCK_SIZE);
202 printk(KERN_WARNING "vxfs: unable to set blocksize\n");
206 sbp->s_op = &vxfs_super_ops;
207 sbp->s_fs_info = infp;
209 sbp->s_time_max = U32_MAX;
211 if (!vxfs_try_sb_magic(sbp, silent, 1,
212 (__force __fs32)cpu_to_le32(VXFS_SUPER_MAGIC))) {
214 infp->byte_order = VXFS_BO_LE;
215 } else if (!vxfs_try_sb_magic(sbp, silent, 8,
216 (__force __fs32)cpu_to_be32(VXFS_SUPER_MAGIC))) {
218 infp->byte_order = VXFS_BO_BE;
221 printk(KERN_NOTICE "vxfs: can't find superblock.\n");
225 rsbp = infp->vsi_raw;
226 j = fs32_to_cpu(infp, rsbp->vs_version);
227 if ((j < 2 || j > 4) && !silent) {
228 printk(KERN_NOTICE "vxfs: unsupported VxFS version (%d)\n", j);
233 printk(KERN_DEBUG "vxfs: supported VxFS version (%d)\n", j);
234 printk(KERN_DEBUG "vxfs: blocksize: %d\n",
235 fs32_to_cpu(infp, rsbp->vs_bsize));
238 sbp->s_magic = fs32_to_cpu(infp, rsbp->vs_magic);
240 infp->vsi_oltext = fs32_to_cpu(infp, rsbp->vs_oltext[0]);
241 infp->vsi_oltsize = fs32_to_cpu(infp, rsbp->vs_oltsize);
243 j = fs32_to_cpu(infp, rsbp->vs_bsize);
244 if (!sb_set_blocksize(sbp, j)) {
245 printk(KERN_WARNING "vxfs: unable to set final block size\n");
249 if (vxfs_read_olt(sbp, bsize)) {
250 printk(KERN_WARNING "vxfs: unable to read olt\n");
254 if (vxfs_read_fshead(sbp)) {
255 printk(KERN_WARNING "vxfs: unable to read fshead\n");
259 root = vxfs_iget(sbp, VXFS_ROOT_INO);
264 sbp->s_root = d_make_root(root);
266 printk(KERN_WARNING "vxfs: unable to get root dentry.\n");
273 iput(infp->vsi_fship);
274 iput(infp->vsi_ilist);
275 iput(infp->vsi_stilist);
277 brelse(infp->vsi_bp);
283 * The usual module blurb.
285 static struct dentry *vxfs_mount(struct file_system_type *fs_type,
286 int flags, const char *dev_name, void *data)
288 return mount_bdev(fs_type, flags, dev_name, data, vxfs_fill_super);
291 static struct file_system_type vxfs_fs_type = {
292 .owner = THIS_MODULE,
295 .kill_sb = kill_block_super,
296 .fs_flags = FS_REQUIRES_DEV,
298 MODULE_ALIAS_FS("vxfs"); /* makes mount -t vxfs autoload the module */
299 MODULE_ALIAS("vxfs");
306 vxfs_inode_cachep = kmem_cache_create_usercopy("vxfs_inode",
307 sizeof(struct vxfs_inode_info), 0,
308 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
309 offsetof(struct vxfs_inode_info, vii_immed.vi_immed),
310 sizeof_field(struct vxfs_inode_info,
313 if (!vxfs_inode_cachep)
315 rv = register_filesystem(&vxfs_fs_type);
317 kmem_cache_destroy(vxfs_inode_cachep);
324 unregister_filesystem(&vxfs_fs_type);
326 * Make sure all delayed rcu free inodes are flushed before we
330 kmem_cache_destroy(vxfs_inode_cachep);
333 module_init(vxfs_init);
334 module_exit(vxfs_cleanup);