1 /* 2 * Copyright (c) 2002 Networks Associates Technology, Inc. 3 * All rights reserved. 4 * 5 * This software was developed for the FreeBSD Project by Marshall 6 * Kirk McKusick and Network Associates Laboratories, the Security 7 * Research Division of Network Associates, Inc. under DARPA/SPAWAR 8 * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS 9 * research program 10 * 11 * Copyright (c) 1982, 1989, 1993 12 * The Regents of the University of California. All rights reserved. 13 * (c) UNIX System Laboratories, Inc. 14 * Copyright (c) 1983, 1992, 1993 15 * The Regents of the University of California. All rights reserved. 16 * 17 * Redistribution and use in source and binary forms, with or without 18 * modification, are permitted provided that the following conditions 19 * are met: 20 * 1. Redistributions of source code must retain the above copyright 21 * notice, this list of conditions and the following disclaimer. 22 * 2. Redistributions in binary form must reproduce the above copyright 23 * notice, this list of conditions and the following disclaimer in the 24 * documentation and/or other materials provided with the distribution. 25 * 3. All advertising materials mentioning features or use of this software 26 * must display the following acknowledgement: 27 * This product includes software developed by the University of 28 * California, Berkeley and its contributors. 29 * 4. Neither the name of the University nor the names of its contributors 30 * may be used to endorse or promote products derived from this software 31 * without specific prior written permission. 32 * 33 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 34 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 35 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 36 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 37 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 39 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 41 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 42 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 43 * SUCH DAMAGE. 44 */ 45 46 #ifndef lint 47 static const char copyright[] = 48 "@(#) Copyright (c) 1983, 1992, 1993\n\ 49 The Regents of the University of California. All rights reserved.\n"; 50 #endif /* not lint */ 51 52 #ifndef lint 53 #if 0 54 static char sccsid[] = "@(#)dumpfs.c 8.5 (Berkeley) 4/29/95"; 55 #endif 56 static const char rcsid[] = 57 "$FreeBSD$"; 58 #endif /* not lint */ 59 60 #include <sys/param.h> 61 #include <sys/time.h> 62 #include <sys/disklabel.h> 63 64 #include <ufs/ufs/dinode.h> 65 #include <ufs/ffs/fs.h> 66 67 #include <err.h> 68 #include <errno.h> 69 #include <fcntl.h> 70 #include <fstab.h> 71 #include <libufs.h> 72 #include <stdio.h> 73 #include <stdlib.h> 74 #include <unistd.h> 75 76 #define afs disk.d_fs 77 78 union { 79 struct cg cg; 80 char pad[MAXBSIZE]; 81 } cgun; 82 #define acg cgun.cg 83 84 struct uufsd disk; 85 86 int dumpfs(const char *); 87 int dumpcg(int); 88 void pbits(void *, int); 89 void usage(void) __dead2; 90 91 int 92 main(int argc, char *argv[]) 93 { 94 struct fstab *fs; 95 int ch, eval; 96 97 while ((ch = getopt(argc, argv, "")) != -1) 98 switch(ch) { 99 case '?': 100 default: 101 usage(); 102 } 103 argc -= optind; 104 argv += optind; 105 106 if (argc < 1) 107 usage(); 108 109 for (eval = 0; *argv; ++argv) 110 if ((fs = getfsfile(*argv)) == NULL) 111 eval |= dumpfs(*argv); 112 else 113 eval |= dumpfs(fs->fs_spec); 114 exit(eval); 115 } 116 117 int 118 dumpfs(const char *name) 119 { 120 time_t time; 121 int64_t fssize; 122 int i; 123 124 if (ufs_disk_fillout(&disk, name) == -1) 125 goto err; 126 127 switch (disk.d_ufs) { 128 case 2: 129 fssize = afs.fs_size; 130 time = afs.fs_time; 131 printf("magic\t%x (UFS2)\ttime\t%s", 132 afs.fs_magic, ctime(&time)); 133 printf("offset\t%qd\tid\t[ %x %x ]\n", 134 afs.fs_sblockloc, afs.fs_id[0], afs.fs_id[1]); 135 printf("ncg\t%d\tsize\t%qd\tblocks\t%d\n", 136 afs.fs_ncg, fssize, afs.fs_dsize); 137 break; 138 case 1: 139 fssize = afs.fs_old_size; 140 printf("magic\t%x (UFS1)\ttime\t%s", 141 afs.fs_magic, ctime(&afs.fs_old_time)); 142 printf("id\t[ %x %x ]\n", afs.fs_id[0], afs.fs_id[1]); 143 printf("ncg\t%d\tsize\t%qd\tblocks\t%d\n", 144 afs.fs_ncg, fssize, afs.fs_dsize); 145 break; 146 default: 147 break; 148 } 149 printf("bsize\t%d\tshift\t%d\tmask\t0x%08x\n", 150 afs.fs_bsize, afs.fs_bshift, afs.fs_bmask); 151 printf("fsize\t%d\tshift\t%d\tmask\t0x%08x\n", 152 afs.fs_fsize, afs.fs_fshift, afs.fs_fmask); 153 printf("frag\t%d\tshift\t%d\tfsbtodb\t%d\n", 154 afs.fs_frag, afs.fs_fragshift, afs.fs_fsbtodb); 155 printf("minfree\t%d%%\toptim\t%s\tsymlinklen %d\n", 156 afs.fs_minfree, afs.fs_optim == FS_OPTSPACE ? "space" : "time", 157 afs.fs_maxsymlinklen); 158 switch (disk.d_ufs) { 159 case 2: 160 printf("%s %d\tmaxbpg\t%d\tmaxcontig %d\tcontigsumsize %d\n", 161 "maxbsize", afs.fs_maxbsize, afs.fs_maxbpg, 162 afs.fs_maxcontig, afs.fs_contigsumsize); 163 printf("nbfree\t%qd\tndir\t%qd\tnifree\t%qd\tnffree\t%qd\n", 164 afs.fs_cstotal.cs_nbfree, afs.fs_cstotal.cs_ndir, 165 afs.fs_cstotal.cs_nifree, afs.fs_cstotal.cs_nffree); 166 printf("bpg\t%d\tfpg\t%d\tipg\t%d\n", 167 afs.fs_fpg / afs.fs_frag, afs.fs_fpg, afs.fs_ipg); 168 printf("nindir\t%d\tinopb\t%d\tmaxfilesize\t%qu\n", 169 afs.fs_nindir, afs.fs_inopb, afs.fs_maxfilesize); 170 printf("sbsize\t%d\tcgsize\t%d\tcsaddr\t%d\tcssize\t%d\n", 171 afs.fs_sbsize, afs.fs_cgsize, afs.fs_csaddr, afs.fs_cssize); 172 break; 173 case 1: 174 printf("maxbpg\t%d\tmaxcontig %d\tcontigsumsize %d\n", 175 afs.fs_maxbpg, afs.fs_maxcontig, afs.fs_contigsumsize); 176 printf("nbfree\t%d\tndir\t%d\tnifree\t%d\tnffree\t%d\n", 177 afs.fs_old_cstotal.cs_nbfree, afs.fs_old_cstotal.cs_ndir, 178 afs.fs_old_cstotal.cs_nifree, afs.fs_old_cstotal.cs_nffree); 179 printf("cpg\t%d\tbpg\t%d\tfpg\t%d\tipg\t%d\n", 180 afs.fs_old_cpg, afs.fs_fpg / afs.fs_frag, afs.fs_fpg, 181 afs.fs_ipg); 182 printf("nindir\t%d\tinopb\t%d\tnspf\t%d\tmaxfilesize\t%qu\n", 183 afs.fs_nindir, afs.fs_inopb, afs.fs_old_nspf, 184 afs.fs_maxfilesize); 185 printf("sbsize\t%d\tcgsize\t%d\tcgoffset %d\tcgmask\t0x%08x\n", 186 afs.fs_sbsize, afs.fs_cgsize, afs.fs_old_cgoffset, 187 afs.fs_old_cgmask); 188 printf("csaddr\t%d\tcssize\t%d\n", 189 afs.fs_old_csaddr, afs.fs_cssize); 190 printf("rotdelay %dms\trps\t%d\ttrackskew %d\tinterleave %d\n", 191 afs.fs_old_rotdelay, afs.fs_old_rps, afs.fs_old_trackskew, 192 afs.fs_old_interleave); 193 printf("nsect\t%d\tnpsect\t%d\tspc\t%d\n", 194 afs.fs_old_nsect, afs.fs_old_npsect, afs.fs_old_spc); 195 break; 196 default: 197 break; 198 } 199 printf("sblkno\t%d\tcblkno\t%d\tiblkno\t%d\tdblkno\t%d\n", 200 afs.fs_sblkno, afs.fs_cblkno, afs.fs_iblkno, afs.fs_dblkno); 201 printf("cgrotor\t%d\tfmod\t%d\tronly\t%d\tclean\t%d\n", 202 afs.fs_cgrotor, afs.fs_fmod, afs.fs_ronly, afs.fs_clean); 203 printf("flags\t"); 204 if (afs.fs_flags == 0) 205 printf("none"); 206 if (afs.fs_flags & FS_UNCLEAN) 207 printf("unclean "); 208 if (afs.fs_flags & FS_DOSOFTDEP) 209 printf("soft-updates "); 210 if (afs.fs_flags & FS_NEEDSFSCK) 211 printf("needs fsck run "); 212 if (afs.fs_flags & FS_INDEXDIRS) 213 printf("indexed directories "); 214 if ((afs.fs_flags & 215 ~(FS_UNCLEAN | FS_DOSOFTDEP | FS_NEEDSFSCK | FS_INDEXDIRS)) != 0) 216 printf("unknown flags (%#x)", afs.fs_flags & 217 ~(FS_UNCLEAN | FS_DOSOFTDEP | 218 FS_NEEDSFSCK | FS_INDEXDIRS)); 219 putchar('\n'); 220 printf("\ncs[].cs_(nbfree,ndir,nifree,nffree):\n\t"); 221 afs.fs_csp = calloc(1, afs.fs_cssize); 222 if (bread(&disk, fsbtodb(&afs, afs.fs_csaddr), afs.fs_csp, afs.fs_cssize) == -1) 223 goto err; 224 for (i = 0; i < afs.fs_ncg; i++) { 225 struct csum *cs = &afs.fs_cs(&afs, i); 226 if (i && i % 4 == 0) 227 printf("\n\t"); 228 printf("(%d,%d,%d,%d) ", 229 cs->cs_nbfree, cs->cs_ndir, cs->cs_nifree, cs->cs_nffree); 230 } 231 printf("\n"); 232 if (fssize % afs.fs_fpg) { 233 if (disk.d_ufs == 1) 234 printf("cylinders in last group %d\n", 235 howmany(afs.fs_old_size % afs.fs_fpg, 236 afs.fs_old_spc / afs.fs_old_nspf)); 237 printf("blocks in last group %d\n\n", 238 (fssize % afs.fs_fpg) / afs.fs_frag); 239 } 240 for (i = 0; i < afs.fs_ncg; i++) 241 if (dumpcg(i)) 242 goto err; 243 ufs_disk_close(&disk); 244 return (0); 245 246 err: libufs_printerror(&disk); 247 ufs_disk_close(&disk); 248 if (errno) 249 warn("%s", name); 250 return (1); 251 } 252 253 int 254 dumpcg(int c) 255 { 256 time_t time; 257 off_t cur; 258 int i, j; 259 260 printf("\ncg %d:\n", c); 261 cur = fsbtodb(&afs, cgtod(&afs, c)) * disk.d_bsize; 262 if (bread(&disk, fsbtodb(&afs, cgtod(&afs, c)), &acg, afs.fs_bsize) == -1) 263 return (1); 264 switch (disk.d_ufs) { 265 case 2: 266 time = acg.cg_time; 267 printf("magic\t%x\ttell\t%qx\ttime\t%s", 268 acg.cg_magic, cur, ctime(&time)); 269 printf("cgx\t%d\tndblk\t%d\tniblk\t%d\tinitiblk %d\n", 270 acg.cg_cgx, acg.cg_ndblk, acg.cg_niblk, acg.cg_initediblk); 271 break; 272 case 1: 273 printf("magic\t%x\ttell\t%qx\ttime\t%s", 274 acg.cg_magic, cur, ctime(&acg.cg_old_time)); 275 printf("cgx\t%d\tncyl\t%d\tniblk\t%d\tndblk\t%d\n", 276 acg.cg_cgx, acg.cg_old_ncyl, acg.cg_old_niblk, 277 acg.cg_ndblk); 278 break; 279 default: 280 break; 281 } 282 printf("nbfree\t%d\tndir\t%d\tnifree\t%d\tnffree\t%d\n", 283 acg.cg_cs.cs_nbfree, acg.cg_cs.cs_ndir, 284 acg.cg_cs.cs_nifree, acg.cg_cs.cs_nffree); 285 printf("rotor\t%d\tirotor\t%d\tfrotor\t%d\nfrsum", 286 acg.cg_rotor, acg.cg_irotor, acg.cg_frotor); 287 for (i = 1, j = 0; i < afs.fs_frag; i++) { 288 printf("\t%d", acg.cg_frsum[i]); 289 j += i * acg.cg_frsum[i]; 290 } 291 printf("\nsum of frsum: %d", j); 292 if (afs.fs_contigsumsize > 0) { 293 for (i = 1; i < afs.fs_contigsumsize; i++) { 294 if ((i - 1) % 8 == 0) 295 printf("\nclusters %d-%d:", i, 296 afs.fs_contigsumsize - 1 < i + 7 ? 297 afs.fs_contigsumsize - 1 : i + 7); 298 printf("\t%d", cg_clustersum(&acg)[i]); 299 } 300 printf("\nclusters size %d and over: %d\n", 301 afs.fs_contigsumsize, 302 cg_clustersum(&acg)[afs.fs_contigsumsize]); 303 printf("clusters free:\t"); 304 pbits(cg_clustersfree(&acg), acg.cg_nclusterblks); 305 } else 306 printf("\n"); 307 printf("inodes used:\t"); 308 pbits(cg_inosused(&acg), afs.fs_ipg); 309 printf("blks free:\t"); 310 pbits(cg_blksfree(&acg), afs.fs_fpg); 311 return (0); 312 } 313 314 void 315 pbits(void *vp, int max) 316 { 317 int i; 318 char *p; 319 int count, j; 320 321 for (count = i = 0, p = vp; i < max; i++) 322 if (isset(p, i)) { 323 if (count) 324 printf(",%s", count % 6 ? " " : "\n\t"); 325 count++; 326 printf("%d", i); 327 j = i; 328 while ((i+1)<max && isset(p, i+1)) 329 i++; 330 if (i != j) 331 printf("-%d", i); 332 } 333 printf("\n"); 334 } 335 336 void 337 usage(void) 338 { 339 (void)fprintf(stderr, "usage: dumpfs filesys | device\n"); 340 exit(1); 341 } 342