1 /* $NetBSD: fsdbutil.c,v 1.2 1995/10/08 23:18:12 thorpej Exp $ */
4 * Copyright (c) 1995 John T. Kohl
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
30 * $FreeBSD: src/sbin/fsdb/fsdbutil.c,v 1.9.2.2 2002/03/20 13:39:02 joerg Exp $
31 * $DragonFly: src/sbin/fsdb/fsdbutil.c,v 1.7 2006/04/03 01:58:49 dillon Exp $
34 #include <sys/param.h>
42 #include <vfs/ufs/dinode.h>
43 #include <vfs/ufs/fs.h>
45 #include <sys/ioctl.h>
50 static int charsperline(void);
51 static int printindir(ufs_daddr_t blk
, int level
, char *bufp
);
52 static void printblocks(ino_t inum
, struct ufs1_dinode
*dp
);
55 crack(char *line
, int *argc
)
60 for (p
= line
, i
= 0; p
!= NULL
&& i
< 8; i
++) {
61 while ((val
= strsep(&p
, " \t\n")) != NULL
&& *val
== '\0')
73 argcount(struct cmdtable
*cmdp
, int argc
, char **argv
)
75 if (cmdp
->minargc
== cmdp
->maxargc
)
76 warnx("command `%s' takes %u arguments", cmdp
->cmd
, cmdp
->minargc
-1);
78 warnx("command `%s' takes from %u to %u arguments",
79 cmdp
->cmd
, cmdp
->minargc
-1, cmdp
->maxargc
-1);
81 warnx("usage: %s: %s", cmdp
->cmd
, cmdp
->helptxt
);
86 printstat(const char *cp
, ino_t inum
, struct ufs1_dinode
*dp
)
94 switch (dp
->di_mode
& IFMT
) {
102 printf("block special (%d,%d)",
103 major(dp
->di_rdev
), minor(dp
->di_rdev
));
106 printf("character special (%d,%d)",
107 major(dp
->di_rdev
), minor(dp
->di_rdev
));
110 fputs("symlink",stdout
);
111 if (dp
->di_size
> 0 && dp
->di_size
< MAXSYMLINKLEN
&&
113 printf(" to `%.*s'\n", (int) dp
->di_size
, (char *)dp
->di_shortlink
);
124 printf("I=%lu MODE=%o SIZE=%qu", (u_long
)inum
, dp
->di_mode
, dp
->di_size
);
127 printf("\n\tMTIME=%15.15s %4.4s [%d nsec]", &p
[4], &p
[20],
131 printf("\n\tCTIME=%15.15s %4.4s [%d nsec]", &p
[4], &p
[20],
135 printf("\n\tATIME=%15.15s %4.4s [%d nsec]\n", &p
[4], &p
[20],
138 if ((pw
= getpwuid(dp
->di_uid
)))
139 printf("OWNER=%s ", pw
->pw_name
);
141 printf("OWNUID=%u ", dp
->di_uid
);
142 if ((grp
= getgrgid(dp
->di_gid
)))
143 printf("GRP=%s ", grp
->gr_name
);
145 printf("GID=%u ", dp
->di_gid
);
147 printf("LINKCNT=%hd FLAGS=%#x BLKCNT=%x GEN=%x\n", dp
->di_nlink
, dp
->di_flags
,
148 dp
->di_blocks
, dp
->di_gen
);
153 * Determine the number of characters in a
165 if (ioctl(0, TIOCGWINSZ
, &ws
) != -1)
167 if (columns
== 0 && (cp
= getenv("COLUMNS")))
170 columns
= 80; /* last resort */
176 * Recursively print a list of indirect blocks.
179 printindir(ufs_daddr_t blk
, int level
, char *bufp
)
181 struct bufarea buf
, *bp
;
182 char tempbuf
[32]; /* enough to print an ufs_daddr_t */
183 int i
, j
, cpl
, charssofar
;
187 /* for the final indirect level, don't use the cache */
189 bp
->b_un
.b_buf
= bufp
;
190 bp
->b_prev
= bp
->b_next
= bp
;
193 getblk(bp
, blk
, sblock
.fs_bsize
);
195 bp
= getdatablk(blk
, sblock
.fs_bsize
);
197 cpl
= charsperline();
198 for (i
= charssofar
= 0; i
< NINDIR(&sblock
); i
++) {
199 blkno
= bp
->b_un
.b_indir
[i
];
205 j
= sprintf(tempbuf
, "%d", blkno
);
208 if (charssofar
>= cpl
- 2) {
213 fputs(tempbuf
, stdout
);
219 if (printindir(blkno
, level
- 1, bufp
) == 0)
230 * Print the block pointers for one inode.
233 printblocks(ino_t inum
, struct ufs1_dinode
*dp
)
239 printf("Blocks for inode %d:\n", inum
);
240 printf("Direct blocks:\n");
241 ndb
= howmany(dp
->di_size
, sblock
.fs_bsize
);
242 for (i
= 0; i
< NDADDR
; i
++) {
243 if (dp
->di_db
[i
] == 0) {
249 printf("%d", dp
->di_db
[i
]);
250 if (--ndb
== 0 && (offset
= blkoff(&sblock
, dp
->di_size
)) != 0) {
251 nfrags
= numfrags(&sblock
, fragroundup(&sblock
, offset
));
252 printf(" (%d frag%s)", nfrags
, nfrags
> 1? "s": "");
256 if (dp
->di_ib
[0] == 0)
259 bufp
= malloc((unsigned int)sblock
.fs_bsize
);
261 errx(EEXIT
, "cannot allocate indirect block buffer");
262 printf("Indirect blocks:\n");
263 for (i
= 0; i
< NIADDR
; i
++)
264 if (printindir(dp
->di_ib
[i
], i
, bufp
) == 0)
274 warnx("no current inode\n");
284 warnx("no current inode\n");
287 if ((curinode
->di_mode
& IFMT
) != IFDIR
) {
288 warnx("inode %d not a directory", curinum
);
295 printactive(int doblocks
)
299 switch (curinode
->di_mode
& IFMT
) {
308 printblocks(curinum
, curinode
);
310 printstat("current inode", curinum
, curinode
);
313 printf("current inode %d: unallocated inode\n", curinum
);
316 printf("current inode %d: screwy itype 0%o (mode 0%o)?\n",
317 curinum
, curinode
->di_mode
& IFMT
, curinode
->di_mode
);