reindent-20030715
[openafs.git] / src / sys / fixit.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 This utility is used to increase the ref count on inodes moved to
12 lost+found by the non-AFS fsck. The program needs to be run once 
13 for every volume located on the partition that was fsck'ed.
14 Procedure:
15      cc -o fixit fixit.c
16      cd /vicepx
17      chmod 600 *
18      foreach volid ( cat <list-of-vol-ids> )
19        fixit lost+found $volid
20        echo $volid
21      end
22      umount <dev>
23      /etc/vfsck <dev>       <<<< AFS Version!
24
25 Non-AFS fsck causes inodes to be moved to lost+found, with names like
26 #<inode-no>. The volumes associated with these inodes will still be
27 available, until the #<inode-no> file is removed. This program simply
28 ups the ref count on the #<inode-no> files, so they're not returned
29 to the free list when the files are removed from lost+found
30 */
31
32 #include <afsconfig.h>
33 #include <afs/param.h>
34
35 RCSID
36     ("$Header$");
37
38 #include <sys/types.h>
39 #include <sys/file.h>
40 #include <dirent.h>
41 #include <sys/stat.h>
42 #ifdef AFS_HPUX_ENV
43 #include <sys/mknod.h>
44 #endif
45 #include <afs/afs_args.h>
46 #include <afs/afs.h>
47 #include <afs/afssyscalls.h>
48 #include <errno.h>
49
50 #include "AFS_component_version_number.c"
51
52 main(argc, argv)
53      int argc;
54      char **argv;
55 {
56     DIR *tdir;
57     struct stat ts;
58     afs_int32 dev, code;
59     struct dirent *tde;
60
61     int volid;
62
63     if (geteuid() != 0) {
64         printf("must be run as root; sorry\n");
65         exit(1);
66     }
67     code = stat(argv[1], &ts);
68     if (code) {
69         printf("can't stat %s\n", argv[1]);
70         exit(1);
71     }
72     dev = ts.st_dev;
73     tdir = opendir(argv[1]);
74     if (!tdir) {
75         printf("cant open %s\n", argv[1]);
76         exit(1);
77     }
78     volid = atoi(argv[2]);
79     for (tde = readdir(tdir); tde; tde = readdir(tdir)) {
80         if (tde->d_name[0] == '#') {
81             printf("Inode %d\n", tde->d_ino);
82             code = IINC(dev, tde->d_ino, volid);
83             if (code == -1) {
84                 perror("iinc");
85                 printf("errno = %d\n", errno);
86 /* Remove this -- we don't want to exit, because we have to look
87 *  at each inode -- an error here means only that the iinc failed for
88 *  the current volume
89 *                               exit(1);
90 */
91             } else
92                 printf("inode %d restored for volume %d\n", tde->d_ino,
93                        volid);
94         }
95     }
96     exit(0);
97 }