1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) International Business Machines Corp., 2000-2004
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
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
33 * mntvfs -> fileset ipimap+ -> aggregate ipbmap -> aggregate ipaimap;
34 * fileset vfs -> vp(1) <-> ... <-> vp(n) <->vproot;
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"
46 #include "jfs_metapage.h"
47 #include "jfs_debug.h"
53 static int chkSuper(struct super_block
*);
54 static int logMOUNT(struct super_block
*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
))) {
86 ipaimap
= diReadSpecial(sb
, AGGREGATE_I
, 0);
87 if (ipaimap
== NULL
) {
88 jfs_err("jfs_mount: Failed to read AGGREGATE_I");
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
);
105 * open aggregate block allocation map
107 ipbmap
= diReadSpecial(sb
, BMAP_I
, 0);
108 if (ipbmap
== NULL
) {
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
);
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
136 if ((sbi
->mntflag
& JFS_BAD_SAIT
) == 0) {
137 ipaimap2
= diReadSpecial(sb
, AGGREGATE_I
, 1);
139 jfs_err("jfs_mount: Failed to read AGGREGATE_I");
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",
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 */
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
);
188 errout41
: /* close fileset inode allocation map inode */
189 diFreeSpecial(ipimap
);
191 errout40
: /* fileset closed */
193 /* close secondary aggregate inode allocation map */
195 diUnmount(ipaimap2
, 1);
196 diFreeSpecial(ipaimap2
);
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 */
216 jfs_err("Mount JFS Failure: %d", rc
);
222 * NAME: jfs_mount_rw(sb, remount)
224 * FUNCTION: Completes read-write mount, or remounts read-only volume
227 int jfs_mount_rw(struct super_block
*sb
, int remount
)
229 struct jfs_sb_info
*sbi
= JFS_SBI(sb
);
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
238 if (chkSuper(sb
) || (sbi
->state
!= FM_CLEAN
))
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!");
249 dbUnmount(sbi
->ipbmap
, 1);
250 if ((rc
= dbMount(sbi
->ipbmap
))) {
251 jfs_err("jfs_mount_rw: dbMount failed!");
257 * open/initialize log
259 if ((rc
= lmLogOpen(sb
)))
263 * update file system superblock;
265 if ((rc
= updateSuper(sb
, FM_MOUNT
))) {
266 jfs_err("jfs_mount: updateSuper failed w/rc = %d", rc
);
272 * write MOUNT log record of the file system
282 * validate the superblock of the file system to be mounted and
283 * get the file system parameters.
286 * 0 with fragsize set if check successful
287 * error code if not successful
289 static int chkSuper(struct super_block
*sb
)
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
;
301 if ((rc
= readSuper(sb
, &bh
)))
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
) {
315 bsize
= le32_to_cpu(j_sb
->s_bsize
);
317 if (bsize
!= PSIZE
) {
318 jfs_err("Currently only 4K block size supported!");
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
) &&
354 jfs_err("jfs_mount: Mount Failure: File System Dirty.");
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).
367 sbi
->l2bsize
= le16_to_cpu(j_sb
->s_l2bsize
);
370 * For now, ignore s_pbsize, l2bfactor. All I/O going through buffer
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
;
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
;
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
;
404 if (sbi
->flag
& JFS_NOINTEGRITY
) {
405 if (state
== FM_DIRTY
) {
406 sbi
->p_state
= state
;
408 } else if (state
== FM_MOUNT
) {
409 sbi
->p_state
= sbi
->state
;
411 } else if (state
== FM_CLEAN
) {
412 state
= sbi
->p_state
;
414 jfs_err("updateSuper: bad state");
415 } else if (sbi
->state
== FM_DIRTY
)
418 if ((rc
= readSuper(sb
, &bh
)))
421 j_sb
= (struct jfs_superblock
*)bh
->b_data
;
423 j_sb
->s_state
= cpu_to_le32(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
);
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
);
459 /* read in secondary/replicated superblock */
460 *bpp
= sb_bread(sb
, SUPER2_OFF
>> sb
->s_blocksize_bits
);
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
;
489 lrd
.type
= cpu_to_le16(LOG_MOUNT
);
491 lrd
.aggregate
= cpu_to_le32(new_encode_dev(sb
->s_bdev
->bd_dev
));
492 lmLog(log
, NULL
, &lrd
, NULL
);