xref: /netbsd-src/usr.sbin/dumpfs/dumpfs.c (revision 1f2744e6e4915c9da2a3f980279398c4cf7d5e6d)
1 /*	$NetBSD: dumpfs.c,v 1.9 1995/03/18 14:55:16 cgd Exp $	*/
2 
3 /*
4  * Copyright (c) 1983, 1992, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #ifndef lint
37 static char copyright[] =
38 "@(#) Copyright (c) 1983, 1992, 1993\n\
39 	The Regents of the University of California.  All rights reserved.\n";
40 #endif /* not lint */
41 
42 #ifndef lint
43 #if 0
44 static char sccsid[] = "@(#)dumpfs.c	8.2 (Berkeley) 2/2/94";
45 #else
46 static char rcsid[] = "$NetBSD: dumpfs.c,v 1.9 1995/03/18 14:55:16 cgd Exp $";
47 #endif
48 #endif /* not lint */
49 
50 #include <sys/param.h>
51 #include <sys/time.h>
52 
53 #include <ufs/ufs/dinode.h>
54 #include <ufs/ffs/fs.h>
55 
56 #include <err.h>
57 #include <errno.h>
58 #include <fcntl.h>
59 #include <fstab.h>
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include <unistd.h>
64 
65 union {
66 	struct fs fs;
67 	char pad[MAXBSIZE];
68 } fsun;
69 #define	afs	fsun.fs
70 
71 union {
72 	struct cg cg;
73 	char pad[MAXBSIZE];
74 } cgun;
75 #define	acg	cgun.cg
76 
77 long	dev_bsize = 1;
78 
79 int	dumpfs __P((char *));
80 int	dumpcg __P((char *, int, int));
81 void	pbits __P((void *, int));
82 void	usage __P((void));
83 
84 int
85 main(argc, argv)
86 	int argc;
87 	char *argv[];
88 {
89 	register struct fstab *fs;
90 	int ch, eval;
91 
92 	while ((ch = getopt(argc, argv, "")) != -1)
93 		switch(ch) {
94 		case '?':
95 		default:
96 			usage();
97 		}
98 	argc -= optind;
99 	argv += optind;
100 
101 	if (argc < 1)
102 		usage();
103 
104 	for (eval = 0; *argv; ++argv)
105 		if ((fs = getfsfile(*argv)) == NULL)
106 			eval |= dumpfs(*argv);
107 		else
108 			eval |= dumpfs(fs->fs_spec);
109 	exit(eval);
110 }
111 
112 int
113 dumpfs(name)
114 	char *name;
115 {
116 	int fd, c, i, j, k, size;
117 
118 	if ((fd = open(name, O_RDONLY, 0)) < 0)
119 		goto err;
120 	if (lseek(fd, (off_t)SBOFF, SEEK_SET) == (off_t)-1)
121 		goto err;
122 	if (read(fd, &afs, SBSIZE) != SBSIZE)
123 		goto err;
124 
125  	if (afs.fs_magic != FS_MAGIC) {
126 		warnx("%s: superblock has bad magic number, skipping.",
127 		     name);
128 		(void) close(fd);
129  		return (1);
130  	}
131 
132 	if (afs.fs_postblformat == FS_42POSTBLFMT)
133 		afs.fs_nrpos = 8;
134 	dev_bsize = afs.fs_fsize / fsbtodb(&afs, 1);
135 	printf("magic\t%x\ttime\t%s", afs.fs_magic,
136 	    ctime(&afs.fs_time));
137 	printf("cylgrp\t%s\tinodes\t%s\n",
138 	    afs.fs_postblformat == FS_42POSTBLFMT ? "static" : "dynamic",
139 	    afs.fs_inodefmt < FS_44INODEFMT ? "4.2/4.3BSD" : "4.4BSD");
140 	printf("nbfree\t%d\tndir\t%d\tnifree\t%d\tnffree\t%d\n",
141 	    afs.fs_cstotal.cs_nbfree, afs.fs_cstotal.cs_ndir,
142 	    afs.fs_cstotal.cs_nifree, afs.fs_cstotal.cs_nffree);
143 	printf("ncg\t%d\tncyl\t%d\tsize\t%d\tblocks\t%d\n",
144 	    afs.fs_ncg, afs.fs_ncyl, afs.fs_size, afs.fs_dsize);
145 	printf("bsize\t%d\tshift\t%d\tmask\t0x%08x\n",
146 	    afs.fs_bsize, afs.fs_bshift, afs.fs_bmask);
147 	printf("fsize\t%d\tshift\t%d\tmask\t0x%08x\n",
148 	    afs.fs_fsize, afs.fs_fshift, afs.fs_fmask);
149 	printf("frag\t%d\tshift\t%d\tfsbtodb\t%d\n",
150 	    afs.fs_frag, afs.fs_fragshift, afs.fs_fsbtodb);
151 	printf("cpg\t%d\tbpg\t%d\tfpg\t%d\tipg\t%d\n",
152 	    afs.fs_cpg, afs.fs_fpg / afs.fs_frag, afs.fs_fpg, afs.fs_ipg);
153 	printf("minfree\t%d%%\toptim\t%s\tmaxcontig %d\tmaxbpg\t%d\n",
154 	    afs.fs_minfree, afs.fs_optim == FS_OPTSPACE ? "space" : "time",
155 	    afs.fs_maxcontig, afs.fs_maxbpg);
156 	printf("rotdelay %dms\theadswitch %dus\ttrackseek %dus\trps\t%d\n",
157 	    afs.fs_rotdelay, afs.fs_headswitch, afs.fs_trkseek, afs.fs_rps);
158 	printf("ntrak\t%d\tnsect\t%d\tnpsect\t%d\tspc\t%d\n",
159 	    afs.fs_ntrak, afs.fs_nsect, afs.fs_npsect, afs.fs_spc);
160 	printf("symlinklen %d\ttrackskew %d\tinterleave %d\tcontigsumsize %d\n",
161 	    afs.fs_maxsymlinklen, afs.fs_trackskew, afs.fs_interleave,
162 	    afs.fs_contigsumsize);
163 	printf("nindir\t%d\tinopb\t%d\tnspf\t%d\n",
164 	    afs.fs_nindir, afs.fs_inopb, afs.fs_nspf);
165 	printf("sblkno\t%d\tcblkno\t%d\tiblkno\t%d\tdblkno\t%d\n",
166 	    afs.fs_sblkno, afs.fs_cblkno, afs.fs_iblkno, afs.fs_dblkno);
167 	printf("sbsize\t%d\tcgsize\t%d\tcgoffset %d\tcgmask\t0x%08x\n",
168 	    afs.fs_sbsize, afs.fs_cgsize, afs.fs_cgoffset, afs.fs_cgmask);
169 	printf("csaddr\t%d\tcssize\t%d\tshift\t%d\tmask\t0x%08x\n",
170 	    afs.fs_csaddr, afs.fs_cssize, afs.fs_csshift, afs.fs_csmask);
171 	printf("cgrotor\t%d\tfmod\t%d\tronly\t%d\n",
172 	    afs.fs_cgrotor, afs.fs_fmod, afs.fs_ronly);
173 	if (afs.fs_cpc != 0)
174 		printf("blocks available in each of %d rotational positions",
175 		     afs.fs_nrpos);
176 	else
177 		printf("insufficient space to maintain rotational tables\n");
178 	for (c = 0; c < afs.fs_cpc; c++) {
179 		printf("\ncylinder number %d:", c);
180 		for (i = 0; i < afs.fs_nrpos; i++) {
181 			if (fs_postbl(&afs, c)[i] == -1)
182 				continue;
183 			printf("\n   position %d:\t", i);
184 			for (j = fs_postbl(&afs, c)[i], k = 1; ;
185 			     j += fs_rotbl(&afs)[j], k++) {
186 				printf("%5d", j);
187 				if (k % 12 == 0)
188 					printf("\n\t\t");
189 				if (fs_rotbl(&afs)[j] == 0)
190 					break;
191 			}
192 		}
193 	}
194 	printf("\ncs[].cs_(nbfree,ndir,nifree,nffree):\n\t");
195 	for (i = 0, j = 0; i < afs.fs_cssize; i += afs.fs_bsize, j++) {
196 		size = afs.fs_cssize - i < afs.fs_bsize ?
197 		    afs.fs_cssize - i : afs.fs_bsize;
198 		afs.fs_csp[j] = calloc(1, size);
199 		if (lseek(fd,
200 		    (off_t)(fsbtodb(&afs, (afs.fs_csaddr + j * afs.fs_frag)) *
201 		    dev_bsize), SEEK_SET) == (off_t)-1)
202 			goto err;
203 		if (read(fd, afs.fs_csp[j], size) != size)
204 			goto err;
205 	}
206 	for (i = 0; i < afs.fs_ncg; i++) {
207 		struct csum *cs = &afs.fs_cs(&afs, i);
208 		if (i && i % 4 == 0)
209 			printf("\n\t");
210 		printf("(%d,%d,%d,%d) ",
211 		    cs->cs_nbfree, cs->cs_ndir, cs->cs_nifree, cs->cs_nffree);
212 	}
213 	printf("\n");
214 	if (afs.fs_ncyl % afs.fs_cpg) {
215 		printf("cylinders in last group %d\n",
216 		    i = afs.fs_ncyl % afs.fs_cpg);
217 		printf("blocks in last group %d\n",
218 		    i * afs.fs_spc / NSPB(&afs));
219 	}
220 	printf("\n");
221 	for (i = 0; i < afs.fs_ncg; i++)
222 		if (dumpcg(name, fd, i))
223 			goto err;
224 	(void)close(fd);
225 	return (0);
226 
227 err:	if (fd != -1)
228 		(void)close(fd);
229 	warn("%s", name);
230 	return (1);
231 };
232 
233 int
234 dumpcg(name, fd, c)
235 	char *name;
236 	int fd, c;
237 {
238 	off_t cur;
239 	int i, j;
240 
241 	printf("\ncg %d:\n", c);
242 	if ((cur = lseek(fd, (off_t)(fsbtodb(&afs, cgtod(&afs, c)) * dev_bsize),
243 	    SEEK_SET)) == (off_t)-1)
244 		return (1);
245 	if (read(fd, &acg, afs.fs_bsize) != afs.fs_bsize) {
246 		warnx("%s: error reading cg", name);
247 		return (1);
248 	}
249 	printf("magic\t%x\ttell\t%qx\ttime\t%s",
250 	    afs.fs_postblformat == FS_42POSTBLFMT ?
251 	    ((struct ocg *)&acg)->cg_magic : acg.cg_magic,
252 	    cur, ctime(&acg.cg_time));
253 	printf("cgx\t%d\tncyl\t%d\tniblk\t%d\tndblk\t%d\n",
254 	    acg.cg_cgx, acg.cg_ncyl, acg.cg_niblk, acg.cg_ndblk);
255 	printf("nbfree\t%d\tndir\t%d\tnifree\t%d\tnffree\t%d\n",
256 	    acg.cg_cs.cs_nbfree, acg.cg_cs.cs_ndir,
257 	    acg.cg_cs.cs_nifree, acg.cg_cs.cs_nffree);
258 	printf("rotor\t%d\tirotor\t%d\tfrotor\t%d\nfrsum",
259 	    acg.cg_rotor, acg.cg_irotor, acg.cg_frotor);
260 	for (i = 1, j = 0; i < afs.fs_frag; i++) {
261 		printf("\t%d", acg.cg_frsum[i]);
262 		j += i * acg.cg_frsum[i];
263 	}
264 	printf("\nsum of frsum: %d", j);
265 	if (afs.fs_contigsumsize > 0) {
266 		for (i = 1; i < afs.fs_contigsumsize; i++) {
267 			if ((i - 1) % 8 == 0)
268 				printf("\nclusters %d-%d:", i,
269 				    afs.fs_contigsumsize - 1 < i + 7 ?
270 				    afs.fs_contigsumsize - 1 : i + 7);
271 			printf("\t%d", cg_clustersum(&acg)[i]);
272 		}
273 		printf("\nclusters size %d and over: %d\n",
274 		    afs.fs_contigsumsize,
275 		    cg_clustersum(&acg)[afs.fs_contigsumsize]);
276 		printf("clusters free:\t");
277 		pbits(cg_clustersfree(&acg), acg.cg_nclusterblks);
278 	} else
279 		printf("\n");
280 	printf("iused:\t");
281 	pbits(cg_inosused(&acg), afs.fs_ipg);
282 	printf("free:\t");
283 	pbits(cg_blksfree(&acg), afs.fs_fpg);
284 	printf("b:\n");
285 	for (i = 0; i < afs.fs_cpg; i++) {
286 		if (cg_blktot(&acg)[i] == 0)
287 			continue;
288 		printf("   c%d:\t(%d)\t", i, cg_blktot(&acg)[i]);
289 		for (j = 0; j < afs.fs_nrpos; j++) {
290 			if (afs.fs_cpc > 0 &&
291 			    fs_postbl(&afs, i % afs.fs_cpc)[j] == -1)
292 				continue;
293 			printf(" %d", cg_blks(&afs, &acg, i)[j]);
294 		}
295 		printf("\n");
296 	}
297 	return (0);
298 };
299 
300 void
301 pbits(vp, max)
302 	register void *vp;
303 	int max;
304 {
305 	register int i;
306 	register char *p;
307 	int count, j;
308 
309 	for (count = i = 0, p = vp; i < max; i++)
310 		if (isset(p, i)) {
311 			if (count)
312 				printf(",%s", count % 6 ? " " : "\n\t");
313 			count++;
314 			printf("%d", i);
315 			j = i;
316 			while ((i+1)<max && isset(p, i+1))
317 				i++;
318 			if (i != j)
319 				printf("-%d", i);
320 		}
321 	printf("\n");
322 }
323 
324 void
325 usage()
326 {
327 
328 	(void)fprintf(stderr, "usage: dumpfs filesys | device\n");
329 	exit(1);
330 }
331