blob: 1f0ffabbde56609bd0c861c9ada81dccf6cae955 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) International Business Machines Corp., 2000-2004
4 * Portions Copyright (C) Christoph Hellwig, 2001-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/parser.h>
10#include <linux/completion.h>
11#include <linux/vfs.h>
Jan Kara74abb982008-07-25 01:46:51 -070012#include <linux/quotaops.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070013#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/moduleparam.h>
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060015#include <linux/kthread.h>
Christoph Hellwig9a59f4522005-06-23 00:10:19 -070016#include <linux/posix_acl.h>
Dave Kleikamp115ff502006-07-26 14:52:13 -050017#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070018#include <linux/exportfs.h>
Coly Lib5c816a2009-01-21 00:05:39 +080019#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080021#include <linux/uaccess.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070022#include <linux/seq_file.h>
Tino Reichardtb40c2e62012-09-17 11:58:19 -050023#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "jfs_incore.h"
26#include "jfs_filsys.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050027#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "jfs_metapage.h"
29#include "jfs_superblock.h"
30#include "jfs_dmap.h"
31#include "jfs_imap.h"
32#include "jfs_acl.h"
33#include "jfs_debug.h"
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -080034#include "jfs_xattr.h"
Jan Kara12fd0862017-04-11 16:21:01 +020035#include "jfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37MODULE_DESCRIPTION("The Journaled Filesystem (JFS)");
38MODULE_AUTHOR("Steve Best/Dave Kleikamp/Barry Arndt, IBM");
39MODULE_LICENSE("GPL");
40
Fabian Frederick789602e2014-05-22 10:42:24 +100041static struct kmem_cache *jfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080043static const struct super_operations jfs_super_operations;
Christoph Hellwig39655162007-10-21 16:42:17 -070044static const struct export_operations jfs_export_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static struct file_system_type jfs_fs_type;
46
47#define MAX_COMMIT_THREADS 64
Fabian Frederick789602e2014-05-22 10:42:24 +100048static int commit_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049module_param(commit_threads, int, 0);
50MODULE_PARM_DESC(commit_threads, "Number of commit threads");
51
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060052static struct task_struct *jfsCommitThread[MAX_COMMIT_THREADS];
53struct task_struct *jfsIOthread;
54struct task_struct *jfsSyncThread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#ifdef CONFIG_JFS_DEBUG
57int jfsloglevel = JFS_LOGLEVEL_WARN;
58module_param(jfsloglevel, int, 0644);
59MODULE_PARM_DESC(jfsloglevel, "Specify JFS loglevel (0, 1 or 2)");
60#endif
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static void jfs_handle_error(struct super_block *sb)
63{
64 struct jfs_sb_info *sbi = JFS_SBI(sb);
65
David Howellsbc98a422017-07-17 08:45:34 +010066 if (sb_rdonly(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return;
68
69 updateSuper(sb, FM_DIRTY);
70
71 if (sbi->flag & JFS_ERR_PANIC)
72 panic("JFS (device %s): panic forced after error\n",
73 sb->s_id);
74 else if (sbi->flag & JFS_ERR_REMOUNT_RO) {
Joe Perchesb18db6d2016-03-30 05:23:16 -070075 jfs_err("ERROR: (device %s): remounting filesystem as read-only",
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 sb->s_id);
Linus Torvalds1751e8a2017-11-27 13:05:09 -080077 sb->s_flags |= SB_RDONLY;
Dave Kleikamp63f83c92006-10-02 09:55:27 -050078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* nothing is done for continue beyond marking the superblock dirty */
81}
82
Joe Percheseb8630d2013-06-04 16:39:15 -070083void jfs_error(struct super_block *sb, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Joe Percheseb8630d2013-06-04 16:39:15 -070085 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 va_list args;
87
Joe Percheseb8630d2013-06-04 16:39:15 -070088 va_start(args, fmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Joe Percheseb8630d2013-06-04 16:39:15 -070090 vaf.fmt = fmt;
91 vaf.va = &args;
92
Scott Wood7d2ac452015-03-11 22:13:54 -050093 pr_err("ERROR: (device %s): %ps: %pV\n",
Joe Percheseb8630d2013-06-04 16:39:15 -070094 sb->s_id, __builtin_return_address(0), &vaf);
95
96 va_end(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 jfs_handle_error(sb);
99}
100
101static struct inode *jfs_alloc_inode(struct super_block *sb)
102{
103 struct jfs_inode_info *jfs_inode;
104
105 jfs_inode = kmem_cache_alloc(jfs_inode_cachep, GFP_NOFS);
106 if (!jfs_inode)
107 return NULL;
Jan Kara507e1fa2014-10-01 11:19:12 +0200108#ifdef CONFIG_QUOTA
109 memset(&jfs_inode->i_dquot, 0, sizeof(jfs_inode->i_dquot));
110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return &jfs_inode->vfs_inode;
112}
113
Al Virob3b4a6e2019-04-15 22:48:59 -0400114static void jfs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100115{
Al Virob3b4a6e2019-04-15 22:48:59 -0400116 kmem_cache_free(jfs_inode_cachep, JFS_IP(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
David Howells726c3342006-06-23 02:02:58 -0700119static int jfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
David Howells726c3342006-06-23 02:02:58 -0700121 struct jfs_sb_info *sbi = JFS_SBI(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 s64 maxinodes;
123 struct inomap *imap = JFS_IP(sbi->ipimap)->i_imap;
124
125 jfs_info("In jfs_statfs");
126 buf->f_type = JFS_SUPER_MAGIC;
127 buf->f_bsize = sbi->bsize;
128 buf->f_blocks = sbi->bmap->db_mapsize;
129 buf->f_bfree = sbi->bmap->db_nfree;
130 buf->f_bavail = sbi->bmap->db_nfree;
131 /*
132 * If we really return the number of allocated & free inodes, some
133 * applications will fail because they won't see enough free inodes.
Philippe De Muyter4de80272013-01-16 22:55:48 +0100134 * We'll try to calculate some guess as to how many inodes we can
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * really allocate
136 *
137 * buf->f_files = atomic_read(&imap->im_numinos);
138 * buf->f_ffree = atomic_read(&imap->im_numfree);
139 */
140 maxinodes = min((s64) atomic_read(&imap->im_numinos) +
141 ((sbi->bmap->db_nfree >> imap->im_l2nbperiext)
142 << L2INOSPEREXT), (s64) 0xffffffffLL);
143 buf->f_files = maxinodes;
144 buf->f_ffree = maxinodes - (atomic_read(&imap->im_numinos) -
145 atomic_read(&imap->im_numfree));
Andy Shevchenko2e3bc612019-01-10 15:41:53 +0200146 buf->f_fsid.val[0] = crc32_le(0, (char *)&sbi->uuid,
147 sizeof(sbi->uuid)/2);
148 buf->f_fsid.val[1] = crc32_le(0,
149 (char *)&sbi->uuid + sizeof(sbi->uuid)/2,
150 sizeof(sbi->uuid)/2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 buf->f_namelen = JFS_NAME_MAX;
153 return 0;
154}
155
Jan Kara12fd0862017-04-11 16:21:01 +0200156#ifdef CONFIG_QUOTA
157static int jfs_quota_off(struct super_block *sb, int type);
158static int jfs_quota_on(struct super_block *sb, int type, int format_id,
159 const struct path *path);
160
161static void jfs_quota_off_umount(struct super_block *sb)
162{
163 int type;
164
165 for (type = 0; type < MAXQUOTAS; type++)
166 jfs_quota_off(sb, type);
167}
168
169static const struct quotactl_ops jfs_quotactl_ops = {
170 .quota_on = jfs_quota_on,
171 .quota_off = jfs_quota_off,
172 .quota_sync = dquot_quota_sync,
173 .get_state = dquot_get_state,
174 .set_info = dquot_set_dqinfo,
175 .get_dqblk = dquot_get_dqblk,
176 .set_dqblk = dquot_set_dqblk,
177 .get_nextdqblk = dquot_get_next_dqblk,
178};
179#else
180static inline void jfs_quota_off_umount(struct super_block *sb)
181{
182}
183#endif
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static void jfs_put_super(struct super_block *sb)
186{
187 struct jfs_sb_info *sbi = JFS_SBI(sb);
188 int rc;
189
190 jfs_info("In jfs_put_super");
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200191
Jan Kara12fd0862017-04-11 16:21:01 +0200192 jfs_quota_off_umount(sb);
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 rc = jfs_umount(sb);
195 if (rc)
196 jfs_err("jfs_umount failed with return code %d", rc);
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000197
198 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600200 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
201 iput(sbi->direct_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 kfree(sbi);
204}
205
206enum {
207 Opt_integrity, Opt_nointegrity, Opt_iocharset, Opt_resize,
Mark Bellon8fc27512005-09-06 15:16:54 -0700208 Opt_resize_nosize, Opt_errors, Opt_ignore, Opt_err, Opt_quota,
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500209 Opt_usrquota, Opt_grpquota, Opt_uid, Opt_gid, Opt_umask,
210 Opt_discard, Opt_nodiscard, Opt_discard_minblk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Steven Whitehousea447c092008-10-13 10:46:57 +0100213static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 {Opt_integrity, "integrity"},
215 {Opt_nointegrity, "nointegrity"},
216 {Opt_iocharset, "iocharset=%s"},
217 {Opt_resize, "resize=%u"},
218 {Opt_resize_nosize, "resize"},
219 {Opt_errors, "errors=%s"},
220 {Opt_ignore, "noquota"},
Chengguang Xu02645bc2018-09-09 18:15:56 +0800221 {Opt_quota, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700222 {Opt_usrquota, "usrquota"},
223 {Opt_grpquota, "grpquota"},
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600224 {Opt_uid, "uid=%u"},
225 {Opt_gid, "gid=%u"},
226 {Opt_umask, "umask=%u"},
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500227 {Opt_discard, "discard"},
228 {Opt_nodiscard, "nodiscard"},
229 {Opt_discard_minblk, "discard=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 {Opt_err, NULL}
231};
232
233static int parse_options(char *options, struct super_block *sb, s64 *newLVSize,
234 int *flag)
235{
236 void *nls_map = (void *)-1; /* -1: no change; NULL: none */
237 char *p;
238 struct jfs_sb_info *sbi = JFS_SBI(sb);
239
240 *newLVSize = 0;
241
242 if (!options)
243 return 1;
244
245 while ((p = strsep(&options, ",")) != NULL) {
246 substring_t args[MAX_OPT_ARGS];
247 int token;
248 if (!*p)
249 continue;
250
251 token = match_token(p, tokens, args);
252 switch (token) {
253 case Opt_integrity:
254 *flag &= ~JFS_NOINTEGRITY;
255 break;
256 case Opt_nointegrity:
257 *flag |= JFS_NOINTEGRITY;
258 break;
259 case Opt_ignore:
260 /* Silently ignore the quota options */
261 /* Don't do anything ;-) */
262 break;
263 case Opt_iocharset:
264 if (nls_map && nls_map != (void *) -1)
265 unload_nls(nls_map);
266 if (!strcmp(args[0].from, "none"))
267 nls_map = NULL;
268 else {
269 nls_map = load_nls(args[0].from);
270 if (!nls_map) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500271 pr_err("JFS: charset not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 goto cleanup;
273 }
274 }
275 break;
276 case Opt_resize:
277 {
278 char *resize = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200279 int rc = kstrtoll(resize, 0, newLVSize);
280
281 if (rc)
282 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 break;
284 }
285 case Opt_resize_nosize:
286 {
Fabian Frederick684666e2017-01-23 18:50:23 +0100287 *newLVSize = i_size_read(sb->s_bdev->bd_inode) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 sb->s_blocksize_bits;
289 if (*newLVSize == 0)
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500290 pr_err("JFS: Cannot determine volume size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 break;
292 }
293 case Opt_errors:
294 {
295 char *errors = args[0].from;
296 if (!errors || !*errors)
297 goto cleanup;
298 if (!strcmp(errors, "continue")) {
299 *flag &= ~JFS_ERR_REMOUNT_RO;
300 *flag &= ~JFS_ERR_PANIC;
301 *flag |= JFS_ERR_CONTINUE;
302 } else if (!strcmp(errors, "remount-ro")) {
303 *flag &= ~JFS_ERR_CONTINUE;
304 *flag &= ~JFS_ERR_PANIC;
305 *flag |= JFS_ERR_REMOUNT_RO;
306 } else if (!strcmp(errors, "panic")) {
307 *flag &= ~JFS_ERR_CONTINUE;
308 *flag &= ~JFS_ERR_REMOUNT_RO;
309 *flag |= JFS_ERR_PANIC;
310 } else {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500311 pr_err("JFS: %s is an invalid error handler\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 errors);
313 goto cleanup;
314 }
315 break;
316 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700317
Dave Kleikamp115ff502006-07-26 14:52:13 -0500318#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700319 case Opt_quota:
320 case Opt_usrquota:
321 *flag |= JFS_USRQUOTA;
322 break;
323 case Opt_grpquota:
324 *flag |= JFS_GRPQUOTA;
325 break;
326#else
327 case Opt_usrquota:
328 case Opt_grpquota:
329 case Opt_quota:
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500330 pr_err("JFS: quota operations not supported\n");
Mark Bellon8fc27512005-09-06 15:16:54 -0700331 break;
332#endif
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600333 case Opt_uid:
334 {
335 char *uid = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200336 uid_t val;
337 int rc = kstrtouint(uid, 0, &val);
338
339 if (rc)
340 goto cleanup;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800341 sbi->uid = make_kuid(current_user_ns(), val);
342 if (!uid_valid(sbi->uid))
343 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600344 break;
345 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500346
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600347 case Opt_gid:
348 {
349 char *gid = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200350 gid_t val;
351 int rc = kstrtouint(gid, 0, &val);
352
353 if (rc)
354 goto cleanup;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800355 sbi->gid = make_kgid(current_user_ns(), val);
356 if (!gid_valid(sbi->gid))
357 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600358 break;
359 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500360
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600361 case Opt_umask:
362 {
363 char *umask = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200364 int rc = kstrtouint(umask, 8, &sbi->umask);
365
366 if (rc)
367 goto cleanup;
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600368 if (sbi->umask & ~0777) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500369 pr_err("JFS: Invalid value of umask\n");
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600370 goto cleanup;
371 }
372 break;
373 }
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500374
375 case Opt_discard:
376 {
377 struct request_queue *q = bdev_get_queue(sb->s_bdev);
378 /* if set to 1, even copying files will cause
379 * trimming :O
380 * -> user has more control over the online trimming
381 */
382 sbi->minblks_trim = 64;
Fabian Frederick789602e2014-05-22 10:42:24 +1000383 if (blk_queue_discard(q))
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500384 *flag |= JFS_DISCARD;
Fabian Frederick789602e2014-05-22 10:42:24 +1000385 else
386 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500387 break;
388 }
389
390 case Opt_nodiscard:
391 *flag &= ~JFS_DISCARD;
392 break;
393
394 case Opt_discard_minblk:
395 {
396 struct request_queue *q = bdev_get_queue(sb->s_bdev);
397 char *minblks_trim = args[0].from;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200398 int rc;
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500399 if (blk_queue_discard(q)) {
400 *flag |= JFS_DISCARD;
Fabian Frederickbb5e50a2014-05-21 20:29:29 +0200401 rc = kstrtouint(minblks_trim, 0,
402 &sbi->minblks_trim);
403 if (rc)
404 goto cleanup;
405 } else
Fabian Frederick789602e2014-05-22 10:42:24 +1000406 pr_err("JFS: discard option not supported on device\n");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500407 break;
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 default:
Fabian Frederick789602e2014-05-22 10:42:24 +1000411 printk("jfs: Unrecognized mount option \"%s\" or missing value\n",
412 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 goto cleanup;
414 }
415 }
416
417 if (nls_map != (void *) -1) {
418 /* Discard old (if remount) */
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000419 unload_nls(sbi->nls_tab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 sbi->nls_tab = nls_map;
421 }
422 return 1;
423
424cleanup:
425 if (nls_map && nls_map != (void *) -1)
426 unload_nls(nls_map);
427 return 0;
428}
429
430static int jfs_remount(struct super_block *sb, int *flags, char *data)
431{
432 s64 newLVSize = 0;
433 int rc = 0;
434 int flag = JFS_SBI(sb)->flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200435 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Theodore Ts'o02b99842014-03-13 10:14:33 -0400437 sync_filesystem(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000438 if (!parse_options(data, sb, &newLVSize, &flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return -EINVAL;
Jan Blunck22b26db2010-02-24 13:25:31 +0100440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (newLVSize) {
David Howellsbc98a422017-07-17 08:45:34 +0100442 if (sb_rdonly(sb)) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000443 pr_err("JFS: resize requires volume to be mounted read-write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -EROFS;
445 }
446 rc = jfs_extendfs(sb, newLVSize, 0);
Jan Blunck22b26db2010-02-24 13:25:31 +0100447 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return rc;
449 }
450
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800451 if (sb_rdonly(sb) && !(*flags & SB_RDONLY)) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600452 /*
453 * Invalidate any previously read metadata. fsck may have
454 * changed the on-disk data since we mounted r/o
455 */
456 truncate_inode_pages(JFS_SBI(sb)->direct_inode->i_mapping, 0);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200459 ret = jfs_mount_rw(sb, 1);
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400460
461 /* mark the fs r/w for quota activity */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800462 sb->s_flags &= ~SB_RDONLY;
Christoph Hellwigc79d9672010-05-19 07:16:40 -0400463
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400464 dquot_resume(sb, -1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200465 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800467 if (!sb_rdonly(sb) && (*flags & SB_RDONLY)) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400468 rc = dquot_suspend(sb, -1);
Fabian Frederick789602e2014-05-22 10:42:24 +1000469 if (rc < 0)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400470 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 rc = jfs_umount_rw(sb);
472 JFS_SBI(sb)->flag = flag;
473 return rc;
474 }
475 if ((JFS_SBI(sb)->flag & JFS_NOINTEGRITY) != (flag & JFS_NOINTEGRITY))
David Howellsbc98a422017-07-17 08:45:34 +0100476 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 rc = jfs_umount_rw(sb);
Jan Blunck22b26db2010-02-24 13:25:31 +0100478 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return rc;
Jan Blunck22b26db2010-02-24 13:25:31 +0100480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 JFS_SBI(sb)->flag = flag;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200482 ret = jfs_mount_rw(sb, 1);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200483 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485 JFS_SBI(sb)->flag = flag;
486
487 return 0;
488}
489
490static int jfs_fill_super(struct super_block *sb, void *data, int silent)
491{
492 struct jfs_sb_info *sbi;
493 struct inode *inode;
494 int rc;
495 s64 newLVSize = 0;
David Howellseab1df72008-02-07 00:15:43 -0800496 int flag, ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 jfs_info("In jfs_read_super: s_flags=0x%lx", sb->s_flags);
499
Fabian Frederick789602e2014-05-22 10:42:24 +1000500 sbi = kzalloc(sizeof(struct jfs_sb_info), GFP_KERNEL);
Jan Blunck22b26db2010-02-24 13:25:31 +0100501 if (!sbi)
Akinobu Mita087387f2006-09-14 09:22:38 -0500502 return -ENOMEM;
Jan Blunck22b26db2010-02-24 13:25:31 +0100503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 sb->s_fs_info = sbi;
Al Viro8de52772012-02-06 12:45:27 -0500505 sb->s_max_links = JFS_LINK_MAX;
Deepa Dinamani22b13962019-07-30 08:22:29 -0700506 sb->s_time_min = 0;
507 sb->s_time_max = U32_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 sbi->sb = sb;
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800509 sbi->uid = INVALID_UID;
510 sbi->gid = INVALID_GID;
511 sbi->umask = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* initialize the mount flag and determine the default error handler */
514 flag = JFS_ERR_REMOUNT_RO;
515
Jan Blunck684bdc72010-04-12 16:44:08 -0700516 if (!parse_options((char *) data, sb, &newLVSize, &flag))
517 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 sbi->flag = flag;
519
520#ifdef CONFIG_JFS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800521 sb->s_flags |= SB_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#endif
523
524 if (newLVSize) {
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500525 pr_err("resize option for remount only\n");
Jan Blunck684bdc72010-04-12 16:44:08 -0700526 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
529 /*
530 * Initialize blocksize to 4K.
531 */
532 sb_set_blocksize(sb, PSIZE);
533
534 /*
535 * Set method vectors.
536 */
537 sb->s_op = &jfs_super_operations;
538 sb->s_export_op = &jfs_export_operations;
Christoph Hellwig2cc6a5a2013-12-20 05:16:51 -0800539 sb->s_xattr = jfs_xattr_handlers;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400540#ifdef CONFIG_QUOTA
541 sb->dq_op = &dquot_operations;
Jan Kara12fd0862017-04-11 16:21:01 +0200542 sb->s_qcop = &jfs_quotactl_ops;
Jan Kara507e1fa2014-10-01 11:19:12 +0200543 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -0400544#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600546 /*
547 * Initialize direct-mapping inode/address-space
548 */
549 inode = new_inode(sb);
David Howellseab1df72008-02-07 00:15:43 -0800550 if (inode == NULL) {
551 ret = -ENOMEM;
Jan Blunck684bdc72010-04-12 16:44:08 -0700552 goto out_unload;
David Howellseab1df72008-02-07 00:15:43 -0800553 }
Fabian Frederick684666e2017-01-23 18:50:23 +0100554 inode->i_size = i_size_read(sb->s_bdev->bd_inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600555 inode->i_mapping->a_ops = &jfs_metapage_aops;
Al Viro5bef9152018-06-29 19:36:57 -0400556 inode_fake_hash(inode);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600557 mapping_set_gfp_mask(inode->i_mapping, GFP_NOFS);
558
559 sbi->direct_inode = inode;
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 rc = jfs_mount(sb);
562 if (rc) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000563 if (!silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 jfs_err("jfs_mount failed w/return code = %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600565 goto out_mount_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
David Howellsbc98a422017-07-17 08:45:34 +0100567 if (sb_rdonly(sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 sbi->log = NULL;
569 else {
570 rc = jfs_mount_rw(sb, 0);
571 if (rc) {
572 if (!silent) {
573 jfs_err("jfs_mount_rw failed, return code = %d",
574 rc);
575 }
576 goto out_no_rw;
577 }
578 }
579
580 sb->s_magic = JFS_SUPER_MAGIC;
581
Al Viro94b77bd2010-12-18 10:59:31 -0500582 if (sbi->mntflag & JFS_OS2)
583 sb->s_d_op = &jfs_ci_dentry_operations;
584
David Howellseab1df72008-02-07 00:15:43 -0800585 inode = jfs_iget(sb, ROOT_I);
586 if (IS_ERR(inode)) {
587 ret = PTR_ERR(inode);
Dave Kleikamp6536d282008-05-21 10:45:16 -0500588 goto out_no_rw;
David Howellseab1df72008-02-07 00:15:43 -0800589 }
Al Viro48fde702012-01-08 22:15:13 -0500590 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (!sb->s_root)
592 goto out_no_root;
593
Dave Kleikampc2273902017-08-31 16:46:59 -0500594 /* logical blocks are represented by 40 bits in pxd_t, etc.
595 * and page cache is indexed by long
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 */
Dave Kleikampc2273902017-08-31 16:46:59 -0500597 sb->s_maxbytes = min(((loff_t)sb->s_blocksize) << 40, MAX_LFS_FILESIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 sb->s_time_gran = 1;
599 return 0;
600
601out_no_root:
Dave Kleikamp6536d282008-05-21 10:45:16 -0500602 jfs_err("jfs_read_super: get root dentry failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604out_no_rw:
605 rc = jfs_umount(sb);
Fabian Frederick789602e2014-05-22 10:42:24 +1000606 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 jfs_err("jfs_umount failed with return code %d", rc);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600608out_mount_failed:
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800609 filemap_write_and_wait(sbi->direct_inode->i_mapping);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600610 truncate_inode_pages(sbi->direct_inode->i_mapping, 0);
611 make_bad_inode(sbi->direct_inode);
612 iput(sbi->direct_inode);
613 sbi->direct_inode = NULL;
Jan Blunck684bdc72010-04-12 16:44:08 -0700614out_unload:
Markus Elfring648695c2015-02-01 17:00:24 +0100615 unload_nls(sbi->nls_tab);
Jan Blunck684bdc72010-04-12 16:44:08 -0700616out_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 kfree(sbi);
David Howellseab1df72008-02-07 00:15:43 -0800618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Takashi Satoc4be0c12009-01-09 16:40:58 -0800621static int jfs_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 struct jfs_sb_info *sbi = JFS_SBI(sb);
624 struct jfs_log *log = sbi->log;
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500625 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
David Howellsbc98a422017-07-17 08:45:34 +0100627 if (!sb_rdonly(sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 txQuiesce(sb);
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500629 rc = lmLogShutdown(log);
630 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700631 jfs_error(sb, "lmLogShutdown failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500632
633 /* let operations fail rather than hang */
634 txResume(sb);
635
636 return rc;
637 }
638 rc = updateSuper(sb, FM_CLEAN);
639 if (rc) {
Joe Perchesb18db6d2016-03-30 05:23:16 -0700640 jfs_err("jfs_freeze: updateSuper failed");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500641 /*
642 * Don't fail here. Everything succeeded except
643 * marking the superblock clean, so there's really
644 * no harm in leaving it frozen for now.
645 */
646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Takashi Satoc4be0c12009-01-09 16:40:58 -0800648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Takashi Satoc4be0c12009-01-09 16:40:58 -0800651static int jfs_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 struct jfs_sb_info *sbi = JFS_SBI(sb);
654 struct jfs_log *log = sbi->log;
655 int rc = 0;
656
David Howellsbc98a422017-07-17 08:45:34 +0100657 if (!sb_rdonly(sb)) {
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500658 rc = updateSuper(sb, FM_MOUNT);
659 if (rc) {
Joe Percheseb8630d2013-06-04 16:39:15 -0700660 jfs_error(sb, "updateSuper failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500661 goto out;
662 }
663 rc = lmLogInit(log);
664 if (rc)
Joe Percheseb8630d2013-06-04 16:39:15 -0700665 jfs_error(sb, "lmLogInit failed\n");
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500666out:
667 txResume(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
Vahram Martirosyane9b37662013-05-24 13:57:12 +0500669 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Al Viro152a0832010-07-25 00:46:55 +0400672static struct dentry *jfs_do_mount(struct file_system_type *fs_type,
673 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Al Viro152a0832010-07-25 00:46:55 +0400675 return mount_bdev(fs_type, flags, dev_name, data, jfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678static int jfs_sync_fs(struct super_block *sb, int wait)
679{
680 struct jfs_log *log = JFS_SBI(sb)->log;
681
682 /* log == NULL indicates read-only mount */
Dave Kleikamp1c627822005-05-02 12:25:08 -0600683 if (log) {
Jan Karaa1177822012-07-03 16:45:29 +0200684 /*
685 * Write quota structures to quota file, sync_blockdev() will
686 * write them to disk later
687 */
688 dquot_writeback_dquots(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 jfs_flush_journal(log, wait);
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500690 jfs_syncpt(log, 0);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 return 0;
694}
695
Al Viro34c80b12011-12-08 21:32:45 -0500696static int jfs_show_options(struct seq_file *seq, struct dentry *root)
Mark Bellon8fc27512005-09-06 15:16:54 -0700697{
Al Viro34c80b12011-12-08 21:32:45 -0500698 struct jfs_sb_info *sbi = JFS_SBI(root->d_sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700699
Eric W. Biedermanc18cdc12012-02-10 11:40:34 -0800700 if (uid_valid(sbi->uid))
701 seq_printf(seq, ",uid=%d", from_kuid(&init_user_ns, sbi->uid));
702 if (gid_valid(sbi->gid))
703 seq_printf(seq, ",gid=%d", from_kgid(&init_user_ns, sbi->gid));
Dave Kleikamp69eb66d2006-03-09 13:59:30 -0600704 if (sbi->umask != -1)
705 seq_printf(seq, ",umask=%03o", sbi->umask);
Mark Bellon8fc27512005-09-06 15:16:54 -0700706 if (sbi->flag & JFS_NOINTEGRITY)
707 seq_puts(seq, ",nointegrity");
Tino Reichardtb40c2e62012-09-17 11:58:19 -0500708 if (sbi->flag & JFS_DISCARD)
709 seq_printf(seq, ",discard=%u", sbi->minblks_trim);
Miklos Szeredi5c5e32c2008-01-24 16:13:21 -0600710 if (sbi->nls_tab)
711 seq_printf(seq, ",iocharset=%s", sbi->nls_tab->charset);
712 if (sbi->flag & JFS_ERR_CONTINUE)
713 seq_printf(seq, ",errors=continue");
714 if (sbi->flag & JFS_ERR_PANIC)
715 seq_printf(seq, ",errors=panic");
Mark Bellon8fc27512005-09-06 15:16:54 -0700716
Dave Kleikamp115ff502006-07-26 14:52:13 -0500717#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -0700718 if (sbi->flag & JFS_USRQUOTA)
719 seq_puts(seq, ",usrquota");
720
721 if (sbi->flag & JFS_GRPQUOTA)
722 seq_puts(seq, ",grpquota");
723#endif
724
725 return 0;
726}
727
Dave Kleikamp115ff502006-07-26 14:52:13 -0500728#ifdef CONFIG_QUOTA
729
730/* Read data from quotafile - avoid pagecache and such because we cannot afford
731 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300732 * itself serializes the operations (and no one else should touch the files)
Dave Kleikamp115ff502006-07-26 14:52:13 -0500733 * we don't have to be afraid of races */
734static ssize_t jfs_quota_read(struct super_block *sb, int type, char *data,
735 size_t len, loff_t off)
736{
737 struct inode *inode = sb_dqopt(sb)->files[type];
738 sector_t blk = off >> sb->s_blocksize_bits;
739 int err = 0;
740 int offset = off & (sb->s_blocksize - 1);
741 int tocopy;
742 size_t toread;
743 struct buffer_head tmp_bh;
744 struct buffer_head *bh;
745 loff_t i_size = i_size_read(inode);
746
747 if (off > i_size)
748 return 0;
749 if (off+len > i_size)
750 len = i_size-off;
751 toread = len;
752 while (toread > 0) {
753 tocopy = sb->s_blocksize - offset < toread ?
754 sb->s_blocksize - offset : toread;
755
756 tmp_bh.b_state = 0;
Fabian Frederick93407472017-02-27 14:28:32 -0800757 tmp_bh.b_size = i_blocksize(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500758 err = jfs_get_block(inode, blk, &tmp_bh, 0);
759 if (err)
760 return err;
761 if (!buffer_mapped(&tmp_bh)) /* A hole? */
762 memset(data, 0, tocopy);
763 else {
764 bh = sb_bread(sb, tmp_bh.b_blocknr);
765 if (!bh)
766 return -EIO;
767 memcpy(data, bh->b_data+offset, tocopy);
768 brelse(bh);
769 }
770 offset = 0;
771 toread -= tocopy;
772 data += tocopy;
773 blk++;
774 }
775 return len;
776}
777
778/* Write to quotafile */
779static ssize_t jfs_quota_write(struct super_block *sb, int type,
780 const char *data, size_t len, loff_t off)
781{
782 struct inode *inode = sb_dqopt(sb)->files[type];
783 sector_t blk = off >> sb->s_blocksize_bits;
784 int err = 0;
785 int offset = off & (sb->s_blocksize - 1);
786 int tocopy;
787 size_t towrite = len;
788 struct buffer_head tmp_bh;
789 struct buffer_head *bh;
790
Al Viro59551022016-01-22 15:40:57 -0500791 inode_lock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500792 while (towrite > 0) {
793 tocopy = sb->s_blocksize - offset < towrite ?
794 sb->s_blocksize - offset : towrite;
795
796 tmp_bh.b_state = 0;
Fabian Frederick93407472017-02-27 14:28:32 -0800797 tmp_bh.b_size = i_blocksize(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500798 err = jfs_get_block(inode, blk, &tmp_bh, 1);
799 if (err)
800 goto out;
801 if (offset || tocopy != sb->s_blocksize)
802 bh = sb_bread(sb, tmp_bh.b_blocknr);
803 else
804 bh = sb_getblk(sb, tmp_bh.b_blocknr);
805 if (!bh) {
806 err = -EIO;
807 goto out;
808 }
809 lock_buffer(bh);
810 memcpy(bh->b_data+offset, data, tocopy);
811 flush_dcache_page(bh->b_page);
812 set_buffer_uptodate(bh);
813 mark_buffer_dirty(bh);
814 unlock_buffer(bh);
815 brelse(bh);
816 offset = 0;
817 towrite -= tocopy;
818 data += tocopy;
819 blk++;
820 }
821out:
Dan Carpenter9c836332009-04-07 14:48:16 +0300822 if (len == towrite) {
Al Viro59551022016-01-22 15:40:57 -0500823 inode_unlock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500824 return err;
Dan Carpenter9c836332009-04-07 14:48:16 +0300825 }
Dave Kleikamp115ff502006-07-26 14:52:13 -0500826 if (inode->i_size < off+len-towrite)
827 i_size_write(inode, off+len-towrite);
Deepa Dinamani078cd822016-09-14 07:48:04 -0700828 inode->i_mtime = inode->i_ctime = current_time(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500829 mark_inode_dirty(inode);
Al Viro59551022016-01-22 15:40:57 -0500830 inode_unlock(inode);
Dave Kleikamp115ff502006-07-26 14:52:13 -0500831 return len - towrite;
832}
833
Jan Kara507e1fa2014-10-01 11:19:12 +0200834static struct dquot **jfs_get_dquots(struct inode *inode)
835{
836 return JFS_IP(inode)->i_dquot;
837}
Jan Kara12fd0862017-04-11 16:21:01 +0200838
839static int jfs_quota_on(struct super_block *sb, int type, int format_id,
840 const struct path *path)
841{
842 int err;
843 struct inode *inode;
844
845 err = dquot_quota_on(sb, type, format_id, path);
846 if (err)
847 return err;
848
849 inode = d_inode(path->dentry);
850 inode_lock(inode);
851 JFS_IP(inode)->mode2 |= JFS_NOATIME_FL | JFS_IMMUTABLE_FL;
852 inode_set_flags(inode, S_NOATIME | S_IMMUTABLE,
853 S_NOATIME | S_IMMUTABLE);
854 inode_unlock(inode);
855 mark_inode_dirty(inode);
856
857 return 0;
858}
859
860static int jfs_quota_off(struct super_block *sb, int type)
861{
862 struct inode *inode = sb_dqopt(sb)->files[type];
863 int err;
864
865 if (!inode || !igrab(inode))
866 goto out;
867
868 err = dquot_quota_off(sb, type);
869 if (err)
870 goto out_put;
871
872 inode_lock(inode);
873 JFS_IP(inode)->mode2 &= ~(JFS_NOATIME_FL | JFS_IMMUTABLE_FL);
874 inode_set_flags(inode, 0, S_NOATIME | S_IMMUTABLE);
875 inode_unlock(inode);
876 mark_inode_dirty(inode);
877out_put:
878 iput(inode);
879 return err;
880out:
881 return dquot_quota_off(sb, type);
882}
Dave Kleikamp115ff502006-07-26 14:52:13 -0500883#endif
884
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800885static const struct super_operations jfs_super_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 .alloc_inode = jfs_alloc_inode,
Al Virob3b4a6e2019-04-15 22:48:59 -0400887 .free_inode = jfs_free_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 .dirty_inode = jfs_dirty_inode,
889 .write_inode = jfs_write_inode,
Al Viro62aff862010-06-07 00:28:54 -0400890 .evict_inode = jfs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 .put_super = jfs_put_super,
892 .sync_fs = jfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800893 .freeze_fs = jfs_freeze,
894 .unfreeze_fs = jfs_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 .statfs = jfs_statfs,
896 .remount_fs = jfs_remount,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500897 .show_options = jfs_show_options,
898#ifdef CONFIG_QUOTA
899 .quota_read = jfs_quota_read,
900 .quota_write = jfs_quota_write,
Jan Kara507e1fa2014-10-01 11:19:12 +0200901 .get_dquots = jfs_get_dquots,
Dave Kleikamp115ff502006-07-26 14:52:13 -0500902#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903};
904
Christoph Hellwig39655162007-10-21 16:42:17 -0700905static const struct export_operations jfs_export_operations = {
Christoph Hellwigd425de72007-10-21 16:42:09 -0700906 .fh_to_dentry = jfs_fh_to_dentry,
907 .fh_to_parent = jfs_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 .get_parent = jfs_get_parent,
909};
910
911static struct file_system_type jfs_fs_type = {
912 .owner = THIS_MODULE,
913 .name = "jfs",
Al Viro152a0832010-07-25 00:46:55 +0400914 .mount = jfs_do_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .kill_sb = kill_block_super,
916 .fs_flags = FS_REQUIRES_DEV,
917};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800918MODULE_ALIAS_FS("jfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700920static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 struct jfs_inode_info *jfs_ip = (struct jfs_inode_info *) foo;
923
Christoph Lametera35afb82007-05-16 22:10:57 -0700924 memset(jfs_ip, 0, sizeof(struct jfs_inode_info));
925 INIT_LIST_HEAD(&jfs_ip->anon_inode_list);
926 init_rwsem(&jfs_ip->rdwrlock);
927 mutex_init(&jfs_ip->commit_mutex);
928 init_rwsem(&jfs_ip->xattr_sem);
929 spin_lock_init(&jfs_ip->ag_lock);
930 jfs_ip->active_ag = -1;
Christoph Lametera35afb82007-05-16 22:10:57 -0700931 inode_init_once(&jfs_ip->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static int __init init_jfs_fs(void)
935{
936 int i;
937 int rc;
938
939 jfs_inode_cachep =
David Windsor8d2704d2017-06-10 22:50:38 -0400940 kmem_cache_create_usercopy("jfs_ip", sizeof(struct jfs_inode_info),
941 0, SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|SLAB_ACCOUNT,
Kees Cook961b33c2018-08-03 12:52:58 -0700942 offsetof(struct jfs_inode_info, i_inline), IDATASIZE,
David Windsor8d2704d2017-06-10 22:50:38 -0400943 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (jfs_inode_cachep == NULL)
945 return -ENOMEM;
946
947 /*
948 * Metapage initialization
949 */
950 rc = metapage_init();
951 if (rc) {
952 jfs_err("metapage_init failed w/rc = %d", rc);
953 goto free_slab;
954 }
955
956 /*
957 * Transaction Manager initialization
958 */
959 rc = txInit();
960 if (rc) {
961 jfs_err("txInit failed w/rc = %d", rc);
962 goto free_metapage;
963 }
964
965 /*
966 * I/O completion thread (endio)
967 */
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600968 jfsIOthread = kthread_run(jfsIOWait, NULL, "jfsIO");
969 if (IS_ERR(jfsIOthread)) {
970 rc = PTR_ERR(jfsIOthread);
971 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 goto end_txmngr;
973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 if (commit_threads < 1)
976 commit_threads = num_online_cpus();
977 if (commit_threads > MAX_COMMIT_THREADS)
978 commit_threads = MAX_COMMIT_THREADS;
979
980 for (i = 0; i < commit_threads; i++) {
Fabian Frederick789602e2014-05-22 10:42:24 +1000981 jfsCommitThread[i] = kthread_run(jfs_lazycommit, NULL,
982 "jfsCommit");
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600983 if (IS_ERR(jfsCommitThread[i])) {
984 rc = PTR_ERR(jfsCommitThread[i]);
985 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 commit_threads = i;
987 goto kill_committask;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600991 jfsSyncThread = kthread_run(jfs_sync, NULL, "jfsSync");
992 if (IS_ERR(jfsSyncThread)) {
993 rc = PTR_ERR(jfsSyncThread);
994 jfs_err("init_jfs_fs: fork failed w/rc = %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 goto kill_committask;
996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998#ifdef PROC_FS_JFS
999 jfs_proc_init();
1000#endif
1001
Al Viro76bf09f2012-03-17 18:14:34 -04001002 rc = register_filesystem(&jfs_fs_type);
1003 if (!rc)
1004 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Al Viro76bf09f2012-03-17 18:14:34 -04001006#ifdef PROC_FS_JFS
1007 jfs_proc_clean();
1008#endif
1009 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010kill_committask:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06001012 kthread_stop(jfsCommitThread[i]);
1013 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014end_txmngr:
1015 txExit();
1016free_metapage:
1017 metapage_exit();
1018free_slab:
1019 kmem_cache_destroy(jfs_inode_cachep);
1020 return rc;
1021}
1022
1023static void __exit exit_jfs_fs(void)
1024{
1025 int i;
1026
1027 jfs_info("exit_jfs_fs called");
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 txExit();
1030 metapage_exit();
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06001031
1032 kthread_stop(jfsIOthread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 for (i = 0; i < commit_threads; i++)
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06001034 kthread_stop(jfsCommitThread[i]);
1035 kthread_stop(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#ifdef PROC_FS_JFS
1037 jfs_proc_clean();
1038#endif
1039 unregister_filesystem(&jfs_fs_type);
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001040
1041 /*
1042 * Make sure all delayed rcu free inodes are flushed before we
1043 * destroy cache.
1044 */
1045 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 kmem_cache_destroy(jfs_inode_cachep);
1047}
1048
1049module_init(init_jfs_fs)
1050module_exit(exit_jfs_fs)