2 * Copyright (c) 1983, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1983, 1992, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)dumpfs.c 8.5 (Berkeley) 4/29/95
31 * $FreeBSD: src/sbin/dumpfs/dumpfs.c,v 1.13.2.1 2001/01/22 18:10:11 iedowse Exp $
32 * $DragonFly: src/sbin/dumpfs/dumpfs.c,v 1.10 2008/08/07 11:15:45 swildner Exp $
35 #include <sys/param.h>
38 #include <vfs/ufs/dinode.h>
39 #include <vfs/ufs/fs.h>
64 int dumpcg(char *, int, int);
65 int marshal(const char*);
66 void pbits(void *, int);
70 main(int argc
, char **argv
)
73 int ch
, domarshal
, eval
;
77 while ((ch
= getopt(argc
, argv
, "m")) != -1)
92 for (eval
= 0; *argv
; ++argv
)
93 if ((fs
= getfsfile(*argv
)) == NULL
)
95 eval
|= marshal(*argv
);
97 eval
|= dumpfs(*argv
);
100 eval
|= marshal(fs
->fs_spec
);
102 eval
|= dumpfs(fs
->fs_spec
);
110 int fd
, c
, i
, j
, k
, size
;
112 if ((fd
= open(name
, O_RDONLY
, 0)) < 0)
114 if (lseek(fd
, (off_t
)SBOFF
, SEEK_SET
) == (off_t
)-1)
116 if ((n
= read(fd
, &afs
, SBSIZE
)) == -1)
120 warnx("%s: non-existent or truncated superblock, skipped",
125 if (afs
.fs_magic
!= FS_MAGIC
) {
126 warnx("%s: superblock has bad magic number, skipped", name
);
131 if (afs
.fs_postblformat
== FS_42POSTBLFMT
)
133 dev_bsize
= afs
.fs_fsize
/ fsbtodb(&afs
, 1);
134 printf("magic\t%x\ttime\t%s", afs
.fs_magic
,
135 ctime((time_t *)&afs
.fs_time
));
136 printf("id\t[ %x %x ]\n", afs
.fs_id
[0], afs
.fs_id
[1]);
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\trps\t%d\n",
157 afs
.fs_rotdelay
, 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\tmaxfilesize\t%ju\n",
164 afs
.fs_nindir
, afs
.fs_inopb
, afs
.fs_nspf
,
165 (intmax_t)afs
.fs_maxfilesize
);
166 printf("sblkno\t%d\tcblkno\t%d\tiblkno\t%d\tdblkno\t%d\n",
167 afs
.fs_sblkno
, afs
.fs_cblkno
, afs
.fs_iblkno
, afs
.fs_dblkno
);
168 printf("sbsize\t%d\tcgsize\t%d\tcgoffset %d\tcgmask\t0x%08x\n",
169 afs
.fs_sbsize
, afs
.fs_cgsize
, afs
.fs_cgoffset
, afs
.fs_cgmask
);
170 printf("csaddr\t%d\tcssize\t%d\tshift\t%d\tmask\t0x%08x\n",
171 afs
.fs_csaddr
, afs
.fs_cssize
, afs
.fs_csshift
, afs
.fs_csmask
);
172 printf("cgrotor\t%d\tfmod\t%d\tronly\t%d\tclean\t%d\n",
173 afs
.fs_cgrotor
, afs
.fs_fmod
, afs
.fs_ronly
, afs
.fs_clean
);
175 if (afs
.fs_flags
== 0)
177 if (afs
.fs_flags
& FS_UNCLEAN
)
179 if (afs
.fs_flags
& FS_DOSOFTDEP
)
180 printf("soft-updates ");
181 if ((afs
.fs_flags
& ~(FS_UNCLEAN
| FS_DOSOFTDEP
)) != 0)
182 printf("unknown flags (%#x)",
183 afs
.fs_flags
& ~(FS_UNCLEAN
| FS_DOSOFTDEP
));
186 printf("blocks available in each of %d rotational positions",
189 printf("(no rotational position table)\n");
190 for (c
= 0; c
< afs
.fs_cpc
; c
++) {
191 printf("\ncylinder number %d:", c
);
192 for (i
= 0; i
< afs
.fs_nrpos
; i
++) {
193 if (fs_postbl(&afs
, c
)[i
] == -1)
195 printf("\n position %d:\t", i
);
196 for (j
= fs_postbl(&afs
, c
)[i
], k
= 1; ;
197 j
+= fs_rotbl(&afs
)[j
], k
++) {
201 if (fs_rotbl(&afs
)[j
] == 0)
206 printf("\ncs[].cs_(nbfree,ndir,nifree,nffree):\n\t");
207 afs
.fs_csp
= calloc(1, afs
.fs_cssize
);
208 for (i
= 0, j
= 0; i
< afs
.fs_cssize
; i
+= afs
.fs_bsize
, j
++) {
209 size
= afs
.fs_cssize
- i
< afs
.fs_bsize
?
210 afs
.fs_cssize
- i
: afs
.fs_bsize
;
212 (off_t
)(fsbtodb(&afs
, (afs
.fs_csaddr
+ j
* afs
.fs_frag
))) *
213 (off_t
)dev_bsize
, SEEK_SET
) == (off_t
)-1)
215 if (read(fd
, (char *)afs
.fs_csp
+ i
, size
) != size
)
218 for (i
= 0; i
< afs
.fs_ncg
; i
++) {
219 struct csum
*cs
= &afs
.fs_cs(&afs
, i
);
222 printf("(%d,%d,%d,%d) ",
223 cs
->cs_nbfree
, cs
->cs_ndir
, cs
->cs_nifree
, cs
->cs_nffree
);
226 if (afs
.fs_ncyl
% afs
.fs_cpg
) {
227 printf("cylinders in last group %d\n",
228 i
= afs
.fs_ncyl
% afs
.fs_cpg
);
229 printf("blocks in last group %d\n",
230 i
* afs
.fs_spc
/ NSPB(&afs
));
233 for (i
= 0; i
< afs
.fs_ncg
; i
++)
234 if (dumpcg(name
, fd
, i
))
246 dumpcg(char *name
, int fd
, int c
)
251 printf("\ncg %d:\n", c
);
252 if ((cur
= lseek(fd
, (off_t
)(fsbtodb(&afs
, cgtod(&afs
, c
))) *
253 (off_t
)dev_bsize
, SEEK_SET
)) == (off_t
)-1)
255 if (read(fd
, &acg
, afs
.fs_bsize
) != afs
.fs_bsize
) {
256 warnx("%s: error reading cg", name
);
259 printf("magic\t%x\ttell\t%jx\ttime\t%s",
260 afs
.fs_postblformat
== FS_42POSTBLFMT
?
261 ((struct ocg
*)&acg
)->cg_magic
: acg
.cg_magic
,
262 (intmax_t)cur
, ctime((time_t *)&acg
.cg_time
));
263 printf("cgx\t%d\tncyl\t%d\tniblk\t%d\tndblk\t%d\n",
264 acg
.cg_cgx
, acg
.cg_ncyl
, acg
.cg_niblk
, acg
.cg_ndblk
);
265 printf("nbfree\t%d\tndir\t%d\tnifree\t%d\tnffree\t%d\n",
266 acg
.cg_cs
.cs_nbfree
, acg
.cg_cs
.cs_ndir
,
267 acg
.cg_cs
.cs_nifree
, acg
.cg_cs
.cs_nffree
);
268 printf("rotor\t%d\tirotor\t%d\tfrotor\t%d\nfrsum",
269 acg
.cg_rotor
, acg
.cg_irotor
, acg
.cg_frotor
);
270 for (i
= 1, j
= 0; i
< afs
.fs_frag
; i
++) {
271 printf("\t%d", acg
.cg_frsum
[i
]);
272 j
+= i
* acg
.cg_frsum
[i
];
274 printf("\nsum of frsum: %d", j
);
275 if (afs
.fs_contigsumsize
> 0) {
276 for (i
= 1; i
< afs
.fs_contigsumsize
; i
++) {
277 if ((i
- 1) % 8 == 0)
278 printf("\nclusters %d-%d:", i
,
279 afs
.fs_contigsumsize
- 1 < i
+ 7 ?
280 afs
.fs_contigsumsize
- 1 : i
+ 7);
281 printf("\t%d", cg_clustersum(&acg
)[i
]);
283 printf("\nclusters size %d and over: %d\n",
284 afs
.fs_contigsumsize
,
285 cg_clustersum(&acg
)[afs
.fs_contigsumsize
]);
286 printf("clusters free:\t");
287 pbits(cg_clustersfree(&acg
), acg
.cg_nclusterblks
);
291 pbits(cg_inosused(&acg
), afs
.fs_ipg
);
293 pbits(cg_blksfree(&acg
), afs
.fs_fpg
);
295 for (i
= 0; i
< afs
.fs_cpg
; i
++) {
296 if (cg_blktot(&acg
)[i
] == 0)
298 printf(" c%d:\t(%d)\t", i
, cg_blktot(&acg
)[i
]);
299 for (j
= 0; j
< afs
.fs_nrpos
; j
++) {
300 if (afs
.fs_cpc
> 0 &&
301 fs_postbl(&afs
, i
% afs
.fs_cpc
)[j
] == -1)
303 printf(" %d", cg_blks(&afs
, &acg
, i
)[j
]);
311 marshal(const char *name
)
315 static char realname
[PATH_MAX
];
317 if ((fd
= open(name
, O_RDONLY
, 0)) < 0)
319 if (lseek(fd
, (off_t
)SBOFF
, SEEK_SET
) == (off_t
)-1)
321 if ((n
= read(fd
, &afs
, SBSIZE
)) == -1)
325 warnx("%s: non-existent or truncated superblock, skipped",
330 if (afs
.fs_magic
!= FS_MAGIC
) {
331 warnx("%s: superblock has bad magic number, skipped", name
);
336 if(strncmp(name
, "/dev", 4) == 0) {
337 snprintf(realname
, PATH_MAX
, "%s", name
);
339 snprintf(realname
, PATH_MAX
, "/dev/%s", name
);
342 printf("# newfs command for %s (%s)\n", name
, realname
);
344 if (afs
.fs_flags
& FS_DOSOFTDEP
)
346 printf("-a %d ", afs
.fs_maxcontig
);
347 printf("-b %d ", afs
.fs_bsize
);
349 /* -d should be 0 per manpage */
350 printf("-e %d ", afs
.fs_maxbpg
);
351 printf("-f %d ", afs
.fs_fsize
);
352 printf("-g %d ", afs
.fs_avgfilesize
);
353 printf("-h %d ", afs
.fs_avgfpdir
);
355 /* -j..l not implemented */
356 printf("-m %d ", afs
.fs_minfree
);
357 /* -n not implemented */
359 switch (afs
.fs_optim
) {
370 /* -p..r not implemented */
371 printf("-s %jd ", (intmax_t)afs
.fs_size
);
372 printf("%s ", realname
);
385 pbits(void *vp
, int max
)
391 for (count
= i
= 0, p
= vp
; i
< max
; i
++)
394 printf(",%s", count
% 6 ? " " : "\n\t");
398 while ((i
+1)<max
&& isset(p
, i
+1))
409 fprintf(stderr
, "usage: dumpfs filesys | device\n");