vol: use OS_DIRSEP in many more places
[openafs.git] / src / vol / vol-info.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11    System:              VICE-TWO
12    Module:              vol-info.c
13    Institution: The Information Technology Center, Carnegie-Mellon University
14
15    */
16
17 #include <afsconfig.h>
18 #include <afs/param.h>
19
20 #include <roken.h>
21
22 #include <ctype.h>
23 #include <errno.h>
24 #include <sys/stat.h>
25 #include <stdio.h>
26 #include <string.h>
27 #ifdef AFS_NT40_ENV
28 #include <fcntl.h>
29 #include <time.h>
30 #include <io.h>
31 #else
32 #include <sys/param.h>
33 #include <sys/file.h>
34 #include <sys/time.h>
35 #endif
36 #include <afs/cmd.h>
37 #include <afs/dir.h>
38
39 #include <rx/xdr.h>
40 #include <afs/afsint.h>
41 #include "nfs.h"
42 #include <afs/errors.h>
43 #include "lock.h"
44 #include "lwp.h"
45 #include <afs/afssyscalls.h>
46 #include "ihandle.h"
47 #include "vnode.h"
48 #include "volume.h"
49 #include "partition.h"
50 #include "viceinode.h"
51 #include <afs/afssyscalls.h>
52 #include <afs/afsutil.h>
53
54 #ifdef _AIX
55 #include <time.h>
56 #endif
57
58 #include <dirent.h>
59
60 #ifdef O_LARGEFILE
61 #define afs_stat        stat64
62 #define afs_fstat       fstat64
63 #define afs_open        open64
64 #else /* !O_LARGEFILE */
65 #define afs_stat        stat
66 #define afs_fstat       fstat
67 #define afs_open        open
68 #endif /* !O_LARGEFILE */
69
70 int DumpVnodes = 0;             /* Dump everything, i.e. summary of all vnodes */
71 int DumpInodeNumber = 0;        /* Dump inode numbers with vnodes */
72 int DumpDate = 0;               /* Dump vnode date (server modify date) with vnode */
73 int InodeTimes = 0;             /* Dump some of the dates associated with inodes */
74 #if defined(AFS_NAMEI_ENV)
75 int PrintFileNames = 0;
76 #endif
77 int online = 0;
78 int dheader = 0;
79 int dsizeOnly = 0, totvolsize = 0, Vauxsize = 0, Vdiskused = 0, Vvnodesize =
80     0;
81 int Vvnodesize_k = 0, Vauxsize_k = 0;
82 int Totvolsize = 0, TVauxsize = 0, TVdiskused = 0, TVvnodesize = 0;
83 int Stotvolsize = 0, SVauxsize = 0, SVdiskused = 0, SVvnodesize = 0;
84 int fixheader = 0, saveinodes = 0, orphaned = 0;
85 int VolumeChanged;
86
87 /* Forward Declarations */
88 void PrintHeader(Volume * vp);
89 void HandleAllPart(void);
90 void HandlePart(struct DiskPartition64 *partP);
91 void HandleVolume(struct DiskPartition64 *partP, char *name);
92 struct DiskPartition64 *FindCurrentPartition(void);
93 Volume *AttachVolume(struct DiskPartition64 *dp, char *volname,
94                      struct VolumeHeader *header);
95 #if defined(AFS_NAMEI_ENV)
96 void PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
97                 Inode ino, Volume * vp);
98 #else
99 void PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
100                 Inode ino);
101 #endif
102 void PrintVnodes(Volume * vp, VnodeClass class);
103
104 char *
105 date(time_t date)
106 {
107 #define MAX_DATE_RESULT 100
108     static char results[8][MAX_DATE_RESULT];
109     static int next;
110     struct tm *tm = localtime(&date);
111     char buf[32];
112
113     (void)strftime(buf, 32, "%Y/%m/%d.%H:%M:%S", tm);   /* NT does not have %T */
114     (void)afs_snprintf(results[next = (next + 1) & 7], MAX_DATE_RESULT,
115                        "%lu (%s)", (unsigned long)date, buf);
116     return results[next];
117 }
118
119 #ifndef AFS_NT40_ENV
120 #include "AFS_component_version_number.c"
121 #endif
122
123 char name[VMAXPATHLEN];
124
125 char BU[1000];
126
127 int
128 ReadHdr1(IHandle_t * ih, char *to, int size, u_int magic, u_int version)
129 {
130     struct versionStamp *vsn;
131     int bad = 0;
132     int code;
133
134     vsn = (struct versionStamp *)to;
135
136     code = IH_IREAD(ih, 0, to, size);
137     if (code != size)
138         return -1;
139
140     if (vsn->magic != magic) {
141         bad++;
142         printf("Inode %s: Bad magic %x (%x): IGNORED\n",
143                PrintInode(NULL, ih->ih_ino), vsn->magic, magic);
144     }
145
146     /* Check is conditional, in case caller wants to inspect version himself */
147     if (version && vsn->version != version) {
148         bad++;
149         printf("Inode %s: Bad version %x (%x): IGNORED\n",
150                PrintInode(NULL, ih->ih_ino), vsn->version, version);
151     }
152     if (bad && fixheader) {
153         vsn->magic = magic;
154         vsn->version = version;
155         printf("Special index inode %s has a bad header. Reconstructing...\n",
156                PrintInode(NULL, ih->ih_ino));
157         code = IH_IWRITE(ih, 0, to, size);
158         if (code != size) {
159             printf("Write failed; header left in damaged state\n");
160         }
161     } else {
162         if (!dsizeOnly && !saveinodes) {
163             printf("Inode %s: Good magic %x and version %x\n",
164                    PrintInode(NULL, ih->ih_ino), magic, version);
165         }
166     }
167     return 0;
168 }
169
170
171 Volume *
172 AttachVolume(struct DiskPartition64 * dp, char *volname,
173              struct VolumeHeader * header)
174 {
175     Volume *vp;
176     afs_int32 ec = 0;
177
178     vp = (Volume *) calloc(1, sizeof(Volume));
179     vp->specialStatus = 0;
180     vp->device = dp->device;
181     vp->partition = dp;
182     IH_INIT(vp->vnodeIndex[vLarge].handle, dp->device, header->parent,
183             header->largeVnodeIndex);
184     IH_INIT(vp->vnodeIndex[vSmall].handle, dp->device, header->parent,
185             header->smallVnodeIndex);
186     IH_INIT(vp->diskDataHandle, dp->device, header->parent,
187             header->volumeInfo);
188     IH_INIT(V_linkHandle(vp), dp->device, header->parent, header->linkTable);
189     vp->cacheCheck = 0;         /* XXXX */
190     vp->shuttingDown = 0;
191     vp->goingOffline = 0;
192     vp->nUsers = 1;
193     vp->header = (struct volHeader *)calloc(1, sizeof(*vp->header));
194     ec = ReadHdr1(V_diskDataHandle(vp), (char *)&V_disk(vp),
195                   sizeof(V_disk(vp)), VOLUMEINFOMAGIC, VOLUMEINFOVERSION);
196     if (!ec) {
197         struct IndexFileHeader iHead;
198         ec = ReadHdr1(vp->vnodeIndex[vSmall].handle, (char *)&iHead,
199                       sizeof(iHead), SMALLINDEXMAGIC, SMALLINDEXVERSION);
200     }
201     if (!ec) {
202         struct IndexFileHeader iHead;
203         ec = ReadHdr1(vp->vnodeIndex[vLarge].handle, (char *)&iHead,
204                       sizeof(iHead), LARGEINDEXMAGIC, LARGEINDEXVERSION);
205     }
206 #ifdef AFS_NAMEI_ENV
207     if (!ec) {
208         struct versionStamp stamp;
209         ec = ReadHdr1(V_linkHandle(vp), (char *)&stamp, sizeof(stamp),
210                       LINKTABLEMAGIC, LINKTABLEVERSION);
211     }
212 #endif
213     if (ec)
214         return (Volume *) 0;
215     return vp;
216 }
217
218
219 static int
220 handleit(struct cmd_syndesc *as, void *arock)
221 {
222     struct cmd_item *ti;
223     int err = 0;
224     afs_uint32 volumeId = 0;
225     char *partName = 0;
226     struct DiskPartition64 *partP = NULL;
227
228
229 #ifndef AFS_NT40_ENV
230     if (geteuid() != 0) {
231         printf("vol-info must be run as root; sorry\n");
232         exit(1);
233     }
234 #endif
235
236     if (as->parms[0].items)
237         online = 1;
238     else
239         online = 0;
240     if (as->parms[1].items)
241         DumpVnodes = 1;
242     else
243         DumpVnodes = 0;
244     if (as->parms[2].items)
245         DumpDate = 1;
246     else
247         DumpDate = 0;
248     if (as->parms[3].items)
249         DumpInodeNumber = 1;
250     else
251         DumpInodeNumber = 0;
252     if (as->parms[4].items)
253         InodeTimes = 1;
254     else
255         InodeTimes = 0;
256     if ((ti = as->parms[5].items))
257         partName = ti->data;
258     if ((ti = as->parms[6].items))
259         volumeId = strtoul(ti->data, NULL, 10);
260     if (as->parms[7].items)
261         dheader = 1;
262     else
263         dheader = 0;
264     if (as->parms[8].items) {
265         dsizeOnly = 1;
266         dheader = 1;
267         DumpVnodes = 1;
268     } else
269         dsizeOnly = 0;
270     if (as->parms[9].items) {
271         fixheader = 1;
272     } else
273         fixheader = 0;
274     if (as->parms[10].items) {
275         saveinodes = 1;
276         dheader = 1;
277         DumpVnodes = 1;
278     } else
279         saveinodes = 0;
280     if (as->parms[11].items) {
281         orphaned = 1;
282         DumpVnodes = 1;
283     } else
284 #if defined(AFS_NAMEI_ENV)
285     if (as->parms[12].items) {
286         PrintFileNames = 1;
287         DumpVnodes = 1;
288     } else
289 #endif
290         orphaned = 0;
291
292     DInit(10);
293
294     err = VAttachPartitions();
295     if (err) {
296         printf("%d partitions had errors during attach.\n", err);
297     }
298
299     if (partName) {
300         partP = VGetPartition(partName, 0);
301         if (!partP) {
302             printf("%s is not an AFS partition name on this server.\n",
303                    partName);
304             exit(1);
305         }
306     }
307
308     if (!volumeId) {
309         if (!partP) {
310             HandleAllPart();
311         } else {
312             HandlePart(partP);
313         }
314     } else {
315         char name1[128];
316
317         if (!partP) {
318             partP = FindCurrentPartition();
319             if (!partP) {
320                 printf("Current partition is not a vice partition.\n");
321                 exit(1);
322             }
323         }
324         (void)afs_snprintf(name1, sizeof name1, VFORMAT,
325                            afs_printable_uint32_lu(volumeId));
326         if (dsizeOnly && !saveinodes)
327             printf
328                 ("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
329         HandleVolume(partP, name1);
330     }
331     return 0;
332 }
333
334 #ifdef AFS_NT40_ENV
335 #include <direct.h>
336 struct DiskPartition64 *
337 FindCurrentPartition(void)
338 {
339     int dr = _getdrive();
340     struct DiskPartition64 *dp;
341
342     dr--;
343     for (dp = DiskPartitionList; dp; dp = dp->next) {
344         if (*dp->devName - 'A' == dr)
345             break;
346     }
347     if (!dp) {
348         printf("Current drive is not a valid vice partition.\n");
349     }
350     return dp;
351 }
352 #else
353 struct DiskPartition64 *
354 FindCurrentPartition(void)
355 {
356     char partName[1024];
357     char tmp = '\0';
358     char *p;
359     struct DiskPartition64 *dp;
360
361     if (!getcwd(partName, 1023)) {
362         perror("pwd");
363         exit(1);
364     }
365     p = strchr(&partName[1], OS_DIRSEPC);
366     if (p) {
367         tmp = *p;
368         *p = '\0';
369     }
370     if (!(dp = VGetPartition(partName, 0))) {
371         if (tmp)
372             *p = tmp;
373         printf("%s is not a valid vice partition.\n", partName);
374         exit(1);
375     }
376     return dp;
377 }
378 #endif
379
380 void
381 HandleAllPart(void)
382 {
383     struct DiskPartition64 *partP;
384
385
386     for (partP = DiskPartitionList; partP; partP = partP->next) {
387         printf("Processing Partition %s:\n", partP->name);
388         HandlePart(partP);
389         Stotvolsize += Totvolsize;
390         SVauxsize += TVauxsize;
391         SVvnodesize += TVvnodesize;
392         SVdiskused += TVdiskused;
393     }
394
395     if (dsizeOnly) {
396         printf("\nServer Totals%12d%9d%10d%10d%9d\n", SVdiskused, SVauxsize,
397                SVvnodesize, Stotvolsize, Stotvolsize - SVdiskused);
398     }
399 }
400
401
402 void
403 HandlePart(struct DiskPartition64 *partP)
404 {
405     int nvols = 0;
406     DIR *dirp;
407     struct dirent *dp;
408 #ifdef AFS_NT40_ENV
409     char pname[64];
410     char *p = pname;
411     (void)sprintf(pname, "%s\\", VPartitionPath(partP));
412 #else
413     char *p = VPartitionPath(partP);
414 #endif
415
416     if ((dirp = opendir(p)) == NULL) {
417         printf("Can't read directory %s; giving up\n", p);
418         exit(1);
419     }
420     if (dsizeOnly && !saveinodes)
421         printf
422             ("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
423     while ((dp = readdir(dirp))) {
424         p = (char *)strrchr(dp->d_name, '.');
425         if (p != NULL && strcmp(p, VHDREXT) == 0) {
426             HandleVolume(partP, dp->d_name);
427             Totvolsize += totvolsize;
428             TVauxsize += Vauxsize;
429             TVvnodesize += Vvnodesize;
430             TVdiskused += Vdiskused;
431             nvols++;
432         }
433     }
434     closedir(dirp);
435     if (dsizeOnly) {
436         printf("\nPart Totals  %12d%9d%10d%10d%9d (%d volumes)\n\n",
437                TVdiskused, TVauxsize, TVvnodesize, Totvolsize,
438                Totvolsize - TVdiskused, nvols);
439     }
440 }
441
442
443 void
444 HandleVolume(struct DiskPartition64 *dp, char *name)
445 {
446     struct VolumeHeader header;
447     struct VolumeDiskHeader diskHeader;
448     struct afs_stat status, stat;
449     int fd;
450     Volume *vp;
451     IHandle_t *ih;
452     char headerName[1024];
453
454     if (online) {
455         printf("volinfo: -online not supported\n");
456         exit(1);
457     } else {
458         afs_int32 n;
459
460         (void)afs_snprintf(headerName, sizeof headerName, "%s" OS_DIRSEP "%s",
461                            VPartitionPath(dp), name);
462         if ((fd = afs_open(headerName, O_RDONLY)) == -1
463             || afs_fstat(fd, &status) == -1) {
464             printf("Volinfo: Cannot read volume header %s\n", name);
465             close(fd);
466             exit(1);
467         }
468         n = read(fd, &diskHeader, sizeof(diskHeader));
469
470         if (n != sizeof(diskHeader)
471             || diskHeader.stamp.magic != VOLUMEHEADERMAGIC) {
472             printf("Volinfo: Error reading volume header %s\n", name);
473             exit(1);
474         }
475         if (diskHeader.stamp.version != VOLUMEHEADERVERSION) {
476             printf
477                 ("Volinfo: Volume %s, version number is incorrect; volume needs salvage\n",
478                  name);
479             exit(1);
480         }
481         DiskToVolumeHeader(&header, &diskHeader);
482
483         if (dheader) {
484             FdHandle_t *fdP;
485             afs_sfsize_t size = 0;
486             afs_sfsize_t code;
487
488             if (afs_fstat(fd, &stat) == -1) {
489                 perror("stat");
490                 exit(1);
491             }
492             if (!dsizeOnly && !saveinodes) {
493                 size = stat.st_size;
494                 printf("Volume header (size = %d):\n", (int)size);
495                 printf("\tstamp\t= 0x%x\n", header.stamp.version);
496                 printf("\tVolId\t= %u\n", header.id);
497             }
498
499             IH_INIT(ih, dp->device, header.parent, header.volumeInfo);
500             fdP = IH_OPEN(ih);
501             if (fdP == NULL) {
502                 perror("opening volume info");
503                 exit(1);
504             }
505             code = FDH_SIZE(fdP);
506             if (code == -1) {
507                 perror("fstat");
508                 exit(1);
509             }
510             FDH_REALLYCLOSE(fdP);
511             IH_RELEASE(ih);
512             size += code;
513             if (!dsizeOnly && !saveinodes) {
514                 printf("\tparent\t= %u\n", header.parent);
515                 printf("\tInfo inode\t= %s (size = %d)\n",
516                        PrintInode(NULL, header.volumeInfo), (int)code);
517             }
518
519             IH_INIT(ih, dp->device, header.parent, header.smallVnodeIndex);
520             fdP = IH_OPEN(ih);
521             if (fdP == NULL) {
522                 perror("opening small vnode index");
523                 exit(1);
524             }
525             code = FDH_SIZE(fdP);
526             if (code == -1) {
527                 perror("fstat");
528                 exit(1);
529             }
530             FDH_REALLYCLOSE(fdP);
531             IH_RELEASE(ih);
532             size += code;
533             if (!dsizeOnly && !saveinodes) {
534                 printf("\tSmall inode\t= %s (size = %d)\n",
535                        PrintInode(NULL, header.smallVnodeIndex), (int)code);
536             }
537
538             IH_INIT(ih, dp->device, header.parent, header.largeVnodeIndex);
539             fdP = IH_OPEN(ih);
540             if (fdP == NULL) {
541                 perror("opening large vnode index");
542                 exit(1);
543             }
544             code = FDH_SIZE(fdP);
545             if (code == -1) {
546                 perror("fstat");
547                 exit(1);
548             }
549             FDH_REALLYCLOSE(fdP);
550             IH_RELEASE(ih);
551             size += code;
552             if (!dsizeOnly && !saveinodes) {
553                 printf("\tLarge inode\t= %s (size = %d)\n",
554                        PrintInode(NULL, header.largeVnodeIndex), (int)code);
555 #ifndef AFS_NT40_ENV
556                 printf("Total aux volume size = %d\n\n", (int)size);
557 #endif
558             }
559 #ifdef AFS_NAMEI_ENV
560             IH_INIT(ih, dp->device, header.parent, header.linkTable);
561             fdP = IH_OPEN(ih);
562             if (fdP == NULL) {
563                 perror("opening link table index");
564                 exit(1);
565             }
566             code = FDH_SIZE(fdP);
567             if (code == -1) {
568                 perror("fstat");
569                 exit(1);
570             }
571             FDH_REALLYCLOSE(fdP);
572             IH_RELEASE(ih);
573             size += code;
574             if (!dsizeOnly && !saveinodes) {
575                 printf("\tLink inode\t= %s (size = %d)\n",
576                        PrintInode(NULL, header.linkTable), (int)code);
577                 printf("Total aux volume size = %d\n\n", (int)size);
578             }
579 #endif
580             Vauxsize = size;
581             Vauxsize_k = size / 1024;
582         }
583         close(fd);
584         vp = AttachVolume(dp, name, &header);
585         if (!vp) {
586             printf("Volinfo: Error attaching volume header %s\n", name);
587             return;
588         }
589     }
590     PrintHeader(vp);
591     if (DumpVnodes) {
592         if (!dsizeOnly && !saveinodes)
593             printf("\nLarge vnodes (directories)\n");
594         PrintVnodes(vp, vLarge);
595         if (!dsizeOnly && !saveinodes) {
596             printf("\nSmall vnodes(files, symbolic links)\n");
597             fflush(stdout);
598         }
599         if (saveinodes)
600             printf("Saving all volume files to current directory ...\n");
601         PrintVnodes(vp, vSmall);
602     }
603     if (dsizeOnly) {
604         totvolsize = Vauxsize_k + Vvnodesize_k;
605         if (saveinodes)
606             printf
607                 ("Volume-Id\t  Volsize  Auxsize Inodesize  AVolsize SizeDiff                (VolName)\n");
608         printf("%u\t%9d%9d%10d%10d%9d\t%24s\n", V_id(vp), Vdiskused,
609                Vauxsize_k, Vvnodesize_k, totvolsize, totvolsize - Vdiskused,
610                V_name(vp));
611     }
612     free(vp->header);
613     free(vp);
614 }
615
616 int
617 main(int argc, char **argv)
618 {
619     struct cmd_syndesc *ts;
620     afs_int32 code;
621
622     ts = cmd_CreateSyntax(NULL, handleit, NULL, "Dump volume's internal state");
623     cmd_AddParm(ts, "-online", CMD_FLAG, CMD_OPTIONAL,
624                 "Get info from running fileserver");
625     cmd_AddParm(ts, "-vnode", CMD_FLAG, CMD_OPTIONAL, "Dump vnode info");
626     cmd_AddParm(ts, "-date", CMD_FLAG, CMD_OPTIONAL,
627                 "Also dump vnode's mod date");
628     cmd_AddParm(ts, "-inode", CMD_FLAG, CMD_OPTIONAL,
629                 "Dump vnode's inode number");
630     cmd_AddParm(ts, "-itime", CMD_FLAG, CMD_OPTIONAL,
631                 "Dump special inode's mod times");
632     cmd_AddParm(ts, "-part", CMD_LIST, CMD_OPTIONAL,
633                 "AFS partition name (default current partition)");
634     cmd_AddParm(ts, "-volumeid", CMD_LIST, CMD_OPTIONAL, "Volume id");
635     cmd_AddParm(ts, "-header", CMD_FLAG, CMD_OPTIONAL,
636                 "Dump volume's header info");
637     cmd_AddParm(ts, "-sizeOnly", CMD_FLAG, CMD_OPTIONAL,
638                 "Dump volume's size");
639     cmd_AddParm(ts, "-fixheader", CMD_FLAG, CMD_OPTIONAL,
640                 "Try to fix header");
641     cmd_AddParm(ts, "-saveinodes", CMD_FLAG, CMD_OPTIONAL,
642                 "Try to save all inodes");
643     cmd_AddParm(ts, "-orphaned", CMD_FLAG, CMD_OPTIONAL,
644                 "List all dir/files without a parent");
645 #if defined(AFS_NAMEI_ENV)
646     cmd_AddParm(ts, "-filenames", CMD_FLAG, CMD_OPTIONAL, "Print filenames");
647 #endif
648     code = cmd_Dispatch(argc, argv);
649     return code;
650 }
651
652 #define typestring(type) (type == RWVOL? "read/write": type == ROVOL? "readonly": type == BACKVOL? "backup": "unknown")
653
654 void
655 PrintHeader(Volume * vp)
656 {
657     Vdiskused = V_diskused(vp);
658     if (dsizeOnly || saveinodes)
659         return;
660     printf("Volume header for volume %u (%s)\n", V_id(vp), V_name(vp));
661     printf("stamp.magic = %x, stamp.version = %u\n", V_stamp(vp).magic,
662            V_stamp(vp).version);
663     printf
664         ("inUse = %d, inService = %d, blessed = %d, needsSalvaged = %d, dontSalvage = %d\n",
665          V_inUse(vp), V_inService(vp), V_blessed(vp), V_needsSalvaged(vp),
666          V_dontSalvage(vp));
667     printf
668         ("type = %d (%s), uniquifier = %u, needsCallback = %d, destroyMe = %x\n",
669          V_type(vp), typestring(V_type(vp)), V_uniquifier(vp),
670          V_needsCallback(vp), V_destroyMe(vp));
671     printf
672         ("id = %u, parentId = %u, cloneId = %u, backupId = %u, restoredFromId = %u\n",
673          V_id(vp), V_parentId(vp), V_cloneId(vp), V_backupId(vp),
674          V_restoredFromId(vp));
675     printf
676         ("maxquota = %d, minquota = %d, maxfiles = %d, filecount = %d, diskused = %d\n",
677          V_maxquota(vp), V_minquota(vp), V_maxfiles(vp), V_filecount(vp),
678          V_diskused(vp));
679     printf("creationDate = %s, copyDate = %s\n", date(V_creationDate(vp)),
680            date(V_copyDate(vp)));
681     printf("backupDate = %s, expirationDate = %s\n", date(V_backupDate(vp)),
682            date(V_expirationDate(vp)));
683     printf("accessDate = %s, updateDate = %s\n", date(V_accessDate(vp)),
684            date(V_updateDate(vp)));
685     printf("owner = %u, accountNumber = %u\n", V_owner(vp),
686            V_accountNumber(vp));
687     printf
688         ("dayUse = %u; week = (%u, %u, %u, %u, %u, %u, %u), dayUseDate = %s\n",
689          V_dayUse(vp), V_weekUse(vp)[0], V_weekUse(vp)[1], V_weekUse(vp)[2],
690          V_weekUse(vp)[3], V_weekUse(vp)[4], V_weekUse(vp)[5],
691          V_weekUse(vp)[6], date(V_dayUseDate(vp)));
692     printf("volUpdateCounter = %u\n", V_volUpCounter(vp));
693 }
694
695 /* GetFileInfo
696  * OS independent file info. Die on failure.
697  */
698 #ifdef AFS_NT40_ENV
699 char *
700 NT_date(FILETIME * ft)
701 {
702     static char result[8][64];
703     static int next = 0;
704     SYSTEMTIME st;
705     FILETIME lft;
706
707     if (!FileTimeToLocalFileTime(ft, &lft)
708         || !FileTimeToSystemTime(&lft, &st)) {
709         printf("Time conversion failed.\n");
710         exit(1);
711     }
712     sprintf(result[next = ((next + 1) & 7)], "%4d/%02d/%02d.%2d:%2d:%2d",
713             st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond);
714     return result[next];
715 }
716 #endif
717
718 static void
719 GetFileInfo(FD_t fd, int *size, char **ctime, char **mtime, char **atime)
720 {
721 #ifdef AFS_NT40_ENV
722     BY_HANDLE_FILE_INFORMATION fi;
723     if (!GetFileInformationByHandle(fd, &fi)) {
724         printf("GetFileInformationByHandle failed, exiting\n");
725         exit(1);
726     }
727     *size = (int)fi.nFileSizeLow;
728     *ctime = "N/A";
729     *mtime = NT_date(&fi.ftLastWriteTime);
730     *atime = NT_date(&fi.ftLastAccessTime);
731 #else
732     struct afs_stat status;
733     if (afs_fstat(fd, &status) == -1) {
734         printf("fstat failed %d\n", errno);
735         exit(1);
736     }
737     *size = (int)status.st_size;
738     *ctime = date(status.st_ctime);
739     *mtime = date(status.st_mtime);
740     *atime = date(status.st_atime);
741 #endif
742 }
743
744 void
745 PrintVnodes(Volume * vp, VnodeClass class)
746 {
747     afs_int32 diskSize =
748         (class == vSmall ? SIZEOF_SMALLDISKVNODE : SIZEOF_LARGEDISKVNODE);
749     char buf[SIZEOF_LARGEDISKVNODE];
750     struct VnodeDiskObject *vnode = (struct VnodeDiskObject *)buf;
751     StreamHandle_t *file;
752     int vnodeIndex, nVnodes;
753     afs_foff_t offset = 0;
754     Inode ino;
755     IHandle_t *ih = vp->vnodeIndex[class].handle;
756     FdHandle_t *fdP;
757     int size;
758     char *ctime, *atime, *mtime;
759     char nfile[50], buffer[256];
760     int ofd, bad = 0;
761     afs_foff_t total;
762     ssize_t len;
763
764     fdP = IH_OPEN(ih);
765     if (fdP == NULL) {
766         printf("open failed\n");
767         exit(1);
768     }
769
770     file = FDH_FDOPEN(fdP, "r");
771     if (!file) {
772         printf("fdopen failed\n");
773         exit(1);
774     }
775
776     GetFileInfo(fdP->fd_fd, &size, &ctime, &atime, &mtime);
777     if (InodeTimes && !dsizeOnly) {
778         printf("ichanged : %s\nimodified: %s\niaccessed: %s\n\n", ctime,
779                mtime, atime);
780     }
781
782     nVnodes = (size / diskSize) - 1;
783     if (nVnodes > 0) {
784         STREAM_ASEEK(file, diskSize);
785     } else
786         nVnodes = 0;
787
788     for (vnodeIndex = 0;
789          nVnodes && STREAM_READ(vnode, diskSize, 1, file) == 1;
790          nVnodes--, vnodeIndex++, offset += diskSize) {
791
792         ino = VNDISK_GET_INO(vnode);
793         if (saveinodes) {
794             if (VALID_INO(ino) && (class == vSmall)) {
795                 IHandle_t *ih1;
796                 FdHandle_t *fdP1;
797                 IH_INIT(ih1, V_device(vp), V_parentId(vp), ino);
798                 fdP1 = IH_OPEN(ih1);
799                 if (fdP1 == NULL) {
800                     printf("Can't open inode %s error %d (ignored)\n",
801                            PrintInode(NULL, ino), errno);
802                     continue;
803                 }
804                 (void)afs_snprintf(nfile, sizeof nfile, "TmpInode.%s",
805                                    PrintInode(NULL, ino));
806                 ofd = afs_open(nfile, O_CREAT | O_RDWR | O_TRUNC, 0600);
807                 if (ofd < 0) {
808                     printf("Can't create file %s; error %d (ignored)\n",
809                            nfile, errno);
810                     continue;
811                 }
812                 total = bad = 0;
813                 while (1) {
814                     ssize_t nBytes;
815                     len = FDH_PREAD(fdP1, buffer, sizeof(buffer), total);
816                     if (len < 0) {
817                         FDH_REALLYCLOSE(fdP1);
818                         IH_RELEASE(ih1);
819                         close(ofd);
820                         unlink(nfile);
821                         printf
822                             ("Error while reading from inode %s (%d - ignored)\n",
823                              PrintInode(NULL, ino), errno);
824                         bad = 1;
825                         break;
826                     }
827                     if (len == 0)
828                         break;  /* No more input */
829                     nBytes = write(ofd, buffer, len);
830                     if (nBytes != len) {
831                         FDH_REALLYCLOSE(fdP1);
832                         IH_RELEASE(ih1);
833                         close(ofd);
834                         unlink(nfile);
835                         printf
836                             ("Error while writing to \"%s\" (%d - ignored)\n",
837                              nfile, errno);
838                         bad = 1;
839                         break;
840                     }
841                     total += len;
842                 }
843                 if (bad)
844                     continue;
845                 FDH_REALLYCLOSE(fdP1);
846                 IH_RELEASE(ih1);
847                 close(ofd);
848                 printf("... Copied inode %s to file %s (%lu bytes)\n",
849                        PrintInode(NULL, ino), nfile, (unsigned long)total);
850             }
851         } else {
852 #if defined(AFS_NAMEI_ENV)
853             PrintVnode(offset, vnode,
854                        bitNumberToVnodeNumber(vnodeIndex, class), ino, vp);
855 #else
856             PrintVnode(offset, vnode,
857                        bitNumberToVnodeNumber(vnodeIndex, class), ino);
858 #endif
859         }
860     }
861     STREAM_CLOSE(file);
862     FDH_CLOSE(fdP);
863 }
864
865 #if defined(AFS_NAMEI_ENV)
866 void
867 PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
868            Inode ino, Volume * vp)
869 #else
870 void
871 PrintVnode(afs_foff_t offset, VnodeDiskObject * vnode, VnodeId vnodeNumber,
872            Inode ino)
873 #endif
874 {
875 #if defined(AFS_NAMEI_ENV)
876     IHandle_t *ihtmpp;
877     namei_t filename;
878 #endif
879     afs_fsize_t fileLength;
880
881     VNDISK_GET_LEN(fileLength, vnode);
882     Vvnodesize += fileLength;
883     Vvnodesize_k += fileLength / 1024;
884     if (dsizeOnly)
885         return;
886     if (orphaned && (fileLength == 0 || vnode->parent || !offset))
887         return;
888     printf
889         ("%10lld Vnode %u.%u.%u cloned: %u, length: %llu linkCount: %d parent: %u",
890          (long long)offset, vnodeNumber, vnode->uniquifier, vnode->dataVersion,
891          vnode->cloned, (afs_uintmax_t) fileLength, vnode->linkCount,
892          vnode->parent);
893     if (DumpInodeNumber)
894         printf(" inode: %s", PrintInode(NULL, ino));
895     if (DumpDate)
896         printf(" ServerModTime: %s", date(vnode->serverModifyTime));
897 #if defined(AFS_NAMEI_ENV)
898     if (PrintFileNames) {
899         IH_INIT(ihtmpp, V_device(vp), V_parentId(vp), ino);
900         namei_HandleToName(&filename, ihtmpp);
901 #if !defined(AFS_NT40_ENV)
902         printf(" UFS-Filename: %s", filename.n_path);
903 #else
904         printf(" NTFS-Filename: %s", filename.n_path);
905 #endif
906     }
907 #endif
908     printf("\n");
909 }