blob: a4610a77649e59120ad3011207e4b448dbd4849a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2000-2001 Christoph Hellwig.
Krzysztof Błaszkowski1cce1702016-06-01 09:25:12 +02003 * Copyright (c) 2016 Krzysztof Blaszkowski
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
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.
14 *
15 * Alternatively, this software may be distributed under the terms of the
16 * GNU General Public License ("GPL").
17 *
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
28 * SUCH DAMAGE.
29 */
30
31/*
32 * Veritas filesystem driver - fileset header routines.
33 */
34#include <linux/fs.h>
35#include <linux/buffer_head.h>
36#include <linux/kernel.h>
37#include <linux/slab.h>
38#include <linux/string.h>
39
40#include "vxfs.h"
41#include "vxfs_inode.h"
42#include "vxfs_extern.h"
43#include "vxfs_fshead.h"
44
45
46#ifdef DIAGNOSTIC
47static void
48vxfs_dumpfsh(struct vxfs_fsh *fhp)
49{
50 printk("\n\ndumping fileset header:\n");
51 printk("----------------------------\n");
52 printk("version: %u\n", fhp->fsh_version);
53 printk("fsindex: %u\n", fhp->fsh_fsindex);
54 printk("iauino: %u\tninodes:%u\n",
55 fhp->fsh_iauino, fhp->fsh_ninodes);
56 printk("maxinode: %u\tlctino: %u\n",
57 fhp->fsh_maxinode, fhp->fsh_lctino);
58 printk("nau: %u\n", fhp->fsh_nau);
59 printk("ilistino[0]: %u\tilistino[1]: %u\n",
60 fhp->fsh_ilistino[0], fhp->fsh_ilistino[1]);
61}
62#endif
63
64/**
65 * vxfs_getfsh - read fileset header into memory
66 * @ip: the (fake) fileset header inode
67 * @which: 0 for the structural, 1 for the primary fsh.
68 *
69 * Description:
70 * vxfs_getfsh reads either the structural or primary fileset header
71 * described by @ip into memory.
72 *
73 * Returns:
74 * The fileset header structure on success, else Zero.
75 */
76static struct vxfs_fsh *
77vxfs_getfsh(struct inode *ip, int which)
78{
79 struct buffer_head *bp;
80
81 bp = vxfs_bread(ip, which);
Pekka Enbergba03bda2005-06-30 02:59:04 -070082 if (bp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct vxfs_fsh *fhp;
84
Pekka Enbergba03bda2005-06-30 02:59:04 -070085 if (!(fhp = kmalloc(sizeof(*fhp), GFP_KERNEL)))
86 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 memcpy(fhp, bp->b_data, sizeof(*fhp));
88
Pekka Enbergba03bda2005-06-30 02:59:04 -070089 put_bh(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return (fhp);
91 }
Pekka Enbergba03bda2005-06-30 02:59:04 -070092out:
93 brelse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return NULL;
95}
96
97/**
98 * vxfs_read_fshead - read the fileset headers
99 * @sbp: superblock to which the fileset belongs
100 *
101 * Description:
102 * vxfs_read_fshead will fill the inode and structural inode list in @sb.
103 *
104 * Returns:
105 * Zero on success, else a negative error code (-EINVAL).
106 */
107int
108vxfs_read_fshead(struct super_block *sbp)
109{
110 struct vxfs_sb_info *infp = VXFS_SBI(sbp);
111 struct vxfs_fsh *pfp, *sfp;
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200112 struct vxfs_inode_info *vip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200114 infp->vsi_fship = vxfs_blkiget(sbp, infp->vsi_iext, infp->vsi_fshino);
115 if (!infp->vsi_fship) {
Cliff Wickman552c0342006-06-25 05:47:16 -0700116 printk(KERN_ERR "vxfs: unable to read fsh inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return -EINVAL;
118 }
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200119
120 vip = VXFS_INO(infp->vsi_fship);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (!VXFS_ISFSH(vip)) {
122 printk(KERN_ERR "vxfs: fsh list inode is of wrong type (%x)\n",
123 vip->vii_mode & VXFS_TYPE_MASK);
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200124 goto out_iput_fship;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#ifdef DIAGNOSTIC
128 printk("vxfs: fsh inode dump:\n");
129 vxfs_dumpi(vip, infp->vsi_fshino);
130#endif
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 sfp = vxfs_getfsh(infp->vsi_fship, 0);
133 if (!sfp) {
Cliff Wickman552c0342006-06-25 05:47:16 -0700134 printk(KERN_ERR "vxfs: unable to get structural fsh\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto out_iput_fship;
136 }
137
138#ifdef DIAGNOSTIC
139 vxfs_dumpfsh(sfp);
140#endif
141
142 pfp = vxfs_getfsh(infp->vsi_fship, 1);
143 if (!pfp) {
Cliff Wickman552c0342006-06-25 05:47:16 -0700144 printk(KERN_ERR "vxfs: unable to get primary fsh\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto out_free_sfp;
146 }
147
148#ifdef DIAGNOSTIC
149 vxfs_dumpfsh(pfp);
150#endif
151
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200152 infp->vsi_stilist = vxfs_blkiget(sbp, infp->vsi_iext,
Krzysztof Błaszkowski0d83f7f2016-05-31 08:45:13 +0200153 fs32_to_cpu(infp, sfp->fsh_ilistino[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (!infp->vsi_stilist) {
Cliff Wickman552c0342006-06-25 05:47:16 -0700155 printk(KERN_ERR "vxfs: unable to get structural list inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 goto out_free_pfp;
157 }
158 if (!VXFS_ISILT(VXFS_INO(infp->vsi_stilist))) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300159 printk(KERN_ERR "vxfs: structural list inode is of wrong type (%x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 VXFS_INO(infp->vsi_stilist)->vii_mode & VXFS_TYPE_MASK);
161 goto out_iput_stilist;
162 }
163
Krzysztof Błaszkowski8985f532016-06-01 08:56:04 +0200164 infp->vsi_ilist = vxfs_stiget(sbp, fs32_to_cpu(infp, pfp->fsh_ilistino[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (!infp->vsi_ilist) {
Cliff Wickman552c0342006-06-25 05:47:16 -0700166 printk(KERN_ERR "vxfs: unable to get inode list inode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 goto out_iput_stilist;
168 }
169 if (!VXFS_ISILT(VXFS_INO(infp->vsi_ilist))) {
170 printk(KERN_ERR "vxfs: inode list inode is of wrong type (%x)\n",
171 VXFS_INO(infp->vsi_ilist)->vii_mode & VXFS_TYPE_MASK);
172 goto out_iput_ilist;
173 }
174
Krzysztof Błaszkowski263040a2016-06-12 19:25:23 +0200175 kfree(pfp);
176 kfree(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return 0;
178
179 out_iput_ilist:
180 iput(infp->vsi_ilist);
181 out_iput_stilist:
182 iput(infp->vsi_stilist);
183 out_free_pfp:
184 kfree(pfp);
185 out_free_sfp:
186 kfree(sfp);
187 out_iput_fship:
188 iput(infp->vsi_fship);
189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}