ALSA: hda - Fix pending unsol events at shutdown
[linux-2.6-block.git] / fs / freevxfs / vxfs_fshead.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2000-2001 Christoph Hellwig.
1cce1701 3 * Copyright (c) 2016 Krzysztof Blaszkowski
1da177e4
LT
4 * 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);
ba03bda8 82 if (bp) {
1da177e4
LT
83 struct vxfs_fsh *fhp;
84
ba03bda8
PE
85 if (!(fhp = kmalloc(sizeof(*fhp), GFP_KERNEL)))
86 goto out;
1da177e4
LT
87 memcpy(fhp, bp->b_data, sizeof(*fhp));
88
ba03bda8 89 put_bh(bp);
1da177e4
LT
90 return (fhp);
91 }
ba03bda8
PE
92out:
93 brelse(bp);
1da177e4
LT
94 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;
8985f53e 112 struct vxfs_inode_info *vip;
1da177e4 113
8985f53e
KB
114 infp->vsi_fship = vxfs_blkiget(sbp, infp->vsi_iext, infp->vsi_fshino);
115 if (!infp->vsi_fship) {
552c0348 116 printk(KERN_ERR "vxfs: unable to read fsh inode\n");
1da177e4
LT
117 return -EINVAL;
118 }
8985f53e
KB
119
120 vip = VXFS_INO(infp->vsi_fship);
1da177e4
LT
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);
8985f53e 124 goto out_iput_fship;
1da177e4
LT
125 }
126
1da177e4
LT
127#ifdef DIAGNOSTIC
128 printk("vxfs: fsh inode dump:\n");
129 vxfs_dumpi(vip, infp->vsi_fshino);
130#endif
131
1da177e4
LT
132 sfp = vxfs_getfsh(infp->vsi_fship, 0);
133 if (!sfp) {
552c0348 134 printk(KERN_ERR "vxfs: unable to get structural fsh\n");
1da177e4
LT
135 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) {
552c0348 144 printk(KERN_ERR "vxfs: unable to get primary fsh\n");
1da177e4
LT
145 goto out_free_sfp;
146 }
147
148#ifdef DIAGNOSTIC
149 vxfs_dumpfsh(pfp);
150#endif
151
8985f53e 152 infp->vsi_stilist = vxfs_blkiget(sbp, infp->vsi_iext,
0d83f7fc 153 fs32_to_cpu(infp, sfp->fsh_ilistino[0]));
1da177e4 154 if (!infp->vsi_stilist) {
552c0348 155 printk(KERN_ERR "vxfs: unable to get structural list inode\n");
1da177e4
LT
156 goto out_free_pfp;
157 }
158 if (!VXFS_ISILT(VXFS_INO(infp->vsi_stilist))) {
25985edc 159 printk(KERN_ERR "vxfs: structural list inode is of wrong type (%x)\n",
1da177e4
LT
160 VXFS_INO(infp->vsi_stilist)->vii_mode & VXFS_TYPE_MASK);
161 goto out_iput_stilist;
162 }
163
8985f53e 164 infp->vsi_ilist = vxfs_stiget(sbp, fs32_to_cpu(infp, pfp->fsh_ilistino[0]));
1da177e4 165 if (!infp->vsi_ilist) {
552c0348 166 printk(KERN_ERR "vxfs: unable to get inode list inode\n");
1da177e4
LT
167 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
263040a1
KB
175 kfree(pfp);
176 kfree(sfp);
1da177e4
LT
177 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;
1da177e4 190}