From 1c85e6a35d93195e896b030d9a55f7ac4ccee2c3 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Fri, 21 Jun 2002 06:18:05 +0000 Subject: This commit adds basic support for the UFS2 filesystem. The UFS2 filesystem expands the inode to 256 bytes to make space for 64-bit block pointers. It also adds a file-creation time field, an ability to use jumbo blocks per inode to allow extent like pointer density, and space for extended attributes (up to twice the filesystem block size worth of attributes, e.g., on a 16K filesystem, there is space for 32K of attributes). UFS2 fully supports and runs existing UFS1 filesystems. New filesystems built using newfs can be built in either UFS1 or UFS2 format using the -O option. In this commit UFS1 is the default format, so if you want to build UFS2 format filesystems, you must specify -O 2. This default will be changed to UFS2 when UFS2 proves itself to be stable. In this commit the boot code for reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c) as there is insufficient space in the boot block. Once the size of the boot block is increased, this code can be defined. Things to note: the definition of SBSIZE has changed to SBLOCKSIZE. The header file must be included before so as to get the definitions of ufs2_daddr_t and ufs_lbn_t. Still TODO: Verify that the first level bootstraps work for all the architectures. Convert the utility ffsinfo to understand UFS2 and test growfs. Add support for the extended attribute storage. Update soft updates to ensure integrity of extended attribute storage. Switch the current extended attribute interfaces to use the extended attribute storage. Add the extent like functionality (framework is there, but is currently never used). Sponsored by: DARPA & NAI Labs. Reviewed by: Poul-Henning Kamp --- sbin/clri/clri.c | 67 ++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 46 insertions(+), 21 deletions(-) (limited to 'sbin/clri') diff --git a/sbin/clri/clri.c b/sbin/clri/clri.c index 2dd6b2df6085..3a42177e95cd 100644 --- a/sbin/clri/clri.c +++ b/sbin/clri/clri.c @@ -61,6 +61,11 @@ static const char rcsid[] = #include #include +/* + * Possible superblock locations ordered from most to least likely. + */ +static int sblock_try[] = SBLOCKSEARCH; + static void usage(void) { @@ -74,13 +79,13 @@ main(argc, argv) char *argv[]; { struct fs *sbp; - struct dinode *ip; - int fd; - struct dinode ibuf[MAXBSIZE / sizeof (struct dinode)]; + struct ufs1_dinode *dp1; + struct ufs2_dinode *dp2; + char *ibuf[MAXBSIZE]; long generation, bsize; off_t offset; - int inonum; - char *fs, sblock[SBSIZE]; + int i, fd, inonum; + char *fs, sblock[SBLOCKSIZE]; if (argc < 3) usage(); @@ -90,15 +95,23 @@ main(argc, argv) /* get the superblock. */ if ((fd = open(fs, O_RDWR, 0)) < 0) err(1, "%s", fs); - if (lseek(fd, (off_t)(SBLOCK * DEV_BSIZE), SEEK_SET) < 0) - err(1, "%s", fs); - if (read(fd, sblock, sizeof(sblock)) != sizeof(sblock)) - errx(1, "%s: can't read superblock", fs); - - sbp = (struct fs *)sblock; - if (sbp->fs_magic != FS_MAGIC) - errx(1, "%s: superblock magic number 0x%x, not 0x%x", - fs, sbp->fs_magic, FS_MAGIC); + for (i = 0; sblock_try[i] != -1; i++) { + if (lseek(fd, (off_t)(sblock_try[i]), SEEK_SET) < 0) + err(1, "%s", fs); + if (read(fd, sblock, sizeof(sblock)) != sizeof(sblock)) + errx(1, "%s: can't read superblock", fs); + sbp = (struct fs *)sblock; + if ((sbp->fs_magic == FS_UFS1_MAGIC || + (sbp->fs_magic == FS_UFS2_MAGIC && + sbp->fs_sblockloc == numfrags(sbp, sblock_try[i]))) && + sbp->fs_bsize <= MAXBSIZE && + sbp->fs_bsize >= sizeof(struct fs)) + break; + } + if (sblock_try[i] == -1) { + fprintf(stderr, "Cannot find filesystem\n"); + exit(2); + } bsize = sbp->fs_bsize; /* remaining arguments are inode numbers. */ @@ -119,13 +132,25 @@ main(argc, argv) if (read(fd, ibuf, bsize) != bsize) err(1, "%s", fs); - /* get the inode within the block. */ - ip = &ibuf[ino_to_fsbo(sbp, inonum)]; - - /* clear the inode, and bump the generation count. */ - generation = ip->di_gen + 1; - memset(ip, 0, sizeof(*ip)); - ip->di_gen = generation; + if (sbp->fs_magic == FS_UFS2_MAGIC) { + /* get the inode within the block. */ + dp2 = &(((struct ufs2_dinode *)ibuf) + [ino_to_fsbo(sbp, inonum)]); + + /* clear the inode, and bump the generation count. */ + generation = dp2->di_gen + 1; + memset(dp2, 0, sizeof(*dp2)); + dp2->di_gen = generation; + } else { + /* get the inode within the block. */ + dp1 = &(((struct ufs1_dinode *)ibuf) + [ino_to_fsbo(sbp, inonum)]); + + /* clear the inode, and bump the generation count. */ + generation = dp1->di_gen + 1; + memset(dp1, 0, sizeof(*dp1)); + dp1->di_gen = generation; + } /* backup and write the block */ if (lseek(fd, (off_t)-bsize, SEEK_CUR) < 0) -- cgit v1.2.3