jfs: use generic posix ACL infrastructure
[linux-block.git] / fs / jfs / super.c
CommitLineData
1da177e4
LT
1/*
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
63f83c9f 7 * the Free Software Foundation; either version 2 of the License, or
1da177e4 8 * (at your option) any later version.
63f83c9f 9 *
1da177e4
LT
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.
14 *
15 * You should have received a copy of the GNU General Public License
63f83c9f 16 * along with this program; if not, write to the Free Software
1da177e4
LT
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/fs.h>
1da177e4
LT
21#include <linux/module.h>
22#include <linux/parser.h>
23#include <linux/completion.h>
24#include <linux/vfs.h>
74abb989 25#include <linux/quotaops.h>
8fc2751b 26#include <linux/mount.h>
1da177e4 27#include <linux/moduleparam.h>
91dbb4de 28#include <linux/kthread.h>
9a59f452 29#include <linux/posix_acl.h>
115ff50b 30#include <linux/buffer_head.h>
a5694255 31#include <linux/exportfs.h>
b5c816a4 32#include <linux/crc32.h>
5a0e3ad6 33#include <linux/slab.h>
1da177e4 34#include <asm/uaccess.h>
8fc2751b 35#include <linux/seq_file.h>
b40c2e66 36#include <linux/blkdev.h>
1da177e4
LT
37
38#include "jfs_incore.h"
39#include "jfs_filsys.h"
1868f4aa 40#include "jfs_inode.h"
1da177e4
LT
41#include "jfs_metapage.h"
42#include "jfs_superblock.h"
43#include "jfs_dmap.h"
44#include "jfs_imap.h"
45#include "jfs_acl.h"
46#include "jfs_debug.h"
2cc6a5a0 47#include "jfs_xattr.h"
1da177e4
LT
48
49MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
50MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
51MODULE_LICENSE("GPL");
52
e18b890b 53static struct kmem_cache * jfs_inode_cachep;
1da177e4 54
ee9b6d61 55static const struct super_operations jfs_super_operations;
39655164 56static const struct export_operations jfs_export_operations;
1da177e4
LT
57static struct file_system_type jfs_fs_type;
58
59#define MAX_COMMIT_THREADS 64
60static int commit_threads = 0;
61module_param(commit_threads, int, 0);
62MODULE_PARM_DESC(commit_threads, "Number of commit threads");
63
91dbb4de
CH
64static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
65struct task_struct *jfsIOthread;
66struct task_struct *jfsSyncThread;
1da177e4
LT
67
68#ifdef CONFIG_JFS_DEBUG
69int jfsloglevel = JFS_LOGLEVEL_WARN;
70module_param(jfsloglevel, int, 0644);
71MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
72#endif
73
1da177e4
LT
74static void jfs_handle_error(struct super_block *sb)
75{
76 struct jfs_sb_info *sbi = JFS_SBI(sb);
77
78 if (sb->s_flags & MS_RDONLY)
79 return;
80
81 updateSuper(sb, FM_DIRTY);
82
83 if (sbi->flag & JFS_ERR_PANIC)
84 panic("JFS (device %s): panic forced after error\n",
85 sb->s_id);
86 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
87 jfs_err("ERROR: (device %s): remounting filesystem "
88 "as read-only\n",
89 sb->s_id);
90 sb->s_flags |= MS_RDONLY;
63f83c9f 91 }
1da177e4
LT
92
93 /* nothing is done for continue beyond marking the superblock dirty */
94}
95
eb8630d7 96void jfs_error(struct super_block *sb, const char *fmt, ...)
1da177e4 97{
eb8630d7 98 struct va_format vaf;
1da177e4
LT
99 va_list args;
100
eb8630d7
JP
101 va_start(args, fmt);
102
103 vaf.fmt = fmt;
104 vaf.va = &args;
1da177e4 105
eb8630d7
JP
106 pr_err("ERROR: (device %s): %pf: %pV\n",
107 sb->s_id, __builtin_return_address(0), &vaf);
108
109 va_end(args);
1da177e4
LT
110
111 jfs_handle_error(sb);
112}
113
114static struct inode *jfs_alloc_inode(struct super_block *sb)
115{
116 struct jfs_inode_info *jfs_inode;
117
118 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
119 if (!jfs_inode)
120 return NULL;
121 return &jfs_inode->vfs_inode;
122}
123
fa0d7e3d
NP
124static void jfs_i_callback(struct rcu_head *head)
125{
126 struct inode *inode = container_of(head, struct inode, i_rcu);
127 struct jfs_inode_info *ji = JFS_IP(inode);
fa0d7e3d
NP
128 kmem_cache_free(jfs_inode_cachep, ji);
129}
130
1da177e4
LT
131static void jfs_destroy_inode(struct inode *inode)
132{
133 struct jfs_inode_info *ji = JFS_IP(inode);
134
8a9cd6d6
DK
135 BUG_ON(!list_empty(&ji->anon_inode_list));
136
1da177e4
LT
137 spin_lock_irq(&ji->ag_lock);
138 if (ji->active_ag != -1) {
139 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
140 atomic_dec(&bmap->db_active[ji->active_ag]);
141 ji->active_ag = -1;
142 }
143 spin_unlock_irq(&ji->ag_lock);
fa0d7e3d 144 call_rcu(&inode->i_rcu, jfs_i_callback);
1da177e4
LT
145}
146
726c3342 147static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 148{
726c3342 149 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
1da177e4
LT
150 s64 maxinodes;
151 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
152
153 jfs_info("In jfs_statfs");
154 buf->f_type = JFS_SUPER_MAGIC;
155 buf->f_bsize = sbi->bsize;
156 buf->f_blocks = sbi->bmap->db_mapsize;
157 buf->f_bfree = sbi->bmap->db_nfree;
158 buf->f_bavail = sbi->bmap->db_nfree;
159 /*
160 * If we really return the number of allocated & free inodes, some
161 * applications will fail because they won't see enough free inodes.
4de80273 162 * We'll try to calculate some guess as to how many inodes we can
1da177e4
LT
163 * really allocate
164 *
165 * buf->f_files = atomic_read(&imap->im_numinos);
166 * buf->f_ffree = atomic_read(&imap->im_numfree);
167 */
168 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
169 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
170 << L2INOSPEREXT), (s64) 0xffffffffLL);
171 buf->f_files = maxinodes;
172 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
173 atomic_read(&imap->im_numfree));
b5c816a4
CL
174 buf->f_fsid.val[0] = (u32)crc32_le(0, sbi->uuid, sizeof(sbi->uuid)/2);
175 buf->f_fsid.val[1] = (u32)crc32_le(0, sbi->uuid + sizeof(sbi->uuid)/2,
176 sizeof(sbi->uuid)/2);
1da177e4
LT
177
178 buf->f_namelen = JFS_NAME_MAX;
179 return 0;
180}
181
182static void jfs_put_super(struct super_block *sb)
183{
184 struct jfs_sb_info *sbi = JFS_SBI(sb);
185 int rc;
186
187 jfs_info("In jfs_put_super");
6cfd0148 188
e0ccfd95
CH
189 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
190
1da177e4
LT
191 rc = jfs_umount(sb);
192 if (rc)
193 jfs_err("jfs_umount failed with return code %d", rc);
6d729e44
TG
194
195 unload_nls(sbi->nls_tab);
1da177e4 196
7fab479b
DK
197 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
198 iput(sbi->direct_inode);
7fab479b 199
1da177e4
LT
200 kfree(sbi);
201}
202
203enum {
204 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
8fc2751b 205 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
b40c2e66
TR
206 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
207 Opt_discard, Opt_nodiscard, Opt_discard_minblk
1da177e4
LT
208};
209
a447c093 210static const match_table_t tokens = {
1da177e4
LT
211 {Opt_integrity, "integrity"},
212 {Opt_nointegrity, "nointegrity"},
213 {Opt_iocharset, "iocharset=%s"},
214 {Opt_resize, "resize=%u"},
215 {Opt_resize_nosize, "resize"},
216 {Opt_errors, "errors=%s"},
217 {Opt_ignore, "noquota"},
218 {Opt_ignore, "quota"},
8fc2751b
MB
219 {Opt_usrquota, "usrquota"},
220 {Opt_grpquota, "grpquota"},
69eb66d7
DK
221 {Opt_uid, "uid=%u"},
222 {Opt_gid, "gid=%u"},
223 {Opt_umask, "umask=%u"},
b40c2e66
TR
224 {Opt_discard, "discard"},
225 {Opt_nodiscard, "nodiscard"},
226 {Opt_discard_minblk, "discard=%u"},
1da177e4
LT
227 {Opt_err, NULL}
228};
229
230static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
231 int *flag)
232{
233 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
234 char *p;
235 struct jfs_sb_info *sbi = JFS_SBI(sb);
236
237 *newLVSize = 0;
238
239 if (!options)
240 return 1;
241
242 while ((p = strsep(&options, ",")) != NULL) {
243 substring_t args[MAX_OPT_ARGS];
244 int token;
245 if (!*p)
246 continue;
247
248 token = match_token(p, tokens, args);
249 switch (token) {
250 case Opt_integrity:
251 *flag &= ~JFS_NOINTEGRITY;
252 break;
253 case Opt_nointegrity:
254 *flag |= JFS_NOINTEGRITY;
255 break;
256 case Opt_ignore:
257 /* Silently ignore the quota options */
258 /* Don't do anything ;-) */
259 break;
260 case Opt_iocharset:
261 if (nls_map && nls_map != (void *) -1)
262 unload_nls(nls_map);
263 if (!strcmp(args[0].from, "none"))
264 nls_map = NULL;
265 else {
266 nls_map = load_nls(args[0].from);
267 if (!nls_map) {
b40c2e66 268 pr_err("JFS: charset not found\n");
1da177e4
LT
269 goto cleanup;
270 }
271 }
272 break;
273 case Opt_resize:
274 {
275 char *resize = args[0].from;
276 *newLVSize = simple_strtoull(resize, &resize, 0);
277 break;
278 }
279 case Opt_resize_nosize:
280 {
281 *newLVSize = sb->s_bdev->bd_inode->i_size >>
282 sb->s_blocksize_bits;
283 if (*newLVSize == 0)
b40c2e66 284 pr_err("JFS: Cannot determine volume size\n");
1da177e4
LT
285 break;
286 }
287 case Opt_errors:
288 {
289 char *errors = args[0].from;
290 if (!errors || !*errors)
291 goto cleanup;
292 if (!strcmp(errors, "continue")) {
293 *flag &= ~JFS_ERR_REMOUNT_RO;
294 *flag &= ~JFS_ERR_PANIC;
295 *flag |= JFS_ERR_CONTINUE;
296 } else if (!strcmp(errors, "remount-ro")) {
297 *flag &= ~JFS_ERR_CONTINUE;
298 *flag &= ~JFS_ERR_PANIC;
299 *flag |= JFS_ERR_REMOUNT_RO;
300 } else if (!strcmp(errors, "panic")) {
301 *flag &= ~JFS_ERR_CONTINUE;
302 *flag &= ~JFS_ERR_REMOUNT_RO;
303 *flag |= JFS_ERR_PANIC;
304 } else {
b40c2e66 305 pr_err("JFS: %s is an invalid error handler\n",
1da177e4
LT
306 errors);
307 goto cleanup;
308 }
309 break;
310 }
8fc2751b 311
115ff50b 312#ifdef CONFIG_QUOTA
8fc2751b
MB
313 case Opt_quota:
314 case Opt_usrquota:
315 *flag |= JFS_USRQUOTA;
316 break;
317 case Opt_grpquota:
318 *flag |= JFS_GRPQUOTA;
319 break;
320#else
321 case Opt_usrquota:
322 case Opt_grpquota:
323 case Opt_quota:
b40c2e66 324 pr_err("JFS: quota operations not supported\n");
8fc2751b
MB
325 break;
326#endif
69eb66d7
DK
327 case Opt_uid:
328 {
329 char *uid = args[0].from;
c18cdc1a
EB
330 uid_t val = simple_strtoul(uid, &uid, 0);
331 sbi->uid = make_kuid(current_user_ns(), val);
332 if (!uid_valid(sbi->uid))
333 goto cleanup;
69eb66d7
DK
334 break;
335 }
b40c2e66 336
69eb66d7
DK
337 case Opt_gid:
338 {
339 char *gid = args[0].from;
c18cdc1a
EB
340 gid_t val = simple_strtoul(gid, &gid, 0);
341 sbi->gid = make_kgid(current_user_ns(), val);
342 if (!gid_valid(sbi->gid))
343 goto cleanup;
69eb66d7
DK
344 break;
345 }
b40c2e66 346
69eb66d7
DK
347 case Opt_umask:
348 {
349 char *umask = args[0].from;
350 sbi->umask = simple_strtoul(umask, &umask, 8);
351 if (sbi->umask & ~0777) {
b40c2e66 352 pr_err("JFS: Invalid value of umask\n");
69eb66d7
DK
353 goto cleanup;
354 }
355 break;
356 }
b40c2e66
TR
357
358 case Opt_discard:
359 {
360 struct request_queue *q = bdev_get_queue(sb->s_bdev);
361 /* if set to 1, even copying files will cause
362 * trimming :O
363 * -> user has more control over the online trimming
364 */
365 sbi->minblks_trim = 64;
366 if (blk_queue_discard(q)) {
367 *flag |= JFS_DISCARD;
368 } else {
369 pr_err("JFS: discard option " \
370 "not supported on device\n");
371 }
372 break;
373 }
374
375 case Opt_nodiscard:
376 *flag &= ~JFS_DISCARD;
377 break;
378
379 case Opt_discard_minblk:
380 {
381 struct request_queue *q = bdev_get_queue(sb->s_bdev);
382 char *minblks_trim = args[0].from;
383 if (blk_queue_discard(q)) {
384 *flag |= JFS_DISCARD;
385 sbi->minblks_trim = simple_strtoull(
386 minblks_trim, &minblks_trim, 0);
387 } else {
388 pr_err("JFS: discard option " \
389 "not supported on device\n");
390 }
391 break;
392 }
393
1da177e4
LT
394 default:
395 printk("jfs: Unrecognized mount option \"%s\" "
396 " or missing value\n", p);
397 goto cleanup;
398 }
399 }
400
401 if (nls_map != (void *) -1) {
402 /* Discard old (if remount) */
6d729e44 403 unload_nls(sbi->nls_tab);
1da177e4
LT
404 sbi->nls_tab = nls_map;
405 }
406 return 1;
407
408cleanup:
409 if (nls_map && nls_map != (void *) -1)
410 unload_nls(nls_map);
411 return 0;
412}
413
414static int jfs_remount(struct super_block *sb, int *flags, char *data)
415{
416 s64 newLVSize = 0;
417 int rc = 0;
418 int flag = JFS_SBI(sb)->flag;
337eb00a 419 int ret;
1da177e4
LT
420
421 if (!parse_options(data, sb, &newLVSize, &flag)) {
422 return -EINVAL;
423 }
22b26db6 424
1da177e4
LT
425 if (newLVSize) {
426 if (sb->s_flags & MS_RDONLY) {
b40c2e66
TR
427 pr_err("JFS: resize requires volume" \
428 " to be mounted read-write\n");
1da177e4
LT
429 return -EROFS;
430 }
431 rc = jfs_extendfs(sb, newLVSize, 0);
22b26db6 432 if (rc)
1da177e4
LT
433 return rc;
434 }
435
436 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
7fab479b
DK
437 /*
438 * Invalidate any previously read metadata. fsck may have
439 * changed the on-disk data since we mounted r/o
440 */
441 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
442
1da177e4 443 JFS_SBI(sb)->flag = flag;
337eb00a 444 ret = jfs_mount_rw(sb, 1);
c79d967d
CH
445
446 /* mark the fs r/w for quota activity */
447 sb->s_flags &= ~MS_RDONLY;
448
0f0dd62f 449 dquot_resume(sb, -1);
337eb00a 450 return ret;
1da177e4
LT
451 }
452 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
0f0dd62f
CH
453 rc = dquot_suspend(sb, -1);
454 if (rc < 0) {
0f0dd62f 455 return rc;
c79d967d 456 }
1da177e4
LT
457 rc = jfs_umount_rw(sb);
458 JFS_SBI(sb)->flag = flag;
459 return rc;
460 }
461 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
462 if (!(sb->s_flags & MS_RDONLY)) {
463 rc = jfs_umount_rw(sb);
22b26db6 464 if (rc)
1da177e4 465 return rc;
22b26db6 466
1da177e4 467 JFS_SBI(sb)->flag = flag;
337eb00a 468 ret = jfs_mount_rw(sb, 1);
337eb00a 469 return ret;
1da177e4
LT
470 }
471 JFS_SBI(sb)->flag = flag;
472
473 return 0;
474}
475
476static int jfs_fill_super(struct super_block *sb, void *data, int silent)
477{
478 struct jfs_sb_info *sbi;
479 struct inode *inode;
480 int rc;
481 s64 newLVSize = 0;
eab1df71 482 int flag, ret = -EINVAL;
1da177e4
LT
483
484 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
485
22b26db6 486 if (!new_valid_dev(sb->s_bdev->bd_dev))
1da177e4
LT
487 return -EOVERFLOW;
488
5b3030e3 489 sbi = kzalloc(sizeof (struct jfs_sb_info), GFP_KERNEL);
22b26db6 490 if (!sbi)
087387f9 491 return -ENOMEM;
22b26db6 492
1da177e4 493 sb->s_fs_info = sbi;
8de52778 494 sb->s_max_links = JFS_LINK_MAX;
1da177e4 495 sbi->sb = sb;
c18cdc1a
EB
496 sbi->uid = INVALID_UID;
497 sbi->gid = INVALID_GID;
498 sbi->umask = -1;
1da177e4
LT
499
500 /* initialize the mount flag and determine the default error handler */
501 flag = JFS_ERR_REMOUNT_RO;
502
684bdc7f
JB
503 if (!parse_options((char *) data, sb, &newLVSize, &flag))
504 goto out_kfree;
1da177e4
LT
505 sbi->flag = flag;
506
507#ifdef CONFIG_JFS_POSIX_ACL
508 sb->s_flags |= MS_POSIXACL;
509#endif
510
511 if (newLVSize) {
b40c2e66 512 pr_err("resize option for remount only\n");
684bdc7f 513 goto out_kfree;
1da177e4
LT
514 }
515
516 /*
517 * Initialize blocksize to 4K.
518 */
519 sb_set_blocksize(sb, PSIZE);
520
521 /*
522 * Set method vectors.
523 */
524 sb->s_op = &jfs_super_operations;
525 sb->s_export_op = &jfs_export_operations;
2cc6a5a0 526 sb->s_xattr = jfs_xattr_handlers;
123e9caf
CH
527#ifdef CONFIG_QUOTA
528 sb->dq_op = &dquot_operations;
287a8095 529 sb->s_qcop = &dquot_quotactl_ops;
123e9caf 530#endif
1da177e4 531
7fab479b
DK
532 /*
533 * Initialize direct-mapping inode/address-space
534 */
535 inode = new_inode(sb);
eab1df71
DH
536 if (inode == NULL) {
537 ret = -ENOMEM;
684bdc7f 538 goto out_unload;
eab1df71 539 }
7fab479b 540 inode->i_ino = 0;
7fab479b
DK
541 inode->i_size = sb->s_bdev->bd_inode->i_size;
542 inode->i_mapping->a_ops = &jfs_metapage_aops;
ac17b8b5 543 insert_inode_hash(inode);
7fab479b
DK
544 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
545
546 sbi->direct_inode = inode;
547
1da177e4
LT
548 rc = jfs_mount(sb);
549 if (rc) {
550 if (!silent) {
551 jfs_err("jfs_mount failed w/return code = %d", rc);
552 }
7fab479b 553 goto out_mount_failed;
1da177e4
LT
554 }
555 if (sb->s_flags & MS_RDONLY)
556 sbi->log = NULL;
557 else {
558 rc = jfs_mount_rw(sb, 0);
559 if (rc) {
560 if (!silent) {
561 jfs_err("jfs_mount_rw failed, return code = %d",
562 rc);
563 }
564 goto out_no_rw;
565 }
566 }
567
568 sb->s_magic = JFS_SUPER_MAGIC;
569
94b77bd8
AV
570 if (sbi->mntflag & JFS_OS2)
571 sb->s_d_op = &jfs_ci_dentry_operations;
572
eab1df71
DH
573 inode = jfs_iget(sb, ROOT_I);
574 if (IS_ERR(inode)) {
575 ret = PTR_ERR(inode);
6536d289 576 goto out_no_rw;
eab1df71 577 }
48fde701 578 sb->s_root = d_make_root(inode);
1da177e4
LT
579 if (!sb->s_root)
580 goto out_no_root;
581
1da177e4
LT
582 /* logical blocks are represented by 40 bits in pxd_t, etc. */
583 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
584#if BITS_PER_LONG == 32
585 /*
586 * Page cache is indexed by long.
587 * I would use MAX_LFS_FILESIZE, but it's only half as big
588 */
28ba0ec6 589 sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1, (u64)sb->s_maxbytes);
1da177e4
LT
590#endif
591 sb->s_time_gran = 1;
592 return 0;
593
594out_no_root:
6536d289 595 jfs_err("jfs_read_super: get root dentry failed");
1da177e4
LT
596
597out_no_rw:
598 rc = jfs_umount(sb);
599 if (rc) {
600 jfs_err("jfs_umount failed with return code %d", rc);
601 }
7fab479b 602out_mount_failed:
28fd1298 603 filemap_write_and_wait(sbi->direct_inode->i_mapping);
7fab479b
DK
604 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
605 make_bad_inode(sbi->direct_inode);
606 iput(sbi->direct_inode);
607 sbi->direct_inode = NULL;
684bdc7f 608out_unload:
1da177e4
LT
609 if (sbi->nls_tab)
610 unload_nls(sbi->nls_tab);
684bdc7f 611out_kfree:
1da177e4 612 kfree(sbi);
eab1df71 613 return ret;
1da177e4
LT
614}
615
c4be0c1d 616static int jfs_freeze(struct super_block *sb)
1da177e4
LT
617{
618 struct jfs_sb_info *sbi = JFS_SBI(sb);
619 struct jfs_log *log = sbi->log;
e9b37667 620 int rc = 0;
1da177e4
LT
621
622 if (!(sb->s_flags & MS_RDONLY)) {
623 txQuiesce(sb);
e9b37667
VM
624 rc = lmLogShutdown(log);
625 if (rc) {
eb8630d7 626 jfs_error(sb, "lmLogShutdown failed\n");
e9b37667
VM
627
628 /* let operations fail rather than hang */
629 txResume(sb);
630
631 return rc;
632 }
633 rc = updateSuper(sb, FM_CLEAN);
634 if (rc) {
635 jfs_err("jfs_freeze: updateSuper failed\n");
636 /*
637 * Don't fail here. Everything succeeded except
638 * marking the superblock clean, so there's really
639 * no harm in leaving it frozen for now.
640 */
641 }
1da177e4 642 }
c4be0c1d 643 return 0;
1da177e4
LT
644}
645
c4be0c1d 646static int jfs_unfreeze(struct super_block *sb)
1da177e4
LT
647{
648 struct jfs_sb_info *sbi = JFS_SBI(sb);
649 struct jfs_log *log = sbi->log;
650 int rc = 0;
651
652 if (!(sb->s_flags & MS_RDONLY)) {
e9b37667
VM
653 rc = updateSuper(sb, FM_MOUNT);
654 if (rc) {
eb8630d7 655 jfs_error(sb, "updateSuper failed\n");
e9b37667
VM
656 goto out;
657 }
658 rc = lmLogInit(log);
659 if (rc)
eb8630d7 660 jfs_error(sb, "lmLogInit failed\n");
e9b37667
VM
661out:
662 txResume(sb);
1da177e4 663 }
e9b37667 664 return rc;
1da177e4
LT
665}
666
152a0836
AV
667static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
668 int flags, const char *dev_name, void *data)
1da177e4 669{
152a0836 670 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
1da177e4
LT
671}
672
673static int jfs_sync_fs(struct super_block *sb, int wait)
674{
675 struct jfs_log *log = JFS_SBI(sb)->log;
676
677 /* log == NULL indicates read-only mount */
1c627829 678 if (log) {
a1177825
JK
679 /*
680 * Write quota structures to quota file, sync_blockdev() will
681 * write them to disk later
682 */
683 dquot_writeback_dquots(sb, -1);
1da177e4 684 jfs_flush_journal(log, wait);
cbc3d65e 685 jfs_syncpt(log, 0);
1c627829 686 }
1da177e4
LT
687
688 return 0;
689}
690
34c80b1d 691static int jfs_show_options(struct seq_file *seq, struct dentry *root)
8fc2751b 692{
34c80b1d 693 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
8fc2751b 694
c18cdc1a
EB
695 if (uid_valid(sbi->uid))
696 seq_printf(seq, ",uid=%d", from_kuid(&init_user_ns, sbi->uid));
697 if (gid_valid(sbi->gid))
698 seq_printf(seq, ",gid=%d", from_kgid(&init_user_ns, sbi->gid));
69eb66d7
DK
699 if (sbi->umask != -1)
700 seq_printf(seq, ",umask=%03o", sbi->umask);
8fc2751b
MB
701 if (sbi->flag & JFS_NOINTEGRITY)
702 seq_puts(seq, ",nointegrity");
b40c2e66
TR
703 if (sbi->flag & JFS_DISCARD)
704 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
5c5e32ce
MS
705 if (sbi->nls_tab)
706 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
707 if (sbi->flag & JFS_ERR_CONTINUE)
708 seq_printf(seq, ",errors=continue");
709 if (sbi->flag & JFS_ERR_PANIC)
710 seq_printf(seq, ",errors=panic");
8fc2751b 711
115ff50b 712#ifdef CONFIG_QUOTA
8fc2751b
MB
713 if (sbi->flag & JFS_USRQUOTA)
714 seq_puts(seq, ",usrquota");
715
716 if (sbi->flag & JFS_GRPQUOTA)
717 seq_puts(seq, ",grpquota");
718#endif
719
720 return 0;
721}
722
115ff50b
DK
723#ifdef CONFIG_QUOTA
724
725/* Read data from quotafile - avoid pagecache and such because we cannot afford
726 * acquiring the locks... As quota files are never truncated and quota code
25985edc 727 * itself serializes the operations (and no one else should touch the files)
115ff50b
DK
728 * we don't have to be afraid of races */
729static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
730 size_t len, loff_t off)
731{
732 struct inode *inode = sb_dqopt(sb)->files[type];
733 sector_t blk = off >> sb->s_blocksize_bits;
734 int err = 0;
735 int offset = off & (sb->s_blocksize - 1);
736 int tocopy;
737 size_t toread;
738 struct buffer_head tmp_bh;
739 struct buffer_head *bh;
740 loff_t i_size = i_size_read(inode);
741
742 if (off > i_size)
743 return 0;
744 if (off+len > i_size)
745 len = i_size-off;
746 toread = len;
747 while (toread > 0) {
748 tocopy = sb->s_blocksize - offset < toread ?
749 sb->s_blocksize - offset : toread;
750
751 tmp_bh.b_state = 0;
752 tmp_bh.b_size = 1 << inode->i_blkbits;
753 err = jfs_get_block(inode, blk, &tmp_bh, 0);
754 if (err)
755 return err;
756 if (!buffer_mapped(&tmp_bh)) /* A hole? */
757 memset(data, 0, tocopy);
758 else {
759 bh = sb_bread(sb, tmp_bh.b_blocknr);
760 if (!bh)
761 return -EIO;
762 memcpy(data, bh->b_data+offset, tocopy);
763 brelse(bh);
764 }
765 offset = 0;
766 toread -= tocopy;
767 data += tocopy;
768 blk++;
769 }
770 return len;
771}
772
773/* Write to quotafile */
774static ssize_t jfs_quota_write(struct super_block *sb, int type,
775 const char *data, size_t len, loff_t off)
776{
777 struct inode *inode = sb_dqopt(sb)->files[type];
778 sector_t blk = off >> sb->s_blocksize_bits;
779 int err = 0;
780 int offset = off & (sb->s_blocksize - 1);
781 int tocopy;
782 size_t towrite = len;
783 struct buffer_head tmp_bh;
784 struct buffer_head *bh;
785
786 mutex_lock(&inode->i_mutex);
787 while (towrite > 0) {
788 tocopy = sb->s_blocksize - offset < towrite ?
789 sb->s_blocksize - offset : towrite;
790
791 tmp_bh.b_state = 0;
8bcb2839 792 tmp_bh.b_size = 1 << inode->i_blkbits;
115ff50b
DK
793 err = jfs_get_block(inode, blk, &tmp_bh, 1);
794 if (err)
795 goto out;
796 if (offset || tocopy != sb->s_blocksize)
797 bh = sb_bread(sb, tmp_bh.b_blocknr);
798 else
799 bh = sb_getblk(sb, tmp_bh.b_blocknr);
800 if (!bh) {
801 err = -EIO;
802 goto out;
803 }
804 lock_buffer(bh);
805 memcpy(bh->b_data+offset, data, tocopy);
806 flush_dcache_page(bh->b_page);
807 set_buffer_uptodate(bh);
808 mark_buffer_dirty(bh);
809 unlock_buffer(bh);
810 brelse(bh);
811 offset = 0;
812 towrite -= tocopy;
813 data += tocopy;
814 blk++;
815 }
816out:
9c83633a
DC
817 if (len == towrite) {
818 mutex_unlock(&inode->i_mutex);
115ff50b 819 return err;
9c83633a 820 }
115ff50b
DK
821 if (inode->i_size < off+len-towrite)
822 i_size_write(inode, off+len-towrite);
823 inode->i_version++;
824 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
825 mark_inode_dirty(inode);
826 mutex_unlock(&inode->i_mutex);
827 return len - towrite;
828}
829
830#endif
831
ee9b6d61 832static const struct super_operations jfs_super_operations = {
1da177e4
LT
833 .alloc_inode = jfs_alloc_inode,
834 .destroy_inode = jfs_destroy_inode,
1da177e4
LT
835 .dirty_inode = jfs_dirty_inode,
836 .write_inode = jfs_write_inode,
62aff86f 837 .evict_inode = jfs_evict_inode,
1da177e4
LT
838 .put_super = jfs_put_super,
839 .sync_fs = jfs_sync_fs,
c4be0c1d
TS
840 .freeze_fs = jfs_freeze,
841 .unfreeze_fs = jfs_unfreeze,
1da177e4
LT
842 .statfs = jfs_statfs,
843 .remount_fs = jfs_remount,
115ff50b
DK
844 .show_options = jfs_show_options,
845#ifdef CONFIG_QUOTA
846 .quota_read = jfs_quota_read,
847 .quota_write = jfs_quota_write,
848#endif
1da177e4
LT
849};
850
39655164 851static const struct export_operations jfs_export_operations = {
d425de70
CH
852 .fh_to_dentry = jfs_fh_to_dentry,
853 .fh_to_parent = jfs_fh_to_parent,
1da177e4
LT
854 .get_parent = jfs_get_parent,
855};
856
857static struct file_system_type jfs_fs_type = {
858 .owner = THIS_MODULE,
859 .name = "jfs",
152a0836 860 .mount = jfs_do_mount,
1da177e4
LT
861 .kill_sb = kill_block_super,
862 .fs_flags = FS_REQUIRES_DEV,
863};
7f78e035 864MODULE_ALIAS_FS("jfs");
1da177e4 865
51cc5068 866static void init_once(void *foo)
1da177e4
LT
867{
868 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
869
a35afb83
CL
870 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
871 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
872 init_rwsem(&jfs_ip->rdwrlock);
873 mutex_init(&jfs_ip->commit_mutex);
874 init_rwsem(&jfs_ip->xattr_sem);
875 spin_lock_init(&jfs_ip->ag_lock);
876 jfs_ip->active_ag = -1;
a35afb83 877 inode_init_once(&jfs_ip->vfs_inode);
1da177e4
LT
878}
879
880static int __init init_jfs_fs(void)
881{
882 int i;
883 int rc;
884
885 jfs_inode_cachep =
63f83c9f 886 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
fffb60f9 887 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
20c2df83 888 init_once);
1da177e4
LT
889 if (jfs_inode_cachep == NULL)
890 return -ENOMEM;
891
892 /*
893 * Metapage initialization
894 */
895 rc = metapage_init();
896 if (rc) {
897 jfs_err("metapage_init failed w/rc = %d", rc);
898 goto free_slab;
899 }
900
901 /*
902 * Transaction Manager initialization
903 */
904 rc = txInit();
905 if (rc) {
906 jfs_err("txInit failed w/rc = %d", rc);
907 goto free_metapage;
908 }
909
910 /*
911 * I/O completion thread (endio)
912 */
91dbb4de
CH
913 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
914 if (IS_ERR(jfsIOthread)) {
915 rc = PTR_ERR(jfsIOthread);
916 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
1da177e4
LT
917 goto end_txmngr;
918 }
1da177e4
LT
919
920 if (commit_threads < 1)
921 commit_threads = num_online_cpus();
922 if (commit_threads > MAX_COMMIT_THREADS)
923 commit_threads = MAX_COMMIT_THREADS;
924
925 for (i = 0; i < commit_threads; i++) {
91dbb4de
CH
926 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL, "jfsCommit");
927 if (IS_ERR(jfsCommitThread[i])) {
928 rc = PTR_ERR(jfsCommitThread[i]);
929 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
1da177e4
LT
930 commit_threads = i;
931 goto kill_committask;
932 }
1da177e4
LT
933 }
934
91dbb4de
CH
935 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
936 if (IS_ERR(jfsSyncThread)) {
937 rc = PTR_ERR(jfsSyncThread);
938 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
1da177e4
LT
939 goto kill_committask;
940 }
1da177e4
LT
941
942#ifdef PROC_FS_JFS
943 jfs_proc_init();
944#endif
945
76bf09fc
AV
946 rc = register_filesystem(&jfs_fs_type);
947 if (!rc)
948 return 0;
1da177e4 949
76bf09fc
AV
950#ifdef PROC_FS_JFS
951 jfs_proc_clean();
952#endif
953 kthread_stop(jfsSyncThread);
1da177e4 954kill_committask:
1da177e4 955 for (i = 0; i < commit_threads; i++)
91dbb4de
CH
956 kthread_stop(jfsCommitThread[i]);
957 kthread_stop(jfsIOthread);
1da177e4
LT
958end_txmngr:
959 txExit();
960free_metapage:
961 metapage_exit();
962free_slab:
963 kmem_cache_destroy(jfs_inode_cachep);
964 return rc;
965}
966
967static void __exit exit_jfs_fs(void)
968{
969 int i;
970
971 jfs_info("exit_jfs_fs called");
972
1da177e4
LT
973 txExit();
974 metapage_exit();
91dbb4de
CH
975
976 kthread_stop(jfsIOthread);
1da177e4 977 for (i = 0; i < commit_threads; i++)
91dbb4de
CH
978 kthread_stop(jfsCommitThread[i]);
979 kthread_stop(jfsSyncThread);
1da177e4
LT
980#ifdef PROC_FS_JFS
981 jfs_proc_clean();
982#endif
983 unregister_filesystem(&jfs_fs_type);
8c0a8537
KS
984
985 /*
986 * Make sure all delayed rcu free inodes are flushed before we
987 * destroy cache.
988 */
989 rcu_barrier();
1da177e4
LT
990 kmem_cache_destroy(jfs_inode_cachep);
991}
992
993module_init(init_jfs_fs)
994module_exit(exit_jfs_fs)