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 - fileset header routines.
35 #include <linux/buffer_head.h>
36 #include <linux/kernel.h>
37 #include <linux/slab.h>
38 #include <linux/string.h>
41 #include "vxfs_inode.h"
42 #include "vxfs_extern.h"
43 #include "vxfs_fshead.h"
48 vxfs_dumpfsh(struct vxfs_fsh
*fhp
)
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]);
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.
70 * vxfs_getfsh reads either the structural or primary fileset header
71 * described by @ip into memory.
74 * The fileset header structure on success, else Zero.
76 static struct vxfs_fsh
*
77 vxfs_getfsh(struct inode
*ip
, int which
)
79 struct buffer_head
*bp
;
81 bp
= vxfs_bread(ip
, which
);
85 if (!(fhp
= kmalloc(sizeof(*fhp
), GFP_KERNEL
)))
87 memcpy(fhp
, bp
->b_data
, sizeof(*fhp
));
98 * vxfs_read_fshead - read the fileset headers
99 * @sbp: superblock to which the fileset belongs
102 * vxfs_read_fshead will fill the inode and structural inode list in @sb.
105 * Zero on success, else a negative error code (-EINVAL).
108 vxfs_read_fshead(struct super_block
*sbp
)
110 struct vxfs_sb_info
*infp
= VXFS_SBI(sbp
);
111 struct vxfs_fsh
*pfp
, *sfp
;
112 struct vxfs_inode_info
*vip
;
114 infp
->vsi_fship
= vxfs_blkiget(sbp
, infp
->vsi_iext
, infp
->vsi_fshino
);
115 if (!infp
->vsi_fship
) {
116 printk(KERN_ERR
"vxfs: unable to read fsh inode\n");
120 vip
= VXFS_INO(infp
->vsi_fship
);
121 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
);
128 printk("vxfs: fsh inode dump:\n");
129 vxfs_dumpi(vip
, infp
->vsi_fshino
);
132 sfp
= vxfs_getfsh(infp
->vsi_fship
, 0);
134 printk(KERN_ERR
"vxfs: unable to get structural fsh\n");
142 pfp
= vxfs_getfsh(infp
->vsi_fship
, 1);
144 printk(KERN_ERR
"vxfs: unable to get primary fsh\n");
152 infp
->vsi_stilist
= vxfs_blkiget(sbp
, infp
->vsi_iext
,
153 fs32_to_cpu(infp
, sfp
->fsh_ilistino
[0]));
154 if (!infp
->vsi_stilist
) {
155 printk(KERN_ERR
"vxfs: unable to get structural list inode\n");
158 if (!VXFS_ISILT(VXFS_INO(infp
->vsi_stilist
))) {
159 printk(KERN_ERR
"vxfs: structural list inode is of wrong type (%x)\n",
160 VXFS_INO(infp
->vsi_stilist
)->vii_mode
& VXFS_TYPE_MASK
);
161 goto out_iput_stilist
;
164 infp
->vsi_ilist
= vxfs_stiget(sbp
, fs32_to_cpu(infp
, pfp
->fsh_ilistino
[0]));
165 if (!infp
->vsi_ilist
) {
166 printk(KERN_ERR
"vxfs: unable to get inode list inode\n");
167 goto out_iput_stilist
;
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
);
180 iput(infp
->vsi_ilist
);
182 iput(infp
->vsi_stilist
);
188 iput(infp
->vsi_fship
);