2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/config.h>
22 #include <linux/module.h>
23 #include <linux/parser.h>
24 #include <linux/completion.h>
25 #include <linux/vfs.h>
26 #include <linux/moduleparam.h>
27 #include <linux/posix_acl.h>
28 #include <asm/uaccess.h>
30 #include "jfs_incore.h"
31 #include "jfs_filsys.h"
32 #include "jfs_inode.h"
33 #include "jfs_metapage.h"
34 #include "jfs_superblock.h"
38 #include "jfs_debug.h"
40 MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
41 MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
42 MODULE_LICENSE("GPL");
44 static kmem_cache_t
* jfs_inode_cachep
;
46 static struct super_operations jfs_super_operations
;
47 static struct export_operations jfs_export_operations
;
48 static struct file_system_type jfs_fs_type
;
50 #define MAX_COMMIT_THREADS 64
51 static int commit_threads
= 0;
52 module_param(commit_threads
, int, 0);
53 MODULE_PARM_DESC(commit_threads
, "Number of commit threads");
56 static pid_t jfsIOthread
;
57 static pid_t jfsCommitThread
[MAX_COMMIT_THREADS
];
58 static pid_t jfsSyncThread
;
59 DECLARE_COMPLETION(jfsIOwait
);
61 #ifdef CONFIG_JFS_DEBUG
62 int jfsloglevel
= JFS_LOGLEVEL_WARN
;
63 module_param(jfsloglevel
, int, 0644);
64 MODULE_PARM_DESC(jfsloglevel
, "Specify JFS loglevel (0, 1 or 2)");
67 static void jfs_handle_error(struct super_block
*sb
)
69 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
71 if (sb
->s_flags
& MS_RDONLY
)
74 updateSuper(sb
, FM_DIRTY
);
76 if (sbi
->flag
& JFS_ERR_PANIC
)
77 panic("JFS (device %s): panic forced after error\n",
79 else if (sbi
->flag
& JFS_ERR_REMOUNT_RO
) {
80 jfs_err("ERROR: (device %s): remounting filesystem "
83 sb
->s_flags
|= MS_RDONLY
;
86 /* nothing is done for continue beyond marking the superblock dirty */
89 void jfs_error(struct super_block
*sb
, const char * function
, ...)
91 static char error_buf
[256];
94 va_start(args
, function
);
95 vsprintf(error_buf
, function
, args
);
98 printk(KERN_ERR
"ERROR: (device %s): %s\n", sb
->s_id
, error_buf
);
100 jfs_handle_error(sb
);
103 static struct inode
*jfs_alloc_inode(struct super_block
*sb
)
105 struct jfs_inode_info
*jfs_inode
;
107 jfs_inode
= kmem_cache_alloc(jfs_inode_cachep
, GFP_NOFS
);
110 return &jfs_inode
->vfs_inode
;
113 static void jfs_destroy_inode(struct inode
*inode
)
115 struct jfs_inode_info
*ji
= JFS_IP(inode
);
117 BUG_ON(!list_empty(&ji
->anon_inode_list
));
119 spin_lock_irq(&ji
->ag_lock
);
120 if (ji
->active_ag
!= -1) {
121 struct bmap
*bmap
= JFS_SBI(inode
->i_sb
)->bmap
;
122 atomic_dec(&bmap
->db_active
[ji
->active_ag
]);
125 spin_unlock_irq(&ji
->ag_lock
);
127 #ifdef CONFIG_JFS_POSIX_ACL
128 if (ji
->i_acl
!= JFS_ACL_NOT_CACHED
) {
129 posix_acl_release(ji
->i_acl
);
130 ji
->i_acl
= JFS_ACL_NOT_CACHED
;
132 if (ji
->i_default_acl
!= JFS_ACL_NOT_CACHED
) {
133 posix_acl_release(ji
->i_default_acl
);
134 ji
->i_default_acl
= JFS_ACL_NOT_CACHED
;
138 kmem_cache_free(jfs_inode_cachep
, ji
);
141 static int jfs_statfs(struct super_block
*sb
, struct kstatfs
*buf
)
143 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
145 struct inomap
*imap
= JFS_IP(sbi
->ipimap
)->i_imap
;
147 jfs_info("In jfs_statfs");
148 buf
->f_type
= JFS_SUPER_MAGIC
;
149 buf
->f_bsize
= sbi
->bsize
;
150 buf
->f_blocks
= sbi
->bmap
->db_mapsize
;
151 buf
->f_bfree
= sbi
->bmap
->db_nfree
;
152 buf
->f_bavail
= sbi
->bmap
->db_nfree
;
154 * If we really return the number of allocated & free inodes, some
155 * applications will fail because they won't see enough free inodes.
156 * We'll try to calculate some guess as to how may inodes we can
159 * buf->f_files = atomic_read(&imap->im_numinos);
160 * buf->f_ffree = atomic_read(&imap->im_numfree);
162 maxinodes
= min((s64
) atomic_read(&imap
->im_numinos
) +
163 ((sbi
->bmap
->db_nfree
>> imap
->im_l2nbperiext
)
164 << L2INOSPEREXT
), (s64
) 0xffffffffLL
);
165 buf
->f_files
= maxinodes
;
166 buf
->f_ffree
= maxinodes
- (atomic_read(&imap
->im_numinos
) -
167 atomic_read(&imap
->im_numfree
));
169 buf
->f_namelen
= JFS_NAME_MAX
;
173 static void jfs_put_super(struct super_block
*sb
)
175 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
178 jfs_info("In jfs_put_super");
181 jfs_err("jfs_umount failed with return code %d", rc
);
183 unload_nls(sbi
->nls_tab
);
186 truncate_inode_pages(sbi
->direct_inode
->i_mapping
, 0);
187 iput(sbi
->direct_inode
);
188 sbi
->direct_inode
= NULL
;
194 Opt_integrity
, Opt_nointegrity
, Opt_iocharset
, Opt_resize
,
195 Opt_resize_nosize
, Opt_errors
, Opt_ignore
, Opt_err
,
198 static match_table_t tokens
= {
199 {Opt_integrity
, "integrity"},
200 {Opt_nointegrity
, "nointegrity"},
201 {Opt_iocharset
, "iocharset=%s"},
202 {Opt_resize
, "resize=%u"},
203 {Opt_resize_nosize
, "resize"},
204 {Opt_errors
, "errors=%s"},
205 {Opt_ignore
, "noquota"},
206 {Opt_ignore
, "quota"},
207 {Opt_ignore
, "usrquota"},
208 {Opt_ignore
, "grpquota"},
212 static int parse_options(char *options
, struct super_block
*sb
, s64
*newLVSize
,
215 void *nls_map
= (void *)-1; /* -1: no change; NULL: none */
217 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
224 while ((p
= strsep(&options
, ",")) != NULL
) {
225 substring_t args
[MAX_OPT_ARGS
];
230 token
= match_token(p
, tokens
, args
);
233 *flag
&= ~JFS_NOINTEGRITY
;
235 case Opt_nointegrity
:
236 *flag
|= JFS_NOINTEGRITY
;
239 /* Silently ignore the quota options */
240 /* Don't do anything ;-) */
243 if (nls_map
&& nls_map
!= (void *) -1)
245 if (!strcmp(args
[0].from
, "none"))
248 nls_map
= load_nls(args
[0].from
);
251 "JFS: charset not found\n");
258 char *resize
= args
[0].from
;
259 *newLVSize
= simple_strtoull(resize
, &resize
, 0);
262 case Opt_resize_nosize
:
264 *newLVSize
= sb
->s_bdev
->bd_inode
->i_size
>>
265 sb
->s_blocksize_bits
;
268 "JFS: Cannot determine volume size\n");
273 char *errors
= args
[0].from
;
274 if (!errors
|| !*errors
)
276 if (!strcmp(errors
, "continue")) {
277 *flag
&= ~JFS_ERR_REMOUNT_RO
;
278 *flag
&= ~JFS_ERR_PANIC
;
279 *flag
|= JFS_ERR_CONTINUE
;
280 } else if (!strcmp(errors
, "remount-ro")) {
281 *flag
&= ~JFS_ERR_CONTINUE
;
282 *flag
&= ~JFS_ERR_PANIC
;
283 *flag
|= JFS_ERR_REMOUNT_RO
;
284 } else if (!strcmp(errors
, "panic")) {
285 *flag
&= ~JFS_ERR_CONTINUE
;
286 *flag
&= ~JFS_ERR_REMOUNT_RO
;
287 *flag
|= JFS_ERR_PANIC
;
290 "JFS: %s is an invalid error handler\n",
297 printk("jfs: Unrecognized mount option \"%s\" "
298 " or missing value\n", p
);
303 if (nls_map
!= (void *) -1) {
304 /* Discard old (if remount) */
306 unload_nls(sbi
->nls_tab
);
307 sbi
->nls_tab
= nls_map
;
312 if (nls_map
&& nls_map
!= (void *) -1)
317 static int jfs_remount(struct super_block
*sb
, int *flags
, char *data
)
321 int flag
= JFS_SBI(sb
)->flag
;
323 if (!parse_options(data
, sb
, &newLVSize
, &flag
)) {
327 if (sb
->s_flags
& MS_RDONLY
) {
329 "JFS: resize requires volume to be mounted read-write\n");
332 rc
= jfs_extendfs(sb
, newLVSize
, 0);
337 if ((sb
->s_flags
& MS_RDONLY
) && !(*flags
& MS_RDONLY
)) {
339 * Invalidate any previously read metadata. fsck may have
340 * changed the on-disk data since we mounted r/o
342 truncate_inode_pages(JFS_SBI(sb
)->direct_inode
->i_mapping
, 0);
344 JFS_SBI(sb
)->flag
= flag
;
345 return jfs_mount_rw(sb
, 1);
347 if ((!(sb
->s_flags
& MS_RDONLY
)) && (*flags
& MS_RDONLY
)) {
348 rc
= jfs_umount_rw(sb
);
349 JFS_SBI(sb
)->flag
= flag
;
352 if ((JFS_SBI(sb
)->flag
& JFS_NOINTEGRITY
) != (flag
& JFS_NOINTEGRITY
))
353 if (!(sb
->s_flags
& MS_RDONLY
)) {
354 rc
= jfs_umount_rw(sb
);
357 JFS_SBI(sb
)->flag
= flag
;
358 return jfs_mount_rw(sb
, 1);
360 JFS_SBI(sb
)->flag
= flag
;
365 static int jfs_fill_super(struct super_block
*sb
, void *data
, int silent
)
367 struct jfs_sb_info
*sbi
;
373 jfs_info("In jfs_read_super: s_flags=0x%lx", sb
->s_flags
);
375 if (!new_valid_dev(sb
->s_bdev
->bd_dev
))
378 sbi
= kmalloc(sizeof (struct jfs_sb_info
), GFP_KERNEL
);
381 memset(sbi
, 0, sizeof (struct jfs_sb_info
));
385 /* initialize the mount flag and determine the default error handler */
386 flag
= JFS_ERR_REMOUNT_RO
;
388 if (!parse_options((char *) data
, sb
, &newLVSize
, &flag
)) {
394 #ifdef CONFIG_JFS_POSIX_ACL
395 sb
->s_flags
|= MS_POSIXACL
;
399 printk(KERN_ERR
"resize option for remount only\n");
404 * Initialize blocksize to 4K.
406 sb_set_blocksize(sb
, PSIZE
);
409 * Set method vectors.
411 sb
->s_op
= &jfs_super_operations
;
412 sb
->s_export_op
= &jfs_export_operations
;
415 * Initialize direct-mapping inode/address-space
417 inode
= new_inode(sb
);
422 inode
->i_size
= sb
->s_bdev
->bd_inode
->i_size
;
423 inode
->i_mapping
->a_ops
= &jfs_metapage_aops
;
424 mapping_set_gfp_mask(inode
->i_mapping
, GFP_NOFS
);
426 sbi
->direct_inode
= inode
;
431 jfs_err("jfs_mount failed w/return code = %d", rc
);
433 goto out_mount_failed
;
435 if (sb
->s_flags
& MS_RDONLY
)
438 rc
= jfs_mount_rw(sb
, 0);
441 jfs_err("jfs_mount_rw failed, return code = %d",
448 sb
->s_magic
= JFS_SUPER_MAGIC
;
450 inode
= iget(sb
, ROOT_I
);
451 if (!inode
|| is_bad_inode(inode
))
453 sb
->s_root
= d_alloc_root(inode
);
457 if (sbi
->mntflag
& JFS_OS2
)
458 sb
->s_root
->d_op
= &jfs_ci_dentry_operations
;
460 /* logical blocks are represented by 40 bits in pxd_t, etc. */
461 sb
->s_maxbytes
= ((u64
) sb
->s_blocksize
) << 40;
462 #if BITS_PER_LONG == 32
464 * Page cache is indexed by long.
465 * I would use MAX_LFS_FILESIZE, but it's only half as big
467 sb
->s_maxbytes
= min(((u64
) PAGE_CACHE_SIZE
<< 32) - 1, sb
->s_maxbytes
);
473 jfs_err("jfs_read_super: get root inode failed");
480 jfs_err("jfs_umount failed with return code %d", rc
);
483 filemap_fdatawrite(sbi
->direct_inode
->i_mapping
);
484 filemap_fdatawait(sbi
->direct_inode
->i_mapping
);
485 truncate_inode_pages(sbi
->direct_inode
->i_mapping
, 0);
486 make_bad_inode(sbi
->direct_inode
);
487 iput(sbi
->direct_inode
);
488 sbi
->direct_inode
= NULL
;
491 unload_nls(sbi
->nls_tab
);
496 static void jfs_write_super_lockfs(struct super_block
*sb
)
498 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
499 struct jfs_log
*log
= sbi
->log
;
501 if (!(sb
->s_flags
& MS_RDONLY
)) {
504 updateSuper(sb
, FM_CLEAN
);
508 static void jfs_unlockfs(struct super_block
*sb
)
510 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
511 struct jfs_log
*log
= sbi
->log
;
514 if (!(sb
->s_flags
& MS_RDONLY
)) {
515 updateSuper(sb
, FM_MOUNT
);
516 if ((rc
= lmLogInit(log
)))
517 jfs_err("jfs_unlock failed with return code %d", rc
);
523 static struct super_block
*jfs_get_sb(struct file_system_type
*fs_type
,
524 int flags
, const char *dev_name
, void *data
)
526 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, jfs_fill_super
);
529 static int jfs_sync_fs(struct super_block
*sb
, int wait
)
531 struct jfs_log
*log
= JFS_SBI(sb
)->log
;
533 /* log == NULL indicates read-only mount */
535 jfs_flush_journal(log
, wait
);
542 static struct super_operations jfs_super_operations
= {
543 .alloc_inode
= jfs_alloc_inode
,
544 .destroy_inode
= jfs_destroy_inode
,
545 .read_inode
= jfs_read_inode
,
546 .dirty_inode
= jfs_dirty_inode
,
547 .write_inode
= jfs_write_inode
,
548 .delete_inode
= jfs_delete_inode
,
549 .put_super
= jfs_put_super
,
550 .sync_fs
= jfs_sync_fs
,
551 .write_super_lockfs
= jfs_write_super_lockfs
,
552 .unlockfs
= jfs_unlockfs
,
553 .statfs
= jfs_statfs
,
554 .remount_fs
= jfs_remount
,
557 static struct export_operations jfs_export_operations
= {
558 .get_parent
= jfs_get_parent
,
561 static struct file_system_type jfs_fs_type
= {
562 .owner
= THIS_MODULE
,
564 .get_sb
= jfs_get_sb
,
565 .kill_sb
= kill_block_super
,
566 .fs_flags
= FS_REQUIRES_DEV
,
569 static void init_once(void *foo
, kmem_cache_t
* cachep
, unsigned long flags
)
571 struct jfs_inode_info
*jfs_ip
= (struct jfs_inode_info
*) foo
;
573 if ((flags
& (SLAB_CTOR_VERIFY
| SLAB_CTOR_CONSTRUCTOR
)) ==
574 SLAB_CTOR_CONSTRUCTOR
) {
575 memset(jfs_ip
, 0, sizeof(struct jfs_inode_info
));
576 INIT_LIST_HEAD(&jfs_ip
->anon_inode_list
);
577 init_rwsem(&jfs_ip
->rdwrlock
);
578 init_MUTEX(&jfs_ip
->commit_sem
);
579 init_rwsem(&jfs_ip
->xattr_sem
);
580 spin_lock_init(&jfs_ip
->ag_lock
);
581 jfs_ip
->active_ag
= -1;
582 #ifdef CONFIG_JFS_POSIX_ACL
583 jfs_ip
->i_acl
= JFS_ACL_NOT_CACHED
;
584 jfs_ip
->i_default_acl
= JFS_ACL_NOT_CACHED
;
586 inode_init_once(&jfs_ip
->vfs_inode
);
590 static int __init
init_jfs_fs(void)
596 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info
), 0,
597 SLAB_RECLAIM_ACCOUNT
, init_once
, NULL
);
598 if (jfs_inode_cachep
== NULL
)
602 * Metapage initialization
604 rc
= metapage_init();
606 jfs_err("metapage_init failed w/rc = %d", rc
);
611 * Transaction Manager initialization
615 jfs_err("txInit failed w/rc = %d", rc
);
620 * I/O completion thread (endio)
622 jfsIOthread
= kernel_thread(jfsIOWait
, NULL
, CLONE_KERNEL
);
623 if (jfsIOthread
< 0) {
624 jfs_err("init_jfs_fs: fork failed w/rc = %d", jfsIOthread
);
627 wait_for_completion(&jfsIOwait
); /* Wait until thread starts */
629 if (commit_threads
< 1)
630 commit_threads
= num_online_cpus();
631 if (commit_threads
> MAX_COMMIT_THREADS
)
632 commit_threads
= MAX_COMMIT_THREADS
;
634 for (i
= 0; i
< commit_threads
; i
++) {
635 jfsCommitThread
[i
] = kernel_thread(jfs_lazycommit
, NULL
,
637 if (jfsCommitThread
[i
] < 0) {
638 jfs_err("init_jfs_fs: fork failed w/rc = %d",
641 goto kill_committask
;
643 /* Wait until thread starts */
644 wait_for_completion(&jfsIOwait
);
647 jfsSyncThread
= kernel_thread(jfs_sync
, NULL
, CLONE_KERNEL
);
648 if (jfsSyncThread
< 0) {
649 jfs_err("init_jfs_fs: fork failed w/rc = %d", jfsSyncThread
);
650 goto kill_committask
;
652 wait_for_completion(&jfsIOwait
); /* Wait until thread starts */
658 return register_filesystem(&jfs_fs_type
);
661 jfs_stop_threads
= 1;
662 wake_up_all(&jfs_commit_thread_wait
);
663 for (i
= 0; i
< commit_threads
; i
++)
664 wait_for_completion(&jfsIOwait
);
666 wake_up(&jfs_IO_thread_wait
);
667 wait_for_completion(&jfsIOwait
); /* Wait for thread exit */
673 kmem_cache_destroy(jfs_inode_cachep
);
677 static void __exit
exit_jfs_fs(void)
681 jfs_info("exit_jfs_fs called");
683 jfs_stop_threads
= 1;
686 wake_up(&jfs_IO_thread_wait
);
687 wait_for_completion(&jfsIOwait
); /* Wait until IO thread exits */
688 wake_up_all(&jfs_commit_thread_wait
);
689 for (i
= 0; i
< commit_threads
; i
++)
690 wait_for_completion(&jfsIOwait
);
691 wake_up(&jfs_sync_thread_wait
);
692 wait_for_completion(&jfsIOwait
); /* Wait until Sync thread exits */
696 unregister_filesystem(&jfs_fs_type
);
697 kmem_cache_destroy(jfs_inode_cachep
);
700 module_init(init_jfs_fs
)
701 module_exit(exit_jfs_fs
)