patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / fs / befs / linuxvfs.c
1 /*
2  * linux/fs/befs/linuxvfs.c
3  *
4  * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com
5  *
6  */
7
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/fs.h>
11 #include <linux/errno.h>
12 #include <linux/stat.h>
13 #include <linux/nls.h>
14 #include <linux/buffer_head.h>
15 #include <linux/vfs.h>
16 #include <linux/parser.h>
17
18 #include "befs.h"
19 #include "btree.h"
20 #include "inode.h"
21 #include "datastream.h"
22 #include "super.h"
23 #include "io.h"
24 #include "endian.h"
25
26 MODULE_DESCRIPTION("BeOS File System (BeFS) driver");
27 MODULE_AUTHOR("Will Dyson");
28 MODULE_LICENSE("GPL");
29
30 /* The units the vfs expects inode->i_blocks to be in */
31 #define VFS_BLOCK_SIZE 512
32
33 static int befs_readdir(struct file *, void *, filldir_t);
34 static int befs_get_block(struct inode *, sector_t, struct buffer_head *, int);
35 static int befs_readpage(struct file *file, struct page *page);
36 static sector_t befs_bmap(struct address_space *mapping, sector_t block);
37 static struct dentry *befs_lookup(struct inode *, struct dentry *, struct nameidata *);
38 static void befs_read_inode(struct inode *ino);
39 static struct inode *befs_alloc_inode(struct super_block *sb);
40 static void befs_destroy_inode(struct inode *inode);
41 static int befs_init_inodecache(void);
42 static void befs_destroy_inodecache(void);
43 static int befs_readlink(struct dentry *, char __user *, int);
44 static int befs_follow_link(struct dentry *, struct nameidata *nd);
45 static int befs_utf2nls(struct super_block *sb, const char *in, int in_len,
46                         char **out, int *out_len);
47 static int befs_nls2utf(struct super_block *sb, const char *in, int in_len,
48                         char **out, int *out_len);
49 static void befs_put_super(struct super_block *);
50 static int befs_remount(struct super_block *, int *, char *);
51 static int befs_statfs(struct super_block *, struct kstatfs *);
52 static int parse_options(char *, befs_mount_options *);
53
54 static const struct super_operations befs_sops = {
55         .read_inode     = befs_read_inode,      /* initialize & read inode */
56         .alloc_inode    = befs_alloc_inode,     /* allocate a new inode */
57         .destroy_inode  = befs_destroy_inode, /* deallocate an inode */
58         .put_super      = befs_put_super,       /* uninit super */
59         .statfs         = befs_statfs,  /* statfs */
60         .remount_fs     = befs_remount,
61 };
62
63 /* slab cache for befs_inode_info objects */
64 static kmem_cache_t *befs_inode_cachep;
65
66 struct file_operations befs_dir_operations = {
67         .read           = generic_read_dir,
68         .readdir        = befs_readdir,
69 };
70
71 struct inode_operations befs_dir_inode_operations = {
72         .lookup         = befs_lookup,
73 };
74
75 struct file_operations befs_file_operations = {
76         .llseek         = default_llseek,
77         .read           = generic_file_read,
78         .mmap           = generic_file_readonly_mmap,
79 };
80
81 struct address_space_operations befs_aops = {
82         .readpage       = befs_readpage,
83         .sync_page      = block_sync_page,
84         .bmap           = befs_bmap,
85 };
86
87 static struct inode_operations befs_symlink_inode_operations = {
88         .readlink       = befs_readlink,
89         .follow_link    = befs_follow_link,
90 };
91
92 /* 
93  * Called by generic_file_read() to read a page of data
94  * 
95  * In turn, simply calls a generic block read function and
96  * passes it the address of befs_get_block, for mapping file
97  * positions to disk blocks.
98  */
99 static int
100 befs_readpage(struct file *file, struct page *page)
101 {
102         return block_read_full_page(page, befs_get_block);
103 }
104
105 static sector_t
106 befs_bmap(struct address_space *mapping, sector_t block)
107 {
108         return generic_block_bmap(mapping, block, befs_get_block);
109 }
110
111 /* 
112  * Generic function to map a file position (block) to a 
113  * disk offset (passed back in bh_result).
114  *
115  * Used by many higher level functions.
116  *
117  * Calls befs_fblock2brun() in datastream.c to do the real work.
118  *
119  * -WD 10-26-01
120  */
121
122 static int
123 befs_get_block(struct inode *inode, sector_t block,
124                struct buffer_head *bh_result, int create)
125 {
126         struct super_block *sb = inode->i_sb;
127         befs_data_stream *ds = &BEFS_I(inode)->i_data.ds;
128         befs_block_run run = BAD_IADDR;
129         int res = 0;
130         ulong disk_off;
131
132         befs_debug(sb, "---> befs_get_block() for inode %lu, block %ld",
133                    inode->i_ino, block);
134
135         if (block < 0) {
136                 befs_error(sb, "befs_get_block() was asked for a block "
137                            "number less than zero: block %ld in inode %lu",
138                            block, inode->i_ino);
139                 return -EIO;
140         }
141
142         if (create) {
143                 befs_error(sb, "befs_get_block() was asked to write to "
144                            "block %ld in inode %lu", block, inode->i_ino);
145                 return -EPERM;
146         }
147
148         res = befs_fblock2brun(sb, ds, block, &run);
149         if (res != BEFS_OK) {
150                 befs_error(sb,
151                            "<--- befs_get_block() for inode %lu, block "
152                            "%ld ERROR", inode->i_ino, block);
153                 return -EFBIG;
154         }
155
156         disk_off = (ulong) iaddr2blockno(sb, &run);
157
158         map_bh(bh_result, inode->i_sb, disk_off);
159
160         befs_debug(sb, "<--- befs_get_block() for inode %lu, block %ld, "
161                    "disk address %lu", inode->i_ino, block, disk_off);
162
163         return 0;
164 }
165
166 static struct dentry *
167 befs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
168 {
169         struct inode *inode = NULL;
170         struct super_block *sb = dir->i_sb;
171         befs_data_stream *ds = &BEFS_I(dir)->i_data.ds;
172         befs_off_t offset;
173         int ret;
174         int utfnamelen;
175         char *utfname;
176         const char *name = dentry->d_name.name;
177
178         befs_debug(sb, "---> befs_lookup() "
179                    "name %s inode %ld", dentry->d_name.name, dir->i_ino);
180
181         /* Convert to UTF-8 */
182         if (BEFS_SB(sb)->nls) {
183                 ret =
184                     befs_nls2utf(sb, name, strlen(name), &utfname, &utfnamelen);
185                 if (ret < 0) {
186                         befs_debug(sb, "<--- befs_lookup() ERROR");
187                         return ERR_PTR(ret);
188                 }
189                 ret = befs_btree_find(sb, ds, utfname, &offset);
190                 kfree(utfname);
191
192         } else {
193                 ret = befs_btree_find(sb, ds, dentry->d_name.name, &offset);
194         }
195
196         if (ret == BEFS_BT_NOT_FOUND) {
197                 befs_debug(sb, "<--- befs_lookup() %s not found",
198                            dentry->d_name.name);
199                 return ERR_PTR(-ENOENT);
200
201         } else if (ret != BEFS_OK || offset == 0) {
202                 befs_warning(sb, "<--- befs_lookup() Error");
203                 return ERR_PTR(-ENODATA);
204         }
205
206         inode = iget(dir->i_sb, (ino_t) offset);
207         if (!inode)
208                 return ERR_PTR(-EACCES);
209
210         d_add(dentry, inode);
211
212         befs_debug(sb, "<--- befs_lookup()");
213
214         return NULL;
215 }
216
217 static int
218 befs_readdir(struct file *filp, void *dirent, filldir_t filldir)
219 {
220         struct inode *inode = filp->f_dentry->d_inode;
221         struct super_block *sb = inode->i_sb;
222         befs_data_stream *ds = &BEFS_I(inode)->i_data.ds;
223         befs_off_t value;
224         int result;
225         size_t keysize;
226         unsigned char d_type;
227         char keybuf[BEFS_NAME_LEN + 1];
228         char *nlsname;
229         int nlsnamelen;
230         const char *dirname = filp->f_dentry->d_name.name;
231
232         befs_debug(sb, "---> befs_readdir() "
233                    "name %s, inode %ld, filp->f_pos %Ld",
234                    dirname, inode->i_ino, filp->f_pos);
235
236         result = befs_btree_read(sb, ds, filp->f_pos, BEFS_NAME_LEN + 1,
237                                  keybuf, &keysize, &value);
238
239         if (result == BEFS_ERR) {
240                 befs_debug(sb, "<--- befs_readdir() ERROR");
241                 befs_error(sb, "IO error reading %s (inode %lu)",
242                            dirname, inode->i_ino);
243                 return -EIO;
244
245         } else if (result == BEFS_BT_END) {
246                 befs_debug(sb, "<--- befs_readdir() END");
247                 return 0;
248
249         } else if (result == BEFS_BT_EMPTY) {
250                 befs_debug(sb, "<--- befs_readdir() Empty directory");
251                 return 0;
252         }
253
254         d_type = DT_UNKNOWN;
255
256         /* Convert to NLS */
257         if (BEFS_SB(sb)->nls) {
258                 result =
259                     befs_utf2nls(sb, keybuf, keysize, &nlsname, &nlsnamelen);
260                 if (result < 0) {
261                         befs_debug(sb, "<--- befs_readdir() ERROR");
262                         return result;
263                 }
264                 result = filldir(dirent, nlsname, nlsnamelen, filp->f_pos,
265                                  (ino_t) value, d_type);
266                 kfree(nlsname);
267
268         } else {
269                 result = filldir(dirent, keybuf, keysize, filp->f_pos,
270                                  (ino_t) value, d_type);
271         }
272
273         filp->f_pos++;
274
275         befs_debug(sb, "<--- befs_readdir() filp->f_pos %Ld", filp->f_pos);
276
277         return 0;
278 }
279
280 static struct inode *
281 befs_alloc_inode(struct super_block *sb)
282 {
283         struct befs_inode_info *bi;
284         bi = (struct befs_inode_info *)kmem_cache_alloc(befs_inode_cachep,
285                                                         SLAB_KERNEL);
286         if (!bi)
287                 return NULL;
288         return &bi->vfs_inode;
289 }
290
291 static void
292 befs_destroy_inode(struct inode *inode)
293 {
294         kmem_cache_free(befs_inode_cachep, BEFS_I(inode));
295 }
296
297 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
298 {
299         struct befs_inode_info *bi = (struct befs_inode_info *) foo;
300         
301                 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
302                             SLAB_CTOR_CONSTRUCTOR) {
303                         inode_init_once(&bi->vfs_inode);
304                 }
305 }
306
307 static void
308 befs_read_inode(struct inode *inode)
309 {
310         struct buffer_head *bh = NULL;
311         befs_inode *raw_inode = NULL;
312
313         struct super_block *sb = inode->i_sb;
314         befs_sb_info *befs_sb = BEFS_SB(sb);
315         befs_inode_info *befs_ino = NULL;
316
317         befs_debug(sb, "---> befs_read_inode() " "inode = %lu", inode->i_ino);
318
319         befs_ino = BEFS_I(inode);
320
321         /* convert from vfs's inode number to befs's inode number */
322         befs_ino->i_inode_num = blockno2iaddr(sb, inode->i_ino);
323
324         befs_debug(sb, "  real inode number [%u, %hu, %hu]",
325                    befs_ino->i_inode_num.allocation_group,
326                    befs_ino->i_inode_num.start, befs_ino->i_inode_num.len);
327
328         bh = befs_bread(sb, inode->i_ino);
329         if (!bh) {
330                 befs_error(sb, "unable to read inode block - "
331                            "inode = %lu", inode->i_ino);
332                 goto unaquire_none;
333         }
334
335         raw_inode = (befs_inode *) bh->b_data;
336
337         befs_dump_inode(sb, raw_inode);
338
339         if (befs_check_inode(sb, raw_inode, inode->i_ino) != BEFS_OK) {
340                 befs_error(sb, "Bad inode: %lu", inode->i_ino);
341                 goto unaquire_bh;
342         }
343
344         inode->i_mode = (umode_t) fs32_to_cpu(sb, raw_inode->mode);
345
346         /*
347          * set uid and gid.  But since current BeOS is single user OS, so
348          * you can change by "uid" or "gid" options.
349          */   
350
351         inode->i_uid = befs_sb->mount_opts.use_uid ?
352             befs_sb->mount_opts.uid : (uid_t) fs32_to_cpu(sb, raw_inode->uid);
353         inode->i_gid = befs_sb->mount_opts.use_gid ?
354             befs_sb->mount_opts.gid : (gid_t) fs32_to_cpu(sb, raw_inode->gid);
355
356         inode->i_nlink = 1;
357
358         /*
359          * BEFS's time is 64 bits, but current VFS is 32 bits...
360          * BEFS don't have access time. Nor inode change time. VFS
361          * doesn't have creation time.
362          * Also, the lower 16 bits of the last_modified_time and 
363          * create_time are just a counter to help ensure uniqueness
364          * for indexing purposes. (PFD, page 54)
365          */
366
367         inode->i_mtime.tv_sec =
368             fs64_to_cpu(sb, raw_inode->last_modified_time) >> 16;
369         inode->i_mtime.tv_nsec = 0;   /* lower 16 bits are not a time */        
370         inode->i_ctime = inode->i_mtime;
371         inode->i_atime = inode->i_mtime;
372         inode->i_blksize = befs_sb->block_size;
373
374         befs_ino->i_inode_num = fsrun_to_cpu(sb, raw_inode->inode_num);
375         befs_ino->i_parent = fsrun_to_cpu(sb, raw_inode->parent);
376         befs_ino->i_attribute = fsrun_to_cpu(sb, raw_inode->attributes);
377         befs_ino->i_flags = fs32_to_cpu(sb, raw_inode->flags);
378
379         if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){
380                 inode->i_size = 0;
381                 inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE;
382                 strncpy(befs_ino->i_data.symlink, raw_inode->data.symlink,
383                         BEFS_SYMLINK_LEN);
384         } else {
385                 int num_blks;
386
387                 befs_ino->i_data.ds =
388                     fsds_to_cpu(sb, raw_inode->data.datastream);
389
390                 num_blks = befs_count_blocks(sb, &befs_ino->i_data.ds);
391                 inode->i_blocks =
392                     num_blks * (befs_sb->block_size / VFS_BLOCK_SIZE);
393                 inode->i_size = befs_ino->i_data.ds.size;
394         }
395
396         inode->i_mapping->a_ops = &befs_aops;
397
398         if (S_ISREG(inode->i_mode)) {
399                 inode->i_fop = &befs_file_operations;
400         } else if (S_ISDIR(inode->i_mode)) {
401                 inode->i_op = &befs_dir_inode_operations;
402                 inode->i_fop = &befs_dir_operations;
403         } else if (S_ISLNK(inode->i_mode)) {
404                 inode->i_op = &befs_symlink_inode_operations;
405         } else {
406                 befs_error(sb, "Inode %lu is not a regular file, "
407                            "directory or symlink. THAT IS WRONG! BeFS has no "
408                            "on disk special files", inode->i_ino);
409                 goto unaquire_bh;
410         }
411
412         brelse(bh);
413         befs_debug(sb, "<--- befs_read_inode()");
414         return;
415
416       unaquire_bh:
417         brelse(bh);
418
419       unaquire_none:
420         make_bad_inode(inode);
421         befs_debug(sb, "<--- befs_read_inode() - Bad inode");
422         return;
423 }
424
425 /* Initialize the inode cache. Called at fs setup.
426  * 
427  * Taken from NFS implementation by Al Viro.
428  */
429 static int
430 befs_init_inodecache(void)
431 {
432         befs_inode_cachep = kmem_cache_create("befs_inode_cache",
433                                               sizeof (struct befs_inode_info),
434                                               0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
435                                               init_once, NULL);
436         if (befs_inode_cachep == NULL) {
437                 printk(KERN_ERR "befs_init_inodecache: "
438                        "Couldn't initalize inode slabcache\n");
439                 return -ENOMEM;
440         }
441
442         return 0;
443 }
444
445 /* Called at fs teardown.
446  * 
447  * Taken from NFS implementation by Al Viro.
448  */
449 static void
450 befs_destroy_inodecache(void)
451 {
452         if (kmem_cache_destroy(befs_inode_cachep))
453                 printk(KERN_ERR "befs_destroy_inodecache: "
454                        "not all structures were freed\n");
455 }
456
457 /*
458  * The inode of symbolic link is different to data stream.
459  * The data stream become link name. Unless the LONG_SYMLINK
460  * flag is set.
461  */
462 static int
463 befs_follow_link(struct dentry *dentry, struct nameidata *nd)
464 {
465         struct super_block *sb = dentry->d_sb;
466         befs_inode_info *befs_ino = BEFS_I(dentry->d_inode);
467         char *link;
468         int res;
469
470         if (befs_ino->i_flags & BEFS_LONG_SYMLINK) {
471                 befs_data_stream *data = &befs_ino->i_data.ds;
472                 befs_off_t linklen = data->size;
473
474                 befs_debug(sb, "Follow long symlink");
475
476                 link = kmalloc(linklen, GFP_NOFS);
477                 if (link == NULL)
478                         return -ENOMEM;
479
480                 if (befs_read_lsymlink(sb, data, link, linklen) != linklen) {
481                         kfree(link);
482                         befs_error(sb, "Failed to read entire long symlink");
483                         return -EIO;
484                 }
485
486                 res = vfs_follow_link(nd, link);
487
488                 kfree(link);
489         } else {
490                 link = befs_ino->i_data.symlink;
491                 res = vfs_follow_link(nd, link);
492         }
493
494         return res;
495 }
496
497 static int
498 befs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
499 {
500         struct super_block *sb = dentry->d_sb;
501         befs_inode_info *befs_ino = BEFS_I(dentry->d_inode);
502         char *link;
503         int res;
504
505         if (befs_ino->i_flags & BEFS_LONG_SYMLINK) {
506                 befs_data_stream *data = &befs_ino->i_data.ds;
507                 befs_off_t linklen = data->size;
508
509                 befs_debug(sb, "Read long symlink");
510
511                 link = kmalloc(linklen, GFP_NOFS);
512                 if (link == NULL)
513                         return -ENOMEM;
514
515                 if (befs_read_lsymlink(sb, data, link, linklen) != linklen) {
516                         kfree(link);
517                         befs_error(sb, "Failed to read entire long symlink");
518                         return -EIO;
519                 }
520
521                 res = vfs_readlink(dentry, buffer, buflen, link);
522
523                 kfree(link);
524         } else {
525                 link = befs_ino->i_data.symlink;
526                 res = vfs_readlink(dentry, buffer, buflen, link);
527         }
528
529         return res;
530 }
531
532 /*
533  * UTF-8 to NLS charset  convert routine
534  * 
535  *
536  * Changed 8/10/01 by Will Dyson. Now use uni2char() / char2uni() rather than
537  * the nls tables directly
538  */
539
540 static int
541 befs_utf2nls(struct super_block *sb, const char *in,
542              int in_len, char **out, int *out_len)
543 {
544         struct nls_table *nls = BEFS_SB(sb)->nls;
545         int i, o;
546         wchar_t uni;
547         int unilen, utflen;
548         char *result;
549         int maxlen = in_len; /* The utf8->nls conversion can't make more chars */
550
551         befs_debug(sb, "---> utf2nls()");
552
553         if (!nls) {
554                 befs_error(sb, "befs_utf2nls called with no NLS table loaded");
555                 return -EINVAL;
556         }
557
558         *out = result = kmalloc(maxlen, GFP_NOFS);
559         if (!*out) {
560                 befs_error(sb, "befs_utf2nls() cannot allocate memory");
561                 *out_len = 0;
562                 return -ENOMEM;
563         }
564
565         for (i = o = 0; i < in_len; i += utflen, o += unilen) {
566
567                 /* convert from UTF-8 to Unicode */
568                 utflen = utf8_mbtowc(&uni, &in[i], in_len - i);
569                 if (utflen < 0) {
570                         goto conv_err;
571                 }
572
573                 /* convert from Unicode to nls */
574                 unilen = nls->uni2char(uni, &result[o], in_len - o);
575                 if (unilen < 0) {
576                         goto conv_err;
577                 }
578         }
579         result[o] = '\0';
580         *out_len = o;
581
582         befs_debug(sb, "<--- utf2nls()");
583
584         return o;
585
586       conv_err:
587         befs_error(sb, "Name using character set %s contains a character that "
588                    "cannot be converted to unicode.", nls->charset);
589         befs_debug(sb, "<--- utf2nls()");
590         kfree(result);
591         return -EILSEQ;
592 }
593
594 /**
595  * befs_nls2utf - Convert NLS string to utf8 encodeing
596  * @sb: Superblock
597  * @src: Input string buffer in NLS format
598  * @srclen: Length of input string in bytes
599  * @dest: The output string in UTF8 format
600  * @destlen: Length of the output buffer
601  * 
602  * Converts input string @src, which is in the format of the loaded NLS map,
603  * into a utf8 string.
604  * 
605  * The destination string @dest is allocated by this function and the caller is
606  * responsible for freeing it with kfree()
607  * 
608  * On return, *@destlen is the length of @dest in bytes.
609  *
610  * On success, the return value is the number of utf8 characters written to
611  * the output buffer @dest.
612  *  
613  * On Failure, a negative number coresponding to the error code is returned.
614  */
615
616 static int
617 befs_nls2utf(struct super_block *sb, const char *in,
618              int in_len, char **out, int *out_len)
619 {
620         struct nls_table *nls = BEFS_SB(sb)->nls;
621         int i, o;
622         wchar_t uni;
623         int unilen, utflen;
624         char *result;
625         int maxlen = 3 * in_len;
626
627         befs_debug(sb, "---> nls2utf()\n");
628
629         if (!nls) {
630                 befs_error(sb, "befs_nls2utf called with no NLS table loaded.");
631                 return -EINVAL;
632         }
633
634         *out = result = kmalloc(maxlen, GFP_NOFS);
635         if (!*out) {
636                 befs_error(sb, "befs_nls2utf() cannot allocate memory");
637                 *out_len = 0;
638                 return -ENOMEM;
639         }
640
641         for (i = o = 0; i < in_len; i += unilen, o += utflen) {
642
643                 /* convert from nls to unicode */
644                 unilen = nls->char2uni(&in[i], in_len - i, &uni);
645                 if (unilen < 0) {
646                         goto conv_err;
647                 }
648
649                 /* convert from unicode to UTF-8 */
650                 utflen = utf8_wctomb(&result[o], uni, 3);
651                 if (utflen <= 0) {
652                         goto conv_err;
653                 }
654         }
655
656         result[o] = '\0';
657         *out_len = o;
658
659         befs_debug(sb, "<--- nls2utf()");
660
661         return i;
662
663       conv_err:
664         befs_error(sb, "Name using charecter set %s contains a charecter that "
665                    "cannot be converted to unicode.", nls->charset);
666         befs_debug(sb, "<--- nls2utf()");
667         kfree(result);
668         return -EILSEQ;
669 }
670
671 /**
672  * Use the
673  *
674  */
675 enum {
676         Opt_uid, Opt_gid, Opt_charset, Opt_debug, Opt_err,
677 };
678
679 static match_table_t befs_tokens = {
680         {Opt_uid, "uid=%d"},
681         {Opt_gid, "gid=%d"},
682         {Opt_charset, "iocharset=%s"},
683         {Opt_debug, "debug"},
684         {Opt_err, NULL}
685 };
686
687 static int
688 parse_options(char *options, befs_mount_options * opts)
689 {
690         char *p;
691         substring_t args[MAX_OPT_ARGS];
692         int option;
693
694         /* Initialize options */
695         opts->uid = 0;
696         opts->gid = 0;
697         opts->use_uid = 0;
698         opts->use_gid = 0;
699         opts->iocharset = NULL;
700         opts->debug = 0;
701
702         if (!options)
703                 return 1;
704
705         while ((p = strsep(&options, ",")) != NULL) {
706                 int token;
707                 if (!*p)
708                         continue;
709
710                 token = match_token(p, befs_tokens, args);
711                 switch (token) {
712                 case Opt_uid:
713                         if (match_int(&args[0], &option))
714                                 return 0;
715                         if (option < 0) {
716                                 printk(KERN_ERR "BeFS: Invalid uid %d, "
717                                                 "using default\n", option);
718                                 break;
719                         }
720                         opts->uid = option;
721                         opts->use_uid = 1;
722                         break;
723                 case Opt_gid:
724                         if (match_int(&args[0], &option))
725                                 return 0;
726                         if (option < 0) {
727                                 printk(KERN_ERR "BeFS: Invalid gid %d, "
728                                                 "using default\n", option);
729                                 break;
730                         }
731                         opts->gid = option;
732                         opts->use_gid = 1;
733                         break;
734                 case Opt_charset:
735                         kfree(opts->iocharset);
736                         opts->iocharset = match_strdup(&args[0]);
737                         if (!opts->iocharset) {
738                                 printk(KERN_ERR "BeFS: allocation failure for "
739                                                 "iocharset string\n");
740                                 return 0;
741                         }
742                         break;
743                 case Opt_debug:
744                         opts->debug = 1;
745                         break;
746                 default:
747                         printk(KERN_ERR "BeFS: Unrecognized mount option \"%s\" "
748                                         "or missing value\n", p);
749                         return 0;
750                 }
751         }
752         return 1;
753 }
754
755 /* This function has the responsibiltiy of getting the
756  * filesystem ready for unmounting. 
757  * Basicly, we free everything that we allocated in
758  * befs_read_inode
759  */
760 static void
761 befs_put_super(struct super_block *sb)
762 {
763         if (BEFS_SB(sb)->mount_opts.iocharset) {
764                 kfree(BEFS_SB(sb)->mount_opts.iocharset);
765                 BEFS_SB(sb)->mount_opts.iocharset = NULL;
766         }
767
768         if (BEFS_SB(sb)->nls) {
769                 unload_nls(BEFS_SB(sb)->nls);
770                 BEFS_SB(sb)->nls = NULL;
771         }
772
773         if (sb->s_fs_info) {
774                 kfree(sb->s_fs_info);
775                 sb->s_fs_info = NULL;
776         }
777         return;
778 }
779
780 /* Allocate private field of the superblock, fill it.
781  *
782  * Finish filling the public superblock fields
783  * Make the root directory
784  * Load a set of NLS translations if needed.
785  */
786 static int
787 befs_fill_super(struct super_block *sb, void *data, int silent)
788 {
789         struct buffer_head *bh;
790         befs_sb_info *befs_sb;
791         befs_super_block *disk_sb;
792         struct inode *root;
793
794         const unsigned long sb_block = 0;
795         const off_t x86_sb_off = 512;
796
797         sb->s_fs_info = kmalloc(sizeof (*befs_sb), GFP_KERNEL);
798         if (sb->s_fs_info == NULL) {
799                 printk(KERN_ERR
800                        "BeFS(%s): Unable to allocate memory for private "
801                        "portion of superblock. Bailing.\n", sb->s_id);
802                 goto unaquire_none;
803         }
804         befs_sb = BEFS_SB(sb);
805         memset(befs_sb, 0, sizeof(befs_sb_info));
806
807         if (!parse_options((char *) data, &befs_sb->mount_opts)) {
808                 befs_error(sb, "cannot parse mount options");
809                 goto unaquire_priv_sbp;
810         }
811
812         befs_debug(sb, "---> befs_fill_super()");
813
814 #ifndef CONFIG_BEFS_RW
815         if (!(sb->s_flags & MS_RDONLY)) {
816                 befs_warning(sb,
817                              "No write support. Marking filesystem read-only");
818                 sb->s_flags |= MS_RDONLY;
819         }
820 #endif                          /* CONFIG_BEFS_RW */
821
822         /*
823          * Set dummy blocksize to read super block.
824          * Will be set to real fs blocksize later.
825          *
826          * Linux 2.4.10 and later refuse to read blocks smaller than
827          * the hardsect size for the device. But we also need to read at 
828          * least 1k to get the second 512 bytes of the volume.
829          * -WD 10-26-01
830          */ 
831         sb_min_blocksize(sb, 1024);
832
833         if (!(bh = sb_bread(sb, sb_block))) {
834                 befs_error(sb, "unable to read superblock");
835                 goto unaquire_priv_sbp;
836         }
837
838         /* account for offset of super block on x86 */
839         disk_sb = (befs_super_block *) bh->b_data;
840         if ((le32_to_cpu(disk_sb->magic1) == BEFS_SUPER_MAGIC1) ||
841             (be32_to_cpu(disk_sb->magic1) == BEFS_SUPER_MAGIC1)) {
842                 befs_debug(sb, "Using PPC superblock location");
843         } else {
844                 befs_debug(sb, "Using x86 superblock location");
845                 disk_sb =
846                     (befs_super_block *) ((void *) bh->b_data + x86_sb_off);
847         }
848
849         if (befs_load_sb(sb, disk_sb) != BEFS_OK)
850                 goto unaquire_bh;
851
852         befs_dump_super_block(sb, disk_sb);
853
854         brelse(bh);
855
856         if (befs_check_sb(sb) != BEFS_OK)
857                 goto unaquire_priv_sbp;
858
859         if( befs_sb->num_blocks > ~((sector_t)0) ) {
860                 befs_error(sb, "blocks count: %Lu "
861                         "is larger than the host can use",
862                         befs_sb->num_blocks);
863                 goto unaquire_priv_sbp;
864         }
865
866         /*
867          * set up enough so that it can read an inode
868          * Fill in kernel superblock fields from private sb
869          */
870         sb->s_magic = BEFS_SUPER_MAGIC;
871         /* Set real blocksize of fs */
872         sb_set_blocksize(sb, (ulong) befs_sb->block_size);
873         sb->s_op = (struct super_operations *) &befs_sops;
874         root = iget(sb, iaddr2blockno(sb, &(befs_sb->root_dir)));
875         sb->s_root = d_alloc_root(root);
876         if (!sb->s_root) {
877                 iput(root);
878                 befs_error(sb, "get root inode failed");
879                 goto unaquire_priv_sbp;
880         }
881
882         /* load nls library */
883         if (befs_sb->mount_opts.iocharset) {
884                 befs_debug(sb, "Loading nls: %s",
885                            befs_sb->mount_opts.iocharset);
886                 befs_sb->nls = load_nls(befs_sb->mount_opts.iocharset);
887                 if (!befs_sb->nls) {
888                         befs_warning(sb, "Cannot load nls %s"
889                                      "loding default nls",
890                                      befs_sb->mount_opts.iocharset);
891                         befs_sb->nls = load_nls_default();
892                 }
893         }
894
895         return 0;
896 /*****************/
897       unaquire_bh:
898         brelse(bh);
899
900       unaquire_priv_sbp:
901         kfree(sb->s_fs_info);
902
903       unaquire_none:
904         sb->s_fs_info = NULL;
905         return -EINVAL;
906 }
907
908 static int
909 befs_remount(struct super_block *sb, int *flags, char *data)
910 {
911         if (!(*flags & MS_RDONLY))
912                 return -EINVAL;
913         return 0;
914 }
915
916 static int
917 befs_statfs(struct super_block *sb, struct kstatfs *buf)
918 {
919
920         befs_debug(sb, "---> befs_statfs()");
921
922         buf->f_type = BEFS_SUPER_MAGIC;
923         buf->f_bsize = sb->s_blocksize;
924         buf->f_blocks = BEFS_SB(sb)->num_blocks;
925         buf->f_bfree = BEFS_SB(sb)->num_blocks - BEFS_SB(sb)->used_blocks;
926         buf->f_bavail = buf->f_bfree;
927         buf->f_files = 0;       /* UNKNOWN */
928         buf->f_ffree = 0;       /* UNKNOWN */
929         buf->f_namelen = BEFS_NAME_LEN;
930
931         befs_debug(sb, "<--- befs_statfs()");
932
933         return 0;
934 }
935
936 static struct super_block *
937 befs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name,
938             void *data)
939 {
940         return get_sb_bdev(fs_type, flags, dev_name, data, befs_fill_super);
941 }
942
943 static struct file_system_type befs_fs_type = {
944         .owner          = THIS_MODULE,
945         .name           = "befs",
946         .get_sb         = befs_get_sb,
947         .kill_sb        = kill_block_super,
948         .fs_flags       = FS_REQUIRES_DEV,      
949 };
950
951 static int __init
952 init_befs_fs(void)
953 {
954         int err;
955
956         printk(KERN_INFO "BeFS version: %s\n", BEFS_VERSION);
957
958         err = befs_init_inodecache();
959         if (err)
960                 goto unaquire_none;
961
962         err = register_filesystem(&befs_fs_type);
963         if (err)
964                 goto unaquire_inodecache;
965
966         return 0;
967
968 unaquire_inodecache:
969         befs_destroy_inodecache();
970
971 unaquire_none:
972         return err;
973 }
974
975 static void __exit
976 exit_befs_fs(void)
977 {
978         befs_destroy_inodecache();
979
980         unregister_filesystem(&befs_fs_type);
981 }
982
983 /*
984 Macros that typecheck the init and exit functions,
985 ensures that they are called at init and cleanup,
986 and eliminates warnings about unused functions.
987 */
988 module_init(init_befs_fs)
989 module_exit(exit_befs_fs)