blob: 14be95bc0bcd9c2341afd19bdd9f1a6b9abe374a [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070035#include <linux/seq_file.h>
Tino Reichardtb40c2e62012-09-17 11:58:19 -050036#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "jfs_incore.h"
39#include "jfs_filsys.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050040#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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"
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -080047#include "jfs_xattr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
50MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
51MODULE_LICENSE("GPL");
52
Fabian Frederick789602e2014-05-22 10:42:24 +100053static struct kmem_cache *jfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080055static const struct super_operations jfs_super_operations;
Christoph Hellwig39655162007-10-21 16:42:17 -070056static const struct export_operations jfs_export_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct file_system_type jfs_fs_type;
58
59#define MAX_COMMIT_THREADS 64
Fabian Frederick789602e2014-05-22 10:42:24 +100060static int commit_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061module_param(commit_threads, int, 0);
62MODULE_PARM_DESC(commit_threads, "Number of commit threads");
63
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060064static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
65struct task_struct *jfsIOthread;
66struct task_struct *jfsSyncThread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static 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) {
Joe Perchesb18db6d2016-03-30 05:23:16 -070087 jfs_err("ERROR: (device %s): remounting filesystem as read-only",
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 sb->s_id);
89 sb->s_flags |= MS_RDONLY;
Dave Kleikamp63f83c92006-10-02 09:55:27 -050090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 /* nothing is done for continue beyond marking the superblock dirty */
93}
94
Joe Percheseb8630d2013-06-04 16:39:15 -070095void jfs_error(struct super_block *sb, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Joe Percheseb8630d2013-06-04 16:39:15 -070097 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 va_list args;
99
Joe Percheseb8630d2013-06-04 16:39:15 -0700100 va_start(args, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Joe Percheseb8630d2013-06-04 16:39:15 -0700102 vaf.fmt = fmt;
103 vaf.va = &args;
104
Scott Wood7d2ac452015-03-11 22:13:54 -0500105 pr_err("ERROR: (device %s): %ps: %pV\n",
Joe Percheseb8630d2013-06-04 16:39:15 -0700106 sb->s_id, __builtin_return_address(0), &vaf);
107
108 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 jfs_handle_error(sb);
111}
112
113static struct inode *jfs_alloc_inode(struct super_block *sb)
114{
115 struct jfs_inode_info *jfs_inode;
116
117 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
118 if (!jfs_inode)
119 return NULL;
Jan Kara507e1fa2014-10-01 11:19:12 +0200120#ifdef CONFIG_QUOTA
121 memset(&jfs_inode->i_dquot, 0, sizeof(jfs_inode->i_dquot));
122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 return &jfs_inode->vfs_inode;
124}
125
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100126static void jfs_i_callback(struct rcu_head *head)
127{
128 struct inode *inode = container_of(head, struct inode, i_rcu);
129 struct jfs_inode_info *ji = JFS_IP(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100130 kmem_cache_free(jfs_inode_cachep, ji);
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static void jfs_destroy_inode(struct inode *inode)
134{
135 struct jfs_inode_info *ji = JFS_IP(inode);
136
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500137 BUG_ON(!list_empty(&ji->anon_inode_list));
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 spin_lock_irq(&ji->ag_lock);
140 if (ji->active_ag != -1) {
141 struct bmap *bmap = JFS_SBI(inode->i_sb)->bmap;
142 atomic_dec(&bmap->db_active[ji->active_ag]);
143 ji->active_ag = -1;
144 }
145 spin_unlock_irq(&ji->ag_lock);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100146 call_rcu(&inode->i_rcu, jfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
David Howells726c3342006-06-23 02:02:58 -0700149static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
David Howells726c3342006-06-23 02:02:58 -0700151 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 s64 maxinodes;
153 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
154
155 jfs_info("In jfs_statfs");
156 buf->f_type = JFS_SUPER_MAGIC;
157 buf->f_bsize = sbi->bsize;
158 buf->f_blocks = sbi->bmap->db_mapsize;
159 buf->f_bfree = sbi->bmap->db_nfree;
160 buf->f_bavail = sbi->bmap->db_nfree;
161 /*
162 * If we really return the number of allocated & free inodes, some
163 * applications will fail because they won't see enough free inodes.
Philippe De Muyter4de80272013-01-16 22:55:48 +0100164 * We'll try to calculate some guess as to how many inodes we can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * really allocate
166 *
167 * buf->f_files = atomic_read(&imap->im_numinos);
168 * buf->f_ffree = atomic_read(&imap->im_numfree);
169 */
170 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
171 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
172 << L2INOSPEREXT), (s64) 0xffffffffLL);
173 buf->f_files = maxinodes;
174 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
175 atomic_read(&imap->im_numfree));
Coly Lib5c816a2009-01-21 00:05:39 +0800176 buf->f_fsid.val[0] = (u32)crc32_le(0, sbi->uuid, sizeof(sbi->uuid)/2);
177 buf->f_fsid.val[1] = (u32)crc32_le(0, sbi->uuid + sizeof(sbi->uuid)/2,
178 sizeof(sbi->uuid)/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 buf->f_namelen = JFS_NAME_MAX;
181 return 0;
182}
183
184static void jfs_put_super(struct super_block *sb)
185{
186 struct jfs_sb_info *sbi = JFS_SBI(sb);
187 int rc;
188
189 jfs_info("In jfs_put_super");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200190
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400191 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 rc = jfs_umount(sb);
194 if (rc)
195 jfs_err("jfs_umount failed with return code %d", rc);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000196
197 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600199 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
200 iput(sbi->direct_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 kfree(sbi);
203}
204
205enum {
206 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700207 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500208 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
209 Opt_discard, Opt_nodiscard, Opt_discard_minblk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Steven Whitehousea447c092008-10-13 10:46:57 +0100212static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 {Opt_integrity, "integrity"},
214 {Opt_nointegrity, "nointegrity"},
215 {Opt_iocharset, "iocharset=%s"},
216 {Opt_resize, "resize=%u"},
217 {Opt_resize_nosize, "resize"},
218 {Opt_errors, "errors=%s"},
219 {Opt_ignore, "noquota"},
220 {Opt_ignore, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700221 {Opt_usrquota, "usrquota"},
222 {Opt_grpquota, "grpquota"},
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600223 {Opt_uid, "uid=%u"},
224 {Opt_gid, "gid=%u"},
225 {Opt_umask, "umask=%u"},
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500226 {Opt_discard, "discard"},
227 {Opt_nodiscard, "nodiscard"},
228 {Opt_discard_minblk, "discard=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 {Opt_err, NULL}
230};
231
232static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
233 int *flag)
234{
235 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
236 char *p;
237 struct jfs_sb_info *sbi = JFS_SBI(sb);
238
239 *newLVSize = 0;
240
241 if (!options)
242 return 1;
243
244 while ((p = strsep(&options, ",")) != NULL) {
245 substring_t args[MAX_OPT_ARGS];
246 int token;
247 if (!*p)
248 continue;
249
250 token = match_token(p, tokens, args);
251 switch (token) {
252 case Opt_integrity:
253 *flag &= ~JFS_NOINTEGRITY;
254 break;
255 case Opt_nointegrity:
256 *flag |= JFS_NOINTEGRITY;
257 break;
258 case Opt_ignore:
259 /* Silently ignore the quota options */
260 /* Don't do anything ;-) */
261 break;
262 case Opt_iocharset:
263 if (nls_map && nls_map != (void *) -1)
264 unload_nls(nls_map);
265 if (!strcmp(args[0].from, "none"))
266 nls_map = NULL;
267 else {
268 nls_map = load_nls(args[0].from);
269 if (!nls_map) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500270 pr_err("JFS: charset not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 goto cleanup;
272 }
273 }
274 break;
275 case Opt_resize:
276 {
277 char *resize = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200278 int rc = kstrtoll(resize, 0, newLVSize);
279
280 if (rc)
281 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283 }
284 case Opt_resize_nosize:
285 {
286 *newLVSize = sb->s_bdev->bd_inode->i_size >>
287 sb->s_blocksize_bits;
288 if (*newLVSize == 0)
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500289 pr_err("JFS: Cannot determine volume size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 }
292 case Opt_errors:
293 {
294 char *errors = args[0].from;
295 if (!errors || !*errors)
296 goto cleanup;
297 if (!strcmp(errors, "continue")) {
298 *flag &= ~JFS_ERR_REMOUNT_RO;
299 *flag &= ~JFS_ERR_PANIC;
300 *flag |= JFS_ERR_CONTINUE;
301 } else if (!strcmp(errors, "remount-ro")) {
302 *flag &= ~JFS_ERR_CONTINUE;
303 *flag &= ~JFS_ERR_PANIC;
304 *flag |= JFS_ERR_REMOUNT_RO;
305 } else if (!strcmp(errors, "panic")) {
306 *flag &= ~JFS_ERR_CONTINUE;
307 *flag &= ~JFS_ERR_REMOUNT_RO;
308 *flag |= JFS_ERR_PANIC;
309 } else {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500310 pr_err("JFS: %s is an invalid error handler\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 errors);
312 goto cleanup;
313 }
314 break;
315 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700316
Dave Kleikamp115ff502006-07-26 14:52:13 -0500317#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700318 case Opt_quota:
319 case Opt_usrquota:
320 *flag |= JFS_USRQUOTA;
321 break;
322 case Opt_grpquota:
323 *flag |= JFS_GRPQUOTA;
324 break;
325#else
326 case Opt_usrquota:
327 case Opt_grpquota:
328 case Opt_quota:
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500329 pr_err("JFS: quota operations not supported\n");
Mark Bellon8fc27512005-09-06 15:16:54 -0700330 break;
331#endif
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600332 case Opt_uid:
333 {
334 char *uid = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200335 uid_t val;
336 int rc = kstrtouint(uid, 0, &val);
337
338 if (rc)
339 goto cleanup;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800340 sbi->uid = make_kuid(current_user_ns(), val);
341 if (!uid_valid(sbi->uid))
342 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600343 break;
344 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500345
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600346 case Opt_gid:
347 {
348 char *gid = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200349 gid_t val;
350 int rc = kstrtouint(gid, 0, &val);
351
352 if (rc)
353 goto cleanup;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800354 sbi->gid = make_kgid(current_user_ns(), val);
355 if (!gid_valid(sbi->gid))
356 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600357 break;
358 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500359
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600360 case Opt_umask:
361 {
362 char *umask = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200363 int rc = kstrtouint(umask, 8, &sbi->umask);
364
365 if (rc)
366 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600367 if (sbi->umask & ~0777) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500368 pr_err("JFS: Invalid value of umask\n");
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600369 goto cleanup;
370 }
371 break;
372 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500373
374 case Opt_discard:
375 {
376 struct request_queue *q = bdev_get_queue(sb->s_bdev);
377 /* if set to 1, even copying files will cause
378 * trimming :O
379 * -> user has more control over the online trimming
380 */
381 sbi->minblks_trim = 64;
Fabian Frederick789602e2014-05-22 10:42:24 +1000382 if (blk_queue_discard(q))
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500383 *flag |= JFS_DISCARD;
Fabian Frederick789602e2014-05-22 10:42:24 +1000384 else
385 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500386 break;
387 }
388
389 case Opt_nodiscard:
390 *flag &= ~JFS_DISCARD;
391 break;
392
393 case Opt_discard_minblk:
394 {
395 struct request_queue *q = bdev_get_queue(sb->s_bdev);
396 char *minblks_trim = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200397 int rc;
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500398 if (blk_queue_discard(q)) {
399 *flag |= JFS_DISCARD;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200400 rc = kstrtouint(minblks_trim, 0,
401 &sbi->minblks_trim);
402 if (rc)
403 goto cleanup;
404 } else
Fabian Frederick789602e2014-05-22 10:42:24 +1000405 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500406 break;
407 }
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 default:
Fabian Frederick789602e2014-05-22 10:42:24 +1000410 printk("jfs: Unrecognized mount option \"%s\" or missing value\n",
411 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 goto cleanup;
413 }
414 }
415
416 if (nls_map != (void *) -1) {
417 /* Discard old (if remount) */
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000418 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 sbi->nls_tab = nls_map;
420 }
421 return 1;
422
423cleanup:
424 if (nls_map && nls_map != (void *) -1)
425 unload_nls(nls_map);
426 return 0;
427}
428
429static int jfs_remount(struct super_block *sb, int *flags, char *data)
430{
431 s64 newLVSize = 0;
432 int rc = 0;
433 int flag = JFS_SBI(sb)->flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200434 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Theodore Ts'o02b99842014-03-13 10:14:33 -0400436 sync_filesystem(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000437 if (!parse_options(data, sb, &newLVSize, &flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return -EINVAL;
Jan Blunck22b26db2010-02-24 13:25:31 +0100439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (newLVSize) {
441 if (sb->s_flags & MS_RDONLY) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000442 pr_err("JFS: resize requires volume to be mounted read-write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -EROFS;
444 }
445 rc = jfs_extendfs(sb, newLVSize, 0);
Jan Blunck22b26db2010-02-24 13:25:31 +0100446 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return rc;
448 }
449
450 if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600451 /*
452 * Invalidate any previously read metadata. fsck may have
453 * changed the on-disk data since we mounted r/o
454 */
455 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200458 ret = jfs_mount_rw(sb, 1);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400459
460 /* mark the fs r/w for quota activity */
461 sb->s_flags &= ~MS_RDONLY;
462
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400463 dquot_resume(sb, -1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 if ((!(sb->s_flags & MS_RDONLY)) && (*flags & MS_RDONLY)) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400467 rc = dquot_suspend(sb, -1);
Fabian Frederick789602e2014-05-22 10:42:24 +1000468 if (rc < 0)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400469 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 rc = jfs_umount_rw(sb);
471 JFS_SBI(sb)->flag = flag;
472 return rc;
473 }
474 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
475 if (!(sb->s_flags & MS_RDONLY)) {
476 rc = jfs_umount_rw(sb);
Jan Blunck22b26db2010-02-24 13:25:31 +0100477 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return rc;
Jan Blunck22b26db2010-02-24 13:25:31 +0100479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200481 ret = jfs_mount_rw(sb, 1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200482 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 JFS_SBI(sb)->flag = flag;
485
486 return 0;
487}
488
489static int jfs_fill_super(struct super_block *sb, void *data, int silent)
490{
491 struct jfs_sb_info *sbi;
492 struct inode *inode;
493 int rc;
494 s64 newLVSize = 0;
David Howellseab1df72008-02-07 00:15:43 -0800495 int flag, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
498
Fabian Frederick789602e2014-05-22 10:42:24 +1000499 sbi = kzalloc(sizeof(struct jfs_sb_info), GFP_KERNEL);
Jan Blunck22b26db2010-02-24 13:25:31 +0100500 if (!sbi)
Akinobu Mita087387f2006-09-14 09:22:38 -0500501 return -ENOMEM;
Jan Blunck22b26db2010-02-24 13:25:31 +0100502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 sb->s_fs_info = sbi;
Al Viro8de52772012-02-06 12:45:27 -0500504 sb->s_max_links = JFS_LINK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 sbi->sb = sb;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800506 sbi->uid = INVALID_UID;
507 sbi->gid = INVALID_GID;
508 sbi->umask = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /* initialize the mount flag and determine the default error handler */
511 flag = JFS_ERR_REMOUNT_RO;
512
Jan Blunck684bdc72010-04-12 16:44:08 -0700513 if (!parse_options((char *) data, sb, &newLVSize, &flag))
514 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 sbi->flag = flag;
516
517#ifdef CONFIG_JFS_POSIX_ACL
518 sb->s_flags |= MS_POSIXACL;
519#endif
520
521 if (newLVSize) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500522 pr_err("resize option for remount only\n");
Jan Blunck684bdc72010-04-12 16:44:08 -0700523 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
526 /*
527 * Initialize blocksize to 4K.
528 */
529 sb_set_blocksize(sb, PSIZE);
530
531 /*
532 * Set method vectors.
533 */
534 sb->s_op = &jfs_super_operations;
535 sb->s_export_op = &jfs_export_operations;
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -0800536 sb->s_xattr = jfs_xattr_handlers;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400537#ifdef CONFIG_QUOTA
538 sb->dq_op = &dquot_operations;
Christoph Hellwig287a8092010-05-19 07:16:45 -0400539 sb->s_qcop = &dquot_quotactl_ops;
Jan Kara507e1fa2014-10-01 11:19:12 +0200540 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400541#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600543 /*
544 * Initialize direct-mapping inode/address-space
545 */
546 inode = new_inode(sb);
David Howellseab1df72008-02-07 00:15:43 -0800547 if (inode == NULL) {
548 ret = -ENOMEM;
Jan Blunck684bdc72010-04-12 16:44:08 -0700549 goto out_unload;
David Howellseab1df72008-02-07 00:15:43 -0800550 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600551 inode->i_ino = 0;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600552 inode->i_size = sb->s_bdev->bd_inode->i_size;
553 inode->i_mapping->a_ops = &jfs_metapage_aops;
Al Viro9bb87302014-09-02 23:53:04 -0400554 hlist_add_fake(&inode->i_hash);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600555 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
556
557 sbi->direct_inode = inode;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 rc = jfs_mount(sb);
560 if (rc) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000561 if (!silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 jfs_err("jfs_mount failed w/return code = %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600563 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 if (sb->s_flags & MS_RDONLY)
566 sbi->log = NULL;
567 else {
568 rc = jfs_mount_rw(sb, 0);
569 if (rc) {
570 if (!silent) {
571 jfs_err("jfs_mount_rw failed, return code = %d",
572 rc);
573 }
574 goto out_no_rw;
575 }
576 }
577
578 sb->s_magic = JFS_SUPER_MAGIC;
579
Al Viro94b77bd2010-12-18 10:59:31 -0500580 if (sbi->mntflag & JFS_OS2)
581 sb->s_d_op = &jfs_ci_dentry_operations;
582
David Howellseab1df72008-02-07 00:15:43 -0800583 inode = jfs_iget(sb, ROOT_I);
584 if (IS_ERR(inode)) {
585 ret = PTR_ERR(inode);
Dave Kleikamp6536d282008-05-21 10:45:16 -0500586 goto out_no_rw;
David Howellseab1df72008-02-07 00:15:43 -0800587 }
Al Viro48fde702012-01-08 22:15:13 -0500588 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (!sb->s_root)
590 goto out_no_root;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* logical blocks are represented by 40 bits in pxd_t, etc. */
593 sb->s_maxbytes = ((u64) sb->s_blocksize) << 40;
594#if BITS_PER_LONG == 32
595 /*
596 * Page cache is indexed by long.
597 * I would use MAX_LFS_FILESIZE, but it's only half as big
598 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300599 sb->s_maxbytes = min(((u64) PAGE_SIZE << 32) - 1,
Fabian Frederick789602e2014-05-22 10:42:24 +1000600 (u64)sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601#endif
602 sb->s_time_gran = 1;
603 return 0;
604
605out_no_root:
Dave Kleikamp6536d282008-05-21 10:45:16 -0500606 jfs_err("jfs_read_super: get root dentry failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608out_no_rw:
609 rc = jfs_umount(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000610 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 jfs_err("jfs_umount failed with return code %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600612out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800613 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600614 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
615 make_bad_inode(sbi->direct_inode);
616 iput(sbi->direct_inode);
617 sbi->direct_inode = NULL;
Jan Blunck684bdc72010-04-12 16:44:08 -0700618out_unload:
Markus Elfring648695c2015-02-01 17:00:24 +0100619 unload_nls(sbi->nls_tab);
Jan Blunck684bdc72010-04-12 16:44:08 -0700620out_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 kfree(sbi);
David Howellseab1df72008-02-07 00:15:43 -0800622 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Takashi Satoc4be0c12009-01-09 16:40:58 -0800625static int jfs_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct jfs_sb_info *sbi = JFS_SBI(sb);
628 struct jfs_log *log = sbi->log;
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500629 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (!(sb->s_flags & MS_RDONLY)) {
632 txQuiesce(sb);
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500633 rc = lmLogShutdown(log);
634 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700635 jfs_error(sb, "lmLogShutdown failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500636
637 /* let operations fail rather than hang */
638 txResume(sb);
639
640 return rc;
641 }
642 rc = updateSuper(sb, FM_CLEAN);
643 if (rc) {
Joe Perchesb18db6d2016-03-30 05:23:16 -0700644 jfs_err("jfs_freeze: updateSuper failed");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500645 /*
646 * Don't fail here. Everything succeeded except
647 * marking the superblock clean, so there's really
648 * no harm in leaving it frozen for now.
649 */
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Takashi Satoc4be0c12009-01-09 16:40:58 -0800655static int jfs_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct jfs_sb_info *sbi = JFS_SBI(sb);
658 struct jfs_log *log = sbi->log;
659 int rc = 0;
660
661 if (!(sb->s_flags & MS_RDONLY)) {
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500662 rc = updateSuper(sb, FM_MOUNT);
663 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700664 jfs_error(sb, "updateSuper failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500665 goto out;
666 }
667 rc = lmLogInit(log);
668 if (rc)
Joe Percheseb8630d2013-06-04 16:39:15 -0700669 jfs_error(sb, "lmLogInit failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500670out:
671 txResume(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500673 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Al Viro152a0832010-07-25 00:46:55 +0400676static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
677 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Al Viro152a0832010-07-25 00:46:55 +0400679 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682static int jfs_sync_fs(struct super_block *sb, int wait)
683{
684 struct jfs_log *log = JFS_SBI(sb)->log;
685
686 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600687 if (log) {
Jan Karaa1177822012-07-03 16:45:29 +0200688 /*
689 * Write quota structures to quota file, sync_blockdev() will
690 * write them to disk later
691 */
692 dquot_writeback_dquots(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500694 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 return 0;
698}
699
Al Viro34c80b12011-12-08 21:32:45 -0500700static int jfs_show_options(struct seq_file *seq, struct dentry *root)
Mark Bellon8fc27512005-09-06 15:16:54 -0700701{
Al Viro34c80b12011-12-08 21:32:45 -0500702 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700703
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800704 if (uid_valid(sbi->uid))
705 seq_printf(seq, ",uid=%d", from_kuid(&init_user_ns, sbi->uid));
706 if (gid_valid(sbi->gid))
707 seq_printf(seq, ",gid=%d", from_kgid(&init_user_ns, sbi->gid));
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600708 if (sbi->umask != -1)
709 seq_printf(seq, ",umask=%03o", sbi->umask);
Mark Bellon8fc27512005-09-06 15:16:54 -0700710 if (sbi->flag & JFS_NOINTEGRITY)
711 seq_puts(seq, ",nointegrity");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500712 if (sbi->flag & JFS_DISCARD)
713 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
Miklos Szeredi5c5e32c2008-01-24 16:13:21 -0600714 if (sbi->nls_tab)
715 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
716 if (sbi->flag & JFS_ERR_CONTINUE)
717 seq_printf(seq, ",errors=continue");
718 if (sbi->flag & JFS_ERR_PANIC)
719 seq_printf(seq, ",errors=panic");
Mark Bellon8fc27512005-09-06 15:16:54 -0700720
Dave Kleikamp115ff502006-07-26 14:52:13 -0500721#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700722 if (sbi->flag & JFS_USRQUOTA)
723 seq_puts(seq, ",usrquota");
724
725 if (sbi->flag & JFS_GRPQUOTA)
726 seq_puts(seq, ",grpquota");
727#endif
728
729 return 0;
730}
731
Dave Kleikamp115ff502006-07-26 14:52:13 -0500732#ifdef CONFIG_QUOTA
733
734/* Read data from quotafile - avoid pagecache and such because we cannot afford
735 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300736 * itself serializes the operations (and no one else should touch the files)
Dave Kleikamp115ff502006-07-26 14:52:13 -0500737 * we don't have to be afraid of races */
738static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
739 size_t len, loff_t off)
740{
741 struct inode *inode = sb_dqopt(sb)->files[type];
742 sector_t blk = off >> sb->s_blocksize_bits;
743 int err = 0;
744 int offset = off & (sb->s_blocksize - 1);
745 int tocopy;
746 size_t toread;
747 struct buffer_head tmp_bh;
748 struct buffer_head *bh;
749 loff_t i_size = i_size_read(inode);
750
751 if (off > i_size)
752 return 0;
753 if (off+len > i_size)
754 len = i_size-off;
755 toread = len;
756 while (toread > 0) {
757 tocopy = sb->s_blocksize - offset < toread ?
758 sb->s_blocksize - offset : toread;
759
760 tmp_bh.b_state = 0;
Fabian Frederick61604a22017-02-27 14:28:32 -0800761 tmp_bh.b_size = i_blocksize(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500762 err = jfs_get_block(inode, blk, &tmp_bh, 0);
763 if (err)
764 return err;
765 if (!buffer_mapped(&tmp_bh)) /* A hole? */
766 memset(data, 0, tocopy);
767 else {
768 bh = sb_bread(sb, tmp_bh.b_blocknr);
769 if (!bh)
770 return -EIO;
771 memcpy(data, bh->b_data+offset, tocopy);
772 brelse(bh);
773 }
774 offset = 0;
775 toread -= tocopy;
776 data += tocopy;
777 blk++;
778 }
779 return len;
780}
781
782/* Write to quotafile */
783static ssize_t jfs_quota_write(struct super_block *sb, int type,
784 const char *data, size_t len, loff_t off)
785{
786 struct inode *inode = sb_dqopt(sb)->files[type];
787 sector_t blk = off >> sb->s_blocksize_bits;
788 int err = 0;
789 int offset = off & (sb->s_blocksize - 1);
790 int tocopy;
791 size_t towrite = len;
792 struct buffer_head tmp_bh;
793 struct buffer_head *bh;
794
Al Viro59551022016-01-22 15:40:57 -0500795 inode_lock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500796 while (towrite > 0) {
797 tocopy = sb->s_blocksize - offset < towrite ?
798 sb->s_blocksize - offset : towrite;
799
800 tmp_bh.b_state = 0;
Fabian Frederick61604a22017-02-27 14:28:32 -0800801 tmp_bh.b_size = i_blocksize(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500802 err = jfs_get_block(inode, blk, &tmp_bh, 1);
803 if (err)
804 goto out;
805 if (offset || tocopy != sb->s_blocksize)
806 bh = sb_bread(sb, tmp_bh.b_blocknr);
807 else
808 bh = sb_getblk(sb, tmp_bh.b_blocknr);
809 if (!bh) {
810 err = -EIO;
811 goto out;
812 }
813 lock_buffer(bh);
814 memcpy(bh->b_data+offset, data, tocopy);
815 flush_dcache_page(bh->b_page);
816 set_buffer_uptodate(bh);
817 mark_buffer_dirty(bh);
818 unlock_buffer(bh);
819 brelse(bh);
820 offset = 0;
821 towrite -= tocopy;
822 data += tocopy;
823 blk++;
824 }
825out:
Dan Carpenter9c836332009-04-07 14:48:16 +0300826 if (len == towrite) {
Al Viro59551022016-01-22 15:40:57 -0500827 inode_unlock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500828 return err;
Dan Carpenter9c836332009-04-07 14:48:16 +0300829 }
Dave Kleikamp115ff502006-07-26 14:52:13 -0500830 if (inode->i_size < off+len-towrite)
831 i_size_write(inode, off+len-towrite);
832 inode->i_version++;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700833 inode->i_mtime = inode->i_ctime = current_time(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500834 mark_inode_dirty(inode);
Al Viro59551022016-01-22 15:40:57 -0500835 inode_unlock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500836 return len - towrite;
837}
838
Jan Kara507e1fa2014-10-01 11:19:12 +0200839static struct dquot **jfs_get_dquots(struct inode *inode)
840{
841 return JFS_IP(inode)->i_dquot;
842}
Dave Kleikamp115ff502006-07-26 14:52:13 -0500843#endif
844
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800845static const struct super_operations jfs_super_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 .alloc_inode = jfs_alloc_inode,
847 .destroy_inode = jfs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 .dirty_inode = jfs_dirty_inode,
849 .write_inode = jfs_write_inode,
Al Viro62aff862010-06-07 00:28:54 -0400850 .evict_inode = jfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 .put_super = jfs_put_super,
852 .sync_fs = jfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800853 .freeze_fs = jfs_freeze,
854 .unfreeze_fs = jfs_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 .statfs = jfs_statfs,
856 .remount_fs = jfs_remount,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500857 .show_options = jfs_show_options,
858#ifdef CONFIG_QUOTA
859 .quota_read = jfs_quota_read,
860 .quota_write = jfs_quota_write,
Jan Kara507e1fa2014-10-01 11:19:12 +0200861 .get_dquots = jfs_get_dquots,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500862#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863};
864
Christoph Hellwig39655162007-10-21 16:42:17 -0700865static const struct export_operations jfs_export_operations = {
Christoph Hellwigd425de72007-10-21 16:42:09 -0700866 .fh_to_dentry = jfs_fh_to_dentry,
867 .fh_to_parent = jfs_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 .get_parent = jfs_get_parent,
869};
870
871static struct file_system_type jfs_fs_type = {
872 .owner = THIS_MODULE,
873 .name = "jfs",
Al Viro152a0832010-07-25 00:46:55 +0400874 .mount = jfs_do_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 .kill_sb = kill_block_super,
876 .fs_flags = FS_REQUIRES_DEV,
877};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800878MODULE_ALIAS_FS("jfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700880static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
883
Christoph Lametera35afb82007-05-16 22:10:57 -0700884 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
885 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
886 init_rwsem(&jfs_ip->rdwrlock);
887 mutex_init(&jfs_ip->commit_mutex);
888 init_rwsem(&jfs_ip->xattr_sem);
889 spin_lock_init(&jfs_ip->ag_lock);
890 jfs_ip->active_ag = -1;
Christoph Lametera35afb82007-05-16 22:10:57 -0700891 inode_init_once(&jfs_ip->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894static int __init init_jfs_fs(void)
895{
896 int i;
897 int rc;
898
899 jfs_inode_cachep =
Dave Kleikamp63f83c92006-10-02 09:55:27 -0500900 kmem_cache_create("jfs_ip", sizeof(struct jfs_inode_info), 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -0800901 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|SLAB_ACCOUNT,
Paul Mundt20c2df82007-07-20 10:11:58 +0900902 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (jfs_inode_cachep == NULL)
904 return -ENOMEM;
905
906 /*
907 * Metapage initialization
908 */
909 rc = metapage_init();
910 if (rc) {
911 jfs_err("metapage_init failed w/rc = %d", rc);
912 goto free_slab;
913 }
914
915 /*
916 * Transaction Manager initialization
917 */
918 rc = txInit();
919 if (rc) {
920 jfs_err("txInit failed w/rc = %d", rc);
921 goto free_metapage;
922 }
923
924 /*
925 * I/O completion thread (endio)
926 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600927 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
928 if (IS_ERR(jfsIOthread)) {
929 rc = PTR_ERR(jfsIOthread);
930 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 goto end_txmngr;
932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 if (commit_threads < 1)
935 commit_threads = num_online_cpus();
936 if (commit_threads > MAX_COMMIT_THREADS)
937 commit_threads = MAX_COMMIT_THREADS;
938
939 for (i = 0; i < commit_threads; i++) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000940 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL,
941 "jfsCommit");
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600942 if (IS_ERR(jfsCommitThread[i])) {
943 rc = PTR_ERR(jfsCommitThread[i]);
944 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 commit_threads = i;
946 goto kill_committask;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600950 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
951 if (IS_ERR(jfsSyncThread)) {
952 rc = PTR_ERR(jfsSyncThread);
953 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 goto kill_committask;
955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957#ifdef PROC_FS_JFS
958 jfs_proc_init();
959#endif
960
Al Viro76bf09f2012-03-17 18:14:34 -0400961 rc = register_filesystem(&jfs_fs_type);
962 if (!rc)
963 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Al Viro76bf09f2012-03-17 18:14:34 -0400965#ifdef PROC_FS_JFS
966 jfs_proc_clean();
967#endif
968 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600971 kthread_stop(jfsCommitThread[i]);
972 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973end_txmngr:
974 txExit();
975free_metapage:
976 metapage_exit();
977free_slab:
978 kmem_cache_destroy(jfs_inode_cachep);
979 return rc;
980}
981
982static void __exit exit_jfs_fs(void)
983{
984 int i;
985
986 jfs_info("exit_jfs_fs called");
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 txExit();
989 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600990
991 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600993 kthread_stop(jfsCommitThread[i]);
994 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#ifdef PROC_FS_JFS
996 jfs_proc_clean();
997#endif
998 unregister_filesystem(&jfs_fs_type);
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000999
1000 /*
1001 * Make sure all delayed rcu free inodes are flushed before we
1002 * destroy cache.
1003 */
1004 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kmem_cache_destroy(jfs_inode_cachep);
1006}
1007
1008module_init(init_jfs_fs)
1009module_exit(exit_jfs_fs)