vserver 1.9.3
[linux-2.6.git] / fs / efs / super.c
1 /*
2  * super.c
3  *
4  * Copyright (c) 1999 Al Smith
5  *
6  * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
7  */
8
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/efs_fs.h>
12 #include <linux/efs_vh.h>
13 #include <linux/efs_fs_sb.h>
14 #include <linux/slab.h>
15 #include <linux/buffer_head.h>
16 #include <linux/vfs.h>
17
18 static int efs_statfs(struct super_block *s, struct kstatfs *buf);
19 static int efs_fill_super(struct super_block *s, void *d, int silent);
20
21 static struct super_block *efs_get_sb(struct file_system_type *fs_type,
22         int flags, const char *dev_name, void *data)
23 {
24         return get_sb_bdev(fs_type, flags, dev_name, data, efs_fill_super);
25 }
26
27 static struct file_system_type efs_fs_type = {
28         .owner          = THIS_MODULE,
29         .name           = "efs",
30         .get_sb         = efs_get_sb,
31         .kill_sb        = kill_block_super,
32         .fs_flags       = FS_REQUIRES_DEV,
33 };
34
35 static kmem_cache_t * efs_inode_cachep;
36
37 static struct inode *efs_alloc_inode(struct super_block *sb)
38 {
39         struct efs_inode_info *ei;
40         ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, SLAB_KERNEL);
41         if (!ei)
42                 return NULL;
43         return &ei->vfs_inode;
44 }
45
46 static void efs_destroy_inode(struct inode *inode)
47 {
48         kmem_cache_free(efs_inode_cachep, INODE_INFO(inode));
49 }
50
51 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
52 {
53         struct efs_inode_info *ei = (struct efs_inode_info *) foo;
54
55         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
56             SLAB_CTOR_CONSTRUCTOR)
57                 inode_init_once(&ei->vfs_inode);
58 }
59  
60 static int init_inodecache(void)
61 {
62         efs_inode_cachep = kmem_cache_create("efs_inode_cache",
63                                 sizeof(struct efs_inode_info),
64                                 0, SLAB_RECLAIM_ACCOUNT,
65                                 init_once, NULL);
66         if (efs_inode_cachep == NULL)
67                 return -ENOMEM;
68         return 0;
69 }
70
71 static void destroy_inodecache(void)
72 {
73         if (kmem_cache_destroy(efs_inode_cachep))
74                 printk(KERN_INFO "efs_inode_cache: not all structures were freed\n");
75 }
76
77 static void efs_put_super(struct super_block *s)
78 {
79         kfree(s->s_fs_info);
80         s->s_fs_info = NULL;
81 }
82
83 static int efs_remount(struct super_block *sb, int *flags, char *data)
84 {
85         *flags |= MS_RDONLY;
86         return 0;
87 }
88
89 static struct super_operations efs_superblock_operations = {
90         .alloc_inode    = efs_alloc_inode,
91         .destroy_inode  = efs_destroy_inode,
92         .read_inode     = efs_read_inode,
93         .put_super      = efs_put_super,
94         .statfs         = efs_statfs,
95         .remount_fs     = efs_remount,
96 };
97
98 static int __init init_efs_fs(void) {
99         int err;
100         printk("EFS: "EFS_VERSION" - http://aeschi.ch.eu.org/efs/\n");
101         err = init_inodecache();
102         if (err)
103                 goto out1;
104         err = register_filesystem(&efs_fs_type);
105         if (err)
106                 goto out;
107         return 0;
108 out:
109         destroy_inodecache();
110 out1:
111         return err;
112 }
113
114 static void __exit exit_efs_fs(void) {
115         unregister_filesystem(&efs_fs_type);
116         destroy_inodecache();
117 }
118
119 module_init(init_efs_fs)
120 module_exit(exit_efs_fs)
121
122 static efs_block_t efs_validate_vh(struct volume_header *vh) {
123         int             i;
124         __be32          cs, *ui;
125         int             csum;
126         efs_block_t     sblock = 0; /* shuts up gcc */
127         struct pt_types *pt_entry;
128         int             pt_type, slice = -1;
129
130         if (be32_to_cpu(vh->vh_magic) != VHMAGIC) {
131                 /*
132                  * assume that we're dealing with a partition and allow
133                  * read_super() to try and detect a valid superblock
134                  * on the next block.
135                  */
136                 return 0;
137         }
138
139         ui = ((__be32 *) (vh + 1)) - 1;
140         for(csum = 0; ui >= ((__be32 *) vh);) {
141                 cs = *ui--;
142                 csum += be32_to_cpu(cs);
143         }
144         if (csum) {
145                 printk(KERN_INFO "EFS: SGI disklabel: checksum bad, label corrupted\n");
146                 return 0;
147         }
148
149 #ifdef DEBUG
150         printk(KERN_DEBUG "EFS: bf: \"%16s\"\n", vh->vh_bootfile);
151
152         for(i = 0; i < NVDIR; i++) {
153                 int     j;
154                 char    name[VDNAMESIZE+1];
155
156                 for(j = 0; j < VDNAMESIZE; j++) {
157                         name[j] = vh->vh_vd[i].vd_name[j];
158                 }
159                 name[j] = (char) 0;
160
161                 if (name[0]) {
162                         printk(KERN_DEBUG "EFS: vh: %8s block: 0x%08x size: 0x%08x\n",
163                                 name,
164                                 (int) be32_to_cpu(vh->vh_vd[i].vd_lbn),
165                                 (int) be32_to_cpu(vh->vh_vd[i].vd_nbytes));
166                 }
167         }
168 #endif
169
170         for(i = 0; i < NPARTAB; i++) {
171                 pt_type = (int) be32_to_cpu(vh->vh_pt[i].pt_type);
172                 for(pt_entry = sgi_pt_types; pt_entry->pt_name; pt_entry++) {
173                         if (pt_type == pt_entry->pt_type) break;
174                 }
175 #ifdef DEBUG
176                 if (be32_to_cpu(vh->vh_pt[i].pt_nblks)) {
177                         printk(KERN_DEBUG "EFS: pt %2d: start: %08d size: %08d type: 0x%02x (%s)\n",
178                                 i,
179                                 (int) be32_to_cpu(vh->vh_pt[i].pt_firstlbn),
180                                 (int) be32_to_cpu(vh->vh_pt[i].pt_nblks),
181                                 pt_type,
182                                 (pt_entry->pt_name) ? pt_entry->pt_name : "unknown");
183                 }
184 #endif
185                 if (IS_EFS(pt_type)) {
186                         sblock = be32_to_cpu(vh->vh_pt[i].pt_firstlbn);
187                         slice = i;
188                 }
189         }
190
191         if (slice == -1) {
192                 printk(KERN_NOTICE "EFS: partition table contained no EFS partitions\n");
193 #ifdef DEBUG
194         } else {
195                 printk(KERN_INFO "EFS: using slice %d (type %s, offset 0x%x)\n",
196                         slice,
197                         (pt_entry->pt_name) ? pt_entry->pt_name : "unknown",
198                         sblock);
199 #endif
200         }
201         return(sblock);
202 }
203
204 static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) {
205
206         if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) return -1;
207
208         sb->fs_magic     = be32_to_cpu(super->fs_magic);
209         sb->total_blocks = be32_to_cpu(super->fs_size);
210         sb->first_block  = be32_to_cpu(super->fs_firstcg);
211         sb->group_size   = be32_to_cpu(super->fs_cgfsize);
212         sb->data_free    = be32_to_cpu(super->fs_tfree);
213         sb->inode_free   = be32_to_cpu(super->fs_tinode);
214         sb->inode_blocks = be16_to_cpu(super->fs_cgisize);
215         sb->total_groups = be16_to_cpu(super->fs_ncg);
216     
217         return 0;    
218 }
219
220 static int efs_fill_super(struct super_block *s, void *d, int silent)
221 {
222         struct efs_sb_info *sb;
223         struct buffer_head *bh;
224         struct inode *root;
225
226         sb = kmalloc(sizeof(struct efs_sb_info), GFP_KERNEL);
227         if (!sb)
228                 return -ENOMEM;
229         s->s_fs_info = sb;
230         memset(sb, 0, sizeof(struct efs_sb_info));
231  
232         s->s_magic              = EFS_SUPER_MAGIC;
233         if (!sb_set_blocksize(s, EFS_BLOCKSIZE)) {
234                 printk(KERN_ERR "EFS: device does not support %d byte blocks\n",
235                         EFS_BLOCKSIZE);
236                 goto out_no_fs_ul;
237         }
238   
239         /* read the vh (volume header) block */
240         bh = sb_bread(s, 0);
241
242         if (!bh) {
243                 printk(KERN_ERR "EFS: cannot read volume header\n");
244                 goto out_no_fs_ul;
245         }
246
247         /*
248          * if this returns zero then we didn't find any partition table.
249          * this isn't (yet) an error - just assume for the moment that
250          * the device is valid and go on to search for a superblock.
251          */
252         sb->fs_start = efs_validate_vh((struct volume_header *) bh->b_data);
253         brelse(bh);
254
255         if (sb->fs_start == -1) {
256                 goto out_no_fs_ul;
257         }
258
259         bh = sb_bread(s, sb->fs_start + EFS_SUPER);
260         if (!bh) {
261                 printk(KERN_ERR "EFS: cannot read superblock\n");
262                 goto out_no_fs_ul;
263         }
264                 
265         if (efs_validate_super(sb, (struct efs_super *) bh->b_data)) {
266 #ifdef DEBUG
267                 printk(KERN_WARNING "EFS: invalid superblock at block %u\n", sb->fs_start + EFS_SUPER);
268 #endif
269                 brelse(bh);
270                 goto out_no_fs_ul;
271         }
272         brelse(bh);
273
274         if (!(s->s_flags & MS_RDONLY)) {
275 #ifdef DEBUG
276                 printk(KERN_INFO "EFS: forcing read-only mode\n");
277 #endif
278                 s->s_flags |= MS_RDONLY;
279         }
280         s->s_op   = &efs_superblock_operations;
281         root = iget(s, EFS_ROOTINODE);
282         s->s_root = d_alloc_root(root);
283  
284         if (!(s->s_root)) {
285                 printk(KERN_ERR "EFS: get root inode failed\n");
286                 iput(root);
287                 goto out_no_fs;
288         }
289
290         return 0;
291
292 out_no_fs_ul:
293 out_no_fs:
294         s->s_fs_info = NULL;
295         kfree(sb);
296         return -EINVAL;
297 }
298
299 static int efs_statfs(struct super_block *s, struct kstatfs *buf) {
300         struct efs_sb_info *sb = SUPER_INFO(s);
301
302         buf->f_type    = EFS_SUPER_MAGIC;       /* efs magic number */
303         buf->f_bsize   = EFS_BLOCKSIZE;         /* blocksize */
304         buf->f_blocks  = sb->total_groups *     /* total data blocks */
305                         (sb->group_size - sb->inode_blocks);
306         buf->f_bfree   = sb->data_free;         /* free data blocks */
307         buf->f_bavail  = sb->data_free;         /* free blocks for non-root */
308         buf->f_files   = sb->total_groups *     /* total inodes */
309                         sb->inode_blocks *
310                         (EFS_BLOCKSIZE / sizeof(struct efs_dinode));
311         buf->f_ffree   = sb->inode_free;        /* free inodes */
312         buf->f_fsid.val[0] = (sb->fs_magic >> 16) & 0xffff; /* fs ID */
313         buf->f_fsid.val[1] =  sb->fs_magic        & 0xffff; /* fs ID */
314         buf->f_namelen = EFS_MAXNAMELEN;        /* max filename length */
315
316         return 0;
317 }
318