1 /* 2 * Copyright (c) 1998, 2003, 2013, 2018 Marshall Kirk McKusick. 3 * All Rights Reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 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 * 14 * THIS SOFTWARE IS PROVIDED BY MARSHALL KIRK MCKUSICK ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL MARSHALL KIRK MCKUSICK BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <ufs/ffs/fs.h> 28 29 #include <err.h> 30 #include <stdlib.h> 31 #include <stdio.h> 32 #include <sys/stat.h> 33 #include <libufs.h> 34 35 void prtblknos(struct fs *fs, union dinode *dp); 36 37 struct uufsd disk; 38 39 int 40 main(int argc, char *argv[]) 41 { 42 union dinodep dp; 43 struct fs *fs; 44 struct stat sb; 45 struct statfs sfb; 46 char *xargv[4]; 47 char ibuf[64]; 48 char *fsname, *filename; 49 ino_t inonum; 50 51 filename = NULL; 52 if (argc == 2) { 53 filename = argv[1]; 54 if (lstat(filename, &sb) != 0) 55 err(1, "stat(%s)", filename); 56 if (statfs(filename, &sfb) != 0) 57 err(1, "statfs(%s)", filename); 58 xargv[0] = argv[0]; 59 xargv[1] = sfb.f_mntfromname; 60 sprintf(ibuf, "%jd", (intmax_t)sb.st_ino); 61 xargv[2] = ibuf; 62 xargv[3] = NULL; 63 argv = xargv; 64 argc = 3; 65 } 66 if (argc < 3) { 67 (void)fprintf(stderr, "%s\n%s\n", 68 "usage: prtblknos filename", 69 " prtblknos filesystem inode ..."); 70 exit(1); 71 } 72 73 fsname = *++argv; 74 75 /* get the superblock. */ 76 if (ufs_disk_fillout_blank(&disk, fsname) == -1 || 77 sbfind(&disk, 0) == -1) 78 err(1, "Cannot access file system superblock on %s", fsname); 79 fs = (struct fs *)&disk.d_sbunion.d_sb; 80 81 /* remaining arguments are inode numbers. */ 82 while (*++argv) { 83 /* get the inode number. */ 84 if ((inonum = atoi(*argv)) <= 0 || 85 inonum >= (ino_t)fs->fs_ipg * fs->fs_ncg) 86 warnx("%s is not a valid inode number", *argv); 87 if (filename == NULL) 88 (void)printf("inode #%jd: ", (intmax_t)inonum); 89 else 90 (void)printf("%s (inode #%jd): ", filename, 91 (intmax_t)inonum); 92 93 if (getinode(&disk, &dp, inonum) < 0) 94 warn("Read of inode %jd on %s failed: %s", 95 (intmax_t)inonum, fsname, disk.d_error); 96 97 prtblknos(fs, (union dinode *)dp.dp1); 98 } 99 exit(0); 100 } 101