xref: /freebsd/sbin/ffsinfo/ffsinfo.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1 /*
2  * Copyright (c) 2000 Christoph Herrmann, Thomas-Henning von Kamptz
3  * Copyright (c) 1980, 1989, 1993 The Regents of the University of California.
4  * All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * Christoph Herrmann and Thomas-Henning von Kamptz, Munich and Frankfurt.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgment:
19  *      This product includes software developed by the University of
20  *      California, Berkeley and its contributors, as well as Christoph
21  *      Herrmann and Thomas-Henning von Kamptz.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  * $TSHeader: src/sbin/ffsinfo/ffsinfo.c,v 1.4 2000/12/12 19:30:55 tomsoft Exp $
39  * $FreeBSD$
40  *
41  */
42 
43 #ifndef lint
44 static const char copyright[] =
45 "@(#) Copyright (c) 2000 Christoph Herrmann, Thomas-Henning von Kamptz\n\
46 Copyright (c) 1980, 1989, 1993 The Regents of the University of California.\n\
47 All rights reserved.\n";
48 #endif /* not lint */
49 
50 #ifndef lint
51 static const char rcsid[] =
52   "$FreeBSD$";
53 #endif /* not lint */
54 
55 /* ********************************************************** INCLUDES ***** */
56 #include <sys/param.h>
57 #include <sys/disklabel.h>
58 #include <sys/stat.h>
59 
60 #include <stdio.h>
61 #include <paths.h>
62 #include <ctype.h>
63 #include <err.h>
64 #include <fcntl.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <unistd.h>
68 
69 #include "debug.h"
70 
71 /* *********************************************************** GLOBALS ***** */
72 #ifdef FS_DEBUG
73 int	_dbg_lvl_ = (DL_INFO); /* DL_TRC */
74 #endif /* FS_DEBUG */
75 
76 static union {
77 	struct fs	fs;
78 	char	pad[SBSIZE];
79 } fsun1, fsun2;
80 #define	sblock	fsun1.fs
81 #define	osblock	fsun2.fs
82 
83 static union {
84 	struct cg	cg;
85 	char	pad[MAXBSIZE];
86 } cgun1;
87 #define	acg	cgun1.cg
88 
89 static char	ablk[MAXBSIZE];
90 static char	i1blk[MAXBSIZE];
91 static char	i2blk[MAXBSIZE];
92 static char	i3blk[MAXBSIZE];
93 
94 static struct csum	*fscs;
95 
96 /* ******************************************************** PROTOTYPES ***** */
97 static void	rdfs(daddr_t, size_t, void *, int);
98 static void	usage(void);
99 static struct disklabel	*get_disklabel(int);
100 static struct dinode	*ginode(ino_t, int);
101 static void	dump_whole_inode(ino_t, int, int);
102 
103 /* ************************************************************** rdfs ***** */
104 /*
105  * Here we read some block(s) from disk.
106  */
107 void
108 rdfs(daddr_t bno, size_t size, void *bf, int fsi)
109 {
110 	DBG_FUNC("rdfs")
111 	ssize_t	n;
112 
113 	DBG_ENTER;
114 
115 	if (lseek(fsi, (off_t)bno * DEV_BSIZE, 0) < 0) {
116 		err(33, "rdfs: seek error: %ld", (long)bno);
117 	}
118 	n = read(fsi, bf, size);
119 	if (n != (ssize_t)size) {
120 		err(34, "rdfs: read error: %ld", (long)bno);
121 	}
122 
123 	DBG_LEAVE;
124 	return;
125 }
126 
127 /* ************************************************************** main ***** */
128 /*
129  * ffsinfo(8) is a tool to dump all metadata of a filesystem. It helps to find
130  * errors is the filesystem much easier. You can run ffsinfo before and  after
131  * an  fsck(8),  and compare the two ascii dumps easy with diff, and  you  see
132  * directly where the problem is. You can control how much detail you want  to
133  * see  with some command line arguments. You can also easy check  the  status
134  * of  a filesystem, like is there is enough space for growing  a  filesystem,
135  * or  how  many active snapshots do we have. It provides much  more  detailed
136  * information  then dumpfs. Snapshots, as they are very new, are  not  really
137  * supported.  They  are just mentioned currently, but it is  planned  to  run
138  * also over active snapshots, to even get that output.
139  */
140 int
141 main(int argc, char **argv)
142 {
143 	DBG_FUNC("main")
144 	char	*device, *special, *cp;
145 	char	ch;
146 	size_t	len;
147 	struct stat	st;
148 	struct disklabel	*lp;
149 	struct partition	*pp;
150 	int	fsi;
151 	struct csum	*dbg_csp;
152 	int	dbg_csc;
153 	char	dbg_line[80];
154 	int	cylno,i;
155 	int	cfg_cg, cfg_in, cfg_lv;
156 	int	cg_start, cg_stop;
157 	ino_t	in;
158 	char	*out_file;
159 	int	Lflag=0;
160 
161 	DBG_ENTER;
162 
163 	cfg_lv=0xff;
164 	cfg_in=-2;
165 	cfg_cg=-2;
166 	out_file=strdup("/var/tmp/ffsinfo");
167 	if(out_file == NULL) {
168 		errx(1, "strdup failed");
169 	}
170 
171 	while ((ch=getopt(argc, argv, "Lg:i:l:o:")) != -1) {
172 		switch(ch) {
173 		case 'L':
174 			Lflag=1;
175 			break;
176 		case 'g':
177 			cfg_cg=atol(optarg);
178 			if(cfg_cg < -1) {
179 				usage();
180 			}
181 			break;
182 		case 'i':
183 			cfg_in=atol(optarg);
184 			if(cfg_in < 0) {
185 				usage();
186 			}
187 			break;
188 		case 'l':
189 			cfg_lv=atol(optarg);
190 			if(cfg_lv < 0x1||cfg_lv > 0x3ff) {
191 				usage();
192 			}
193 			break;
194 		case 'o':
195 			free(out_file);
196 			out_file=strdup(optarg);
197 			if(out_file == NULL) {
198 				errx(1, "strdup failed");
199 			}
200 			break;
201 		case '?':
202 			/* FALLTHROUGH */
203 		default:
204 			usage();
205 		}
206 	}
207 	argc -= optind;
208 	argv += optind;
209 
210 	if(argc != 1) {
211 		usage();
212 	}
213 	device=*argv;
214 
215 	/*
216 	 * Now we try to guess the (raw)device name.
217 	 */
218 	if (0 == strrchr(device, '/') && (stat(device, &st) == -1)) {
219 		/*
220 		 * No path prefix was given, so try in that order:
221 		 *     /dev/r%s
222 		 *     /dev/%s
223 		 *     /dev/vinum/r%s
224 		 *     /dev/vinum/%s.
225 		 *
226 		 * FreeBSD now doesn't distinguish between raw and  block
227 		 * devices any longer, but it should still work this way.
228 		 */
229 		len=strlen(device)+strlen(_PATH_DEV)+2+strlen("vinum/");
230 		special=(char *)malloc(len);
231 		if(special == NULL) {
232 			errx(1, "malloc failed");
233 		}
234 		snprintf(special, len, "%sr%s", _PATH_DEV, device);
235 		if (stat(special, &st) == -1) {
236 			snprintf(special, len, "%s%s", _PATH_DEV, device);
237 			if (stat(special, &st) == -1) {
238 				snprintf(special, len, "%svinum/r%s",
239 				    _PATH_DEV, device);
240 				if (stat(special, &st) == -1) {
241 					/*
242 					 * For now this is the 'last resort'.
243 					 */
244 					snprintf(special, len, "%svinum/%s",
245 					    _PATH_DEV, device);
246 				}
247 			}
248 		}
249 		device = special;
250 	}
251 
252 	/*
253 	 * Open our device for reading.
254 	 */
255 	fsi = open(device, O_RDONLY);
256 	if (fsi < 0) {
257 		err(1, "%s", device);
258 	}
259 
260 	stat(device, &st);
261 
262 	if(S_ISREG(st.st_mode)) { /* label check not supported for files */
263 		Lflag=1;
264 	}
265 
266 	if(!Lflag) {
267 		/*
268 		 * Try  to read a label and gess the slice if not  specified.
269 		 * This code should guess the right thing and avaid to bother
270 		 * the user user with the task of specifying the option -v on
271 		 * vinum volumes.
272 		 */
273 		cp=device+strlen(device)-1;
274 		lp = get_disklabel(fsi);
275 		if(lp->d_type == DTYPE_VINUM) {
276 			pp = &lp->d_partitions[0];
277 		} else if (isdigit(*cp)) {
278 			pp = &lp->d_partitions[2];
279 		} else if (*cp>='a' && *cp<='h') {
280 			pp = &lp->d_partitions[*cp - 'a'];
281 		} else {
282 			errx(1, "unknown device");
283 		}
284 
285 		/*
286 		 * Check if that partition looks suited for dumping.
287 		 */
288 		if (pp->p_size < 1) {
289 			errx(1, "partition is unavailable");
290 		}
291 		if (pp->p_fstype != FS_BSDFFS) {
292 			errx(1, "partition not 4.2BSD");
293 		}
294 	}
295 
296 	/*
297 	 * Read the current superblock.
298 	 */
299 	rdfs((daddr_t)(SBOFF/DEV_BSIZE), (size_t)SBSIZE, (void *)&sblock, fsi);
300 	if (sblock.fs_magic != FS_MAGIC) {
301 		errx(1, "superblock not recognized");
302 	}
303 
304 	DBG_OPEN(out_file); /* already here we need a superblock */
305 
306 	if(cfg_lv & 0x001) {
307 		DBG_DUMP_FS(&sblock,
308 		    "primary sblock");
309 	}
310 
311 	/*
312 	 * Determine here what cylinder groups to dump.
313 	 */
314 	if(cfg_cg==-2) {
315 		cg_start=0;
316 		cg_stop=sblock.fs_ncg;
317 	} else if (cfg_cg==-1) {
318 		cg_start=sblock.fs_ncg-1;
319 		cg_stop=sblock.fs_ncg;
320 	} else if (cfg_cg<sblock.fs_ncg) {
321 		cg_start=cfg_cg;
322 		cg_stop=cfg_cg+1;
323 	} else {
324 		cg_start=sblock.fs_ncg;
325 		cg_stop=sblock.fs_ncg;
326 	}
327 
328 	if (cfg_lv & 0x004) {
329 		fscs = (struct csum *)calloc((size_t)1,
330 		    (size_t)sblock.fs_cssize);
331 		if(fscs == NULL) {
332 			errx(1, "calloc failed");
333 		}
334 
335 		/*
336 		 * Get the cylinder summary into the memory ...
337 		 */
338 		for (i = 0; i < sblock.fs_cssize; i += sblock.fs_bsize) {
339 			rdfs(fsbtodb(&sblock, sblock.fs_csaddr +
340 			    numfrags(&sblock, i)), (size_t)(sblock.fs_cssize-i<
341 			    sblock.fs_bsize ? sblock.fs_cssize - i :
342 			    sblock.fs_bsize), (void *)(((char *)fscs)+i), fsi);
343 		}
344 
345 		dbg_csp=fscs;
346 		/*
347 		 * ... and dump it.
348 		 */
349 		for(dbg_csc=0; dbg_csc<sblock.fs_ncg; dbg_csc++) {
350 			snprintf(dbg_line, sizeof(dbg_line),
351 			    "%d. csum in fscs", dbg_csc);
352 			DBG_DUMP_CSUM(&sblock,
353 			    dbg_line,
354 			    dbg_csp++);
355 		}
356 	}
357 
358 	/*
359 	 * For each requested cylinder group ...
360 	 */
361 	for(cylno=cg_start; cylno<cg_stop; cylno++) {
362 		snprintf(dbg_line, sizeof(dbg_line), "cgr %d", cylno);
363 		if(cfg_lv & 0x002) {
364 			/*
365 			 * ... dump the superblock copies ...
366 			 */
367 			rdfs(fsbtodb(&sblock, cgsblock(&sblock, cylno)),
368 			    (size_t)SBSIZE, (void *)&osblock, fsi);
369 			DBG_DUMP_FS(&osblock,
370 			    dbg_line);
371 		}
372 		/*
373 		 * ... read the cylinder group and dump whatever was requested.
374 		 */
375 		rdfs(fsbtodb(&sblock, cgtod(&sblock, cylno)),
376 		    (size_t)sblock.fs_cgsize, (void *)&acg, fsi);
377 		if(cfg_lv & 0x008) {
378 			DBG_DUMP_CG(&sblock,
379 			    dbg_line,
380 			    &acg);
381 		}
382 		if(cfg_lv & 0x010) {
383 			DBG_DUMP_INMAP(&sblock,
384 			    dbg_line,
385 			    &acg);
386 		}
387 		if(cfg_lv & 0x020) {
388 			DBG_DUMP_FRMAP(&sblock,
389 			    dbg_line,
390 			    &acg);
391 		}
392 		if(cfg_lv & 0x040) {
393 			DBG_DUMP_CLMAP(&sblock,
394 			    dbg_line,
395 			    &acg);
396 			DBG_DUMP_CLSUM(&sblock,
397 			    dbg_line,
398 			    &acg);
399 		}
400 		if(cfg_lv & 0x080) {
401 			DBG_DUMP_SPTBL(&sblock,
402 			    dbg_line,
403 			    &acg);
404 		}
405 	}
406 	/*
407 	 * Dump the requested inode(s).
408 	 */
409 	if(cfg_in != -2) {
410 		dump_whole_inode((ino_t)cfg_in, fsi, cfg_lv);
411 	} else {
412 		for(in=cg_start*sblock.fs_ipg; in<(ino_t)cg_stop*sblock.fs_ipg;
413 		    in++) {
414 			dump_whole_inode(in, fsi, cfg_lv);
415 		}
416 	}
417 
418 	DBG_CLOSE;
419 
420 	close(fsi);
421 
422 	DBG_LEAVE;
423 	return 0;
424 }
425 
426 /* ************************************************** dump_whole_inode ***** */
427 /*
428  * Here we dump a list of all blocks allocated by this inode. We follow
429  * all indirect blocks.
430  */
431 void
432 dump_whole_inode(ino_t inode, int fsi, int level)
433 {
434 	DBG_FUNC("dump_whole_inode")
435 	struct dinode	*ino;
436 	int	rb;
437 	unsigned int	ind2ctr, ind3ctr;
438 	ufs_daddr_t	*ind2ptr, *ind3ptr;
439 	char	comment[80];
440 
441 	DBG_ENTER;
442 
443 	/*
444 	 * Read the inode from disk/cache.
445 	 */
446 	ino=ginode(inode, fsi);
447 
448 	if(ino->di_nlink==0) {
449 		DBG_LEAVE;
450 		return;	/* inode not in use */
451 	}
452 
453 	/*
454 	 * Dump the main inode structure.
455 	 */
456 	snprintf(comment, sizeof(comment), "Inode 0x%08x", inode);
457 	if (level & 0x100) {
458 		DBG_DUMP_INO(&sblock,
459 		    comment,
460 		    ino);
461 	}
462 
463 	if (!(level & 0x200)) {
464 		DBG_LEAVE;
465 		return;
466 	}
467 
468 	/*
469 	 * Ok, now prepare for dumping all direct and indirect pointers.
470 	 */
471 	rb=howmany(ino->di_size, sblock.fs_bsize)-NDADDR;
472 	if(rb>0) {
473 		/*
474 		 * Dump single indirect block.
475 		 */
476 		rdfs(fsbtodb(&sblock, ino->di_ib[0]), (size_t)sblock.fs_bsize,
477 		    (void *)&i1blk, fsi);
478 		snprintf(comment, sizeof(comment), "Inode 0x%08x: indirect 0",
479 		    inode);
480 		DBG_DUMP_IBLK(&sblock,
481 		    comment,
482 		    i1blk,
483 		    (size_t)rb);
484 		rb-=howmany(sblock.fs_bsize, sizeof(ufs_daddr_t));
485 	}
486 	if(rb>0) {
487 		/*
488 		 * Dump double indirect blocks.
489 		 */
490 		rdfs(fsbtodb(&sblock, ino->di_ib[1]), (size_t)sblock.fs_bsize,
491 		    (void *)&i2blk, fsi);
492 		snprintf(comment, sizeof(comment), "Inode 0x%08x: indirect 1",
493 		    inode);
494 		DBG_DUMP_IBLK(&sblock,
495 		    comment,
496 		    i2blk,
497 		    howmany(rb, howmany(sblock.fs_bsize, sizeof(ufs_daddr_t))));
498 		for(ind2ctr=0; ((ind2ctr < howmany(sblock.fs_bsize,
499 		    sizeof(ufs_daddr_t)))&&(rb>0)); ind2ctr++) {
500 			ind2ptr=&((ufs_daddr_t *)(void *)&i2blk)[ind2ctr];
501 
502 			rdfs(fsbtodb(&sblock, *ind2ptr),
503 			    (size_t)sblock.fs_bsize, (void *)&i1blk, fsi);
504 			snprintf(comment, sizeof(comment),
505 			    "Inode 0x%08x: indirect 1->%d", inode, ind2ctr);
506 			DBG_DUMP_IBLK(&sblock,
507 			    comment,
508 			    i1blk,
509 			    (size_t)rb);
510 			rb-=howmany(sblock.fs_bsize, sizeof(ufs_daddr_t));
511 		}
512 	}
513 	if(rb>0) {
514 		/*
515 		 * Dump triple indirect blocks.
516 		 */
517 		rdfs(fsbtodb(&sblock, ino->di_ib[2]), (size_t)sblock.fs_bsize,
518 		    (void *)&i3blk, fsi);
519 		snprintf(comment, sizeof(comment), "Inode 0x%08x: indirect 2",
520 		    inode);
521 #define SQUARE(a) ((a)*(a))
522 		DBG_DUMP_IBLK(&sblock,
523 		    comment,
524 		    i3blk,
525 		    howmany(rb,
526 		      SQUARE(howmany(sblock.fs_bsize, sizeof(ufs_daddr_t)))));
527 #undef SQUARE
528 		for(ind3ctr=0; ((ind3ctr < howmany(sblock.fs_bsize,
529 		    sizeof(ufs_daddr_t)))&&(rb>0)); ind3ctr ++) {
530 			ind3ptr=&((ufs_daddr_t *)(void *)&i3blk)[ind3ctr];
531 
532 			rdfs(fsbtodb(&sblock, *ind3ptr),
533 			    (size_t)sblock.fs_bsize, (void *)&i2blk, fsi);
534 			snprintf(comment, sizeof(comment),
535 			    "Inode 0x%08x: indirect 2->%d", inode, ind3ctr);
536 			DBG_DUMP_IBLK(&sblock,
537 			    comment,
538 			    i2blk,
539 			    howmany(rb,
540 			      howmany(sblock.fs_bsize, sizeof(ufs_daddr_t))));
541 			for(ind2ctr=0; ((ind2ctr < howmany(sblock.fs_bsize,
542 			    sizeof(ufs_daddr_t)))&&(rb>0)); ind2ctr ++) {
543 				ind2ptr=&((ufs_daddr_t *)(void *)&i2blk)
544 				    [ind2ctr];
545 				rdfs(fsbtodb(&sblock, *ind2ptr),
546 				    (size_t)sblock.fs_bsize, (void *)&i1blk,
547 				    fsi);
548 				snprintf(comment, sizeof(comment),
549 				    "Inode 0x%08x: indirect 2->%d->%d", inode,
550 				    ind3ctr, ind3ctr);
551 				DBG_DUMP_IBLK(&sblock,
552 				    comment,
553 				    i1blk,
554 				    (size_t)rb);
555 				rb-=howmany(sblock.fs_bsize,
556 				    sizeof(ufs_daddr_t));
557 			}
558 		}
559 	}
560 
561 	DBG_LEAVE;
562 	return;
563 }
564 
565 /* ***************************************************** get_disklabel ***** */
566 /*
567  * Read the disklabel from disk.
568  */
569 struct disklabel *
570 get_disklabel(int fd)
571 {
572 	DBG_FUNC("get_disklabel")
573 	static struct disklabel	*lab;
574 
575 	DBG_ENTER;
576 
577 	lab=(struct disklabel *)malloc(sizeof(struct disklabel));
578 	if (!lab) {
579 		errx(1, "malloc failed");
580 	}
581 	if (ioctl(fd, DIOCGDINFO, (char *)lab) < 0) {
582 		errx(1, "DIOCGDINFO failed");
583 		exit(-1);
584 	}
585 
586 	DBG_LEAVE;
587 	return (lab);
588 }
589 
590 
591 /* ************************************************************* usage ***** */
592 /*
593  * Dump a line of usage.
594  */
595 void
596 usage(void)
597 {
598 	DBG_FUNC("usage")
599 
600 	DBG_ENTER;
601 
602 	fprintf(stderr,
603 	    "usage: ffsinfo [-L] [-g cylgrp] [-i inode] [-l level] "
604 	    "[-o outfile]\n"
605 	    "               special | file\n");
606 
607 	DBG_LEAVE;
608 	exit(1);
609 }
610 
611 /* ************************************************************ ginode ***** */
612 /*
613  * This function provides access to an individual inode. We find out in which
614  * block  the  requested inode is located, read it from disk if  needed,  and
615  * return  the pointer into that block. We maintain a cache of one  block  to
616  * not  read the same block again and again if we iterate linearly  over  all
617  * inodes.
618  */
619 struct dinode *
620 ginode(ino_t inumber, int fsi)
621 {
622 	DBG_FUNC("ginode")
623 	ufs_daddr_t	iblk;
624 	static ino_t	startinum=0;	/* first inode in cached block */
625 	struct dinode	*pi;
626 
627 	DBG_ENTER;
628 
629 	pi=(struct dinode *)(void *)ablk;
630 	if (startinum == 0 || inumber < startinum ||
631 	    inumber >= startinum + INOPB(&sblock)) {
632 		/*
633 		 * The block needed is not cached, so we have to read it from
634 		 * disk now.
635 		 */
636 		iblk = ino_to_fsba(&sblock, inumber);
637 		rdfs(fsbtodb(&sblock, iblk), (size_t)sblock.fs_bsize,
638 		    (void *)&ablk, fsi);
639 		startinum = (inumber / INOPB(&sblock)) * INOPB(&sblock);
640 	}
641 
642 	DBG_LEAVE;
643 	return (&(pi[inumber % INOPB(&sblock)]));
644 }
645 
646