1 1.3 perseant # $NetBSD: README,v 1.3 1999/03/15 00:46:47 perseant Exp $ 2 1.2 cgd 3 1.2 cgd # @(#)README 8.1 (Berkeley) 6/11/93 4 1.1 mycroft 5 1.3 perseant The file system is reasonably stable...I think. 6 1.1 mycroft 7 1.3 perseant For details on the implementation, performance and why garbage 8 1.3 perseant collection always wins, see Dr. Margo Seltzer's thesis available for 9 1.3 perseant anonymous ftp from toe.cs.berkeley.edu, in the directory 10 1.3 perseant pub/personal/margo/thesis.ps.Z, or the January 1993 USENIX paper. 11 1.1 mycroft 12 1.1 mycroft ---------- 13 1.1 mycroft The disk is laid out in segments. The first segment starts 8K into the 14 1.1 mycroft disk (the first 8K is used for boot information). Each segment is composed 15 1.1 mycroft of the following: 16 1.1 mycroft 17 1.1 mycroft An optional super block 18 1.1 mycroft One or more groups of: 19 1.1 mycroft segment summary 20 1.1 mycroft 0 or more data blocks 21 1.1 mycroft 0 or more inode blocks 22 1.1 mycroft 23 1.1 mycroft The segment summary and inode/data blocks start after the super block (if 24 1.1 mycroft present), and grow toward the end of the segment. 25 1.1 mycroft 26 1.1 mycroft _______________________________________________ 27 1.1 mycroft | | | | | 28 1.1 mycroft | summary | data/inode | summary | data/inode | 29 1.1 mycroft | block | blocks | block | blocks | ... 30 1.1 mycroft |_________|____________|_________|____________| 31 1.1 mycroft 32 1.1 mycroft The data/inode blocks following a summary block are described by the 33 1.1 mycroft summary block. In order to permit the segment to be written in any order 34 1.1 mycroft and in a forward direction only, a checksum is calculated across the 35 1.1 mycroft blocks described by the summary. Additionally, the summary is checksummed 36 1.1 mycroft and timestamped. Both of these are intended for recovery; the former is 37 1.1 mycroft to make it easy to determine that it *is* a summary block and the latter 38 1.1 mycroft is to make it easy to determine when recovery is finished for partially 39 1.1 mycroft written segments. These checksums are also used by the cleaner. 40 1.1 mycroft 41 1.1 mycroft Summary block (detail) 42 1.1 mycroft ________________ 43 1.1 mycroft | sum cksum | 44 1.1 mycroft | data cksum | 45 1.1 mycroft | next segment | 46 1.1 mycroft | timestamp | 47 1.1 mycroft | FINFO count | 48 1.1 mycroft | inode count | 49 1.1 mycroft | flags | 50 1.1 mycroft |______________| 51 1.1 mycroft | FINFO-1 | 0 or more file info structures, identifying the 52 1.1 mycroft | . | blocks in the segment. 53 1.1 mycroft | . | 54 1.1 mycroft | . | 55 1.1 mycroft | FINFO-N | 56 1.1 mycroft | inode-N | 57 1.1 mycroft | . | 58 1.1 mycroft | . | 59 1.1 mycroft | . | 0 or more inode daddr_t's, identifying the inode 60 1.1 mycroft | inode-1 | blocks in the segment. 61 1.1 mycroft |______________| 62 1.1 mycroft 63 1.1 mycroft Inode blocks are blocks of on-disk inodes in the same format as those in 64 1.1 mycroft the FFS. However, spare[0] contains the inode number of the inode so we 65 1.1 mycroft can find a particular inode on a page. They are packed page_size / 66 1.1 mycroft sizeof(inode) to a block. Data blocks are exactly as in the FFS. Both 67 1.1 mycroft inodes and data blocks move around the file system at will. 68 1.1 mycroft 69 1.1 mycroft The file system is described by a super-block which is replicated and 70 1.1 mycroft occurs as the first block of the first and other segments. (The maximum 71 1.1 mycroft number of super-blocks is MAXNUMSB). Each super-block maintains a list 72 1.1 mycroft of the disk addresses of all the super-blocks. The super-block maintains 73 1.1 mycroft a small amount of checkpoint information, essentially just enough to find 74 1.1 mycroft the inode for the IFILE (fs->lfs_idaddr). 75 1.1 mycroft 76 1.1 mycroft The IFILE is visible in the file system, as inode number IFILE_INUM. It 77 1.1 mycroft contains information shared between the kernel and various user processes. 78 1.1 mycroft 79 1.1 mycroft Ifile (detail) 80 1.1 mycroft ________________ 81 1.1 mycroft | cleaner info | Cleaner information per file system. (Page 82 1.1 mycroft | | granularity.) 83 1.1 mycroft |______________| 84 1.1 mycroft | segment | Space available and last modified times per 85 1.1 mycroft | usage table | segment. (Page granularity.) 86 1.1 mycroft |______________| 87 1.1 mycroft | IFILE-1 | Per inode status information: current version #, 88 1.1 mycroft | . | if currently allocated, last access time and 89 1.1 mycroft | . | current disk address of containing inode block. 90 1.1 mycroft | . | If current disk address is LFS_UNUSED_DADDR, the 91 1.1 mycroft | IFILE-N | inode is not in use, and it's on the free list. 92 1.1 mycroft |______________| 93 1.1 mycroft 94 1.1 mycroft 95 1.1 mycroft First Segment at Creation Time: 96 1.1 mycroft _____________________________________________________________ 97 1.1 mycroft | | | | | | | | 98 1.1 mycroft | 8K pad | Super | summary | inode | ifile | root | l + f | 99 1.1 mycroft | | block | | block | | dir | dir | 100 1.1 mycroft |________|_______|_________|_______|_______|_______|_______| 101 1.1 mycroft ^ 102 1.1 mycroft Segment starts here. 103 1.1 mycroft 104 1.1 mycroft Some differences from the Sprite LFS implementation. 105 1.1 mycroft 106 1.1 mycroft 1. The LFS implementation placed the ifile metadata and the super block 107 1.1 mycroft at fixed locations. This implementation replicates the super block 108 1.1 mycroft and puts each at a fixed location. The checkpoint data is divided into 109 1.1 mycroft two parts -- just enough information to find the IFILE is stored in 110 1.1 mycroft two of the super blocks, although it is not toggled between them as in 111 1.1 mycroft the Sprite implementation. (This was deliberate, to avoid a single 112 1.1 mycroft point of failure.) The remaining checkpoint information is treated as 113 1.1 mycroft a regular file, which means that the cleaner info, the segment usage 114 1.1 mycroft table and the ifile meta-data are stored in normal log segments. 115 1.1 mycroft (Tastes great, less filling...) 116 1.1 mycroft 117 1.1 mycroft 2. The segment layout is radically different in Sprite; this implementation 118 1.1 mycroft uses something a lot like network framing, where data/inode blocks are 119 1.1 mycroft written asynchronously, and a checksum is used to validate any set of 120 1.1 mycroft summary and data/inode blocks. Sprite writes summary blocks synchronously 121 1.1 mycroft after the data/inode blocks have been written and the existence of the 122 1.1 mycroft summary block validates the data/inode blocks. This permits us to write 123 1.1 mycroft everything contiguously, even partial segments and their summaries, whereas 124 1.1 mycroft Sprite is forced to seek (from the end of the data inode to the summary 125 1.1 mycroft which lives at the end of the segment). Additionally, writing the summary 126 1.1 mycroft synchronously should cost about 1/2 a rotation per summary. 127 1.1 mycroft 128 1.1 mycroft 3. Sprite LFS distinguishes between different types of blocks in the segment. 129 1.1 mycroft Other than inode blocks and data blocks, we don't. 130 1.1 mycroft 131 1.1 mycroft 4. Sprite LFS traverses the IFILE looking for free blocks. We maintain a 132 1.1 mycroft free list threaded through the IFILE entries. 133 1.1 mycroft 134 1.1 mycroft 5. The cleaner runs in user space, as opposed to kernel space. It shares 135 1.1 mycroft information with the kernel by reading/writing the IFILE and through 136 1.1 mycroft cleaner specific system calls. 137 1.1 mycroft 138