unroll-namei-delay-fsync-20070104
[openafs.git] / src / vol / namei_ops.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 /* I/O operations for the Unix open by name (namei) interface. */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 RCSID
16     ("$Header$");
17
18 #ifdef AFS_NAMEI_ENV
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <sys/stat.h>
24 #include <dirent.h>
25 #include <afs/assert.h>
26 #include <string.h>
27 #include <sys/file.h>
28 #include <sys/param.h>
29 #include <lock.h>
30 #if defined(AFS_SUN5_ENV) || defined(AFS_HPUX_ENV)
31 #include <unistd.h>
32 #endif
33 #include <afs/afsutil.h>
34 #include <lwp.h>
35 #include "nfs.h"
36 #include <afs/afsint.h>
37 #include "ihandle.h"
38 #include "vnode.h"
39 #include "volume.h"
40 #include "viceinode.h"
41 #include "voldefs.h"
42 #include "partition.h"
43 #include <afs/errors.h>
44
45 /*@+fcnmacros +macrofcndecl@*/
46 #ifdef O_LARGEFILE
47 #ifdef S_SPLINT_S
48 extern off64_t afs_lseek(int FD, off64_t O, int F);
49 #endif /*S_SPLINT_S */
50 #define afs_lseek(FD, O, F)     lseek64(FD, (off64_t)(O), F)
51 #define afs_stat                stat64
52 #define afs_fstat               fstat64
53 #define afs_open                open64
54 #define afs_fopen               fopen64
55 #else /* !O_LARGEFILE */
56 #ifdef S_SPLINT_S
57 extern off_t afs_lseek(int FD, off_t O, int F);
58 #endif /*S_SPLINT_S */
59 #define afs_lseek(FD, O, F)     lseek(FD, (off_t)(O), F)
60 #define afs_stat                stat
61 #define afs_fstat               fstat
62 #define afs_open                open
63 #define afs_fopen               fopen
64 #endif /* !O_LARGEFILE */
65 /*@=fcnmacros =macrofcndecl@*/
66
67 /*@printflike@*/ extern void Log(const char *format, ...);
68
69 #ifndef LOCK_SH
70 #define   LOCK_SH   1    /* shared lock */
71 #define   LOCK_EX   2    /* exclusive lock */
72 #define   LOCK_NB   4    /* don't block when locking */
73 #define   LOCK_UN   8    /* unlock */
74 #endif
75
76 #ifndef HAVE_FLOCK
77 #include <fcntl.h>
78
79 /*
80  * This function emulates a subset of flock()
81  */
82 int 
83 emul_flock(int fd, int cmd)
84 {    struct flock f;
85
86     memset(&f, 0, sizeof (f));
87
88     if (cmd & LOCK_UN)
89         f.l_type = F_UNLCK;
90     if (cmd & LOCK_SH)
91         f.l_type = F_RDLCK;
92     if (cmd & LOCK_EX)
93         f.l_type = F_WRLCK;
94
95     return fcntl(fd, (cmd & LOCK_NB) ? F_SETLK : F_SETLKW, &f);
96 }
97
98 #define flock(f,c)      emul_flock(f,c)
99 #endif
100
101 extern char *volutil_PartitionName_r(int volid, char *buf, int buflen);
102 int Testing=0;
103
104
105 afs_sfsize_t
106 namei_iread(IHandle_t * h, afs_foff_t offset, char *buf, afs_fsize_t size)
107 {
108     afs_sfsize_t nBytes;
109     FdHandle_t *fdP;
110
111     fdP = IH_OPEN(h);
112     if (fdP == NULL)
113         return -1;
114
115     if (FDH_SEEK(fdP, offset, SEEK_SET) < 0) {
116         FDH_REALLYCLOSE(fdP);
117         return -1;
118     }
119
120     nBytes = FDH_READ(fdP, buf, size);
121     FDH_CLOSE(fdP);
122     return nBytes;
123 }
124
125 afs_sfsize_t
126 namei_iwrite(IHandle_t * h, afs_foff_t offset, char *buf, afs_fsize_t size)
127 {
128     afs_sfsize_t nBytes;
129     FdHandle_t *fdP;
130
131     fdP = IH_OPEN(h);
132     if (fdP == NULL)
133         return -1;
134
135     if (FDH_SEEK(fdP, offset, SEEK_SET) < 0) {
136         FDH_REALLYCLOSE(fdP);
137         return -1;
138     }
139     nBytes = FDH_WRITE(fdP, buf, size);
140     FDH_CLOSE(fdP);
141     return nBytes;
142 }
143
144
145
146 /* Inode number format:
147  * low 26 bits - vnode number - all 1's if volume special file.
148  * next 3 bits - tag 
149  * next 3 bits spare (0's)
150  * high 32 bits - uniquifier (regular) or type if spare
151  */
152 #define NAMEI_VNODEMASK    0x003ffffff
153 #define NAMEI_TAGMASK      0x7
154 #define NAMEI_TAGSHIFT     26
155 #define NAMEI_UNIQMASK     0xffffffff
156 #define NAMEI_UNIQSHIFT    32
157 #define NAMEI_INODESPECIAL ((Inode)NAMEI_VNODEMASK)
158 #define NAMEI_VNODESPECIAL NAMEI_VNODEMASK
159
160 /* dir1 is the high 8 bits of the 26 bit vnode */
161 #define VNO_DIR1(vno) ((vno >> 14) & 0xff)
162 /* dir2 is the next 9 bits */
163 #define VNO_DIR2(vno) ((vno >> 9) & 0x1ff)
164 /* "name" is the low 9 bits of the vnode, the 3 bit tag and the uniq */
165
166 #define NAMEI_SPECDIR "special"
167 #define NAMEI_SPECDIRLEN (sizeof(NAMEI_SPECDIR)-1)
168
169 #define NAMEI_MAXVOLS 5         /* Maximum supported number of volumes per volume
170                                  * group, not counting temporary (move) volumes.
171                                  * This is the number of separate files, all having
172                                  * the same vnode number, which can occur in a volume
173                                  * group at once.
174                                  */
175
176
177 typedef struct {
178     int ogm_owner;
179     int ogm_group;
180     int ogm_mode;
181 } namei_ogm_t;
182
183 static int namei_GetLinkCount2(FdHandle_t * h, Inode ino, int lockit, int fixup, int nowrite);
184
185 static int GetFreeTag(IHandle_t * ih, int vno);
186
187 /* namei_HandleToInodeDir
188  *
189  * Construct the path name of the directory holding the inode data.
190  * Format: /<vicepx>/INODEDIR
191  *
192  */
193 #define PNAME_BLEN 64
194 static void
195 namei_HandleToInodeDir(namei_t * name, IHandle_t * ih)
196 {
197     char *tmp = name->n_base;
198
199     memset(name, '\0', sizeof(*name));
200
201     (void)volutil_PartitionName_r(ih->ih_dev, tmp, NAMEI_LCOMP_LEN);
202     tmp += VICE_PREFIX_SIZE;
203     tmp += ih->ih_dev > 25 ? 2 : 1;
204     *tmp = '/';
205     tmp++;
206     (void)strcpy(tmp, INODEDIR);
207     (void)strcpy(name->n_path, name->n_base);
208 }
209
210 #define addtoname(N, C) \
211 do { \
212          strcat((N)->n_path, "/"); strcat((N)->n_path, C); \
213 } while(0)
214
215
216 static void
217 namei_HandleToVolDir(namei_t * name, IHandle_t * ih)
218 {
219     lb64_string_t tmp;
220
221     namei_HandleToInodeDir(name, ih);
222     (void)int32_to_flipbase64(tmp, (int64_t) (ih->ih_vid & 0xff));
223     (void)strcpy(name->n_voldir1, tmp);
224     addtoname(name, name->n_voldir1);
225     (void)int32_to_flipbase64(tmp, (int64_t) ih->ih_vid);
226     (void)strcpy(name->n_voldir2, tmp);
227     addtoname(name, name->n_voldir2);
228 }
229
230 /* namei_HandleToName
231  *
232  * Constructs a file name for the fully qualified handle.
233  * Note that special files end up in /vicepX/InodeDir/Vxx/V*.data/special
234  */
235 void
236 namei_HandleToName(namei_t * name, IHandle_t * ih)
237 {
238     lb64_string_t str;
239     int vno = (int)(ih->ih_ino & NAMEI_VNODEMASK);
240
241     namei_HandleToVolDir(name, ih);
242
243     if (vno == NAMEI_VNODESPECIAL) {
244         (void)strcpy(name->n_dir1, NAMEI_SPECDIR);
245         addtoname(name, name->n_dir1);
246         name->n_dir2[0] = '\0';
247     } else {
248         (void)int32_to_flipbase64(str, VNO_DIR1(vno));
249         (void)strcpy(name->n_dir1, str);
250         addtoname(name, name->n_dir1);
251         (void)int32_to_flipbase64(str, VNO_DIR2(vno));
252         (void)strcpy(name->n_dir2, str);
253         addtoname(name, name->n_dir2);
254     }
255     (void)int64_to_flipbase64(str, (int64_t) ih->ih_ino);
256     (void)strcpy(name->n_inode, str);
257     addtoname(name, name->n_inode);
258 }
259
260 /* The following is a warning to tell sys-admins to not muck about in this
261  * name space.
262  */
263 #define VICE_README "These files and directories are a part of the AFS \
264 namespace. Modifying them\nin any way will result in loss of AFS data,\n\
265 ownership and permissions included.\n"
266 int
267 namei_ViceREADME(char *partition)
268 {
269     char filename[32];
270     int fd;
271
272     /* Create the inode directory if we're starting for the first time */
273     (void)afs_snprintf(filename, sizeof filename, "%s/%s", partition,
274                        INODEDIR);
275     mkdir(filename, 0700);
276
277     (void)afs_snprintf(filename, sizeof filename, "%s/%s/README", partition,
278                        INODEDIR);
279     fd = afs_open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0444);
280     if (fd >= 0) {
281         (void)write(fd, VICE_README, strlen(VICE_README));
282         close(fd);
283     }
284     return (errno);
285 }
286
287
288 #define create_dir() \
289 do { \
290     if (mkdir(tmp, 0700)<0) { \
291         if (errno != EEXIST) \
292             return -1; \
293     } \
294     else { \
295         *created = 1; \
296     } \
297 } while (0)
298
299 #define create_nextdir(A) \
300 do { \
301          strcat(tmp, "/"); strcat(tmp, A); create_dir();  \
302 } while(0)
303
304 /* namei_CreateDataDirectories
305  *
306  * If creating the file failed because of ENOENT or ENOTDIR, try
307  * creating all the directories first.
308  */
309 static int
310 namei_CreateDataDirectories(namei_t * name, int *created)
311 {
312     char tmp[256];
313
314     *created = 0;
315
316     (void)strcpy(tmp, name->n_base);
317     create_dir();
318
319     create_nextdir(name->n_voldir1);
320     create_nextdir(name->n_voldir2);
321     create_nextdir(name->n_dir1);
322     if (name->n_dir2[0]) {
323         create_nextdir(name->n_dir2);
324     }
325     return 0;
326 }
327
328 /* delTree(): Deletes an entire tree of directories (no files)
329  * Input:
330  *   root : Full path to the subtree. Should be big enough for PATH_MAX
331  *   tree : the subtree to be deleted is rooted here. Specifies only the
332  *          subtree beginning at tree (not the entire path). It should be
333  *          a pointer into the "root" buffer.
334  * Output:
335  *  errp : errno of the first error encountered during the directory cleanup.
336  *         *errp should have been initialized to 0.
337  * 
338  * Return Values:
339  *  -1  : If errors were encountered during cleanup and error is set to 
340  *        the first errno.
341  *   0  : Success.
342  *
343  * If there are errors, we try to work around them and delete as many
344  * directories as possible. We don't attempt to remove directories that still
345  * have non-dir entries in them.
346  */
347 static int
348 delTree(char *root, char *tree, int *errp)
349 {
350     char *cp;
351     DIR *ds;
352     struct dirent *dirp;
353     struct afs_stat st;
354
355     if (*tree) {
356         /* delete the children first */
357         cp = strchr(tree, '/');
358         if (cp) {
359             delTree(root, cp + 1, errp);
360             *cp = '\0';
361         } else
362             cp = tree + strlen(tree);   /* move cp to the end of string tree */
363
364         /* now delete all entries in this dir */
365         if ((ds = opendir(root)) != (DIR *) NULL) {
366             errno = 0;
367             while ((dirp = readdir(ds))) {
368                 /* ignore . and .. */
369                 if (!strcmp(dirp->d_name, ".") || !strcmp(dirp->d_name, ".."))
370                     continue;
371                 /* since root is big enough, we reuse the space to
372                  * concatenate the dirname to the current tree 
373                  */
374                 strcat(root, "/");
375                 strcat(root, dirp->d_name);
376                 if (afs_stat(root, &st) == 0 && S_ISDIR(st.st_mode)) {
377                     /* delete this subtree */
378                     delTree(root, cp + 1, errp);
379                 } else
380                     *errp = *errp ? *errp : errno;
381
382                 /* recover path to our cur tree by truncating it to 
383                  * its original len 
384                  */
385                 *cp = 0;
386             }
387             /* if (!errno) -- closedir not implicit if we got an error */
388             closedir(ds);
389         }
390
391         /* finally axe the current dir */
392         if (rmdir(root))
393             *errp = *errp ? *errp : errno;
394
395 #ifndef AFS_PTHREAD_ENV         /* let rx get some work done */
396         IOMGR_Poll();
397 #endif /* !AFS_PTHREAD_ENV */
398
399     }
400
401     /* if valid tree */
402     /* if we encountered errors during cleanup, we return a -1 */
403     if (*errp)
404         return -1;
405
406     return 0;
407
408 }
409
410 /* namei_RemoveDataDirectories
411  * Return Values:
412  * Returns 0 on success.
413  * Returns -1 on error. Typically, callers ignore this error bcause we
414  * can continue running if the removes fail. The salvage process will
415  * finish tidying up for us. We only use the n_base and n_voldir1 entries
416  * and only do rmdir's.
417  */
418
419 static int
420 namei_RemoveDataDirectories(namei_t * name)
421 {
422     char pbuf[MAXPATHLEN], *path = pbuf;
423     int prefixlen = strlen(name->n_base), err = 0;
424
425     strcpy(path, name->n_path);
426
427     /* move past the prefix */
428     path = path + prefixlen + 1;        /* skip over the trailing / */
429
430     /* now delete all dirs upto path */
431     return delTree(pbuf, path, &err);
432
433 }
434
435 /* Create the file in the name space.
436  *
437  * Parameters stored as follows:
438  * Regular files:
439  * p1 - volid - implied in containing directory.
440  * p2 - vnode - name is <vno:31-23>/<vno:22-15>/<vno:15-0><uniq:31-5><tag:2-0>
441  * p3 - uniq -- bits 4-0 are in mode bits 4-0
442  * p4 - dv ---- dv:15-0 in uid, dv:29-16 in gid, dv:31-30 in mode:6-5
443  * Special files:
444  * p1 - volid - creation time - dwHighDateTime
445  * p2 - vnode - -1 means special, file goes in "S" subdirectory.
446  * p3 - type -- name is <type>.<tag> where tag is a file name unqiquifier.
447  * p4 - parid - parent volume id - implied in containing directory.
448  *
449  * Return value is the inode number or (Inode)-1 if error.
450  * We "know" there is only one link table, so return EEXIST if there already
451  * is a link table. It's up to the calling code to test errno and increment
452  * the link count.
453  */
454
455 /* namei_MakeSpecIno
456  *
457  * This function is called by VCreateVolume to hide the implementation
458  * details of the inode numbers. This only allows for 7 volume special
459  * types, but if we get that far, this could should be dead by then.
460  */
461 Inode
462 namei_MakeSpecIno(int volid, int type)
463 {
464     Inode ino;
465     ino = NAMEI_INODESPECIAL;
466     type &= NAMEI_TAGMASK;
467     ino |= ((Inode) type) << NAMEI_TAGSHIFT;
468     ino |= ((Inode) volid) << NAMEI_UNIQSHIFT;
469     return ino;
470 }
471
472 /* SetOGM - set owner group and mode bits from parm and tag
473  *
474  * owner - low 15 bits of parm.
475  * group - next 15 bits of parm.
476  * mode - 2 bits of parm, then lowest = 3 bits of tag.
477  */
478 static int
479 SetOGM(int fd, int parm, int tag)
480 {
481     int owner, group, mode;
482
483     owner = parm & 0x7fff;
484     group = (parm >> 15) & 0x7fff;
485     if (fchown(fd, owner, group) < 0)
486         return -1;
487
488     mode = (parm >> 27) & 0x18;
489     mode |= tag & 0x7;
490     if (fchmod(fd, mode) < 0)
491         return -1;
492
493     return 0;
494
495 }
496
497 /* GetOGM - get parm and tag from owner, group and mode bits. */
498 static void
499 GetOGMFromStat(struct afs_stat *status, int *parm, int *tag)
500 {
501     *parm = status->st_uid | (status->st_gid << 15);
502     *parm |= (status->st_mode & 0x18) << 27;
503     *tag = status->st_mode & 0x7;
504 }
505
506 static int
507 GetOGM(int fd, int *parm, int *tag)
508 {
509     struct afs_stat status;
510     if (afs_fstat(fd, &status) < 0)
511         return -1;
512
513     GetOGMFromStat(&status, parm, tag);
514     return 0;
515 }
516
517 int big_vno = 0;                /* Just in case we ever do 64 bit vnodes. */
518
519 /* Derive the name and create it O_EXCL. If that fails we have an error.
520  * Get the tag from a free column in the link table.
521  */
522 Inode
523 namei_icreate(IHandle_t * lh, char *part, int p1, int p2, int p3, int p4)
524 {
525     namei_t name;
526     int fd = -1;
527     int code = 0;
528     int created_dir = 0;
529     IHandle_t tmp;
530     FdHandle_t *fdP;
531     FdHandle_t tfd;
532     int tag;
533     int ogm_parm;
534
535
536     memset((void *)&tmp, 0, sizeof(IHandle_t));
537
538
539     tmp.ih_dev = volutil_GetPartitionID(part);
540     if (tmp.ih_dev == -1) {
541         errno = EINVAL;
542         return -1;
543     }
544
545     if (p2 == -1) {
546         /* Parameters for special file:
547          * p1 - volume id - goes into owner/group/mode
548          * p2 - vnode == -1
549          * p3 - type
550          * p4 - parent volume id
551          */
552         ogm_parm = p1;
553         tag = p3;
554
555         tmp.ih_vid = p4;        /* Use parent volume id, where this file will be. */
556         tmp.ih_ino = namei_MakeSpecIno(p1, p3);
557     } else {
558         int vno = p2 & NAMEI_VNODEMASK;
559         /* Parameters for regular file:
560          * p1 - volume id
561          * p2 - vnode
562          * p3 - uniq
563          * p4 - dv
564          */
565
566         if (vno != p2) {
567             big_vno++;
568             errno = EINVAL;
569             return -1;
570         }
571         /* If GetFreeTag succeeds, it atomically sets link count to 1. */
572         tag = GetFreeTag(lh, p2);
573         if (tag < 0)
574             goto bad;
575
576         /* name is <uniq(p3)><tag><vno(p2)> */
577         tmp.ih_vid = p1;
578         tmp.ih_ino = (Inode) p2;
579         tmp.ih_ino |= ((Inode) tag) << NAMEI_TAGSHIFT;
580         tmp.ih_ino |= ((Inode) p3) << NAMEI_UNIQSHIFT;
581
582         ogm_parm = p4;
583     }
584
585     namei_HandleToName(&name, &tmp);
586     fd = afs_open(name.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0);
587     if (fd < 0) {
588         if (errno == ENOTDIR || errno == ENOENT) {
589             if (namei_CreateDataDirectories(&name, &created_dir) < 0)
590                 goto bad;
591             fd = afs_open(name.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR,
592                           0);
593             if (fd < 0)
594                 goto bad;
595         } else {
596             goto bad;
597         }
598     }
599     if (SetOGM(fd, ogm_parm, tag) < 0) {
600         close(fd);
601         fd = -1;
602         goto bad;
603     }
604
605     if (p2 == -1 && p3 == VI_LINKTABLE) {
606         /* hack at tmp to setup for set link count call. */
607         tfd.fd_fd = fd;
608         code = namei_SetLinkCount(&tfd, (Inode) 0, 1, 0);
609     }
610
611   bad:
612     if (fd >= 0)
613         close(fd);
614
615
616     if (code || (fd < 0)) {
617         if (p2 != -1) {
618             fdP = IH_OPEN(lh);
619             if (fdP) {
620                 namei_SetLinkCount(fdP, tmp.ih_ino, 0, 0);
621                 FDH_CLOSE(fdP);
622             }
623         }
624     }
625     return (code || (fd < 0)) ? (Inode) - 1 : tmp.ih_ino;
626 }
627
628
629 /* namei_iopen */
630 int
631 namei_iopen(IHandle_t * h)
632 {
633     int fd;
634     namei_t name;
635
636     /* Convert handle to file name. */
637     namei_HandleToName(&name, h);
638     fd = afs_open(name.n_path, O_RDWR, 0666);
639     return fd;
640 }
641
642 /* Need to detect vol special file and just unlink. In those cases, the
643  * handle passed in _is_ for the inode. We only check p1 for the special
644  * files.
645  */
646 int
647 namei_dec(IHandle_t * ih, Inode ino, int p1)
648 {
649     int count = 0;
650     namei_t name;
651     int code = 0;
652     FdHandle_t *fdP;
653
654     if ((ino & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
655         IHandle_t *tmp;
656         int inode_p1, tag;
657         int type = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
658
659         /* Verify this is the right file. */
660         IH_INIT(tmp, ih->ih_dev, ih->ih_vid, ino);
661
662         fdP = IH_OPEN(tmp);
663         if (fdP == NULL) {
664             IH_RELEASE(tmp);
665             errno = EINVAL;
666             return -1;
667         }
668
669         if ((GetOGM(fdP->fd_fd, &inode_p1, &tag) < 0) || (inode_p1 != p1)) {
670             FDH_REALLYCLOSE(fdP);
671             IH_RELEASE(tmp);
672             errno = EINVAL;
673             return -1;
674         }
675
676         /* If it's the link table itself, decrement the link count. */
677         if (type == VI_LINKTABLE) {
678             if ((count = namei_GetLinkCount(fdP, (Inode) 0, 1)) < 0) {
679                 FDH_REALLYCLOSE(fdP);
680                 IH_RELEASE(tmp);
681                 return -1;
682             }
683
684             count--;
685             if (namei_SetLinkCount(fdP, (Inode) 0, count < 0 ? 0 : count, 1) <
686                 0) {
687                 FDH_REALLYCLOSE(fdP);
688                 IH_RELEASE(tmp);
689                 return -1;
690             }
691
692             if (count > 0) {
693                 FDH_REALLYCLOSE(fdP);
694                 IH_RELEASE(tmp);
695                 return 0;
696             }
697         }
698
699         namei_HandleToName(&name, tmp);
700         if ((code = unlink(name.n_path)) == 0) {
701             if (type == VI_LINKTABLE) {
702                 /* Try to remove directory. If it fails, that's ok.
703                  * Salvage will clean up.
704                  */
705                 (void)namei_RemoveDataDirectories(&name);
706             }
707         }
708         FDH_REALLYCLOSE(fdP);
709         IH_RELEASE(tmp);
710     } else {
711         /* Get a file descriptor handle for this Inode */
712         fdP = IH_OPEN(ih);
713         if (fdP == NULL) {
714             return -1;
715         }
716
717         if ((count = namei_GetLinkCount(fdP, ino, 1)) < 0) {
718             FDH_REALLYCLOSE(fdP);
719             return -1;
720         }
721
722         count--;
723         if (count >= 0) {
724             if (namei_SetLinkCount(fdP, ino, count, 1) < 0) {
725                 FDH_REALLYCLOSE(fdP);
726                 return -1;
727             }
728         } else {
729             IHandle_t *th;
730             IH_INIT(th, ih->ih_dev, ih->ih_vid, ino);
731             Log("Warning: Lost ref on ihandle dev %d vid %d ino %lld\n",
732                 th->ih_dev, th->ih_vid, (int64_t) th->ih_ino);
733             IH_RELEASE(th);
734           
735             /* If we're less than 0, someone presumably unlinked;
736                don't bother setting count to 0, but we need to drop a lock */
737             if (namei_SetLinkCount(fdP, ino, 0, 1) < 0) {
738                 FDH_REALLYCLOSE(fdP);
739                 return -1;
740             }
741         }
742         if (count == 0) {
743             IHandle_t *th;
744             IH_INIT(th, ih->ih_dev, ih->ih_vid, ino);
745
746             namei_HandleToName(&name, th);
747             IH_RELEASE(th);
748             code = unlink(name.n_path);
749         }
750         FDH_CLOSE(fdP);
751     }
752
753     return code;
754 }
755
756 int
757 namei_inc(IHandle_t * h, Inode ino, int p1)
758 {
759     int count;
760     int code = 0;
761     FdHandle_t *fdP;
762
763     if ((ino & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
764         int type = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
765         if (type != VI_LINKTABLE)
766             return 0;
767         ino = (Inode) 0;
768     }
769
770     /* Get a file descriptor handle for this Inode */
771     fdP = IH_OPEN(h);
772     if (fdP == NULL) {
773         return -1;
774     }
775
776     if ((count = namei_GetLinkCount(fdP, ino, 1)) < 0)
777         code = -1;
778     else {
779         count++;
780         if (count > 7) {
781             errno = EINVAL;
782             code = -1;
783             count = 7;
784         }
785         if (namei_SetLinkCount(fdP, ino, count, 1) < 0)
786             code = -1;
787     }
788     if (code) {
789         FDH_REALLYCLOSE(fdP);
790     } else {
791         FDH_CLOSE(fdP);
792     }
793     return code;
794 }
795
796 /************************************************************************
797  * File Name Structure
798  ************************************************************************
799  *
800  * Each AFS file needs a unique name and it needs to be findable with
801  * minimal lookup time. Note that the constraint on the number of files and
802  * directories in a volume is the size of the vnode index files and the
803  * max file size AFS supports (for internal files) of 2^31. Since a record
804  * in the small vnode index file is 64 bytes long, we can have at most
805  * (2^31)/64 or 33554432 files. A record in the large index file is
806  * 256 bytes long, giving a maximum of (2^31)/256 = 8388608 directories.
807  * Another layout parameter is that there is roughly a 16 to 1 ratio between
808  * the number of files and the number of directories.
809  *
810  * Using this information we can see that a layout of 256 directories, each
811  * with 512 subdirectories and each of those having 512 files gives us
812  * 256*512*512 = 67108864 AFS files and directories. 
813  *
814  * The volume, vnode, uniquifier and data version, as well as the tag
815  * are required, either for finding the file or for salvaging. It's best to 
816  * restrict the name to something that can be mapped into 64 bits so the
817  * "Inode" is easily comparable (using "==") to other "Inodes". The tag
818  * is used to distinguish between different versions of the same file
819  * which are currently in the RW and clones of a volume. See "Link Table
820  * Organization" below for more information on the tag. The tag is 
821  * required in the name of the file to ensure a unique name. 
822  *
823  * We can store data in the uid, gid and mode bits of the files, provided
824  * the directories have root only access. This gives us 15 bits for each
825  * of uid and gid (GNU chown considers 65535 to mean "don't change").
826  * There are 9 available mode bits. Adn we need to store a total of 
827  * 32 (volume id) + 26 (vnode) + 32 (uniquifier) + 32 (data-version) + 3 (tag)
828  * or 131 bits somewhere. 
829  *
830  * The format of a file name for a regular file is:
831  * /vicepX/AFSIDat/V1/V2/AA/BB/<tag><uniq><vno>
832  * V1 - low 8 bits of RW volume id
833  * V2 - all bits of RW volume id
834  * AA - high 8 bits of vnode number.
835  * BB - next 9 bits of vnode number.
836  * <tag><uniq><vno> - file name
837  *
838  * Volume special files are stored in a separate directory:
839  * /vicepX/AFSIDat/V1/V2/special/<tag><uniq><vno>
840  *
841  *
842  * The vnode is hashed into the directory using the high bits of the
843  * vnode number. This is so that consecutively created vnodes are in
844  * roughly the same area on the disk. This will at least be optimal if
845  * the user is creating many files in the same AFS directory. The name
846  * should be formed so that the leading characters are different as quickly
847  * as possible, leading to faster discards of incorrect matches in the
848  * lookup code.
849  * 
850  */
851
852
853 /************************************************************************
854  *  Link Table Organization
855  ************************************************************************
856  *
857  * The link table volume special file is used to hold the link counts that
858  * are held in the inodes in inode based AFS vice filesystems. For user
859  * space access, the link counts are being kept in a separate
860  * volume special file. The file begins with the usual version stamp
861  * information and is then followed by one row per vnode number. vnode 0
862  * is used to hold the link count of the link table itself. That is because
863  * the same link table is shared among all the volumes of the volume group
864  * and is deleted only when the last volume of a volume group is deleted.
865  *
866  * Within each row, the columns are 3 bits wide. They can each hold a 0 based
867  * link count from 0 through 7. Each colume represents a unique instance of
868  * that vnode. Say we have a file shared between the RW and a RO and a
869  * different version of the file (or a different uniquifer) for the BU volume.
870  * Then one column would be holding the link count of 2 for the RW and RO
871  * and a different column would hold the link count of 1 for the BU volume.
872  * Note that we allow only 5 volumes per file, giving 15 bits used in the
873  * short.
874  */
875 #define LINKTABLE_WIDTH 2
876 #define LINKTABLE_SHIFT 1       /* log 2 = 1 */
877
878 static void
879 namei_GetLCOffsetAndIndexFromIno(Inode ino, afs_foff_t * offset, int *index)
880 {
881     int toff = (int)(ino & NAMEI_VNODEMASK);
882     int tindex = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
883
884     *offset = (afs_foff_t) ((toff << LINKTABLE_SHIFT) + 8);     /* * 2 + sizeof stamp */
885     *index = (tindex << 1) + tindex;
886 }
887
888
889 /* namei_GetLinkCount
890  * If lockit is set, lock the file and leave it locked upon a successful
891  * return.
892  */
893 static int
894 namei_GetLinkCount2(FdHandle_t * h, Inode ino, int lockit, int fixup, int nowrite)
895 {
896     unsigned short row = 0;
897     afs_foff_t offset;
898     ssize_t rc;
899     int index;
900
901     /* there's no linktable yet. the salvager will create one later */
902     if (h->fd_fd == -1 && fixup)
903        return 1;
904     namei_GetLCOffsetAndIndexFromIno(ino, &offset, &index);
905
906     if (lockit) {
907         if (flock(h->fd_fd, LOCK_EX) < 0)
908             return -1;
909     }
910
911     if (afs_lseek(h->fd_fd, offset, SEEK_SET) == -1)
912         goto bad_getLinkByte;
913
914     rc = read(h->fd_fd, (char *)&row, sizeof(row));
915     if ((rc == 0 || !((row >> index) & NAMEI_TAGMASK)) && fixup && nowrite)
916         return 1;
917     if (rc == 0 && fixup) {
918         struct stat st;
919         if (fstat(h->fd_fd, &st) || st.st_size >= offset+sizeof(row))
920            goto bad_getLinkByte;
921         FDH_TRUNC(h, offset+sizeof(row));
922         row = 1 << index;
923         rc = write(h->fd_fd, (char *)&row, sizeof(row));
924     }
925     if (rc != sizeof(row)) {
926         goto bad_getLinkByte;
927     }
928
929     if (fixup && !((row >> index) & NAMEI_TAGMASK)) {
930         row |= 1<<index;
931         if (afs_lseek(h->fd_fd, offset, SEEK_SET) == -1)
932             goto bad_getLinkByte;
933         rc = write(h->fd_fd, (char *)&row, sizeof(row));
934         if (rc != sizeof(row))
935             goto bad_getLinkByte;
936     }
937  
938     return (int)((row >> index) & NAMEI_TAGMASK);
939
940   bad_getLinkByte:
941     if (lockit)
942         flock(h->fd_fd, LOCK_UN);
943     return -1;
944 }
945
946 int
947 namei_GetLinkCount(FdHandle_t * h, Inode ino, int lockit) 
948 {
949     return namei_GetLinkCount2(h, ino, lockit, 0, 1);
950 }
951
952 /* Return a free column index for this vnode. */
953 static int
954 GetFreeTag(IHandle_t * ih, int vno)
955 {
956     FdHandle_t *fdP;
957     afs_foff_t offset;
958     int col;
959     int coldata;
960     short row;
961     int code;
962
963
964     fdP = IH_OPEN(ih);
965     if (fdP == NULL)
966         return -1;
967
968     /* Only one manipulates at a time. */
969     if (flock(fdP->fd_fd, LOCK_EX) < 0) {
970         FDH_REALLYCLOSE(fdP);
971         return -1;
972     }
973
974     offset = (vno << LINKTABLE_SHIFT) + 8;      /* * 2 + sizeof stamp */
975     if (afs_lseek(fdP->fd_fd, offset, SEEK_SET) == -1) {
976         goto badGetFreeTag;
977     }
978
979     code = read(fdP->fd_fd, (char *)&row, sizeof(row));
980     if (code != sizeof(row)) {
981         if (code != 0)
982             goto badGetFreeTag;
983         row = 0;
984     }
985
986     /* Now find a free column in this row and claim it. */
987     for (col = 0; col < NAMEI_MAXVOLS; col++) {
988         coldata = 7 << (col * 3);
989         if ((row & coldata) == 0)
990             break;
991     }
992     if (col >= NAMEI_MAXVOLS)
993         goto badGetFreeTag;
994
995     coldata = 1 << (col * 3);
996     row |= coldata;
997
998     if (afs_lseek(fdP->fd_fd, offset, SEEK_SET) == -1) {
999         goto badGetFreeTag;
1000     }
1001     if (write(fdP->fd_fd, (char *)&row, sizeof(row)) != sizeof(row)) {
1002         goto badGetFreeTag;
1003     }
1004     FDH_SYNC(fdP);
1005     flock(fdP->fd_fd, LOCK_UN);
1006     FDH_REALLYCLOSE(fdP);
1007     return col;;
1008
1009   badGetFreeTag:
1010     flock(fdP->fd_fd, LOCK_UN);
1011     FDH_REALLYCLOSE(fdP);
1012     return -1;
1013 }
1014
1015
1016
1017 /* namei_SetLinkCount
1018  * If locked is set, assume file is locked. Otherwise, lock file before
1019  * proceeding to modify it.
1020  */
1021 int
1022 namei_SetLinkCount(FdHandle_t * fdP, Inode ino, int count, int locked)
1023 {
1024     afs_foff_t offset;
1025     int index;
1026     unsigned short row;
1027     int junk;
1028     int code = -1;
1029
1030     namei_GetLCOffsetAndIndexFromIno(ino, &offset, &index);
1031
1032     if (!locked) {
1033         if (flock(fdP->fd_fd, LOCK_EX) < 0) {
1034             return -1;
1035         }
1036     }
1037     if (afs_lseek(fdP->fd_fd, offset, SEEK_SET) == -1) {
1038         errno = EBADF;
1039         goto bad_SetLinkCount;
1040     }
1041
1042
1043     code = read(fdP->fd_fd, (char *)&row, sizeof(row));
1044     if (code != sizeof(row)) {
1045         if (code != 0) {
1046             errno = EBADF;
1047             goto bad_SetLinkCount;
1048         }
1049         row = 0;
1050     }
1051
1052     junk = 7 << index;
1053     count <<= index;
1054     row &= (unsigned short)~junk;
1055     row |= (unsigned short)count;
1056
1057     if (afs_lseek(fdP->fd_fd, offset, SEEK_SET) == -1) {
1058         errno = EBADF;
1059         goto bad_SetLinkCount;
1060     }
1061
1062     if (write(fdP->fd_fd, (char *)&row, sizeof(short)) != sizeof(short)) {
1063         errno = EBADF;
1064         goto bad_SetLinkCount;
1065     }
1066     FDH_SYNC(fdP);
1067
1068     code = 0;
1069
1070
1071   bad_SetLinkCount:
1072     flock(fdP->fd_fd, LOCK_UN);
1073
1074     return code;
1075 }
1076
1077
1078 /* ListViceInodes - write inode data to a results file. */
1079 static int DecodeInode(char *dpath, char *name, struct ViceInodeInfo *info,
1080                        int volid);
1081 static int DecodeVolumeName(char *name, int *vid);
1082 static int namei_ListAFSSubDirs(IHandle_t * dirIH,
1083                                 int (*write_fun) (FILE *,
1084                                                   struct ViceInodeInfo *,
1085                                                   char *, char *), FILE * fp,
1086                                 int (*judgeFun) (struct ViceInodeInfo *,
1087                                                  int vid, void *),
1088                                 int singleVolumeNumber, void *rock);
1089
1090
1091 /* WriteInodeInfo
1092  *
1093  * Write the inode data to the results file. 
1094  *
1095  * Returns -2 on error, 0 on success.
1096  *
1097  * This is written as a callback simply so that other listing routines
1098  * can use the same inode reading code.
1099  */
1100 static int
1101 WriteInodeInfo(FILE * fp, struct ViceInodeInfo *info, char *dir, char *name)
1102 {
1103     int n;
1104     n = fwrite(info, sizeof(*info), 1, fp);
1105     return (n == 1) ? 0 : -2;
1106 }
1107
1108
1109 int mode_errors;                /* Number of errors found in mode bits on directories. */
1110 void
1111 VerifyDirPerms(char *path)
1112 {
1113     struct afs_stat status;
1114
1115     if (afs_stat(path, &status) < 0) {
1116         Log("Unable to stat %s. Please manually verify mode bits for this"
1117             " directory\n", path);
1118     } else {
1119         if (((status.st_mode & 0777) != 0700) || (status.st_uid != 0))
1120             mode_errors++;
1121     }
1122 }
1123
1124 /* ListViceInodes
1125  * Fill the results file with the requested inode information.
1126  *
1127  * Return values:
1128  *  0 - success
1129  * -1 - complete failure, salvage should terminate.
1130  * -2 - not enough space on partition, salvager has error message for this.
1131  *
1132  * This code optimizes single volume salvages by just looking at that one
1133  * volume's directory. 
1134  *
1135  * If the resultFile is NULL, then don't call the write routine.
1136  */
1137 int
1138 ListViceInodes(char *devname, char *mountedOn, char *resultFile,
1139                int (*judgeInode) (struct ViceInodeInfo * info, int vid, void *rock),
1140                int singleVolumeNumber, int *forcep, int forceR, char *wpath, 
1141                void *rock)
1142 {
1143     FILE *fp = (FILE *) - 1;
1144     int ninodes;
1145     struct afs_stat status;
1146
1147     if (resultFile) {
1148         fp = afs_fopen(resultFile, "w");
1149         if (!fp) {
1150             Log("Unable to create inode description file %s\n", resultFile);
1151             return -1;
1152         }
1153     }
1154
1155     /* Verify protections on directories. */
1156     mode_errors = 0;
1157     VerifyDirPerms(mountedOn);
1158
1159     ninodes =
1160         namei_ListAFSFiles(mountedOn, WriteInodeInfo, fp, judgeInode,
1161                            singleVolumeNumber, rock);
1162
1163     if (!resultFile)
1164         return ninodes;
1165
1166     if (ninodes < 0) {
1167         fclose(fp);
1168         return ninodes;
1169     }
1170
1171     if (fflush(fp) == EOF) {
1172         Log("Unable to successfully flush inode file for %s\n", mountedOn);
1173         fclose(fp);
1174         return -2;
1175     }
1176     if (fsync(fileno(fp)) == -1) {
1177         Log("Unable to successfully fsync inode file for %s\n", mountedOn);
1178         fclose(fp);
1179         return -2;
1180     }
1181     if (fclose(fp) == EOF) {
1182         Log("Unable to successfully close inode file for %s\n", mountedOn);
1183         return -2;
1184     }
1185
1186     /*
1187      * Paranoia:  check that the file is really the right size
1188      */
1189     if (afs_stat(resultFile, &status) == -1) {
1190         Log("Unable to successfully stat inode file for %s\n", mountedOn);
1191         return -2;
1192     }
1193     if (status.st_size != ninodes * sizeof(struct ViceInodeInfo)) {
1194         Log("Wrong size (%d instead of %d) in inode file for %s\n",
1195             status.st_size, ninodes * sizeof(struct ViceInodeInfo),
1196             mountedOn);
1197         return -2;
1198     }
1199     return 0;
1200 }
1201
1202
1203 /* namei_ListAFSFiles
1204  *
1205  * Collect all the matching AFS files on the drive.
1206  * If singleVolumeNumber is non-zero, just return files for that volume.
1207  *
1208  * Returns <0 on error, else number of files found to match.
1209  */
1210 int
1211 namei_ListAFSFiles(char *dev,
1212                    int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
1213                                     char *), FILE * fp,
1214                    int (*judgeFun) (struct ViceInodeInfo *, int, void *),
1215                    int singleVolumeNumber, void *rock)
1216 {
1217     IHandle_t ih;
1218     namei_t name;
1219     int ninodes = 0;
1220     DIR *dirp1, *dirp2;
1221     struct dirent *dp1, *dp2;
1222     char path2[512];
1223 #ifdef DELETE_ZLC
1224     static void FreeZLCList(void);
1225 #endif
1226
1227     memset((void *)&ih, 0, sizeof(IHandle_t));
1228     ih.ih_dev = volutil_GetPartitionID(dev);
1229
1230     if (singleVolumeNumber) {
1231         ih.ih_vid = singleVolumeNumber;
1232         namei_HandleToVolDir(&name, &ih);
1233         ninodes =
1234             namei_ListAFSSubDirs(&ih, writeFun, fp, judgeFun,
1235                                  singleVolumeNumber, rock);
1236         if (ninodes < 0)
1237             return ninodes;
1238     } else {
1239         /* Find all volume data directories and descend through them. */
1240         namei_HandleToInodeDir(&name, &ih);
1241         ninodes = 0;
1242         dirp1 = opendir(name.n_path);
1243         if (!dirp1)
1244             return 0;
1245         while ((dp1 = readdir(dirp1))) {
1246             if (*dp1->d_name == '.')
1247                 continue;
1248             (void)strcpy(path2, name.n_path);
1249             (void)strcat(path2, "/");
1250             (void)strcat(path2, dp1->d_name);
1251             dirp2 = opendir(path2);
1252             if (dirp2) {
1253                 while ((dp2 = readdir(dirp2))) {
1254                     if (*dp2->d_name == '.')
1255                         continue;
1256                     if (!DecodeVolumeName(dp2->d_name, &ih.ih_vid)) {
1257                         ninodes +=
1258                             namei_ListAFSSubDirs(&ih, writeFun, fp, judgeFun,
1259                                                  0, rock);
1260                     }
1261                 }
1262                 closedir(dirp2);
1263             }
1264         }
1265         closedir(dirp1);
1266     }
1267 #ifdef DELETE_ZLC
1268     FreeZLCList();
1269 #endif
1270     return ninodes;
1271 }
1272
1273
1274
1275 /* namei_ListAFSSubDirs
1276  *
1277  *
1278  * Return values:
1279  * < 0 - an error
1280  * > = 0 - number of AFS files found.
1281  */
1282 static int
1283 namei_ListAFSSubDirs(IHandle_t * dirIH,
1284                      int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
1285                                       char *), FILE * fp,
1286                      int (*judgeFun) (struct ViceInodeInfo *, int, void *),
1287                      int singleVolumeNumber, void *rock)
1288 {
1289     IHandle_t myIH = *dirIH;
1290     namei_t name;
1291     char path1[512], path2[512], path3[512];
1292     DIR *dirp1, *dirp2, *dirp3;
1293     struct dirent *dp1, *dp2, *dp3;
1294     struct ViceInodeInfo info;
1295     FdHandle_t linkHandle;
1296     int ninodes = 0;
1297 #ifdef DELETE_ZLC
1298     int i;
1299     static void AddToZLCDeleteList(char dir, char *name);
1300     static void DeleteZLCFiles(char *path);
1301 #endif
1302
1303     namei_HandleToVolDir(&name, &myIH);
1304     (void)strcpy(path1, name.n_path);
1305
1306     /* Do the directory containing the special files first to pick up link
1307      * counts.
1308      */
1309     (void)strcat(path1, "/");
1310     (void)strcat(path1, NAMEI_SPECDIR);
1311
1312     linkHandle.fd_fd = -1;
1313     dirp1 = opendir(path1);
1314     if (dirp1) {
1315         while ((dp1 = readdir(dirp1))) {
1316             if (*dp1->d_name == '.')
1317                 continue;
1318             if (DecodeInode(path1, dp1->d_name, &info, myIH.ih_vid) < 0)
1319                 continue;
1320             if (info.u.param[2] != VI_LINKTABLE) {
1321                 info.linkCount = 1;
1322             } else {
1323                 /* Open this handle */
1324                 (void)afs_snprintf(path2, sizeof path2, "%s/%s", path1,
1325                                    dp1->d_name);
1326                 linkHandle.fd_fd = afs_open(path2, Testing ? O_RDONLY : O_RDWR, 0666);
1327                 info.linkCount =
1328                     namei_GetLinkCount2(&linkHandle, (Inode) 0, 1, 1, Testing);
1329             }
1330             if (judgeFun && !(*judgeFun) (&info, singleVolumeNumber, rock))
1331                 continue;
1332
1333             if ((*writeFun) (fp, &info, path1, dp1->d_name) < 0) {
1334                 if (linkHandle.fd_fd >= 0)
1335                     close(linkHandle.fd_fd);
1336                 closedir(dirp1);
1337                 return -1;
1338             }
1339             ninodes++;
1340         }
1341         closedir(dirp1);
1342     }
1343
1344     /* Now run through all the other subdirs */
1345     namei_HandleToVolDir(&name, &myIH);
1346     (void)strcpy(path1, name.n_path);
1347
1348     dirp1 = opendir(path1);
1349     if (dirp1) {
1350         while ((dp1 = readdir(dirp1))) {
1351             if (*dp1->d_name == '.')
1352                 continue;
1353             if (!strcmp(dp1->d_name, NAMEI_SPECDIR))
1354                 continue;
1355
1356             /* Now we've got a next level subdir. */
1357             (void)strcpy(path2, path1);
1358             (void)strcat(path2, "/");
1359             (void)strcat(path2, dp1->d_name);
1360             dirp2 = opendir(path2);
1361             if (dirp2) {
1362                 while ((dp2 = readdir(dirp2))) {
1363                     if (*dp2->d_name == '.')
1364                         continue;
1365
1366                     /* Now we've got to the actual data */
1367                     (void)strcpy(path3, path2);
1368                     (void)strcat(path3, "/");
1369                     (void)strcat(path3, dp2->d_name);
1370                     dirp3 = opendir(path3);
1371                     if (dirp3) {
1372                         while ((dp3 = readdir(dirp3))) {
1373                             if (*dp3->d_name == '.')
1374                                 continue;
1375                             if (DecodeInode
1376                                 (path3, dp3->d_name, &info, myIH.ih_vid) < 0)
1377                                 continue;
1378                             info.linkCount =
1379                                 namei_GetLinkCount2(&linkHandle,
1380                                                    info.inodeNumber, 1, 1, Testing);
1381                             if (info.linkCount == 0) {
1382 #ifdef DELETE_ZLC
1383                                 Log("Found 0 link count file %s/%s, deleting it.\n", path3, dp3->d_name);
1384                                 AddToZLCDeleteList((char)i, dp3->d_name);
1385 #else
1386                                 Log("Found 0 link count file %s/%s.\n", path3,
1387                                     dp3->d_name);
1388 #endif
1389                                 continue;
1390                             }
1391                             if (judgeFun
1392                                 && !(*judgeFun) (&info, singleVolumeNumber, rock))
1393                                 continue;
1394
1395                             if ((*writeFun) (fp, &info, path3, dp3->d_name) <
1396                                 0) {
1397                                 close(linkHandle.fd_fd);
1398                                 closedir(dirp3);
1399                                 closedir(dirp2);
1400                                 closedir(dirp1);
1401                                 return -1;
1402                             }
1403                             ninodes++;
1404                         }
1405                         closedir(dirp3);
1406                     }
1407                 }
1408                 closedir(dirp2);
1409             }
1410         }
1411         closedir(dirp1);
1412     }
1413
1414     if (linkHandle.fd_fd >= 0)
1415         close(linkHandle.fd_fd);
1416     if (!ninodes) {
1417         /* Then why does this directory exist? Blow it away. */
1418         namei_HandleToVolDir(&name, dirIH);
1419         namei_RemoveDataDirectories(&name);
1420     }
1421
1422     return ninodes;
1423 }
1424
1425 static int
1426 DecodeVolumeName(char *name, int *vid)
1427 {
1428     if (strlen(name) <= 2)
1429         return -1;
1430     *vid = (int)flipbase64_to_int64(name);
1431     return 0;
1432 }
1433
1434
1435 /* DecodeInode
1436  *
1437  * Get the inode number from the name.
1438  * Get
1439  */
1440 static int
1441 DecodeInode(char *dpath, char *name, struct ViceInodeInfo *info, int volid)
1442 {
1443     char fpath[512];
1444     struct afs_stat status;
1445     int parm, tag;
1446
1447     (void)strcpy(fpath, dpath);
1448     (void)strcat(fpath, "/");
1449     (void)strcat(fpath, name);
1450
1451     if (afs_stat(fpath, &status) < 0) {
1452         return -1;
1453     }
1454
1455     info->byteCount = status.st_size;
1456     info->inodeNumber = (Inode) flipbase64_to_int64(name);
1457
1458     GetOGMFromStat(&status, &parm, &tag);
1459     if ((info->inodeNumber & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
1460         /* p1 - vid, p2 - -1, p3 - type, p4 - rwvid */
1461         info->u.param[0] = parm;
1462         info->u.param[1] = -1;
1463         info->u.param[2] = tag;
1464         info->u.param[3] = volid;
1465     } else {
1466         /* p1 - vid, p2 - vno, p3 - uniq, p4 - dv */
1467         info->u.param[0] = volid;
1468         info->u.param[1] = (int)(info->inodeNumber & NAMEI_VNODEMASK);
1469         info->u.param[2] = (int)((info->inodeNumber >> NAMEI_UNIQSHIFT)
1470                                  & (Inode) NAMEI_UNIQMASK);
1471         info->u.param[3] = parm;
1472     }
1473     return 0;
1474 }
1475
1476 /*
1477  * Convert the VolumeInfo file from RO to RW
1478  * this routine is called by namei_convertROtoRWvolume()
1479  */
1480
1481 static afs_int32
1482 convertVolumeInfo(fdr, fdw, vid)
1483      int fdr;
1484      int fdw;
1485      afs_uint32 vid;
1486 {
1487     struct VolumeDiskData vd;
1488     char *p;
1489
1490     if (read(fdr, &vd, sizeof(struct VolumeDiskData)) !=
1491         sizeof(struct VolumeDiskData)) {
1492         Log("1 convertVolumeInfo: read failed for %lu with code %d\n", vid,
1493             errno);
1494         return -1;
1495     }
1496     vd.restoredFromId = vd.id;  /* remember the RO volume here */
1497     vd.cloneId = vd.id;
1498     vd.id = vd.parentId;
1499     vd.type = RWVOL;
1500     vd.dontSalvage = 0;
1501     vd.uniquifier += 5000;      /* just in case there are still file copies from
1502                                  * the old RW volume around */
1503     p = strrchr(vd.name, '.');
1504     if (p && !strcmp(p, ".readonly")) {
1505         memset(p, 0, 9);
1506     }
1507     if (write(fdw, &vd, sizeof(struct VolumeDiskData)) !=
1508         sizeof(struct VolumeDiskData)) {
1509         Log("1 convertVolumeInfo: write failed for %lu with code %d\n", vid,
1510             errno);
1511         return -1;
1512     }
1513     return 0;
1514 }
1515
1516 /*
1517  * Convert a RO-volume into a RW-volume
1518  *
1519  * This function allows to recover very fast from the loss of a partition
1520  * from RO-copies if all RO-Copies exist on another partition.
1521  * Then these RO-volumes can be made to the new RW-volumes.
1522  * Backup of RW-volumes then consists in "vos release".
1523  *
1524  * We must make sure in this partition exists only the RO-volume which
1525  * is typical for remote replicas.
1526  *
1527  * Then the linktable is already ok,
1528  *      the vnode files need to be renamed
1529  *      the volinfo file needs to be replaced by another one with
1530  *                      slightly different contents and new name.
1531  * The volume header file of the RO-volume in the /vicep<x> directory
1532  * is destroyed by this call. A new header file for the RW-volume must
1533  * be created after return from this routine.
1534  */
1535
1536 int
1537 namei_ConvertROtoRWvolume(IHandle_t * h, afs_uint32 vid)
1538 {
1539     namei_t n;
1540     char dir_name[512], oldpath[512], newpath[512];
1541     char smallName[64];
1542     char largeName[64];
1543     char infoName[64];
1544     IHandle_t t_ih;
1545     char infoSeen = 0;
1546     char smallSeen = 0;
1547     char largeSeen = 0;
1548     char linkSeen = 0;
1549     int code, fd, fd2;
1550     char *p;
1551     DIR *dirp;
1552     struct dirent *dp;
1553     struct ViceInodeInfo info;
1554
1555     namei_HandleToName(&n, h);
1556     strcpy(dir_name, n.n_path);
1557     p = strrchr(dir_name, '/');
1558     *p = 0;
1559     dirp = opendir(dir_name);
1560     if (!dirp) {
1561         Log("1 namei_ConvertROtoRWvolume: Could not opendir(%s)\n", dir_name);
1562         return EIO;
1563     }
1564
1565     while ((dp = readdir(dirp))) {
1566         /* struct ViceInodeInfo info; */
1567
1568         if (*dp->d_name == '.')
1569             continue;
1570         if (DecodeInode(dir_name, dp->d_name, &info, h->ih_vid) < 0) {
1571             Log("1 namei_ConvertROtoRWvolume: DecodeInode failed for %s/%s\n",
1572                 dir_name, dp->d_name);
1573             closedir(dirp);
1574             return -1;
1575         }
1576         if (info.u.param[1] != -1) {
1577             Log("1 namei_ConvertROtoRWvolume: found other than volume special file %s/%s\n", dir_name, dp->d_name);
1578             closedir(dirp);
1579             return -1;
1580         }
1581         if (info.u.param[0] != vid) {
1582             if (info.u.param[0] == h->ih_vid) {
1583                 if (info.u.param[2] == VI_LINKTABLE) {  /* link table */
1584                     linkSeen = 1;
1585                     continue;
1586                 }
1587             }
1588             Log("1 namei_ConvertROtoRWvolume: found special file %s/%s for volume %lu\n", dir_name, dp->d_name, info.u.param[0]);
1589             closedir(dirp);
1590             return VVOLEXISTS;
1591         }
1592         if (info.u.param[2] == VI_VOLINFO) {    /* volume info file */
1593             strcpy(infoName, dp->d_name);
1594             infoSeen = 1;
1595         } else if (info.u.param[2] == VI_SMALLINDEX) {  /* small vnodes file */
1596             strcpy(smallName, dp->d_name);
1597             smallSeen = 1;
1598         } else if (info.u.param[2] == VI_LARGEINDEX) {  /* large vnodes file */
1599             strcpy(largeName, dp->d_name);
1600             largeSeen = 1;
1601         } else {
1602             closedir(dirp);
1603             Log("1 namei_ConvertROtoRWvolume: unknown type %d of special file found : %s/%s\n", info.u.param[2], dir_name, dp->d_name);
1604             return -1;
1605         }
1606     }
1607     closedir(dirp);
1608
1609     if (!infoSeen || !smallSeen || !largeSeen || !linkSeen) {
1610         Log("1 namei_ConvertROtoRWvolume: not all special files found in %s\n", dir_name);
1611         return -1;
1612     }
1613
1614     /*
1615      * If we come here then there was only a RO-volume and we can safely
1616      * proceed.
1617      */
1618
1619     memset(&t_ih, 0, sizeof(t_ih));
1620     t_ih.ih_dev = h->ih_dev;
1621     t_ih.ih_vid = h->ih_vid;
1622
1623     (void)afs_snprintf(oldpath, sizeof oldpath, "%s/%s", dir_name, infoName);
1624     fd = afs_open(oldpath, O_RDWR, 0);
1625     if (fd < 0) {
1626         Log("1 namei_ConvertROtoRWvolume: could not open RO info file: %s\n",
1627             oldpath);
1628         return -1;
1629     }
1630     t_ih.ih_ino = namei_MakeSpecIno(h->ih_vid, VI_VOLINFO);
1631     namei_HandleToName(&n, &t_ih);
1632     fd2 = afs_open(n.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0);
1633     if (fd2 < 0) {
1634         Log("1 namei_ConvertROtoRWvolume: could not create RW info file: %s\n", n.n_path);
1635         close(fd);
1636         return -1;
1637     }
1638     code = convertVolumeInfo(fd, fd2, h->ih_vid);
1639     close(fd);
1640     if (code) {
1641         close(fd2);
1642         unlink(n.n_path);
1643         return -1;
1644     }
1645     SetOGM(fd2, h->ih_vid, 1);
1646     close(fd2);
1647
1648     t_ih.ih_ino = namei_MakeSpecIno(h->ih_vid, VI_SMALLINDEX);
1649     namei_HandleToName(&n, &t_ih);
1650     (void)afs_snprintf(newpath, sizeof newpath, "%s/%s", dir_name, smallName);
1651     fd = afs_open(newpath, O_RDWR, 0);
1652     if (fd < 0) {
1653         Log("1 namei_ConvertROtoRWvolume: could not open SmallIndex file: %s\n", newpath);
1654         return -1;
1655     }
1656     SetOGM(fd, h->ih_vid, 2);
1657     close(fd);
1658     link(newpath, n.n_path);
1659     unlink(newpath);
1660
1661     t_ih.ih_ino = namei_MakeSpecIno(h->ih_vid, VI_LARGEINDEX);
1662     namei_HandleToName(&n, &t_ih);
1663     (void)afs_snprintf(newpath, sizeof newpath, "%s/%s", dir_name, largeName);
1664     fd = afs_open(newpath, O_RDWR, 0);
1665     if (fd < 0) {
1666         Log("1 namei_ConvertROtoRWvolume: could not open LargeIndex file: %s\n", newpath);
1667         return -1;
1668     }
1669     SetOGM(fd, h->ih_vid, 3);
1670     close(fd);
1671     link(newpath, n.n_path);
1672     unlink(newpath);
1673
1674     unlink(oldpath);
1675     return 0;
1676 }
1677
1678 /* PrintInode
1679  *
1680  * returns a static string used to print either 32 or 64 bit inode numbers.
1681  */
1682 char *
1683 PrintInode(char *s, Inode ino)
1684 {
1685     static afs_ino_str_t result;
1686     if (!s)
1687         s = result;
1688
1689     (void)afs_snprintf(s, sizeof(afs_ino_str_t), "%llu", (afs_uintmax_t) ino);
1690
1691     return s;
1692 }
1693
1694
1695 #ifdef DELETE_ZLC
1696 /* Routines to facilitate removing zero link count files. */
1697 #define MAX_ZLC_NAMES 32
1698 #define MAX_ZLC_NAMELEN 16
1699 typedef struct zlcList_s {
1700     struct zlcList_s *zlc_next;
1701     int zlc_n;
1702     char zlc_names[MAX_ZLC_NAMES][MAX_ZLC_NAMELEN];
1703 } zlcList_t;
1704
1705 static zlcList_t *zlcAnchor = NULL;
1706 static zlcList_t *zlcCur = NULL;
1707
1708 static void
1709 AddToZLCDeleteList(char dir, char *name)
1710 {
1711     assert(strlen(name) <= MAX_ZLC_NAMELEN - 3);
1712
1713     if (!zlcCur || zlcCur->zlc_n >= MAX_ZLC_NAMES) {
1714         if (zlcCur && zlcCur->zlc_next)
1715             zlcCur = zlcCur->zlc_next;
1716         else {
1717             zlcList_t *tmp = (zlcList_t *) malloc(sizeof(zlcList_t));
1718             if (!tmp)
1719                 return;
1720             if (!zlcAnchor) {
1721                 zlcAnchor = tmp;
1722             } else {
1723                 zlcCur->zlc_next = tmp;
1724             }
1725             zlcCur = tmp;
1726             zlcCur->zlc_n = 0;
1727             zlcCur->zlc_next = NULL;
1728         }
1729     }
1730
1731     (void)sprintf(zlcCur->zlc_names[zlcCur->zlc_n], "%c\\%s", dir, name);
1732     zlcCur->zlc_n++;
1733 }
1734
1735 static void
1736 DeleteZLCFiles(char *path)
1737 {
1738     zlcList_t *z;
1739     int i;
1740     char fname[1024];
1741
1742     for (z = zlcAnchor; z; z = z->zlc_next) {
1743         for (i = 0; i < z->zlc_n; i++) {
1744             (void)sprintf(fname, "%s\\%s", path, z->zlc_names[i]);
1745             if (namei_unlink(fname) < 0) {
1746                 Log("ZLC: Can't unlink %s, dos error = %d\n", fname,
1747                     GetLastError());
1748             }
1749         }
1750         z->zlc_n = 0;           /* Can reuse space. */
1751     }
1752     zlcCur = zlcAnchor;
1753 }
1754
1755 static void
1756 FreeZLCList(void)
1757 {
1758     zlcList_t *tnext;
1759     zlcList_t *i;
1760
1761     i = zlcAnchor;
1762     while (i) {
1763         tnext = i->zlc_next;
1764         free(i);
1765         i = tnext;
1766     }
1767     zlcCur = zlcAnchor = NULL;
1768 }
1769 #endif
1770
1771 #endif /* AFS_NAMEI_ENV */