2 * linux/fs/befs/linuxvfs.c
4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com
8 #include <linux/module.h>
9 #include <linux/slab.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 #include <linux/namei.h>
18 #include <linux/sched.h>
23 #include "datastream.h"
27 MODULE_DESCRIPTION("BeOS File System (BeFS) driver");
28 MODULE_AUTHOR("Will Dyson");
29 MODULE_LICENSE("GPL");
31 /* The units the vfs expects inode->i_blocks to be in */
32 #define VFS_BLOCK_SIZE 512
34 static int befs_readdir(struct file
*, struct dir_context
*);
35 static int befs_get_block(struct inode
*, sector_t
, struct buffer_head
*, int);
36 static int befs_readpage(struct file
*file
, struct page
*page
);
37 static sector_t
befs_bmap(struct address_space
*mapping
, sector_t block
);
38 static struct dentry
*befs_lookup(struct inode
*, struct dentry
*, unsigned int);
39 static struct inode
*befs_iget(struct super_block
*, unsigned long);
40 static struct inode
*befs_alloc_inode(struct super_block
*sb
);
41 static void befs_destroy_inode(struct inode
*inode
);
42 static int befs_init_inodecache(void);
43 static void befs_destroy_inodecache(void);
44 static void *befs_follow_link(struct dentry
*, struct nameidata
*);
45 static void *befs_fast_follow_link(struct dentry
*, struct nameidata
*);
46 static int befs_utf2nls(struct super_block
*sb
, const char *in
, int in_len
,
47 char **out
, int *out_len
);
48 static int befs_nls2utf(struct super_block
*sb
, const char *in
, int in_len
,
49 char **out
, int *out_len
);
50 static void befs_put_super(struct super_block
*);
51 static int befs_remount(struct super_block
*, int *, char *);
52 static int befs_statfs(struct dentry
*, struct kstatfs
*);
53 static int parse_options(char *, befs_mount_options
*);
55 static const struct super_operations befs_sops
= {
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 .show_options
= generic_show_options
,
64 /* slab cache for befs_inode_info objects */
65 static struct kmem_cache
*befs_inode_cachep
;
67 static const struct file_operations befs_dir_operations
= {
68 .read
= generic_read_dir
,
69 .iterate
= befs_readdir
,
70 .llseek
= generic_file_llseek
,
73 static const struct inode_operations befs_dir_inode_operations
= {
74 .lookup
= befs_lookup
,
77 static const struct address_space_operations befs_aops
= {
78 .readpage
= befs_readpage
,
82 static const struct inode_operations befs_fast_symlink_inode_operations
= {
83 .readlink
= generic_readlink
,
84 .follow_link
= befs_fast_follow_link
,
87 static const struct inode_operations befs_symlink_inode_operations
= {
88 .readlink
= generic_readlink
,
89 .follow_link
= befs_follow_link
,
90 .put_link
= kfree_put_link
,
94 * Called by generic_file_read() to read a page of data
96 * In turn, simply calls a generic block read function and
97 * passes it the address of befs_get_block, for mapping file
98 * positions to disk blocks.
101 befs_readpage(struct file
*file
, struct page
*page
)
103 return block_read_full_page(page
, befs_get_block
);
107 befs_bmap(struct address_space
*mapping
, sector_t block
)
109 return generic_block_bmap(mapping
, block
, befs_get_block
);
113 * Generic function to map a file position (block) to a
114 * disk offset (passed back in bh_result).
116 * Used by many higher level functions.
118 * Calls befs_fblock2brun() in datastream.c to do the real work.
124 befs_get_block(struct inode
*inode
, sector_t block
,
125 struct buffer_head
*bh_result
, int create
)
127 struct super_block
*sb
= inode
->i_sb
;
128 befs_data_stream
*ds
= &BEFS_I(inode
)->i_data
.ds
;
129 befs_block_run run
= BAD_IADDR
;
133 befs_debug(sb
, "---> befs_get_block() for inode %lu, block %ld",
134 inode
->i_ino
, block
);
137 befs_error(sb
, "befs_get_block() was asked for a block "
138 "number less than zero: block %ld in inode %lu",
139 block
, inode
->i_ino
);
144 befs_error(sb
, "befs_get_block() was asked to write to "
145 "block %ld in inode %lu", block
, inode
->i_ino
);
149 res
= befs_fblock2brun(sb
, ds
, block
, &run
);
150 if (res
!= BEFS_OK
) {
152 "<--- befs_get_block() for inode %lu, block "
153 "%ld ERROR", inode
->i_ino
, block
);
157 disk_off
= (ulong
) iaddr2blockno(sb
, &run
);
159 map_bh(bh_result
, inode
->i_sb
, disk_off
);
161 befs_debug(sb
, "<--- befs_get_block() for inode %lu, block %ld, "
162 "disk address %lu", inode
->i_ino
, block
, disk_off
);
167 static struct dentry
*
168 befs_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
170 struct inode
*inode
= NULL
;
171 struct super_block
*sb
= dir
->i_sb
;
172 befs_data_stream
*ds
= &BEFS_I(dir
)->i_data
.ds
;
177 const char *name
= dentry
->d_name
.name
;
179 befs_debug(sb
, "---> befs_lookup() "
180 "name %s inode %ld", dentry
->d_name
.name
, dir
->i_ino
);
182 /* Convert to UTF-8 */
183 if (BEFS_SB(sb
)->nls
) {
185 befs_nls2utf(sb
, name
, strlen(name
), &utfname
, &utfnamelen
);
187 befs_debug(sb
, "<--- befs_lookup() ERROR");
190 ret
= befs_btree_find(sb
, ds
, utfname
, &offset
);
194 ret
= befs_btree_find(sb
, ds
, dentry
->d_name
.name
, &offset
);
197 if (ret
== BEFS_BT_NOT_FOUND
) {
198 befs_debug(sb
, "<--- befs_lookup() %s not found",
199 dentry
->d_name
.name
);
200 return ERR_PTR(-ENOENT
);
202 } else if (ret
!= BEFS_OK
|| offset
== 0) {
203 befs_warning(sb
, "<--- befs_lookup() Error");
204 return ERR_PTR(-ENODATA
);
207 inode
= befs_iget(dir
->i_sb
, (ino_t
) offset
);
209 return ERR_CAST(inode
);
211 d_add(dentry
, inode
);
213 befs_debug(sb
, "<--- befs_lookup()");
219 befs_readdir(struct file
*file
, struct dir_context
*ctx
)
221 struct inode
*inode
= file_inode(file
);
222 struct super_block
*sb
= inode
->i_sb
;
223 befs_data_stream
*ds
= &BEFS_I(inode
)->i_data
.ds
;
227 unsigned char d_type
;
228 char keybuf
[BEFS_NAME_LEN
+ 1];
229 const char *dirname
= file
->f_path
.dentry
->d_name
.name
;
231 befs_debug(sb
, "---> befs_readdir() "
232 "name %s, inode %ld, ctx->pos %Ld",
233 dirname
, inode
->i_ino
, ctx
->pos
);
236 result
= befs_btree_read(sb
, ds
, ctx
->pos
, BEFS_NAME_LEN
+ 1,
237 keybuf
, &keysize
, &value
);
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
);
245 } else if (result
== BEFS_BT_END
) {
246 befs_debug(sb
, "<--- befs_readdir() END");
249 } else if (result
== BEFS_BT_EMPTY
) {
250 befs_debug(sb
, "<--- befs_readdir() Empty directory");
257 if (BEFS_SB(sb
)->nls
) {
261 befs_utf2nls(sb
, keybuf
, keysize
, &nlsname
, &nlsnamelen
);
263 befs_debug(sb
, "<--- befs_readdir() ERROR");
266 if (!dir_emit(ctx
, nlsname
, nlsnamelen
,
267 (ino_t
) value
, d_type
)) {
273 if (!dir_emit(ctx
, keybuf
, keysize
,
274 (ino_t
) value
, d_type
))
280 befs_debug(sb
, "<--- befs_readdir() pos %Ld", ctx
->pos
);
285 static struct inode
*
286 befs_alloc_inode(struct super_block
*sb
)
288 struct befs_inode_info
*bi
;
289 bi
= (struct befs_inode_info
*)kmem_cache_alloc(befs_inode_cachep
,
293 return &bi
->vfs_inode
;
296 static void befs_i_callback(struct rcu_head
*head
)
298 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
299 kmem_cache_free(befs_inode_cachep
, BEFS_I(inode
));
302 static void befs_destroy_inode(struct inode
*inode
)
304 call_rcu(&inode
->i_rcu
, befs_i_callback
);
307 static void init_once(void *foo
)
309 struct befs_inode_info
*bi
= (struct befs_inode_info
*) foo
;
311 inode_init_once(&bi
->vfs_inode
);
314 static struct inode
*befs_iget(struct super_block
*sb
, unsigned long ino
)
316 struct buffer_head
*bh
= NULL
;
317 befs_inode
*raw_inode
= NULL
;
319 befs_sb_info
*befs_sb
= BEFS_SB(sb
);
320 befs_inode_info
*befs_ino
= NULL
;
324 befs_debug(sb
, "---> befs_read_inode() " "inode = %lu", ino
);
326 inode
= iget_locked(sb
, ino
);
328 return ERR_PTR(-ENOMEM
);
329 if (!(inode
->i_state
& I_NEW
))
332 befs_ino
= BEFS_I(inode
);
334 /* convert from vfs's inode number to befs's inode number */
335 befs_ino
->i_inode_num
= blockno2iaddr(sb
, inode
->i_ino
);
337 befs_debug(sb
, " real inode number [%u, %hu, %hu]",
338 befs_ino
->i_inode_num
.allocation_group
,
339 befs_ino
->i_inode_num
.start
, befs_ino
->i_inode_num
.len
);
341 bh
= befs_bread(sb
, inode
->i_ino
);
343 befs_error(sb
, "unable to read inode block - "
344 "inode = %lu", inode
->i_ino
);
348 raw_inode
= (befs_inode
*) bh
->b_data
;
350 befs_dump_inode(sb
, raw_inode
);
352 if (befs_check_inode(sb
, raw_inode
, inode
->i_ino
) != BEFS_OK
) {
353 befs_error(sb
, "Bad inode: %lu", inode
->i_ino
);
357 inode
->i_mode
= (umode_t
) fs32_to_cpu(sb
, raw_inode
->mode
);
360 * set uid and gid. But since current BeOS is single user OS, so
361 * you can change by "uid" or "gid" options.
364 inode
->i_uid
= befs_sb
->mount_opts
.use_uid
?
365 befs_sb
->mount_opts
.uid
:
366 make_kuid(&init_user_ns
, fs32_to_cpu(sb
, raw_inode
->uid
));
367 inode
->i_gid
= befs_sb
->mount_opts
.use_gid
?
368 befs_sb
->mount_opts
.gid
:
369 make_kgid(&init_user_ns
, fs32_to_cpu(sb
, raw_inode
->gid
));
374 * BEFS's time is 64 bits, but current VFS is 32 bits...
375 * BEFS don't have access time. Nor inode change time. VFS
376 * doesn't have creation time.
377 * Also, the lower 16 bits of the last_modified_time and
378 * create_time are just a counter to help ensure uniqueness
379 * for indexing purposes. (PFD, page 54)
382 inode
->i_mtime
.tv_sec
=
383 fs64_to_cpu(sb
, raw_inode
->last_modified_time
) >> 16;
384 inode
->i_mtime
.tv_nsec
= 0; /* lower 16 bits are not a time */
385 inode
->i_ctime
= inode
->i_mtime
;
386 inode
->i_atime
= inode
->i_mtime
;
388 befs_ino
->i_inode_num
= fsrun_to_cpu(sb
, raw_inode
->inode_num
);
389 befs_ino
->i_parent
= fsrun_to_cpu(sb
, raw_inode
->parent
);
390 befs_ino
->i_attribute
= fsrun_to_cpu(sb
, raw_inode
->attributes
);
391 befs_ino
->i_flags
= fs32_to_cpu(sb
, raw_inode
->flags
);
393 if (S_ISLNK(inode
->i_mode
) && !(befs_ino
->i_flags
& BEFS_LONG_SYMLINK
)){
395 inode
->i_blocks
= befs_sb
->block_size
/ VFS_BLOCK_SIZE
;
396 strncpy(befs_ino
->i_data
.symlink
, raw_inode
->data
.symlink
,
397 BEFS_SYMLINK_LEN
- 1);
398 befs_ino
->i_data
.symlink
[BEFS_SYMLINK_LEN
- 1] = '\0';
402 befs_ino
->i_data
.ds
=
403 fsds_to_cpu(sb
, &raw_inode
->data
.datastream
);
405 num_blks
= befs_count_blocks(sb
, &befs_ino
->i_data
.ds
);
407 num_blks
* (befs_sb
->block_size
/ VFS_BLOCK_SIZE
);
408 inode
->i_size
= befs_ino
->i_data
.ds
.size
;
411 inode
->i_mapping
->a_ops
= &befs_aops
;
413 if (S_ISREG(inode
->i_mode
)) {
414 inode
->i_fop
= &generic_ro_fops
;
415 } else if (S_ISDIR(inode
->i_mode
)) {
416 inode
->i_op
= &befs_dir_inode_operations
;
417 inode
->i_fop
= &befs_dir_operations
;
418 } else if (S_ISLNK(inode
->i_mode
)) {
419 if (befs_ino
->i_flags
& BEFS_LONG_SYMLINK
)
420 inode
->i_op
= &befs_symlink_inode_operations
;
422 inode
->i_op
= &befs_fast_symlink_inode_operations
;
424 befs_error(sb
, "Inode %lu is not a regular file, "
425 "directory or symlink. THAT IS WRONG! BeFS has no "
426 "on disk special files", inode
->i_ino
);
431 befs_debug(sb
, "<--- befs_read_inode()");
432 unlock_new_inode(inode
);
440 befs_debug(sb
, "<--- befs_read_inode() - Bad inode");
444 /* Initialize the inode cache. Called at fs setup.
446 * Taken from NFS implementation by Al Viro.
449 befs_init_inodecache(void)
451 befs_inode_cachep
= kmem_cache_create("befs_inode_cache",
452 sizeof (struct befs_inode_info
),
453 0, (SLAB_RECLAIM_ACCOUNT
|
456 if (befs_inode_cachep
== NULL
) {
457 printk(KERN_ERR
"befs_init_inodecache: "
458 "Couldn't initialize inode slabcache\n");
465 /* Called at fs teardown.
467 * Taken from NFS implementation by Al Viro.
470 befs_destroy_inodecache(void)
473 * Make sure all delayed rcu free inodes are flushed before we
477 kmem_cache_destroy(befs_inode_cachep
);
481 * The inode of symbolic link is different to data stream.
482 * The data stream become link name. Unless the LONG_SYMLINK
486 befs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
488 struct super_block
*sb
= dentry
->d_sb
;
489 befs_inode_info
*befs_ino
= BEFS_I(dentry
->d_inode
);
490 befs_data_stream
*data
= &befs_ino
->i_data
.ds
;
491 befs_off_t len
= data
->size
;
495 befs_error(sb
, "Long symlink with illegal length");
496 link
= ERR_PTR(-EIO
);
498 befs_debug(sb
, "Follow long symlink");
500 link
= kmalloc(len
, GFP_NOFS
);
502 link
= ERR_PTR(-ENOMEM
);
503 } else if (befs_read_lsymlink(sb
, data
, link
, len
) != len
) {
505 befs_error(sb
, "Failed to read entire long symlink");
506 link
= ERR_PTR(-EIO
);
508 link
[len
- 1] = '\0';
511 nd_set_link(nd
, link
);
517 befs_fast_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
519 befs_inode_info
*befs_ino
= BEFS_I(dentry
->d_inode
);
520 nd_set_link(nd
, befs_ino
->i_data
.symlink
);
525 * UTF-8 to NLS charset convert routine
528 * Changed 8/10/01 by Will Dyson. Now use uni2char() / char2uni() rather than
529 * the nls tables directly
533 befs_utf2nls(struct super_block
*sb
, const char *in
,
534 int in_len
, char **out
, int *out_len
)
536 struct nls_table
*nls
= BEFS_SB(sb
)->nls
;
541 /* The utf8->nls conversion won't make the final nls string bigger
542 * than the utf one, but if the string is pure ascii they'll have the
543 * same width and an extra char is needed to save the additional \0
545 int maxlen
= in_len
+ 1;
547 befs_debug(sb
, "---> utf2nls()");
550 befs_error(sb
, "befs_utf2nls called with no NLS table loaded");
554 *out
= result
= kmalloc(maxlen
, GFP_NOFS
);
556 befs_error(sb
, "befs_utf2nls() cannot allocate memory");
561 for (i
= o
= 0; i
< in_len
; i
+= utflen
, o
+= unilen
) {
563 /* convert from UTF-8 to Unicode */
564 utflen
= utf8_to_utf32(&in
[i
], in_len
- i
, &uni
);
568 /* convert from Unicode to nls */
569 if (uni
> MAX_WCHAR_T
)
571 unilen
= nls
->uni2char(uni
, &result
[o
], in_len
- o
);
578 befs_debug(sb
, "<--- utf2nls()");
583 befs_error(sb
, "Name using character set %s contains a character that "
584 "cannot be converted to unicode.", nls
->charset
);
585 befs_debug(sb
, "<--- utf2nls()");
591 * befs_nls2utf - Convert NLS string to utf8 encodeing
593 * @src: Input string buffer in NLS format
594 * @srclen: Length of input string in bytes
595 * @dest: The output string in UTF-8 format
596 * @destlen: Length of the output buffer
598 * Converts input string @src, which is in the format of the loaded NLS map,
599 * into a utf8 string.
601 * The destination string @dest is allocated by this function and the caller is
602 * responsible for freeing it with kfree()
604 * On return, *@destlen is the length of @dest in bytes.
606 * On success, the return value is the number of utf8 characters written to
607 * the output buffer @dest.
609 * On Failure, a negative number coresponding to the error code is returned.
613 befs_nls2utf(struct super_block
*sb
, const char *in
,
614 int in_len
, char **out
, int *out_len
)
616 struct nls_table
*nls
= BEFS_SB(sb
)->nls
;
621 /* There're nls characters that will translate to 3-chars-wide UTF-8
622 * characters, a additional byte is needed to save the final \0
623 * in special cases */
624 int maxlen
= (3 * in_len
) + 1;
626 befs_debug(sb
, "---> nls2utf()\n");
629 befs_error(sb
, "befs_nls2utf called with no NLS table loaded.");
633 *out
= result
= kmalloc(maxlen
, GFP_NOFS
);
635 befs_error(sb
, "befs_nls2utf() cannot allocate memory");
640 for (i
= o
= 0; i
< in_len
; i
+= unilen
, o
+= utflen
) {
642 /* convert from nls to unicode */
643 unilen
= nls
->char2uni(&in
[i
], in_len
- i
, &uni
);
647 /* convert from unicode to UTF-8 */
648 utflen
= utf32_to_utf8(uni
, &result
[o
], 3);
656 befs_debug(sb
, "<--- nls2utf()");
661 befs_error(sb
, "Name using charecter set %s contains a charecter that "
662 "cannot be converted to unicode.", nls
->charset
);
663 befs_debug(sb
, "<--- nls2utf()");
673 Opt_uid
, Opt_gid
, Opt_charset
, Opt_debug
, Opt_err
,
676 static const match_table_t befs_tokens
= {
679 {Opt_charset
, "iocharset=%s"},
680 {Opt_debug
, "debug"},
685 parse_options(char *options
, befs_mount_options
* opts
)
688 substring_t args
[MAX_OPT_ARGS
];
693 /* Initialize options */
694 opts
->uid
= GLOBAL_ROOT_UID
;
695 opts
->gid
= GLOBAL_ROOT_GID
;
698 opts
->iocharset
= NULL
;
704 while ((p
= strsep(&options
, ",")) != NULL
) {
709 token
= match_token(p
, befs_tokens
, args
);
712 if (match_int(&args
[0], &option
))
716 uid
= make_kuid(current_user_ns(), option
);
717 if (!uid_valid(uid
)) {
718 printk(KERN_ERR
"BeFS: Invalid uid %d, "
719 "using default\n", option
);
726 if (match_int(&args
[0], &option
))
730 gid
= make_kgid(current_user_ns(), option
);
731 if (!gid_valid(gid
)) {
732 printk(KERN_ERR
"BeFS: Invalid gid %d, "
733 "using default\n", option
);
740 kfree(opts
->iocharset
);
741 opts
->iocharset
= match_strdup(&args
[0]);
742 if (!opts
->iocharset
) {
743 printk(KERN_ERR
"BeFS: allocation failure for "
744 "iocharset string\n");
752 printk(KERN_ERR
"BeFS: Unrecognized mount option \"%s\" "
753 "or missing value\n", p
);
760 /* This function has the responsibiltiy of getting the
761 * filesystem ready for unmounting.
762 * Basically, we free everything that we allocated in
766 befs_put_super(struct super_block
*sb
)
768 kfree(BEFS_SB(sb
)->mount_opts
.iocharset
);
769 BEFS_SB(sb
)->mount_opts
.iocharset
= NULL
;
770 unload_nls(BEFS_SB(sb
)->nls
);
771 kfree(sb
->s_fs_info
);
772 sb
->s_fs_info
= NULL
;
775 /* Allocate private field of the superblock, fill it.
777 * Finish filling the public superblock fields
778 * Make the root directory
779 * Load a set of NLS translations if needed.
782 befs_fill_super(struct super_block
*sb
, void *data
, int silent
)
784 struct buffer_head
*bh
;
785 befs_sb_info
*befs_sb
;
786 befs_super_block
*disk_sb
;
789 const unsigned long sb_block
= 0;
790 const off_t x86_sb_off
= 512;
792 save_mount_options(sb
, data
);
794 sb
->s_fs_info
= kmalloc(sizeof (*befs_sb
), GFP_KERNEL
);
795 if (sb
->s_fs_info
== NULL
) {
797 "BeFS(%s): Unable to allocate memory for private "
798 "portion of superblock. Bailing.\n", sb
->s_id
);
801 befs_sb
= BEFS_SB(sb
);
802 memset(befs_sb
, 0, sizeof(befs_sb_info
));
804 if (!parse_options((char *) data
, &befs_sb
->mount_opts
)) {
805 befs_error(sb
, "cannot parse mount options");
806 goto unacquire_priv_sbp
;
809 befs_debug(sb
, "---> befs_fill_super()");
811 #ifndef CONFIG_BEFS_RW
812 if (!(sb
->s_flags
& MS_RDONLY
)) {
814 "No write support. Marking filesystem read-only");
815 sb
->s_flags
|= MS_RDONLY
;
817 #endif /* CONFIG_BEFS_RW */
820 * Set dummy blocksize to read super block.
821 * Will be set to real fs blocksize later.
823 * Linux 2.4.10 and later refuse to read blocks smaller than
824 * the hardsect size for the device. But we also need to read at
825 * least 1k to get the second 512 bytes of the volume.
828 sb_min_blocksize(sb
, 1024);
830 if (!(bh
= sb_bread(sb
, sb_block
))) {
831 befs_error(sb
, "unable to read superblock");
832 goto unacquire_priv_sbp
;
835 /* account for offset of super block on x86 */
836 disk_sb
= (befs_super_block
*) bh
->b_data
;
837 if ((disk_sb
->magic1
== BEFS_SUPER_MAGIC1_LE
) ||
838 (disk_sb
->magic1
== BEFS_SUPER_MAGIC1_BE
)) {
839 befs_debug(sb
, "Using PPC superblock location");
841 befs_debug(sb
, "Using x86 superblock location");
843 (befs_super_block
*) ((void *) bh
->b_data
+ x86_sb_off
);
846 if (befs_load_sb(sb
, disk_sb
) != BEFS_OK
)
849 befs_dump_super_block(sb
, disk_sb
);
853 if (befs_check_sb(sb
) != BEFS_OK
)
854 goto unacquire_priv_sbp
;
856 if( befs_sb
->num_blocks
> ~((sector_t
)0) ) {
857 befs_error(sb
, "blocks count: %Lu "
858 "is larger than the host can use",
859 befs_sb
->num_blocks
);
860 goto unacquire_priv_sbp
;
864 * set up enough so that it can read an inode
865 * Fill in kernel superblock fields from private sb
867 sb
->s_magic
= BEFS_SUPER_MAGIC
;
868 /* Set real blocksize of fs */
869 sb_set_blocksize(sb
, (ulong
) befs_sb
->block_size
);
870 sb
->s_op
= &befs_sops
;
871 root
= befs_iget(sb
, iaddr2blockno(sb
, &(befs_sb
->root_dir
)));
874 goto unacquire_priv_sbp
;
876 sb
->s_root
= d_make_root(root
);
878 befs_error(sb
, "get root inode failed");
879 goto unacquire_priv_sbp
;
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
);
888 befs_warning(sb
, "Cannot load nls %s"
889 " loading default nls",
890 befs_sb
->mount_opts
.iocharset
);
891 befs_sb
->nls
= load_nls_default();
893 /* load default nls if none is specified in mount options */
895 befs_debug(sb
, "Loading default nls");
896 befs_sb
->nls
= load_nls_default();
905 kfree(befs_sb
->mount_opts
.iocharset
);
906 kfree(sb
->s_fs_info
);
909 sb
->s_fs_info
= NULL
;
914 befs_remount(struct super_block
*sb
, int *flags
, char *data
)
916 if (!(*flags
& MS_RDONLY
))
922 befs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
924 struct super_block
*sb
= dentry
->d_sb
;
925 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
927 befs_debug(sb
, "---> befs_statfs()");
929 buf
->f_type
= BEFS_SUPER_MAGIC
;
930 buf
->f_bsize
= sb
->s_blocksize
;
931 buf
->f_blocks
= BEFS_SB(sb
)->num_blocks
;
932 buf
->f_bfree
= BEFS_SB(sb
)->num_blocks
- BEFS_SB(sb
)->used_blocks
;
933 buf
->f_bavail
= buf
->f_bfree
;
934 buf
->f_files
= 0; /* UNKNOWN */
935 buf
->f_ffree
= 0; /* UNKNOWN */
936 buf
->f_fsid
.val
[0] = (u32
)id
;
937 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
938 buf
->f_namelen
= BEFS_NAME_LEN
;
940 befs_debug(sb
, "<--- befs_statfs()");
945 static struct dentry
*
946 befs_mount(struct file_system_type
*fs_type
, int flags
, const char *dev_name
,
949 return mount_bdev(fs_type
, flags
, dev_name
, data
, befs_fill_super
);
952 static struct file_system_type befs_fs_type
= {
953 .owner
= THIS_MODULE
,
956 .kill_sb
= kill_block_super
,
957 .fs_flags
= FS_REQUIRES_DEV
,
959 MODULE_ALIAS_FS("befs");
966 printk(KERN_INFO
"BeFS version: %s\n", BEFS_VERSION
);
968 err
= befs_init_inodecache();
972 err
= register_filesystem(&befs_fs_type
);
974 goto unacquire_inodecache
;
978 unacquire_inodecache
:
979 befs_destroy_inodecache();
988 befs_destroy_inodecache();
990 unregister_filesystem(&befs_fs_type
);
994 Macros that typecheck the init and exit functions,
995 ensures that they are called at init and cleanup,
996 and eliminates warnings about unused functions.
998 module_init(init_befs_fs
)
999 module_exit(exit_befs_fs
)