WIP FPC-III support
[linux/fpc-iii.git] / fs / jfs / jfs_mount.c
blob2935d4c776ec75e87980d6603b17181a2ab6f6e4
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) International Business Machines Corp., 2000-2004
4 */
6 /*
7 * Module: jfs_mount.c
9 * note: file system in transition to aggregate/fileset:
11 * file system mount is interpreted as the mount of aggregate,
12 * if not already mounted, and mount of the single/only fileset in
13 * the aggregate;
15 * a file system/aggregate is represented by an internal inode
16 * (aka mount inode) initialized with aggregate superblock;
17 * each vfs represents a fileset, and points to its "fileset inode
18 * allocation map inode" (aka fileset inode):
19 * (an aggregate itself is structured recursively as a filset:
20 * an internal vfs is constructed and points to its "fileset inode
21 * allocation map inode" (aka aggregate inode) where each inode
22 * represents a fileset inode) so that inode number is mapped to
23 * on-disk inode in uniform way at both aggregate and fileset level;
25 * each vnode/inode of a fileset is linked to its vfs (to facilitate
26 * per fileset inode operations, e.g., unmount of a fileset, etc.);
27 * each inode points to the mount inode (to facilitate access to
28 * per aggregate information, e.g., block size, etc.) as well as
29 * its file set inode.
31 * aggregate
32 * ipmnt
33 * mntvfs -> fileset ipimap+ -> aggregate ipbmap -> aggregate ipaimap;
34 * fileset vfs -> vp(1) <-> ... <-> vp(n) <->vproot;
37 #include <linux/fs.h>
38 #include <linux/buffer_head.h>
39 #include <linux/blkdev.h>
41 #include "jfs_incore.h"
42 #include "jfs_filsys.h"
43 #include "jfs_superblock.h"
44 #include "jfs_dmap.h"
45 #include "jfs_imap.h"
46 #include "jfs_metapage.h"
47 #include "jfs_debug.h"
51 * forward references
53 static int chkSuper(struct super_block *);
54 static int logMOUNT(struct super_block *sb);
57 * NAME: jfs_mount(sb)
59 * FUNCTION: vfs_mount()
61 * PARAMETER: sb - super block
63 * RETURN: -EBUSY - device already mounted or open for write
64 * -EBUSY - cvrdvp already mounted;
65 * -EBUSY - mount table full
66 * -ENOTDIR- cvrdvp not directory on a device mount
67 * -ENXIO - device open failure
69 int jfs_mount(struct super_block *sb)
71 int rc = 0; /* Return code */
72 struct jfs_sb_info *sbi = JFS_SBI(sb);
73 struct inode *ipaimap = NULL;
74 struct inode *ipaimap2 = NULL;
75 struct inode *ipimap = NULL;
76 struct inode *ipbmap = NULL;
79 * read/validate superblock
80 * (initialize mount inode from the superblock)
82 if ((rc = chkSuper(sb))) {
83 goto errout20;
86 ipaimap = diReadSpecial(sb, AGGREGATE_I, 0);
87 if (ipaimap == NULL) {
88 jfs_err("jfs_mount: Failed to read AGGREGATE_I");
89 rc = -EIO;
90 goto errout20;
92 sbi->ipaimap = ipaimap;
94 jfs_info("jfs_mount: ipaimap:0x%p", ipaimap);
97 * initialize aggregate inode allocation map
99 if ((rc = diMount(ipaimap))) {
100 jfs_err("jfs_mount: diMount(ipaimap) failed w/rc = %d", rc);
101 goto errout21;
105 * open aggregate block allocation map
107 ipbmap = diReadSpecial(sb, BMAP_I, 0);
108 if (ipbmap == NULL) {
109 rc = -EIO;
110 goto errout22;
113 jfs_info("jfs_mount: ipbmap:0x%p", ipbmap);
115 sbi->ipbmap = ipbmap;
118 * initialize aggregate block allocation map
120 if ((rc = dbMount(ipbmap))) {
121 jfs_err("jfs_mount: dbMount failed w/rc = %d", rc);
122 goto errout22;
126 * open the secondary aggregate inode allocation map
128 * This is a duplicate of the aggregate inode allocation map.
130 * hand craft a vfs in the same fashion as we did to read ipaimap.
131 * By adding INOSPEREXT (32) to the inode number, we are telling
132 * diReadSpecial that we are reading from the secondary aggregate
133 * inode table. This also creates a unique entry in the inode hash
134 * table.
136 if ((sbi->mntflag & JFS_BAD_SAIT) == 0) {
137 ipaimap2 = diReadSpecial(sb, AGGREGATE_I, 1);
138 if (!ipaimap2) {
139 jfs_err("jfs_mount: Failed to read AGGREGATE_I");
140 rc = -EIO;
141 goto errout35;
143 sbi->ipaimap2 = ipaimap2;
145 jfs_info("jfs_mount: ipaimap2:0x%p", ipaimap2);
148 * initialize secondary aggregate inode allocation map
150 if ((rc = diMount(ipaimap2))) {
151 jfs_err("jfs_mount: diMount(ipaimap2) failed, rc = %d",
152 rc);
153 goto errout35;
155 } else
156 /* Secondary aggregate inode table is not valid */
157 sbi->ipaimap2 = NULL;
160 * mount (the only/single) fileset
163 * open fileset inode allocation map (aka fileset inode)
165 ipimap = diReadSpecial(sb, FILESYSTEM_I, 0);
166 if (ipimap == NULL) {
167 jfs_err("jfs_mount: Failed to read FILESYSTEM_I");
168 /* open fileset secondary inode allocation map */
169 rc = -EIO;
170 goto errout40;
172 jfs_info("jfs_mount: ipimap:0x%p", ipimap);
174 /* map further access of per fileset inodes by the fileset inode */
175 sbi->ipimap = ipimap;
177 /* initialize fileset inode allocation map */
178 if ((rc = diMount(ipimap))) {
179 jfs_err("jfs_mount: diMount failed w/rc = %d", rc);
180 goto errout41;
183 goto out;
186 * unwind on error
188 errout41: /* close fileset inode allocation map inode */
189 diFreeSpecial(ipimap);
191 errout40: /* fileset closed */
193 /* close secondary aggregate inode allocation map */
194 if (ipaimap2) {
195 diUnmount(ipaimap2, 1);
196 diFreeSpecial(ipaimap2);
199 errout35:
201 /* close aggregate block allocation map */
202 dbUnmount(ipbmap, 1);
203 diFreeSpecial(ipbmap);
205 errout22: /* close aggregate inode allocation map */
207 diUnmount(ipaimap, 1);
209 errout21: /* close aggregate inodes */
210 diFreeSpecial(ipaimap);
211 errout20: /* aggregate closed */
213 out:
215 if (rc)
216 jfs_err("Mount JFS Failure: %d", rc);
218 return rc;
222 * NAME: jfs_mount_rw(sb, remount)
224 * FUNCTION: Completes read-write mount, or remounts read-only volume
225 * as read-write
227 int jfs_mount_rw(struct super_block *sb, int remount)
229 struct jfs_sb_info *sbi = JFS_SBI(sb);
230 int rc;
233 * If we are re-mounting a previously read-only volume, we want to
234 * re-read the inode and block maps, since fsck.jfs may have updated
235 * them.
237 if (remount) {
238 if (chkSuper(sb) || (sbi->state != FM_CLEAN))
239 return -EINVAL;
241 truncate_inode_pages(sbi->ipimap->i_mapping, 0);
242 truncate_inode_pages(sbi->ipbmap->i_mapping, 0);
243 diUnmount(sbi->ipimap, 1);
244 if ((rc = diMount(sbi->ipimap))) {
245 jfs_err("jfs_mount_rw: diMount failed!");
246 return rc;
249 dbUnmount(sbi->ipbmap, 1);
250 if ((rc = dbMount(sbi->ipbmap))) {
251 jfs_err("jfs_mount_rw: dbMount failed!");
252 return rc;
257 * open/initialize log
259 if ((rc = lmLogOpen(sb)))
260 return rc;
263 * update file system superblock;
265 if ((rc = updateSuper(sb, FM_MOUNT))) {
266 jfs_err("jfs_mount: updateSuper failed w/rc = %d", rc);
267 lmLogClose(sb);
268 return rc;
272 * write MOUNT log record of the file system
274 logMOUNT(sb);
276 return rc;
280 * chkSuper()
282 * validate the superblock of the file system to be mounted and
283 * get the file system parameters.
285 * returns
286 * 0 with fragsize set if check successful
287 * error code if not successful
289 static int chkSuper(struct super_block *sb)
291 int rc = 0;
292 struct jfs_sb_info *sbi = JFS_SBI(sb);
293 struct jfs_superblock *j_sb;
294 struct buffer_head *bh;
295 int AIM_bytesize, AIT_bytesize;
296 int expected_AIM_bytesize, expected_AIT_bytesize;
297 s64 AIM_byte_addr, AIT_byte_addr, fsckwsp_addr;
298 s64 byte_addr_diff0, byte_addr_diff1;
299 s32 bsize;
301 if ((rc = readSuper(sb, &bh)))
302 return rc;
303 j_sb = (struct jfs_superblock *)bh->b_data;
306 * validate superblock
308 /* validate fs signature */
309 if (strncmp(j_sb->s_magic, JFS_MAGIC, 4) ||
310 le32_to_cpu(j_sb->s_version) > JFS_VERSION) {
311 rc = -EINVAL;
312 goto out;
315 bsize = le32_to_cpu(j_sb->s_bsize);
316 #ifdef _JFS_4K
317 if (bsize != PSIZE) {
318 jfs_err("Currently only 4K block size supported!");
319 rc = -EINVAL;
320 goto out;
322 #endif /* _JFS_4K */
324 jfs_info("superblock: flag:0x%08x state:0x%08x size:0x%Lx",
325 le32_to_cpu(j_sb->s_flag), le32_to_cpu(j_sb->s_state),
326 (unsigned long long) le64_to_cpu(j_sb->s_size));
328 /* validate the descriptors for Secondary AIM and AIT */
329 if ((j_sb->s_flag & cpu_to_le32(JFS_BAD_SAIT)) !=
330 cpu_to_le32(JFS_BAD_SAIT)) {
331 expected_AIM_bytesize = 2 * PSIZE;
332 AIM_bytesize = lengthPXD(&(j_sb->s_aim2)) * bsize;
333 expected_AIT_bytesize = 4 * PSIZE;
334 AIT_bytesize = lengthPXD(&(j_sb->s_ait2)) * bsize;
335 AIM_byte_addr = addressPXD(&(j_sb->s_aim2)) * bsize;
336 AIT_byte_addr = addressPXD(&(j_sb->s_ait2)) * bsize;
337 byte_addr_diff0 = AIT_byte_addr - AIM_byte_addr;
338 fsckwsp_addr = addressPXD(&(j_sb->s_fsckpxd)) * bsize;
339 byte_addr_diff1 = fsckwsp_addr - AIT_byte_addr;
340 if ((AIM_bytesize != expected_AIM_bytesize) ||
341 (AIT_bytesize != expected_AIT_bytesize) ||
342 (byte_addr_diff0 != AIM_bytesize) ||
343 (byte_addr_diff1 <= AIT_bytesize))
344 j_sb->s_flag |= cpu_to_le32(JFS_BAD_SAIT);
347 if ((j_sb->s_flag & cpu_to_le32(JFS_GROUPCOMMIT)) !=
348 cpu_to_le32(JFS_GROUPCOMMIT))
349 j_sb->s_flag |= cpu_to_le32(JFS_GROUPCOMMIT);
351 /* validate fs state */
352 if (j_sb->s_state != cpu_to_le32(FM_CLEAN) &&
353 !sb_rdonly(sb)) {
354 jfs_err("jfs_mount: Mount Failure: File System Dirty.");
355 rc = -EINVAL;
356 goto out;
359 sbi->state = le32_to_cpu(j_sb->s_state);
360 sbi->mntflag = le32_to_cpu(j_sb->s_flag);
363 * JFS always does I/O by 4K pages. Don't tell the buffer cache
364 * that we use anything else (leave s_blocksize alone).
366 sbi->bsize = bsize;
367 sbi->l2bsize = le16_to_cpu(j_sb->s_l2bsize);
370 * For now, ignore s_pbsize, l2bfactor. All I/O going through buffer
371 * cache.
373 sbi->nbperpage = PSIZE >> sbi->l2bsize;
374 sbi->l2nbperpage = L2PSIZE - sbi->l2bsize;
375 sbi->l2niperblk = sbi->l2bsize - L2DISIZE;
376 if (sbi->mntflag & JFS_INLINELOG)
377 sbi->logpxd = j_sb->s_logpxd;
378 else {
379 sbi->logdev = new_decode_dev(le32_to_cpu(j_sb->s_logdev));
380 uuid_copy(&sbi->uuid, &j_sb->s_uuid);
381 uuid_copy(&sbi->loguuid, &j_sb->s_loguuid);
383 sbi->fsckpxd = j_sb->s_fsckpxd;
384 sbi->ait2 = j_sb->s_ait2;
386 out:
387 brelse(bh);
388 return rc;
393 * updateSuper()
395 * update synchronously superblock if it is mounted read-write.
397 int updateSuper(struct super_block *sb, uint state)
399 struct jfs_superblock *j_sb;
400 struct jfs_sb_info *sbi = JFS_SBI(sb);
401 struct buffer_head *bh;
402 int rc;
404 if (sbi->flag & JFS_NOINTEGRITY) {
405 if (state == FM_DIRTY) {
406 sbi->p_state = state;
407 return 0;
408 } else if (state == FM_MOUNT) {
409 sbi->p_state = sbi->state;
410 state = FM_DIRTY;
411 } else if (state == FM_CLEAN) {
412 state = sbi->p_state;
413 } else
414 jfs_err("updateSuper: bad state");
415 } else if (sbi->state == FM_DIRTY)
416 return 0;
418 if ((rc = readSuper(sb, &bh)))
419 return rc;
421 j_sb = (struct jfs_superblock *)bh->b_data;
423 j_sb->s_state = cpu_to_le32(state);
424 sbi->state = state;
426 if (state == FM_MOUNT) {
427 /* record log's dev_t and mount serial number */
428 j_sb->s_logdev = cpu_to_le32(new_encode_dev(sbi->log->bdev->bd_dev));
429 j_sb->s_logserial = cpu_to_le32(sbi->log->serial);
430 } else if (state == FM_CLEAN) {
432 * If this volume is shared with OS/2, OS/2 will need to
433 * recalculate DASD usage, since we don't deal with it.
435 if (j_sb->s_flag & cpu_to_le32(JFS_DASD_ENABLED))
436 j_sb->s_flag |= cpu_to_le32(JFS_DASD_PRIME);
439 mark_buffer_dirty(bh);
440 sync_dirty_buffer(bh);
441 brelse(bh);
443 return 0;
448 * readSuper()
450 * read superblock by raw sector address
452 int readSuper(struct super_block *sb, struct buffer_head **bpp)
454 /* read in primary superblock */
455 *bpp = sb_bread(sb, SUPER1_OFF >> sb->s_blocksize_bits);
456 if (*bpp)
457 return 0;
459 /* read in secondary/replicated superblock */
460 *bpp = sb_bread(sb, SUPER2_OFF >> sb->s_blocksize_bits);
461 if (*bpp)
462 return 0;
464 return -EIO;
469 * logMOUNT()
471 * function: write a MOUNT log record for file system.
473 * MOUNT record keeps logredo() from processing log records
474 * for this file system past this point in log.
475 * it is harmless if mount fails.
477 * note: MOUNT record is at aggregate level, not at fileset level,
478 * since log records of previous mounts of a fileset
479 * (e.g., AFTER record of extent allocation) have to be processed
480 * to update block allocation map at aggregate level.
482 static int logMOUNT(struct super_block *sb)
484 struct jfs_log *log = JFS_SBI(sb)->log;
485 struct lrd lrd;
487 lrd.logtid = 0;
488 lrd.backchain = 0;
489 lrd.type = cpu_to_le16(LOG_MOUNT);
490 lrd.length = 0;
491 lrd.aggregate = cpu_to_le32(new_encode_dev(sb->s_bdev->bd_dev));
492 lmLog(log, NULL, &lrd, NULL);
494 return 0;