aboutsummaryrefslogtreecommitdiff
path: root/tools/diag/prtblknos/main.c
diff options
context:
space:
mode:
authorKirk McKusick <mckusick@FreeBSD.org>2018-04-08 06:52:58 +0000
committerKirk McKusick <mckusick@FreeBSD.org>2018-04-08 06:52:58 +0000
commit0e3f58b6612b3b0c03ca1b1c85cfa4e8ab460ebe (patch)
treecdca8edfcadf179d9b17332ac5ae64627966e742 /tools/diag/prtblknos/main.c
parent0c94b536568603bb1316072f3faace16e97ecc9a (diff)
downloadsrc-0e3f58b6612b3b0c03ca1b1c85cfa4e8ab460ebe.tar.gz
src-0e3f58b6612b3b0c03ca1b1c85cfa4e8ab460ebe.zip
Split tools/diag/prtblknos into two parts:
main.c - opens disk and processes the argument list of inodes to be printed prtblknos.c - prints out the list of blocks used by an inode This change allows the fsdb program to import prtblknos() to use when printing out the set of blocks used by an inode. This program was switched to using the libufs library to ease its integration with fsdb and any other filesystem utility that might want to use it in the future.
Notes
Notes: svn path=/head/; revision=332265
Diffstat (limited to 'tools/diag/prtblknos/main.c')
-rw-r--r--tools/diag/prtblknos/main.c80
1 files changed, 80 insertions, 0 deletions
diff --git a/tools/diag/prtblknos/main.c b/tools/diag/prtblknos/main.c
new file mode 100644
index 000000000000..9cbc79adbe21
--- /dev/null
+++ b/tools/diag/prtblknos/main.c
@@ -0,0 +1,80 @@
+/*
+ * Copyright (c) 1998, 2003, 2013, 2018 Marshall Kirk McKusick.
+ * All Rights Reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY MARSHALL KIRK MCKUSICK ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL MARSHALL KIRK MCKUSICK BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+
+#include <ufs/ffs/fs.h>
+
+#include <err.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <libufs.h>
+
+union dinode {
+ struct ufs1_dinode *dp1;
+ struct ufs2_dinode *dp2;
+};
+
+void prtblknos(struct uufsd *disk, union dinode *dp);
+
+int
+main(argc, argv)
+ int argc;
+ char *argv[];
+{
+ struct uufsd disk;
+ union dinode *dp;
+ struct fs *fs;
+ char *fsname;
+ int inonum, error;
+
+ if (argc < 3) {
+ (void)fprintf(stderr,"usage: prtblknos filesystem inode ...\n");
+ exit(1);
+ }
+
+ fsname = *++argv;
+
+ /* get the superblock. */
+ if ((error = ufs_disk_fillout(&disk, fsname)) < 0)
+ errx(1, "Cannot find file system superblock on %s\n", fsname);
+ fs = (struct fs *)&disk.d_sb;
+
+ /* remaining arguments are inode numbers. */
+ while (*++argv) {
+ /* get the inode number. */
+ if ((inonum = atoi(*argv)) <= 0 ||
+ inonum >= fs->fs_ipg * fs->fs_ncg)
+ errx(1, "%s is not a valid inode number", *argv);
+ (void)printf("%d:", inonum);
+
+ if ((error = getino(&disk, (void **)&dp, inonum, NULL)) < 0)
+ err(1, "Read of inode %d on %s failed", inonum, fsname);
+
+ prtblknos(&disk, dp);
+ }
+ exit(0);
+}