blob: 2234c73fc5773531bd59ee81b3bbdf45d05a83ff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
4 *
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
Dave Kleikamp63f83c92006-10-02 09:55:27 -05007 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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.
14 *
15 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050016 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/parser.h>
23#include <linux/completion.h>
24#include <linux/vfs.h>
Jan Kara74abb982008-07-25 01:46:51 -070025#include <linux/quotaops.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070026#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/moduleparam.h>
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060028#include <linux/kthread.h>
Christoph Hellwig9a59f452005-06-23 00:10:19 -070029#include <linux/posix_acl.h>
Dave Kleikamp115ff502006-07-26 14:52:13 -050030#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Coly Lib5c816a2009-01-21 00:05:39 +080032#include <linux/crc32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/uaccess.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070034#include <linux/seq_file.h>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020035#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include "jfs_incore.h"
38#include "jfs_filsys.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050039#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "jfs_metapage.h"
41#include "jfs_superblock.h"
42#include "jfs_dmap.h"
43#include "jfs_imap.h"
44#include "jfs_acl.h"
45#include "jfs_debug.h"
46
47MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
48MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
49MODULE_LICENSE("GPL");
50
Christoph Lametere18b8902006-12-06 20:33:20 -080051static struct kmem_cache * jfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080053static const struct super_operations jfs_super_operations;
Christoph Hellwig39655162007-10-21 16:42:17 -070054static const struct export_operations jfs_export_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static struct file_system_type jfs_fs_type;
56
57#define MAX_COMMIT_THREADS 64
58static int commit_threads = 0;
59module_param(commit_threads, int, 0);
60MODULE_PARM_DESC(commit_threads, "Number of commit threads");
61
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060062static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
63struct task_struct *jfsIOthread;
64struct task_struct *jfsSyncThread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#ifdef CONFIG_JFS_DEBUG
67int jfsloglevel = JFS_LOGLEVEL_WARN;
68module_param(jfsloglevel, int, 0644);
69MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
70#endif
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void jfs_handle_error(struct super_block *sb)
73{
74 struct jfs_sb_info *sbi = JFS_SBI(sb);
75
76 if (sb->s_flags & MS_RDONLY)
77 return;
78
79 updateSuper(sb, FM_DIRTY);
80
81 if (sbi->flag & JFS_ERR_PANIC)
82 panic("JFS (device %s): panic forced after error\n",
83 sb->s_id);
84 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
85 jfs_err("ERROR: (device %s): remounting filesystem "
86 "as read-only\n",
87 sb->s_id);
88 sb->s_flags |= MS_RDONLY;
Dave Kleikamp63f83c92006-10-02 09:55:27 -050089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* nothing is done for continue beyond marking the superblock dirty */
92}
93
94void jfs_error(struct super_block *sb, const char * function, ...)
95{
96 static char error_buf[256];
97 va_list args;
98
99 va_start(args, function);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -0800100 vsnprintf(error_buf, sizeof(error_buf), function, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 va_end(args);
102
103 printk(KERN_ERR "ERROR: (device %s): %s\n", sb->s_id, error_buf);
104
105 jfs_handle_error(sb);
106}
107
108static struct inode *jfs_alloc_inode(struct super_block *sb)
109{
110 struct jfs_inode_info *jfs_inode;
111
112 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
113 if (!jfs_inode)
114 return NULL;
115 return &jfs_inode->vfs_inode;
116}
117
118static void jfs_destroy_inode(struct inode *inode)
119{
120 struct jfs_inode_info *ji = JFS_IP(inode);
121
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500122 BUG_ON(!list_empty(&ji->anon_inode_list));
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 spin_lock_irq(&ji->ag_lock);
125 if (ji->active_ag != -1) {
126 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
127 atomic_dec(&bmap->db_active[ji->active_ag]);
128 ji->active_ag = -1;
129 }
130 spin_unlock_irq(&ji->ag_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 kmem_cache_free(jfs_inode_cachep, ji);
132}
133
David Howells726c3342006-06-23 02:02:58 -0700134static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
David Howells726c3342006-06-23 02:02:58 -0700136 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 s64 maxinodes;
138 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
139
140 jfs_info("In jfs_statfs");
141 buf->f_type = JFS_SUPER_MAGIC;
142 buf->f_bsize = sbi->bsize;
143 buf->f_blocks = sbi->bmap->db_mapsize;
144 buf->f_bfree = sbi->bmap->db_nfree;
145 buf->f_bavail = sbi->bmap->db_nfree;
146 /*
147 * If we really return the number of allocated & free inodes, some
148 * applications will fail because they won't see enough free inodes.
149 * We'll try to calculate some guess as to how may inodes we can
150 * really allocate
151 *
152 * buf->f_files = atomic_read(&imap->im_numinos);
153 * buf->f_ffree = atomic_read(&imap->im_numfree);
154 */
155 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
156 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
157 << L2INOSPEREXT), (s64) 0xffffffffLL);
158 buf->f_files = maxinodes;
159 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
160 atomic_read(&imap->im_numfree));
Coly Lib5c816a2009-01-21 00:05:39 +0800161 buf->f_fsid.val[0] = (u32)crc32_le(0, sbi->uuid, sizeof(sbi->uuid)/2);
162 buf->f_fsid.val[1] = (u32)crc32_le(0, sbi->uuid + sizeof(sbi->uuid)/2,
163 sizeof(sbi->uuid)/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 buf->f_namelen = JFS_NAME_MAX;
166 return 0;
167}
168
169static void jfs_put_super(struct super_block *sb)
170{
171 struct jfs_sb_info *sbi = JFS_SBI(sb);
172 int rc;
173
174 jfs_info("In jfs_put_super");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200175
176 lock_kernel();
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 rc = jfs_umount(sb);
179 if (rc)
180 jfs_err("jfs_umount failed with return code %d", rc);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000181
182 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600184 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
185 iput(sbi->direct_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 kfree(sbi);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200188
189 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192enum {
193 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700194 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600195 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
Steven Whitehousea447c092008-10-13 10:46:57 +0100198static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 {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"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700207 {Opt_usrquota, "usrquota"},
208 {Opt_grpquota, "grpquota"},
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600209 {Opt_uid, "uid=%u"},
210 {Opt_gid, "gid=%u"},
211 {Opt_umask, "umask=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 {Opt_err, NULL}
213};
214
215static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
216 int *flag)
217{
218 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
219 char *p;
220 struct jfs_sb_info *sbi = JFS_SBI(sb);
221
222 *newLVSize = 0;
223
224 if (!options)
225 return 1;
226
227 while ((p = strsep(&options, ",")) != NULL) {
228 substring_t args[MAX_OPT_ARGS];
229 int token;
230 if (!*p)
231 continue;
232
233 token = match_token(p, tokens, args);
234 switch (token) {
235 case Opt_integrity:
236 *flag &= ~JFS_NOINTEGRITY;
237 break;
238 case Opt_nointegrity:
239 *flag |= JFS_NOINTEGRITY;
240 break;
241 case Opt_ignore:
242 /* Silently ignore the quota options */
243 /* Don't do anything ;-) */
244 break;
245 case Opt_iocharset:
246 if (nls_map && nls_map != (void *) -1)
247 unload_nls(nls_map);
248 if (!strcmp(args[0].from, "none"))
249 nls_map = NULL;
250 else {
251 nls_map = load_nls(args[0].from);
252 if (!nls_map) {
253 printk(KERN_ERR
254 "JFS: charset not found\n");
255 goto cleanup;
256 }
257 }
258 break;
259 case Opt_resize:
260 {
261 char *resize = args[0].from;
262 *newLVSize = simple_strtoull(resize, &resize, 0);
263 break;
264 }
265 case Opt_resize_nosize:
266 {
267 *newLVSize = sb->s_bdev->bd_inode->i_size >>
268 sb->s_blocksize_bits;
269 if (*newLVSize == 0)
270 printk(KERN_ERR
271 "JFS: Cannot determine volume size\n");
272 break;
273 }
274 case Opt_errors:
275 {
276 char *errors = args[0].from;
277 if (!errors || !*errors)
278 goto cleanup;
279 if (!strcmp(errors, "continue")) {
280 *flag &= ~JFS_ERR_REMOUNT_RO;
281 *flag &= ~JFS_ERR_PANIC;
282 *flag |= JFS_ERR_CONTINUE;
283 } else if (!strcmp(errors, "remount-ro")) {
284 *flag &= ~JFS_ERR_CONTINUE;
285 *flag &= ~JFS_ERR_PANIC;
286 *flag |= JFS_ERR_REMOUNT_RO;
287 } else if (!strcmp(errors, "panic")) {
288 *flag &= ~JFS_ERR_CONTINUE;
289 *flag &= ~JFS_ERR_REMOUNT_RO;
290 *flag |= JFS_ERR_PANIC;
291 } else {
292 printk(KERN_ERR
293 "JFS: %s is an invalid error handler\n",
294 errors);
295 goto cleanup;
296 }
297 break;
298 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700299
Dave Kleikamp115ff502006-07-26 14:52:13 -0500300#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700301 case Opt_quota:
302 case Opt_usrquota:
303 *flag |= JFS_USRQUOTA;
304 break;
305 case Opt_grpquota:
306 *flag |= JFS_GRPQUOTA;
307 break;
308#else
309 case Opt_usrquota:
310 case Opt_grpquota:
311 case Opt_quota:
312 printk(KERN_ERR
313 "JFS: quota operations not supported\n");
314 break;
315#endif
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600316 case Opt_uid:
317 {
318 char *uid = args[0].from;
319 sbi->uid = simple_strtoul(uid, &uid, 0);
320 break;
321 }
322 case Opt_gid:
323 {
324 char *gid = args[0].from;
325 sbi->gid = simple_strtoul(gid, &gid, 0);
326 break;
327 }
328 case Opt_umask:
329 {
330 char *umask = args[0].from;
331 sbi->umask = simple_strtoul(umask, &umask, 8);
332 if (sbi->umask & ~0777) {
333 printk(KERN_ERR
334 "JFS: Invalid value of umask\n");
335 goto cleanup;
336 }
337 break;
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 default:
340 printk("jfs: Unrecognized mount option \"%s\" "
341 " or missing value\n", p);
342 goto cleanup;
343 }
344 }
345
346 if (nls_map != (void *) -1) {
347 /* Discard old (if remount) */
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000348 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 sbi->nls_tab = nls_map;
350 }
351 return 1;
352
353cleanup:
354 if (nls_map && nls_map != (void *) -1)
355 unload_nls(nls_map);
356 return 0;
357}
358
359static int jfs_remount(struct super_block *sb, int *flags, char *data)
360{
361 s64 newLVSize = 0;
362 int rc = 0;
363 int flag = JFS_SBI(sb)->flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200364 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (!parse_options(data, sb, &newLVSize, &flag)) {
367 return -EINVAL;
368 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200369 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (newLVSize) {
371 if (sb->s_flags & MS_RDONLY) {
372 printk(KERN_ERR
373 "JFS: resize requires volume to be mounted read-write\n");
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200374 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return -EROFS;
376 }
377 rc = jfs_extendfs(sb, newLVSize, 0);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200378 if (rc) {
379 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return rc;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600385 /*
386 * Invalidate any previously read metadata. fsck may have
387 * changed the on-disk data since we mounted r/o
388 */
389 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200392 ret = jfs_mount_rw(sb, 1);
393 unlock_kernel();
394 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
397 rc = jfs_umount_rw(sb);
398 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200399 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return rc;
401 }
402 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
403 if (!(sb->s_flags & MS_RDONLY)) {
404 rc = jfs_umount_rw(sb);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200405 if (rc) {
406 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return rc;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200410 ret = jfs_mount_rw(sb, 1);
411 unlock_kernel();
412 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 JFS_SBI(sb)->flag = flag;
415
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200416 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return 0;
418}
419
420static int jfs_fill_super(struct super_block *sb, void *data, int silent)
421{
422 struct jfs_sb_info *sbi;
423 struct inode *inode;
424 int rc;
425 s64 newLVSize = 0;
David Howellseab1df72008-02-07 00:15:43 -0800426 int flag, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
429
430 if (!new_valid_dev(sb->s_bdev->bd_dev))
431 return -EOVERFLOW;
432
Eric Sesterhenn5b3030e2006-02-23 09:47:13 -0600433 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (!sbi)
Akinobu Mita087387f2006-09-14 09:22:38 -0500435 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sb->s_fs_info = sbi;
437 sbi->sb = sb;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600438 sbi->uid = sbi->gid = sbi->umask = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* initialize the mount flag and determine the default error handler */
441 flag = JFS_ERR_REMOUNT_RO;
442
443 if (!parse_options((char *) data, sb, &newLVSize, &flag)) {
444 kfree(sbi);
445 return -EINVAL;
446 }
447 sbi->flag = flag;
448
449#ifdef CONFIG_JFS_POSIX_ACL
450 sb->s_flags |= MS_POSIXACL;
451#endif
452
453 if (newLVSize) {
454 printk(KERN_ERR "resize option for remount only\n");
455 return -EINVAL;
456 }
457
458 /*
459 * Initialize blocksize to 4K.
460 */
461 sb_set_blocksize(sb, PSIZE);
462
463 /*
464 * Set method vectors.
465 */
466 sb->s_op = &jfs_super_operations;
467 sb->s_export_op = &jfs_export_operations;
468
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600469 /*
470 * Initialize direct-mapping inode/address-space
471 */
472 inode = new_inode(sb);
David Howellseab1df72008-02-07 00:15:43 -0800473 if (inode == NULL) {
474 ret = -ENOMEM;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600475 goto out_kfree;
David Howellseab1df72008-02-07 00:15:43 -0800476 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600477 inode->i_ino = 0;
478 inode->i_nlink = 1;
479 inode->i_size = sb->s_bdev->bd_inode->i_size;
480 inode->i_mapping->a_ops = &jfs_metapage_aops;
Dave Kleikampac17b8b2005-10-03 15:32:11 -0500481 insert_inode_hash(inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600482 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
483
484 sbi->direct_inode = inode;
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 rc = jfs_mount(sb);
487 if (rc) {
488 if (!silent) {
489 jfs_err("jfs_mount failed w/return code = %d", rc);
490 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600491 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493 if (sb->s_flags & MS_RDONLY)
494 sbi->log = NULL;
495 else {
496 rc = jfs_mount_rw(sb, 0);
497 if (rc) {
498 if (!silent) {
499 jfs_err("jfs_mount_rw failed, return code = %d",
500 rc);
501 }
502 goto out_no_rw;
503 }
504 }
505
506 sb->s_magic = JFS_SUPER_MAGIC;
507
David Howellseab1df72008-02-07 00:15:43 -0800508 inode = jfs_iget(sb, ROOT_I);
509 if (IS_ERR(inode)) {
510 ret = PTR_ERR(inode);
Dave Kleikamp6536d282008-05-21 10:45:16 -0500511 goto out_no_rw;
David Howellseab1df72008-02-07 00:15:43 -0800512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 sb->s_root = d_alloc_root(inode);
514 if (!sb->s_root)
515 goto out_no_root;
516
517 if (sbi->mntflag & JFS_OS2)
518 sb->s_root->d_op = &jfs_ci_dentry_operations;
519
520 /* logical blocks are represented by 40 bits in pxd_t, etc. */
521 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
522#if BITS_PER_LONG == 32
523 /*
524 * Page cache is indexed by long.
525 * I would use MAX_LFS_FILESIZE, but it's only half as big
526 */
527 sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1, sb->s_maxbytes);
528#endif
529 sb->s_time_gran = 1;
530 return 0;
531
532out_no_root:
Dave Kleikamp6536d282008-05-21 10:45:16 -0500533 jfs_err("jfs_read_super: get root dentry failed");
534 iput(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536out_no_rw:
537 rc = jfs_umount(sb);
538 if (rc) {
539 jfs_err("jfs_umount failed with return code %d", rc);
540 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600541out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800542 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600543 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
544 make_bad_inode(sbi->direct_inode);
545 iput(sbi->direct_inode);
546 sbi->direct_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547out_kfree:
548 if (sbi->nls_tab)
549 unload_nls(sbi->nls_tab);
550 kfree(sbi);
David Howellseab1df72008-02-07 00:15:43 -0800551 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Takashi Satoc4be0c12009-01-09 16:40:58 -0800554static int jfs_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct jfs_sb_info *sbi = JFS_SBI(sb);
557 struct jfs_log *log = sbi->log;
558
559 if (!(sb->s_flags & MS_RDONLY)) {
560 txQuiesce(sb);
561 lmLogShutdown(log);
562 updateSuper(sb, FM_CLEAN);
563 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800564 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Takashi Satoc4be0c12009-01-09 16:40:58 -0800567static int jfs_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct jfs_sb_info *sbi = JFS_SBI(sb);
570 struct jfs_log *log = sbi->log;
571 int rc = 0;
572
573 if (!(sb->s_flags & MS_RDONLY)) {
574 updateSuper(sb, FM_MOUNT);
575 if ((rc = lmLogInit(log)))
576 jfs_err("jfs_unlock failed with return code %d", rc);
577 else
578 txResume(sb);
579 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
David Howells454e2392006-06-23 02:02:57 -0700583static int jfs_get_sb(struct file_system_type *fs_type,
584 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
David Howells454e2392006-06-23 02:02:57 -0700586 return get_sb_bdev(fs_type, flags, dev_name, data, jfs_fill_super,
587 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static int jfs_sync_fs(struct super_block *sb, int wait)
591{
592 struct jfs_log *log = JFS_SBI(sb)->log;
593
594 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600595 if (log) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500597 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 return 0;
601}
602
Mark Bellon8fc27512005-09-06 15:16:54 -0700603static int jfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
604{
605 struct jfs_sb_info *sbi = JFS_SBI(vfs->mnt_sb);
606
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600607 if (sbi->uid != -1)
608 seq_printf(seq, ",uid=%d", sbi->uid);
609 if (sbi->gid != -1)
610 seq_printf(seq, ",gid=%d", sbi->gid);
611 if (sbi->umask != -1)
612 seq_printf(seq, ",umask=%03o", sbi->umask);
Mark Bellon8fc27512005-09-06 15:16:54 -0700613 if (sbi->flag & JFS_NOINTEGRITY)
614 seq_puts(seq, ",nointegrity");
Miklos Szeredi5c5e32c2008-01-24 16:13:21 -0600615 if (sbi->nls_tab)
616 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
617 if (sbi->flag & JFS_ERR_CONTINUE)
618 seq_printf(seq, ",errors=continue");
619 if (sbi->flag & JFS_ERR_PANIC)
620 seq_printf(seq, ",errors=panic");
Mark Bellon8fc27512005-09-06 15:16:54 -0700621
Dave Kleikamp115ff502006-07-26 14:52:13 -0500622#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700623 if (sbi->flag & JFS_USRQUOTA)
624 seq_puts(seq, ",usrquota");
625
626 if (sbi->flag & JFS_GRPQUOTA)
627 seq_puts(seq, ",grpquota");
628#endif
629
630 return 0;
631}
632
Dave Kleikamp115ff502006-07-26 14:52:13 -0500633#ifdef CONFIG_QUOTA
634
635/* Read data from quotafile - avoid pagecache and such because we cannot afford
636 * acquiring the locks... As quota files are never truncated and quota code
637 * itself serializes the operations (and noone else should touch the files)
638 * we don't have to be afraid of races */
639static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
640 size_t len, loff_t off)
641{
642 struct inode *inode = sb_dqopt(sb)->files[type];
643 sector_t blk = off >> sb->s_blocksize_bits;
644 int err = 0;
645 int offset = off & (sb->s_blocksize - 1);
646 int tocopy;
647 size_t toread;
648 struct buffer_head tmp_bh;
649 struct buffer_head *bh;
650 loff_t i_size = i_size_read(inode);
651
652 if (off > i_size)
653 return 0;
654 if (off+len > i_size)
655 len = i_size-off;
656 toread = len;
657 while (toread > 0) {
658 tocopy = sb->s_blocksize - offset < toread ?
659 sb->s_blocksize - offset : toread;
660
661 tmp_bh.b_state = 0;
662 tmp_bh.b_size = 1 << inode->i_blkbits;
663 err = jfs_get_block(inode, blk, &tmp_bh, 0);
664 if (err)
665 return err;
666 if (!buffer_mapped(&tmp_bh)) /* A hole? */
667 memset(data, 0, tocopy);
668 else {
669 bh = sb_bread(sb, tmp_bh.b_blocknr);
670 if (!bh)
671 return -EIO;
672 memcpy(data, bh->b_data+offset, tocopy);
673 brelse(bh);
674 }
675 offset = 0;
676 toread -= tocopy;
677 data += tocopy;
678 blk++;
679 }
680 return len;
681}
682
683/* Write to quotafile */
684static ssize_t jfs_quota_write(struct super_block *sb, int type,
685 const char *data, size_t len, loff_t off)
686{
687 struct inode *inode = sb_dqopt(sb)->files[type];
688 sector_t blk = off >> sb->s_blocksize_bits;
689 int err = 0;
690 int offset = off & (sb->s_blocksize - 1);
691 int tocopy;
692 size_t towrite = len;
693 struct buffer_head tmp_bh;
694 struct buffer_head *bh;
695
696 mutex_lock(&inode->i_mutex);
697 while (towrite > 0) {
698 tocopy = sb->s_blocksize - offset < towrite ?
699 sb->s_blocksize - offset : towrite;
700
701 tmp_bh.b_state = 0;
Dave Kleikamp8bcb2832006-07-28 08:46:05 -0500702 tmp_bh.b_size = 1 << inode->i_blkbits;
Dave Kleikamp115ff502006-07-26 14:52:13 -0500703 err = jfs_get_block(inode, blk, &tmp_bh, 1);
704 if (err)
705 goto out;
706 if (offset || tocopy != sb->s_blocksize)
707 bh = sb_bread(sb, tmp_bh.b_blocknr);
708 else
709 bh = sb_getblk(sb, tmp_bh.b_blocknr);
710 if (!bh) {
711 err = -EIO;
712 goto out;
713 }
714 lock_buffer(bh);
715 memcpy(bh->b_data+offset, data, tocopy);
716 flush_dcache_page(bh->b_page);
717 set_buffer_uptodate(bh);
718 mark_buffer_dirty(bh);
719 unlock_buffer(bh);
720 brelse(bh);
721 offset = 0;
722 towrite -= tocopy;
723 data += tocopy;
724 blk++;
725 }
726out:
Dan Carpenter9c836332009-04-07 14:48:16 +0300727 if (len == towrite) {
728 mutex_unlock(&inode->i_mutex);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500729 return err;
Dan Carpenter9c836332009-04-07 14:48:16 +0300730 }
Dave Kleikamp115ff502006-07-26 14:52:13 -0500731 if (inode->i_size < off+len-towrite)
732 i_size_write(inode, off+len-towrite);
733 inode->i_version++;
734 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
735 mark_inode_dirty(inode);
736 mutex_unlock(&inode->i_mutex);
737 return len - towrite;
738}
739
740#endif
741
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800742static const struct super_operations jfs_super_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 .alloc_inode = jfs_alloc_inode,
744 .destroy_inode = jfs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .dirty_inode = jfs_dirty_inode,
746 .write_inode = jfs_write_inode,
747 .delete_inode = jfs_delete_inode,
748 .put_super = jfs_put_super,
749 .sync_fs = jfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800750 .freeze_fs = jfs_freeze,
751 .unfreeze_fs = jfs_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 .statfs = jfs_statfs,
753 .remount_fs = jfs_remount,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500754 .show_options = jfs_show_options,
755#ifdef CONFIG_QUOTA
756 .quota_read = jfs_quota_read,
757 .quota_write = jfs_quota_write,
758#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759};
760
Christoph Hellwig39655162007-10-21 16:42:17 -0700761static const struct export_operations jfs_export_operations = {
Christoph Hellwigd425de72007-10-21 16:42:09 -0700762 .fh_to_dentry = jfs_fh_to_dentry,
763 .fh_to_parent = jfs_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 .get_parent = jfs_get_parent,
765};
766
767static struct file_system_type jfs_fs_type = {
768 .owner = THIS_MODULE,
769 .name = "jfs",
770 .get_sb = jfs_get_sb,
771 .kill_sb = kill_block_super,
772 .fs_flags = FS_REQUIRES_DEV,
773};
774
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700775static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
778
Christoph Lametera35afb82007-05-16 22:10:57 -0700779 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
780 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
781 init_rwsem(&jfs_ip->rdwrlock);
782 mutex_init(&jfs_ip->commit_mutex);
783 init_rwsem(&jfs_ip->xattr_sem);
784 spin_lock_init(&jfs_ip->ag_lock);
785 jfs_ip->active_ag = -1;
Christoph Lametera35afb82007-05-16 22:10:57 -0700786 inode_init_once(&jfs_ip->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789static int __init init_jfs_fs(void)
790{
791 int i;
792 int rc;
793
794 jfs_inode_cachep =
Dave Kleikamp63f83c92006-10-02 09:55:27 -0500795 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800796 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
Paul Mundt20c2df82007-07-20 10:11:58 +0900797 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (jfs_inode_cachep == NULL)
799 return -ENOMEM;
800
801 /*
802 * Metapage initialization
803 */
804 rc = metapage_init();
805 if (rc) {
806 jfs_err("metapage_init failed w/rc = %d", rc);
807 goto free_slab;
808 }
809
810 /*
811 * Transaction Manager initialization
812 */
813 rc = txInit();
814 if (rc) {
815 jfs_err("txInit failed w/rc = %d", rc);
816 goto free_metapage;
817 }
818
819 /*
820 * I/O completion thread (endio)
821 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600822 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
823 if (IS_ERR(jfsIOthread)) {
824 rc = PTR_ERR(jfsIOthread);
825 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto end_txmngr;
827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 if (commit_threads < 1)
830 commit_threads = num_online_cpus();
831 if (commit_threads > MAX_COMMIT_THREADS)
832 commit_threads = MAX_COMMIT_THREADS;
833
834 for (i = 0; i < commit_threads; i++) {
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600835 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL, "jfsCommit");
836 if (IS_ERR(jfsCommitThread[i])) {
837 rc = PTR_ERR(jfsCommitThread[i]);
838 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 commit_threads = i;
840 goto kill_committask;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600844 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
845 if (IS_ERR(jfsSyncThread)) {
846 rc = PTR_ERR(jfsSyncThread);
847 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 goto kill_committask;
849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851#ifdef PROC_FS_JFS
852 jfs_proc_init();
853#endif
854
855 return register_filesystem(&jfs_fs_type);
856
857kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600859 kthread_stop(jfsCommitThread[i]);
860 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861end_txmngr:
862 txExit();
863free_metapage:
864 metapage_exit();
865free_slab:
866 kmem_cache_destroy(jfs_inode_cachep);
867 return rc;
868}
869
870static void __exit exit_jfs_fs(void)
871{
872 int i;
873
874 jfs_info("exit_jfs_fs called");
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 txExit();
877 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600878
879 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600881 kthread_stop(jfsCommitThread[i]);
882 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883#ifdef PROC_FS_JFS
884 jfs_proc_clean();
885#endif
886 unregister_filesystem(&jfs_fs_type);
887 kmem_cache_destroy(jfs_inode_cachep);
888}
889
890module_init(init_jfs_fs)
891module_exit(exit_jfs_fs)