volinfo: refactor -sizeOnly printing
[openafs.git] / src / vol / vol-info.c
index 27c771f..9aaf5c5 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright 2000, International Business Machines Corporation and others.
  * All Rights Reserved.
- * 
+ *
  * This software has been released under the terms of the IBM Public
  * License.  For details, see the LICENSE file in the top-level source
  * directory or online at http://www.openafs.org/dl/license10.html
    System:             VICE-TWO
    Module:             vol-info.c
    Institution:        The Information Technology Center, Carnegie-Mellon University
-   
+
    */
 
 #include <afsconfig.h>
 #include <afs/param.h>
 
-RCSID("$Header$");
+#include <roken.h>
 
 #include <ctype.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <stdio.h>
-#include <string.h>
-#ifdef AFS_NT40_ENV
-#include <fcntl.h>
-#include <time.h>
-#include <io.h>
-#else
-#include <sys/param.h>
+
+#ifdef HAVE_SYS_FILE_H
 #include <sys/file.h>
-#include <sys/time.h>
 #endif
+
 #include <afs/cmd.h>
+#include <afs/dir.h>
 
 #include <rx/xdr.h>
 #include <afs/afsint.h>
@@ -47,16 +40,12 @@ RCSID("$Header$");
 #include "volume.h"
 #include "partition.h"
 #include "viceinode.h"
-#include "volinodes.h"
 #include <afs/afssyscalls.h>
+#include <afs/afsutil.h>
 
-#ifdef _AIX
-#include <time.h>
-#endif
-
-#include <dirent.h>
+static const char *progname = "volinfo";
 
-int DumpVnodes = 0;    /* Dump everything, i.e. summary of all vnodes */
+int DumpVnodes = 0;            /* Dump everything, i.e. summary of all vnodes */
 int DumpInodeNumber = 0;       /* Dump inode numbers with vnodes */
 int DumpDate = 0;              /* Dump vnode date (server modify date) with vnode */
 int InodeTimes = 0;            /* Dump some of the dates associated with inodes */
@@ -64,39 +53,44 @@ int InodeTimes = 0;         /* Dump some of the dates associated with inodes */
 int PrintFileNames = 0;
 #endif
 int online = 0;
-int dheader=0;
-int dsizeOnly = 0, totvolsize=0, Vauxsize = 0, Vdiskused = 0, Vvnodesize = 0;
-int Totvolsize=0, TVauxsize = 0, TVdiskused = 0, TVvnodesize = 0;
-int Stotvolsize=0, SVauxsize = 0, SVdiskused = 0, SVvnodesize = 0;
-int fixheader = 0, saveinodes = 0, orphaned=0;
+int dheader = 0;
+int dsizeOnly = 0, totvolsize = 0, Vauxsize = 0, Vdiskused = 0, Vvnodesize =
+    0;
+int Vvnodesize_k = 0, Vauxsize_k = 0;
+int Totvolsize = 0, TVauxsize = 0, TVdiskused = 0, TVvnodesize = 0;
+int Stotvolsize = 0, SVauxsize = 0, SVdiskused = 0, SVvnodesize = 0;
+int fixheader = 0, saveinodes = 0, orphaned = 0;
 int VolumeChanged;
 
 /* Forward Declarations */
-void PrintHeader(register Volume *vp);
+void PrintHeader(Volume * vp);
 void HandleAllPart(void);
-void HandlePart(struct DiskPartition *partP);
-void HandleVolume(struct DiskPartition *partP, char *name);
-struct DiskPartition *FindCurrentPartition(void);
-Volume *AttachVolume(struct DiskPartition *dp, char *volname,
-                    register struct VolumeHeader *header);
+void HandlePart(struct DiskPartition64 *partP);
+void HandleVolume(struct DiskPartition64 *partP, char *name);
+struct DiskPartition64 *FindCurrentPartition(void);
+Volume *AttachVolume(struct DiskPartition64 *dp, char *volname,
+                    struct VolumeHeader *header);
 #if defined(AFS_NAMEI_ENV)
-void PrintVnode(int offset, VnodeDiskObject *vnode, int vnodeNumber,
-               Inode ino, Volume* vp);
+void PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
+               Inode ino, Volume * vp);
 #else
-void PrintVnode(int offset, VnodeDiskObject *vnode, int vnodeNumber,
+void PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
                Inode ino);
 #endif
-void PrintVnodes(Volume *vp, VnodeClass class);
+void PrintVnodes(Volume * vp, VnodeClass class);
 
-char *date(time_t date)
+char *
+date(time_t date)
 {
-    static char results[8][100];
-    static next;
+#define MAX_DATE_RESULT        100
+    static char results[8][MAX_DATE_RESULT];
+    static int next;
     struct tm *tm = localtime(&date);
     char buf[32];
 
-    strftime (buf, 32, "%Y/%m/%d.%H:%M:%S", tm); /* NT does not have %T */
-    sprintf(results[next = (next+1)&7], "%lu (%s)", (unsigned long) date, buf);
+    (void)strftime(buf, 32, "%Y/%m/%d.%H:%M:%S", tm);  /* NT does not have %T */
+    snprintf(results[next = (next + 1) & 7], MAX_DATE_RESULT,
+            "%lu (%s)", (unsigned long)date, buf);
     return results[next];
 }
 
@@ -108,29 +102,89 @@ char name[VMAXPATHLEN];
 
 char BU[1000];
 
-int ReadHdr1(IHandle_t *ih, char *to, int size, u_int magic, u_int version)
+static int PrintingVolumeSizes = 0;    /* printing volume size lines */
+
+/**
+ * Print the volume size table heading line, if needed.
+ *
+ * @return none
+ */
+static void
+PrintVolumeSizeHeading(void)
+{
+    if (!PrintingVolumeSizes) {
+       printf
+           ("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
+       PrintingVolumeSizes = 1;
+    }
+}
+
+/**
+ * Print the sizes for a volume.
+ *
+ * @return none
+ */
+static void
+PrintVolumeSizes(Volume * vp)
+{
+    PrintVolumeSizeHeading();
+    printf("%u\t%9d%9d%10d%10d%9d\t%24s\n", V_id(vp), Vdiskused,
+          Vauxsize_k, Vvnodesize_k, totvolsize, totvolsize - Vdiskused,
+          V_name(vp));
+}
+
+/**
+ * Print the size totals for the partition.
+ *
+ * @return none
+ */
+static void
+PrintPartitionTotals(int nvols)
+{
+    PrintVolumeSizeHeading();
+    printf("\nPart Totals  %12d%9d%10d%10d%9d (%d volumes)\n\n",
+          TVdiskused, TVauxsize, TVvnodesize, Totvolsize,
+          Totvolsize - TVdiskused, nvols);
+    PrintingVolumeSizes = 0;
+}
+
+/**
+ * Print the size totals for all the partitions.
+ *
+ * @return none
+ */
+static void
+PrintServerTotals(void)
+{
+    printf("\nServer Totals%12d%9d%10d%10d%9d\n", SVdiskused, SVauxsize,
+          SVvnodesize, Stotvolsize, Stotvolsize - SVdiskused);
+}
+
+int
+ReadHdr1(IHandle_t * ih, char *to, int size, u_int magic, u_int version)
 {
     struct versionStamp *vsn;
-    int bad=0; 
+    int bad = 0;
     int code;
 
-    vsn = (struct versionStamp *) to;
-    
+    vsn = (struct versionStamp *)to;
+
     code = IH_IREAD(ih, 0, to, size);
     if (code != size)
        return -1;
 
     if (vsn->magic != magic) {
        bad++;
-       printf("Inode %s: Bad magic %x (%x): IGNORED\n",
-              PrintInode(NULL, ih->ih_ino), vsn->magic, magic);
+       fprintf(stderr, "%s: Inode %s: Bad magic %x (%x): IGNORED\n",
+               progname, PrintInode(NULL, ih->ih_ino), vsn->magic, magic);
     }
 
     /* Check is conditional, in case caller wants to inspect version himself */
     if (version && vsn->version != version) {
        bad++;
-       printf("Inode %s: Bad version %x (%x): IGNORED\n",
-              PrintInode(NULL, ih->ih_ino), vsn->version, version);
+       fprintf(stderr, "%s: Inode %s: Bad version %x (%x): IGNORED\n",
+               progname,
+               PrintInode(NULL, ih->ih_ino), vsn->version, version);
     }
     if (bad && fixheader) {
        vsn->magic = magic;
@@ -139,7 +193,9 @@ int ReadHdr1(IHandle_t *ih, char *to, int size, u_int magic, u_int version)
               PrintInode(NULL, ih->ih_ino));
        code = IH_IWRITE(ih, 0, to, size);
        if (code != size) {
-           printf("Write failed; header left in damaged state\n");
+           fprintf(stderr,
+                   "%s: Write failed for inode %s; header left in damaged state\n",
+                   progname, PrintInode(NULL, ih->ih_ino));
        }
     } else {
        if (!dsizeOnly && !saveinodes) {
@@ -151,10 +207,11 @@ int ReadHdr1(IHandle_t *ih, char *to, int size, u_int magic, u_int version)
 }
 
 
-Volume *AttachVolume(struct DiskPartition *dp, char *volname,
-                    register struct VolumeHeader *header)
+Volume *
+AttachVolume(struct DiskPartition64 * dp, char *volname,
+            struct VolumeHeader * header)
 {
-    register Volume *vp;
+    Volume *vp;
     afs_int32 ec = 0;
 
     vp = (Volume *) calloc(1, sizeof(Volume));
@@ -167,125 +224,124 @@ Volume *AttachVolume(struct DiskPartition *dp, char *volname,
            header->smallVnodeIndex);
     IH_INIT(vp->diskDataHandle, dp->device, header->parent,
            header->volumeInfo);
-    IH_INIT(V_linkHandle(vp), dp->device, header->parent,
-           header->linkTable);
+    IH_INIT(V_linkHandle(vp), dp->device, header->parent, header->linkTable);
     vp->cacheCheck = 0;                /* XXXX */
     vp->shuttingDown = 0;
     vp->goingOffline = 0;
     vp->nUsers = 1;
-    vp->header = (struct volHeader *) calloc(1, sizeof(*vp->header));    
-    ec = ReadHdr1(V_diskDataHandle(vp),
-                (char *)&V_disk(vp), sizeof(V_disk(vp)),
-                VOLUMEINFOMAGIC, VOLUMEINFOVERSION);
+    vp->header = (struct volHeader *)calloc(1, sizeof(*vp->header));
+    ec = ReadHdr1(V_diskDataHandle(vp), (char *)&V_disk(vp),
+                 sizeof(V_disk(vp)), VOLUMEINFOMAGIC, VOLUMEINFOVERSION);
     if (!ec) {
        struct IndexFileHeader iHead;
-       ec = ReadHdr1(vp->vnodeIndex[vSmall].handle,
-                    (char *)&iHead, sizeof(iHead),
-                    SMALLINDEXMAGIC, SMALLINDEXVERSION);
+       ec = ReadHdr1(vp->vnodeIndex[vSmall].handle, (char *)&iHead,
+                     sizeof(iHead), SMALLINDEXMAGIC, SMALLINDEXVERSION);
     }
     if (!ec) {
        struct IndexFileHeader iHead;
-       ec = ReadHdr1(vp->vnodeIndex[vLarge].handle,
-                    (char *)&iHead, sizeof(iHead),
-                    LARGEINDEXMAGIC, LARGEINDEXVERSION);
+       ec = ReadHdr1(vp->vnodeIndex[vLarge].handle, (char *)&iHead,
+                     sizeof(iHead), LARGEINDEXMAGIC, LARGEINDEXVERSION);
     }
 #ifdef AFS_NAMEI_ENV
     if (!ec) {
        struct versionStamp stamp;
-       ec = ReadHdr1(V_linkHandle(vp),
-                    (char *)&stamp, sizeof(stamp),
-                    LINKTABLEMAGIC, LINKTABLEVERSION);
+       ec = ReadHdr1(V_linkHandle(vp), (char *)&stamp, sizeof(stamp),
+                     LINKTABLEMAGIC, LINKTABLEVERSION);
     }
 #endif
-    if (ec) return (Volume *)0;
+    if (ec)
+       return (Volume *) 0;
     return vp;
 }
 
 
-static int handleit(struct cmd_syndesc *as)
+static int
+handleit(struct cmd_syndesc *as, void *arock)
 {
-    register struct cmd_item *ti;
+    struct cmd_item *ti;
     int err = 0;
-    int volumeId=0;
+    afs_uint32 volumeId = 0;
     char *partName = 0;
-    struct DiskPartition *partP= NULL;
+    struct DiskPartition64 *partP = NULL;
+
 
-    
 #ifndef AFS_NT40_ENV
-    if (geteuid() != 0) { 
-       printf("vol-info must be run as root; sorry\n");
+    if (geteuid() != 0) {
+       fprintf(stderr, "%s: Must be run as root; sorry\n", progname);
        exit(1);
     }
 #endif
 
     if (as->parms[0].items)
        online = 1;
-    else    
+    else
        online = 0;
     if (as->parms[1].items)
        DumpVnodes = 1;
-    else    
+    else
        DumpVnodes = 0;
     if (as->parms[2].items)
        DumpDate = 1;
-    else    
+    else
        DumpDate = 0;
     if (as->parms[3].items)
        DumpInodeNumber = 1;
-    else    
+    else
        DumpInodeNumber = 0;
     if (as->parms[4].items)
        InodeTimes = 1;
-    else    
+    else
        InodeTimes = 0;
     if ((ti = as->parms[5].items))
        partName = ti->data;
     if ((ti = as->parms[6].items))
-       volumeId = atoi(ti->data);
+       volumeId = strtoul(ti->data, NULL, 10);
     if (as->parms[7].items)
        dheader = 1;
-    else    
+    else
        dheader = 0;
     if (as->parms[8].items) {
        dsizeOnly = 1;
        dheader = 1;
        DumpVnodes = 1;
-    } else    
+    } else
        dsizeOnly = 0;
     if (as->parms[9].items) {
        fixheader = 1;
-    } else    
+    } else
        fixheader = 0;
     if (as->parms[10].items) {
        saveinodes = 1;
        dheader = 1;
        DumpVnodes = 1;
-    } else    
+    } else
        saveinodes = 0;
     if (as->parms[11].items) {
        orphaned = 1;
        DumpVnodes = 1;
-    } else    
+    } else
+       orphaned = 0;
 #if defined(AFS_NAMEI_ENV)
     if (as->parms[12].items) {
        PrintFileNames = 1;
        DumpVnodes = 1;
-    } else    
+    } else
+       PrintFileNames = 0;
 #endif
-       orphaned = 0;    
 
     DInit(10);
 
     err = VAttachPartitions();
     if (err) {
-       printf("%d partitions had errors during attach.\n", err);
+       fprintf(stderr, "%s: %d partitions had errors during attach.\n",
+               progname, err);
     }
 
     if (partName) {
        partP = VGetPartition(partName, 0);
        if (!partP) {
-           printf("%s is not an AFS partition name on this server.\n",
-                  partName);
+           fprintf(stderr, "%s: %s is not an AFS partition name on this server.\n",
+                  progname, partName);
            exit(1);
        }
     }
@@ -298,17 +354,18 @@ static int handleit(struct cmd_syndesc *as)
        }
     } else {
        char name1[128];
-       
+
        if (!partP) {
            partP = FindCurrentPartition();
            if (!partP) {
-               printf("Current partition is not a vice partition.\n");
+               fprintf(stderr,
+                       "%s: Current partition is not a vice partition.\n",
+                       progname);
                exit(1);
            }
        }
-       sprintf(name1,VFORMAT,volumeId);
-       if (dsizeOnly && !saveinodes)
-           printf("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
+       snprintf(name1, sizeof name1, VFORMAT,
+                afs_printable_uint32_lu(volumeId));
        HandleVolume(partP, name1);
     }
     return 0;
@@ -316,50 +373,58 @@ static int handleit(struct cmd_syndesc *as)
 
 #ifdef AFS_NT40_ENV
 #include <direct.h>
-struct DiskPartition *FindCurrentPartition()
+struct DiskPartition64 *
+FindCurrentPartition(void)
 {
     int dr = _getdrive();
-    struct DiskPartition *dp;
-    
-    dr --;
-    for(dp = DiskPartitionList; dp; dp = dp->next) {
+    struct DiskPartition64 *dp;
+
+    dr--;
+    for (dp = DiskPartitionList; dp; dp = dp->next) {
        if (*dp->devName - 'A' == dr)
            break;
     }
     if (!dp) {
-       printf("Current drive is not a valid vice partition.\n");
+       fprintf(stderr, "%s: Current drive is not a valid vice partition.\n",
+               progname);
     }
     return dp;
 }
 #else
-struct DiskPartition *FindCurrentPartition()
+struct DiskPartition64 *
+FindCurrentPartition(void)
 {
     char partName[1024];
     char tmp = '\0';
     char *p;
-    struct DiskPartition *dp;
+    struct DiskPartition64 *dp;
 
     if (!getcwd(partName, 1023)) {
+       fprintf(stderr, "%s: Failed to get current working directory: ",
+               progname);
        perror("pwd");
        exit(1);
     }
-    p = strchr(&partName[1], '/');
+    p = strchr(&partName[1], OS_DIRSEPC);
     if (p) {
        tmp = *p;
        *p = '\0';
     }
     if (!(dp = VGetPartition(partName, 0))) {
-       if (tmp) *p = tmp;
-       printf("%s is not a valid vice partition.\n", partName);
+       if (tmp)
+           *p = tmp;
+       fprintf(stderr, "%s: %s is not a valid vice partition.\n", progname,
+               partName);
        exit(1);
     }
     return dp;
 }
 #endif
 
-void HandleAllPart(void)
+void
+HandleAllPart(void)
 {
-    struct DiskPartition *partP;
+    struct DiskPartition64 *partP;
 
 
     for (partP = DiskPartitionList; partP; partP = partP->next) {
@@ -372,195 +437,195 @@ void HandleAllPart(void)
     }
 
     if (dsizeOnly) {
-       printf("\nServer Totals%12d%9d%10d%10d%9d\n",
-              SVdiskused, SVauxsize, SVvnodesize, Stotvolsize,
-              Stotvolsize-SVdiskused);
+       PrintServerTotals();
     }
 }
 
 
-void HandlePart(struct DiskPartition *partP)
+void
+HandlePart(struct DiskPartition64 *partP)
 {
-    int nvols=0;
+    int nvols = 0;
     DIR *dirp;
-    struct dirent  *dp;
+    struct dirent *dp;
 #ifdef AFS_NT40_ENV
     char pname[64];
     char *p = pname;
-    (void) sprintf(pname, "%s\\", VPartitionPath(partP));
+    (void)sprintf(pname, "%s\\", VPartitionPath(partP));
 #else
     char *p = VPartitionPath(partP);
 #endif
-    
-    if (chdir(p) == -1) {
-       printf("Can't chdir to partition %s; giving up\n", p);
-       exit(1);
-    }
-    if ((dirp = opendir(".")) == NULL) {
-       printf("Can't read directory %s; giving up\n", p);
+
+    if ((dirp = opendir(p)) == NULL) {
+       fprintf(stderr, "%s: Can't read directory %s; giving up\n", progname,
+               p);
        exit(1);
     }
-    if (dsizeOnly && !saveinodes)
-       printf("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
-    while (dp = readdir(dirp)) {
+    while ((dp = readdir(dirp))) {
        p = (char *)strrchr(dp->d_name, '.');
        if (p != NULL && strcmp(p, VHDREXT) == 0) {
-           HandleVolume(partP, dp->d_name);            
+           HandleVolume(partP, dp->d_name);
            Totvolsize += totvolsize;
            TVauxsize += Vauxsize;
            TVvnodesize += Vvnodesize;
            TVdiskused += Vdiskused;
            nvols++;
-       } 
+       }
     }
     closedir(dirp);
     if (dsizeOnly) {
-       printf("\nPart Totals  %12d%9d%10d%10d%9d (%d volumes)\n\n",
-              TVdiskused, TVauxsize, TVvnodesize, Totvolsize,
-              Totvolsize-TVdiskused, nvols);
+       PrintPartitionTotals(nvols);
+    }
+}
+
+/**
+ * Inspect a volume header special file.
+ *
+ * @param[in]  name       descriptive name of the type of header special file
+ * @param[in]  dp         partition object for this volume
+ * @param[in]  header     header object for this volume
+ * @param[in]  inode      fileserver inode number for this header special file
+ * @param[out] psize      total of the header special file
+ *
+ * @return none
+ */
+void
+HandleSpecialFile(const char *name, struct DiskPartition64 *dp,
+                 struct VolumeHeader *header, Inode inode,
+                 afs_sfsize_t * psize)
+{
+    afs_sfsize_t size = 0;
+    IHandle_t *ih = NULL;
+    FdHandle_t *fdP = NULL;
+#ifdef AFS_NAMEI_ENV
+    namei_t filename;
+#endif /* AFS_NAMEI_ENV */
+
+    IH_INIT(ih, dp->device, header->parent, inode);
+    fdP = IH_OPEN(ih);
+    if (fdP == NULL) {
+       fprintf(stderr,
+               "%s: Error opening header file '%s' for volume %u", progname,
+               name, header->id);
+       perror("open");
+       goto error;
+    }
+    size = FDH_SIZE(fdP);
+    if (size == -1) {
+       fprintf(stderr,
+               "%s: Error getting size of header file '%s' for volume %u",
+               progname, name, header->id);
+       perror("fstat");
+       goto error;
+    }
+    if (!dsizeOnly && !saveinodes) {
+       printf("\t%s inode\t= %s (size = %lld)\n",
+              name, PrintInode(NULL, inode), size);
+#ifdef AFS_NAMEI_ENV
+       namei_HandleToName(&filename, ih);
+       printf("\t%s namei\t= %s\n", name, filename.n_path);
+#endif /* AFS_NAMEI_ENV */
+    }
+    *psize += size;
+
+  error:
+    if (fdP != NULL) {
+       FDH_REALLYCLOSE(fdP);
+    }
+    if (ih != NULL) {
+       IH_RELEASE(ih);
     }
 }
 
+/**
+ * Inspect this volume header files.
+ *
+ * @param[in]  dp         partition object for this volume
+ * @param[in]  header_fd  volume header file descriptor
+ * @param[in]  header     volume header object
+ * @param[out] psize      total of the header special file
+ *
+ * @return none
+ */
+void
+HandleHeaderFiles(struct DiskPartition64 *dp, FD_t header_fd,
+                 struct VolumeHeader *header)
+{
+    afs_sfsize_t size = 0;
+
+    if (!dsizeOnly && !saveinodes) {
+       size = OS_SIZE(header_fd);
+       printf("Volume header (size = %lld):\n", size);
+       printf("\tstamp\t= 0x%x\n", header->stamp.version);
+       printf("\tVolId\t= %u\n", header->id);
+       printf("\tparent\t= %u\n", header->parent);
+    }
 
-void HandleVolume(struct DiskPartition *dp, char *name) 
+    HandleSpecialFile("Info", dp, header, header->volumeInfo, &size);
+    HandleSpecialFile("Small", dp, header, header->smallVnodeIndex,
+                     &size);
+    HandleSpecialFile("Large", dp, header, header->largeVnodeIndex,
+                     &size);
+#ifdef AFS_NAMEI_ENV
+    HandleSpecialFile("Link", dp, header, header->linkTable, &size);
+#endif /* AFS_NAMEI_ENV */
+
+    if (!dsizeOnly && !saveinodes) {
+       printf("Total aux volume size = %lld\n\n", size);
+    }
+    Vauxsize = size;
+    Vauxsize_k = size / 1024;
+}
+
+void
+HandleVolume(struct DiskPartition64 *dp, char *name)
 {
     struct VolumeHeader header;
     struct VolumeDiskHeader diskHeader;
-    struct stat status, stat;
-    register int fd;
+    FD_t fd = INVALID_FD;
     Volume *vp;
-    IHandle_t *ih;
     char headerName[1024];
 
     if (online) {
-       printf("volinfo: -online not supported\n");
+       fprintf(stderr, "%s: -online not supported\n", progname);
        exit(1);
     } else {
-       afs_int32 n;
-
-       (void) sprintf(headerName, "%s/%s", VPartitionPath(dp), name);
-       if ((fd = open(headerName, O_RDONLY)) == -1
-           || fstat(fd,&status) == -1) {
-           printf("Volinfo: Cannot read volume header %s\n", name);
-           close(fd);
+       afs_sfsize_t n;
+
+       snprintf(headerName, sizeof headerName, "%s" OS_DIRSEP "%s",
+                VPartitionPath(dp), name);
+       if ((fd = OS_OPEN(headerName, O_RDONLY, 0666)) == INVALID_FD
+           || OS_SIZE(fd) < 0) {
+           fprintf(stderr, "%s: Cannot read volume header %s\n", progname,
+                   name);
+           OS_CLOSE(fd);
            exit(1);
        }
-       n = read(fd, &diskHeader, sizeof (diskHeader));
+       n = OS_READ(fd, &diskHeader, sizeof(diskHeader));
 
-       if (n != sizeof (diskHeader)
+       if (n != sizeof(diskHeader)
            || diskHeader.stamp.magic != VOLUMEHEADERMAGIC) {
-           printf("Volinfo: Error reading volume header %s\n", name);
+           fprintf(stderr, "%s: Error reading volume header %s\n", progname,
+                   name);
            exit(1);
        }
        if (diskHeader.stamp.version != VOLUMEHEADERVERSION) {
-           printf("Volinfo: Volume %s, version number is incorrect; volume needs salvage\n",name);
+           fprintf(stderr,
+                   "%s: Volume %s, version number is incorrect; volume needs salvage\n",
+                   progname, name);
            exit(1);
        }
        DiskToVolumeHeader(&header, &diskHeader);
 
        if (dheader) {
-           FdHandle_t *fdP;
-           int size = 0;
-           int code;
-
-           if (fstat(fd, &stat) == -1) {
-               perror("stat");
-               exit(1);
-           }           
-           if (!dsizeOnly && !saveinodes) {
-               printf("Volume header (size = %d):\n", size = stat.st_size);
-               printf("\tstamp\t= 0x%x\n", header.stamp.version);
-               printf("\tVolId\t= %d\n", header.id);
-           }
-
-           IH_INIT(ih, dp->device , header.id, header.volumeInfo);
-           fdP = IH_OPEN(ih);
-           if (fdP == NULL) {
-               perror("opening volume info");
-               exit(1);
-           }
-           code = FDH_SIZE(fdP);
-           if (code == -1) {
-               perror("fstat");
-               exit(1);
-           }       
-           FDH_REALLYCLOSE(fdP);
-           IH_RELEASE(ih);
-           size += code;
-           if (!dsizeOnly && !saveinodes) {
-               printf("\tparent\t= %d\n", header.parent);
-               printf("\tInfo inode\t= %s (size = %d)\n",
-                      PrintInode(NULL, header.volumeInfo), code);
-           }
-
-           IH_INIT(ih, dp->device , header.id,  header.smallVnodeIndex);
-           fdP = IH_OPEN(ih);
-           if (fdP == NULL) {
-               perror("opening small vnode index");
-               exit(1);
-           }
-           code = FDH_SIZE(fdP);
-           if (code == -1) {
-               perror("fstat");
-               exit(1);
-           }       
-           FDH_REALLYCLOSE(fdP);
-           IH_RELEASE(ih);
-           size += code;
-           if (!dsizeOnly && !saveinodes) {
-               printf("\tSmall inode\t= %s (size = %d)\n",
-                      PrintInode(NULL, header.smallVnodeIndex), code);
-           }
-
-           IH_INIT(ih, dp->device, header.id, header.largeVnodeIndex);
-           fdP = IH_OPEN(ih);
-           if (fdP == NULL) {
-               perror("opening large vnode index");
-               exit(1);
-           }
-           code = FDH_SIZE(fdP);
-           if (code == -1) {
-               perror("fstat");
-               exit(1);
-           }       
-           FDH_REALLYCLOSE(fdP);
-           IH_RELEASE(ih);
-           size += code;
-           if (!dsizeOnly && !saveinodes) {
-               printf("\tLarge inode\t= %s (size = %d)\n",
-                      PrintInode(NULL, header.largeVnodeIndex), code);
-#ifndef AFS_NT40_ENV
-               printf("Total aux volume size = %d\n\n", size);
-#endif
-           }
-#ifdef AFS_NAMEI_ENV
-           IH_INIT(ih, dp->device, header.id, header.linkTable);
-           fdP = IH_OPEN(ih);
-           if (fdP == NULL) {
-               perror("opening link table index");
-               exit(1);
-           }
-           code = FDH_SIZE(fdP);
-           if (code == -1) {
-               perror("fstat");
-               exit(1);
-           }       
-           FDH_REALLYCLOSE(fdP);
-           IH_RELEASE(ih);
-           size += code;
-           if (!dsizeOnly && !saveinodes) {
-               printf("\tLink inode\t= %s (size = %d)\n",
-                      PrintInode(NULL, header.linkTable), code);
-               printf("Total aux volume size = %d\n\n", size);
-           }
-#endif
-           Vauxsize = size;
+           HandleHeaderFiles(dp, fd, &header);
        }
-       close(fd);
+       OS_CLOSE(fd);
        vp = AttachVolume(dp, name, &header);
        if (!vp) {
-           printf("Volinfo: Error attaching volume header %s\n", name);
-           exit(1);
+           fprintf(stderr, "%s: Error attaching volume header %s\n",
+                   progname, name);
+           return;
        }
     }
     PrintHeader(vp);
@@ -572,45 +637,51 @@ void HandleVolume(struct DiskPartition *dp, char *name)
            printf("\nSmall vnodes(files, symbolic links)\n");
            fflush(stdout);
        }
-       if (saveinodes) 
+       if (saveinodes) {
            printf("Saving all volume files to current directory ...\n");
+           PrintingVolumeSizes = 0;    /* -saveinodes interfers with -sizeOnly */
+       }
        PrintVnodes(vp, vSmall);
     }
     if (dsizeOnly) {
-       Vauxsize = Vauxsize/1024;
-       Vvnodesize = Vvnodesize/1024;
-       totvolsize = Vauxsize + Vvnodesize;
-       if (saveinodes)
-           printf("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
-
-       printf("%d\t%9d%9d%10d%10d%9d\t%24s\n",
-              V_id(vp), Vdiskused, Vauxsize, Vvnodesize, totvolsize,
-              totvolsize-Vdiskused, V_name(vp));
+       totvolsize = Vauxsize_k + Vvnodesize_k;
+       PrintVolumeSizes(vp);
     }
+    free(vp->header);
+    free(vp);
 }
 
-
-main(argc,argv)
-char **argv;
+int
+main(int argc, char **argv)
 {
-    register struct cmd_syndesc *ts;
+    struct cmd_syndesc *ts;
     afs_int32 code;
 
-    ts = cmd_CreateSyntax(NULL, handleit, 0, "Dump volume's internal state");
-    cmd_AddParm(ts, "-online", CMD_FLAG, CMD_OPTIONAL, "Get info from running fileserver");
+    ts = cmd_CreateSyntax(NULL, handleit, NULL, "Dump volume's internal state");
+    cmd_AddParm(ts, "-online", CMD_FLAG, CMD_OPTIONAL,
+               "Get info from running fileserver");
     cmd_AddParm(ts, "-vnode", CMD_FLAG, CMD_OPTIONAL, "Dump vnode info");
-    cmd_AddParm(ts, "-date", CMD_FLAG, CMD_OPTIONAL, "Also dump vnode's mod date");
-    cmd_AddParm(ts, "-inode", CMD_FLAG, CMD_OPTIONAL, "Dump vnode's inode number");
-    cmd_AddParm(ts, "-itime", CMD_FLAG, CMD_OPTIONAL, "Dump special inode's mod times");
-    cmd_AddParm(ts, "-part", CMD_LIST, CMD_OPTIONAL, "AFS partition name (default current partition)");
+    cmd_AddParm(ts, "-date", CMD_FLAG, CMD_OPTIONAL,
+               "Also dump vnode's mod date");
+    cmd_AddParm(ts, "-inode", CMD_FLAG, CMD_OPTIONAL,
+               "Also dump vnode's inode number");
+    cmd_AddParm(ts, "-itime", CMD_FLAG, CMD_OPTIONAL,
+               "Dump special inode's mod times");
+    cmd_AddParm(ts, "-part", CMD_LIST, CMD_OPTIONAL,
+               "AFS partition name (default current partition)");
     cmd_AddParm(ts, "-volumeid", CMD_LIST, CMD_OPTIONAL, "Volume id");
-    cmd_AddParm(ts, "-header", CMD_FLAG, CMD_OPTIONAL, "Dump volume's header info");
-    cmd_AddParm(ts, "-sizeOnly", CMD_FLAG, CMD_OPTIONAL, "Dump volume's size");
-    cmd_AddParm(ts, "-fixheader", CMD_FLAG, CMD_OPTIONAL, "Try to fix header");    
-    cmd_AddParm(ts, "-saveinodes", CMD_FLAG, CMD_OPTIONAL, "Try to save all inodes");    
-    cmd_AddParm(ts, "-orphaned", CMD_FLAG, CMD_OPTIONAL, "List all dir/files without a parent");    
+    cmd_AddParm(ts, "-header", CMD_FLAG, CMD_OPTIONAL,
+               "Dump volume's header info");
+    cmd_AddParm(ts, "-sizeOnly", CMD_FLAG, CMD_OPTIONAL,
+               "Dump volume's size");
+    cmd_AddParm(ts, "-fixheader", CMD_FLAG, CMD_OPTIONAL,
+               "Try to fix header");
+    cmd_AddParm(ts, "-saveinodes", CMD_FLAG, CMD_OPTIONAL,
+               "Try to save all inodes");
+    cmd_AddParm(ts, "-orphaned", CMD_FLAG, CMD_OPTIONAL,
+               "List all dir/files without a parent");
 #if defined(AFS_NAMEI_ENV)
-    cmd_AddParm(ts, "-filenames", CMD_FLAG, CMD_OPTIONAL, "Print filenames");    
+    cmd_AddParm(ts, "-filenames", CMD_FLAG, CMD_OPTIONAL, "Also dump vnode's namei filename");
 #endif
     code = cmd_Dispatch(argc, argv);
     return code;
@@ -618,62 +689,78 @@ char **argv;
 
 #define typestring(type) (type == RWVOL? "read/write": type == ROVOL? "readonly": type == BACKVOL? "backup": "unknown")
 
-void PrintHeader(register Volume *vp)
+void
+PrintHeader(Volume * vp)
 {
     Vdiskused = V_diskused(vp);
-    if (dsizeOnly || saveinodes) return;
+    if (dsizeOnly || saveinodes)
+       return;
     printf("Volume header for volume %u (%s)\n", V_id(vp), V_name(vp));
     printf("stamp.magic = %x, stamp.version = %u\n", V_stamp(vp).magic,
-       V_stamp(vp).version);
-    printf("inUse = %d, inService = %d, blessed = %d, needsSalvaged = %d, dontSalvage = %d\n",
-       V_inUse(vp), V_inService(vp), V_blessed(vp), V_needsSalvaged(vp), V_dontSalvage(vp));
-    printf("type = %d (%s), uniquifier = %u, needsCallback = %d, destroyMe = %x\n",
-       V_type(vp), typestring(V_type(vp)), V_uniquifier(vp), V_needsCallback(vp), 
-       V_destroyMe(vp));
-    printf("id = %u, parentId = %u, cloneId = %u, backupId = %u, restoredFromId = %u\n",
-       V_id(vp), V_parentId(vp), V_cloneId(vp), V_backupId(vp), V_restoredFromId(vp));
-    printf("maxquota = %d, minquota = %d, maxfiles = %d, filecount = %d, diskused = %d\n",
-       V_maxquota(vp), V_minquota(vp), V_maxfiles(vp), V_filecount(vp), V_diskused(vp));
-    printf("creationDate = %s, copyDate = %s\n", date(V_creationDate(vp)), date(V_copyDate(vp)));
-    printf("backupDate = %s, expirationDate = %s\n", date(V_backupDate(vp)), date(V_expirationDate(vp)));
-    printf("accessDate = %s, updateDate = %s\n", date(V_accessDate(vp)), date(V_updateDate(vp)));
-    printf("owner = %u, accountNumber = %u\n", V_owner(vp), V_accountNumber(vp));
-    printf("dayUse = %u; week = (%u, %u, %u, %u, %u, %u, %u), dayUseDate = %s\n",
-       V_dayUse(vp), V_weekUse(vp)[0], V_weekUse(vp)[1], V_weekUse(vp)[2],
-       V_weekUse(vp)[3],V_weekUse(vp)[4],V_weekUse(vp)[5],V_weekUse(vp)[6],
-       date(V_dayUseDate(vp)));
+          V_stamp(vp).version);
+    printf
+       ("inUse = %d, inService = %d, blessed = %d, needsSalvaged = %d, dontSalvage = %d\n",
+        V_inUse(vp), V_inService(vp), V_blessed(vp), V_needsSalvaged(vp),
+        V_dontSalvage(vp));
+    printf
+       ("type = %d (%s), uniquifier = %u, needsCallback = %d, destroyMe = %x\n",
+        V_type(vp), typestring(V_type(vp)), V_uniquifier(vp),
+        V_needsCallback(vp), V_destroyMe(vp));
+    printf
+       ("id = %u, parentId = %u, cloneId = %u, backupId = %u, restoredFromId = %u\n",
+        V_id(vp), V_parentId(vp), V_cloneId(vp), V_backupId(vp),
+        V_restoredFromId(vp));
+    printf
+       ("maxquota = %d, minquota = %d, maxfiles = %d, filecount = %d, diskused = %d\n",
+        V_maxquota(vp), V_minquota(vp), V_maxfiles(vp), V_filecount(vp),
+        V_diskused(vp));
+    printf("creationDate = %s, copyDate = %s\n", date(V_creationDate(vp)),
+          date(V_copyDate(vp)));
+    printf("backupDate = %s, expirationDate = %s\n", date(V_backupDate(vp)),
+          date(V_expirationDate(vp)));
+    printf("accessDate = %s, updateDate = %s\n", date(V_accessDate(vp)),
+          date(V_updateDate(vp)));
+    printf("owner = %u, accountNumber = %u\n", V_owner(vp),
+          V_accountNumber(vp));
+    printf
+       ("dayUse = %u; week = (%u, %u, %u, %u, %u, %u, %u), dayUseDate = %s\n",
+        V_dayUse(vp), V_weekUse(vp)[0], V_weekUse(vp)[1], V_weekUse(vp)[2],
+        V_weekUse(vp)[3], V_weekUse(vp)[4], V_weekUse(vp)[5],
+        V_weekUse(vp)[6], date(V_dayUseDate(vp)));
+    printf("volUpdateCounter = %u\n", V_volUpCounter(vp));
 }
 
 /* GetFileInfo
  * OS independent file info. Die on failure.
  */
 #ifdef AFS_NT40_ENV
-char *NT_date(FILETIME *ft)
+char *
+NT_date(FILETIME * ft)
 {
     static char result[8][64];
     static int next = 0;
     SYSTEMTIME st;
     FILETIME lft;
-    
-    if (!FileTimeToLocalFileTime(ft, &lft) ||
-       !FileTimeToSystemTime(&lft, &st)) {
-       printf("Time conversion failed.\n");
+
+    if (!FileTimeToLocalFileTime(ft, &lft)
+       || !FileTimeToSystemTime(&lft, &st)) {
+       fprintf(stderr, "%s: Time conversion failed.\n", progname);
        exit(1);
     }
-    sprintf(result[next = ((next+1)&7)], "%4d/%02d/%02d.%2d:%2d:%2d",
-           st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute,
-           st.wSecond);
+    sprintf(result[next = ((next + 1) & 7)], "%4d/%02d/%02d.%2d:%2d:%2d",
+           st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond);
     return result[next];
 }
 #endif
 
-static void GetFileInfo(FD_t fd, int *size, char **ctime, char **mtime,
-                      char **atime)
+static void
+GetFileInfo(FD_t fd, int *size, char **ctime, char **mtime, char **atime)
 {
 #ifdef AFS_NT40_ENV
     BY_HANDLE_FILE_INFORMATION fi;
     if (!GetFileInformationByHandle(fd, &fi)) {
-       printf("GetFileInformationByHandle failed, exiting\n");
+       fprintf(stderr, "%s: GetFileInformationByHandle failed, exiting\n",
+               progname);
        exit(1);
     }
     *size = (int)fi.nFileSizeLow;
@@ -681,9 +768,9 @@ static void GetFileInfo(FD_t fd, int *size, char **ctime, char **mtime,
     *mtime = NT_date(&fi.ftLastWriteTime);
     *atime = NT_date(&fi.ftLastAccessTime);
 #else
-    struct stat status;
-    if (fstat(fd, &status) == -1) {
-       printf("fstat failed %d\n", errno);
+    struct afs_stat_st status;
+    if (afs_fstat(fd, &status) == -1) {
+       fprintf(stderr, "%s: fstat failed %d\n", progname, errno);
        exit(1);
     }
     *size = (int)status.st_size;
@@ -693,99 +780,123 @@ static void GetFileInfo(FD_t fd, int *size, char **ctime, char **mtime,
 #endif
 }
 
-void PrintVnodes(Volume *vp, VnodeClass class)
+void
+PrintVnodes(Volume * vp, VnodeClass class)
 {
-    afs_int32 diskSize = (class == vSmall ?
-                     SIZEOF_SMALLDISKVNODE : SIZEOF_LARGEDISKVNODE);
+    afs_int32 diskSize =
+       (class == vSmall ? SIZEOF_SMALLDISKVNODE : SIZEOF_LARGEDISKVNODE);
     char buf[SIZEOF_LARGEDISKVNODE];
-    struct VnodeDiskObject *vnode = (struct VnodeDiskObject *) buf;
+    struct VnodeDiskObject *vnode = (struct VnodeDiskObject *)buf;
     StreamHandle_t *file;
-    register int vnodeIndex, nVnodes, offset=0;
+    int vnodeIndex, nVnodes;
+    afs_foff_t offset = 0;
     Inode ino;
     IHandle_t *ih = vp->vnodeIndex[class].handle;
     FdHandle_t *fdP;
     int size;
     char *ctime, *atime, *mtime;
     char nfile[50], buffer[256];
-    int total, ofd, len, code, bad=0;
+    int ofd, bad = 0;
+    afs_foff_t total;
+    ssize_t len;
 
     fdP = IH_OPEN(ih);
     if (fdP == NULL) {
-       printf("open failed\n");
+       fprintf(stderr, "%s: open failed: ", progname);
        exit(1);
     }
 
     file = FDH_FDOPEN(fdP, "r");
     if (!file) {
-       printf("fdopen failed\n");
+       fprintf(stderr, "%s: fdopen failed\n", progname);
        exit(1);
     }
 
     GetFileInfo(fdP->fd_fd, &size, &ctime, &atime, &mtime);
     if (InodeTimes && !dsizeOnly) {
-       printf("ichanged : %s\nimodified: %s\niaccessed: %s\n\n",
-              ctime, mtime, atime);
+       printf("ichanged : %s\nimodified: %s\niaccessed: %s\n\n", ctime,
+              mtime, atime);
     }
 
     nVnodes = (size / diskSize) - 1;
     if (nVnodes > 0) {
-       STREAM_SEEK(file, diskSize, 0);
-    }
-    else nVnodes = 0;
+       STREAM_ASEEK(file, diskSize);
+    } else
+       nVnodes = 0;
 
-    for (vnodeIndex = 0; nVnodes && STREAM_READ(vnode, diskSize, 1, file) == 1;
+    for (vnodeIndex = 0;
+        nVnodes && STREAM_READ(vnode, diskSize, 1, file) == 1;
         nVnodes--, vnodeIndex++, offset += diskSize) {
 
        ino = VNDISK_GET_INO(vnode);
        if (saveinodes) {
-           if (VALID_INO(ino) && (class == vSmall)) {
+           if (!VALID_INO(ino)) {
+               continue;
+           }
+           if (dsizeOnly && (class == vLarge)) {
+               afs_fsize_t fileLength;
+
+               VNDISK_GET_LEN(fileLength, vnode);
+               Vvnodesize += fileLength;
+               Vvnodesize_k += fileLength / 1024;
+           } else if (class == vSmall) {
                IHandle_t *ih1;
                FdHandle_t *fdP1;
                IH_INIT(ih1, V_device(vp), V_parentId(vp), ino);
-               fdP1  = IH_OPEN(ih1);
+               fdP1 = IH_OPEN(ih1);
                if (fdP1 == NULL) {
-                   printf("Can't open inode %s error %d (ignored)\n",
-                          PrintInode(NULL, ino), errno);
+                   fprintf(stderr,
+                           "%s: Can't open inode %s error %d (ignored)\n",
+                           progname, PrintInode(NULL, ino), errno);
                    continue;
                }
-               sprintf(nfile, "TmpInode.%s", PrintInode(NULL, ino));
-               ofd = open(nfile, O_CREAT | O_RDWR | O_TRUNC, 0600);
+               snprintf(nfile, sizeof nfile, "TmpInode.%s",
+                        PrintInode(NULL, ino));
+               ofd = afs_open(nfile, O_CREAT | O_RDWR | O_TRUNC, 0600);
                if (ofd < 0) {
-                   printf("Can't create file %s; error %d (ignored)\n", nfile, errno);
+                   fprintf(stderr,
+                           "%s: Can't create file %s; error %d (ignored)\n",
+                           progname, nfile, errno);
                    continue;
-               }           
+               }
                total = bad = 0;
                while (1) {
-                   len = FDH_READ(fdP1, buffer, sizeof(buffer));
+                   ssize_t nBytes;
+                   len = FDH_PREAD(fdP1, buffer, sizeof(buffer), total);
                    if (len < 0) {
                        FDH_REALLYCLOSE(fdP1);
                        IH_RELEASE(ih1);
                        close(ofd);
                        unlink(nfile);
-                       printf("Error while reading from inode %s (%d - ignored)\n",
-                              PrintInode(NULL, ino), errno);
+                       fprintf(stderr,
+                               "%s: Error while reading from inode %s (%d - ignored)\n",
+                               progname, PrintInode(NULL, ino), errno);
                        bad = 1;
                        break;
                    }
-                   if (len == 0) break;           /* No more input */
-                   code = write(ofd, buffer, len);
-                   if (code != len) {
+                   if (len == 0)
+                       break;  /* No more input */
+                   nBytes = write(ofd, buffer, len);
+                   if (nBytes != len) {
                        FDH_REALLYCLOSE(fdP1);
                        IH_RELEASE(ih1);
                        close(ofd);
                        unlink(nfile);
-                       printf("Error while writing to \"%s\" (%d - ignored)\n", nfile, errno);
+                       fprintf(stderr,
+                               "%s: Error while writing to \"%s\" (%d - ignored)\n",
+                               progname, nfile, errno);
                        bad = 1;
                        break;
                    }
                    total += len;
                }
-               if (bad) continue;
+               if (bad)
+                   continue;
                FDH_REALLYCLOSE(fdP1);
                IH_RELEASE(ih1);
                close(ofd);
-               printf("... Copied inode %d to file %s (%d bytes)\n",
-                      ino, nfile, total);
+               printf("... Copied inode %s to file %s (%lu bytes)\n",
+                      PrintInode(NULL, ino), nfile, (unsigned long)total);
            }
        } else {
 #if defined(AFS_NAMEI_ENV)
@@ -802,40 +913,45 @@ void PrintVnodes(Volume *vp, VnodeClass class)
 }
 
 #if defined(AFS_NAMEI_ENV)
-void PrintVnode(int offset, VnodeDiskObject *vnode, int vnodeNumber, Inode ino, Volume *vp)
+void
+PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
+          Inode ino, Volume * vp)
 #else
-void PrintVnode(int offset, VnodeDiskObject *vnode, int vnodeNumber, Inode ino)
+void
+PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
+          Inode ino)
 #endif
 {
 #if defined(AFS_NAMEI_ENV)
     IHandle_t *ihtmpp;
-#if !defined(AFS_NT40_ENV)
     namei_t filename;
-#else
-    char filename[MAX_PATH];
-#endif
 #endif
     afs_fsize_t fileLength;
 
     VNDISK_GET_LEN(fileLength, vnode);
     Vvnodesize += fileLength;
-    if (dsizeOnly) return;
-    if (orphaned && (fileLength ==0 || vnode->parent || !offset)) return;
-    printf("%10d Vnode %u.%u.%u cloned: %d, length: %d linkCount: %d parent: %d",
-        offset, vnodeNumber, vnode->uniquifier, vnode->dataVersion, vnode->cloned, fileLength, vnode->linkCount, vnode->parent);
+    Vvnodesize_k += fileLength / 1024;
+    if (dsizeOnly)
+       return;
+    if (orphaned && (fileLength == 0 || vnode->parent || !offset))
+       return;
+    printf
+       ("%10lld Vnode %u.%u.%u cloned: %u, length: %llu linkCount: %d parent: %u",
+        (long long)offset, vnodeNumber, vnode->uniquifier, vnode->dataVersion,
+        vnode->cloned, (afs_uintmax_t) fileLength, vnode->linkCount,
+        vnode->parent);
     if (DumpInodeNumber)
        printf(" inode: %s", PrintInode(NULL, ino));
     if (DumpDate)
        printf(" ServerModTime: %s", date(vnode->serverModifyTime));
 #if defined(AFS_NAMEI_ENV)
-    if(PrintFileNames) {
-           IH_INIT(ihtmpp, V_device(vp), V_parentId(vp), ino);
+    if (PrintFileNames) {
+       IH_INIT(ihtmpp, V_device(vp), V_parentId(vp), ino);
+       namei_HandleToName(&filename, ihtmpp);
 #if !defined(AFS_NT40_ENV)
-           namei_HandleToName(&filename, ihtmpp);
-           printf(" UFS-Filename: %s",filename.n_path);
+       printf(" UFS-Filename: %s", filename.n_path);
 #else
-           nt_HandleToName(filename, ihtmpp);
-           printf(" NTFS-Filename: %s",filename);
+       printf(" NTFS-Filename: %s", filename.n_path);
 #endif
     }
 #endif