2 * Copyright 2000, International Business Machines Corporation and others.
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
10 /* I/O operations for the Unix open by name (namei) interface. */
12 #include <afsconfig.h>
13 #include <afs/param.h>
37 #include <sys/param.h>
40 #include <afs/afs_assert.h>
43 #include <afs/afsutil.h>
46 #include <afs/afsint.h>
50 #include "viceinode.h"
52 #include "partition.h"
54 #include "volume_inline.h"
56 #include <afs/errors.h>
58 #include <afs/errmap_nt.h>
61 /*@+fcnmacros +macrofcndecl@*/
64 #endif /*S_SPLINT_S */
65 #define afs_stat stat64
66 #define afs_fstat fstat64
68 #define afs_open nt_open
70 #define afs_open open64
72 #define afs_fopen fopen64
73 #else /* !O_LARGEFILE */
75 #endif /*S_SPLINT_S */
77 #define afs_fstat fstat
79 #define afs_open nt_open
83 #define afs_fopen fopen
84 #endif /* !O_LARGEFILE */
85 /*@=fcnmacros =macrofcndecl@*/
88 #define LOCK_SH 1 /* shared lock */
89 #define LOCK_EX 2 /* exclusive lock */
90 #define LOCK_NB 4 /* don't block when locking */
91 #define LOCK_UN 8 /* unlock */
96 #include <afs/work_queue.h>
97 #include <afs/thread_pool.h>
98 #include <vol/vol-salvage.h>
101 #if !defined(HAVE_FLOCK) && !defined(AFS_NT40_ENV)
105 * This function emulates a subset of flock()
108 emul_flock(int fd, int cmd)
111 memset(&f, 0, sizeof (f));
120 return fcntl(fd, (cmd & LOCK_NB) ? F_SETLK : F_SETLKW, &f);
123 #define flock(f,c) emul_flock(f,c)
130 namei_iread(IHandle_t * h, afs_foff_t offset, char *buf, afs_fsize_t size)
139 nBytes = FDH_PREAD(fdP, buf, size, offset);
145 namei_iwrite(IHandle_t * h, afs_foff_t offset, char *buf, afs_fsize_t size)
154 nBytes = FDH_PWRITE(fdP, buf, size, offset);
162 /* Inode number format:
163 * low 32 bits - if a regular file or directory, the vnode. Else the type.
164 * 32-36 - unquifier tag and index into counts array for this vnode. Only
165 * two of the available bits are currently used. The rest are
166 * present in case we ever increase the number of types of volumes
167 * in the volume group.
168 * bit 37 : 1 == special, 0 == regular
170 #define NAMEI_VNODEMASK 0x00ffffffff
171 #define NAMEI_TAGSHIFT 32
172 #define NAMEI_INODESPECIAL 0x2000000000
173 #define NAMEI_SPECDIR "R"
175 /* Inode number format:
176 * low 26 bits - vnode number - all 1's if volume special file.
178 * next 3 bits spare (0's)
179 * high 32 bits - uniquifier (regular) or type if spare
181 #define NAMEI_VNODEMASK 0x003ffffff
182 #define NAMEI_TAGSHIFT 26
183 #define NAMEI_UNIQMASK 0xffffffff
184 #define NAMEI_UNIQSHIFT 32
185 #define NAMEI_INODESPECIAL ((Inode)NAMEI_VNODEMASK)
186 /* dir1 is the high 8 bits of the 26 bit vnode */
187 #define VNO_DIR1(vno) ((vno >> 14) & 0xff)
188 /* dir2 is the next 9 bits */
189 #define VNO_DIR2(vno) ((vno >> 9) & 0x1ff)
190 /* "name" is the low 9 bits of the vnode, the 3 bit tag and the uniq */
191 #define NAMEI_SPECDIR "special"
193 #define NAMEI_TAGMASK 0x7
194 #define NAMEI_VNODESPECIAL NAMEI_VNODEMASK
196 #define NAMEI_SPECDIRLEN (sizeof(NAMEI_SPECDIR)-1)
198 #define NAMEI_MAXVOLS 5 /* Maximum supported number of volumes per volume
199 * group, not counting temporary (move) volumes.
200 * This is the number of separate files, all having
201 * the same vnode number, which can occur in a volume
212 static int GetFreeTag(IHandle_t * ih, int vno);
214 /* namei_HandleToInodeDir
216 * Construct the path name of the directory holding the inode data.
217 * Format: /<vicepx>/INODEDIR
222 namei_HandleToInodeDir(namei_t * name, IHandle_t * ih)
224 memset(name, '\0', sizeof(*name));
225 nt_DevToDrive(name->n_drive, ih->ih_dev);
226 strlcpy(name->n_path, name->n_drive, sizeof(name->n_path));
230 /* Format: /<vicepx>/INODEDIR */
231 #define PNAME_BLEN 64
233 namei_HandleToInodeDir(namei_t * name, IHandle_t * ih)
237 memset(name, '\0', sizeof(*name));
240 * Add the /vicepXX string to the start of name->n_base and then calculate
241 * offset as the number of bytes we know we added.
243 * FIXME: This embeds knowledge of the vice partition naming scheme and
244 * mapping from device numbers. There needs to be an API that tells us
247 volutil_PartitionName_r(ih->ih_dev, name->n_base, sizeof(name->n_base));
248 offset = VICE_PREFIX_SIZE + (ih->ih_dev > 25 ? 2 : 1);
249 name->n_base[offset] = '/';
251 strlcpy(name->n_base + offset, INODEDIR, sizeof(name->n_base) - offset);
252 strlcpy(name->n_path, name->n_base, sizeof(name->n_path));
256 #define addtoname(N, C) \
258 strlcat((N)->n_path, OS_DIRSEP, sizeof((N)->n_path)); \
259 strlcat((N)->n_path, (C), sizeof((N)->n_path)); \
265 namei_HandleToVolDir(namei_t * name, IHandle_t * ih)
267 /* X:\Vol_XXXXXXX.data */
271 namei_HandleToInodeDir(name, ih);
272 addtoname(name, name->n_drive);
273 namep = name->n_voldir;
274 (void)memcpy(namep, "\\Vol_", 5);
276 (void)strcpy(namep, int_to_base32(str1, ih->ih_vid));
277 namep += strlen(namep);
278 memcpy(namep, ".data", 5);
281 addtoname(name, name->n_voldir);
285 namei_HandleToVolDir(namei_t * name, IHandle_t * ih)
289 namei_HandleToInodeDir(name, ih);
290 (void)int32_to_flipbase64(tmp, (int64_t) (ih->ih_vid & 0xff));
291 strlcpy(name->n_voldir1, tmp, sizeof(name->n_voldir1));
292 addtoname(name, name->n_voldir1);
293 (void)int32_to_flipbase64(tmp, (int64_t) ih->ih_vid);
294 strlcpy(name->n_voldir2, tmp, sizeof(name->n_voldir2));
295 addtoname(name, name->n_voldir2);
299 /* namei_HandleToName
301 * Constructs a file name for the fully qualified handle.
304 /* Note that special files end up in X:\Vol_XXXXXXX.data\R */
306 namei_HandleToName(namei_t * name, IHandle_t * ih)
308 int vno = (int)(ih->ih_ino & NAMEI_VNODEMASK);
309 int tag = (int)((ih->ih_ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
312 namei_HandleToVolDir(name, ih);
314 if (vno == NAMEI_VNODESPECIAL) {
315 name->n_dir[0] = 'R';
318 name->n_dir[0] = 'Q';
320 name->n_dir[0] = ((vno & 0x1f) >> 1) + 'A';
323 name->n_dir[1] = '\0';
324 addtoname(name, name->n_dir);
325 /* X:\Vol_XXXXXXX.data\X\V_XXXXXXX.XXX */
326 namep = name->n_inode;
327 (void)memcpy(namep, "\\V_", 3);
329 (void)strcpy(namep, int_to_base32(str1, vno));
330 namep += strlen(namep);
332 (void)strcpy(namep, int_to_base32(str1, tag));
333 namep += strlen(namep);
334 addtoname(name, name->n_inode);
337 /* Note that special files end up in /vicepX/InodeDir/Vxx/V*.data/special */
339 namei_HandleToName(namei_t * name, IHandle_t * ih)
341 int vno = (int)(ih->ih_ino & NAMEI_VNODEMASK);
344 namei_HandleToVolDir(name, ih);
346 if (vno == NAMEI_VNODESPECIAL) {
347 strlcpy(name->n_dir1, NAMEI_SPECDIR, sizeof(name->n_dir1));
348 addtoname(name, name->n_dir1);
349 name->n_dir2[0] = '\0';
351 (void)int32_to_flipbase64(str, VNO_DIR1(vno));
352 strlcpy(name->n_dir1, str, sizeof(name->n_dir1));
353 addtoname(name, name->n_dir1);
354 (void)int32_to_flipbase64(str, VNO_DIR2(vno));
355 strlcpy(name->n_dir2, str, sizeof(name->n_dir2));
356 addtoname(name, name->n_dir2);
358 (void)int64_to_flipbase64(str, (int64_t) ih->ih_ino);
359 strlcpy(name->n_inode, str, sizeof(name->n_inode));
360 addtoname(name, name->n_inode);
365 /* The following is a warning to tell sys-admins to not muck about in this
368 #define VICE_README "These files and directories are a part of the AFS \
369 namespace. Modifying them\nin any way will result in loss of AFS data,\n\
370 ownership and permissions included.\n"
372 namei_ViceREADME(char *partition)
377 /* Create the inode directory if we're starting for the first time */
378 (void)afs_snprintf(filename, sizeof filename, "%s" OS_DIRSEP "%s", partition,
380 mkdir(filename, 0700);
382 (void)afs_snprintf(filename, sizeof filename, "%s" OS_DIRSEP "%s" OS_DIRSEP "README",
383 partition, INODEDIR);
384 fd = afs_open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0444);
386 (void)write(fd, VICE_README, strlen(VICE_README));
393 /* namei_CreateDataDirectories
395 * If creating the file failed because of ENOENT or ENOTDIR, try
396 * creating all the directories first.
400 namei_CreateDataDirectories(namei_t * name, int *created)
407 afs_snprintf(tmp, 256, "%s\\%s", name->n_drive, name->n_voldir);
409 if (mkdir(tmp) < 0) {
420 for (i = 'A'; i <= 'R'; i++) {
422 if (mkdir(tmp) < 0 && errno != EEXIST)
428 #define create_dir() \
430 if (mkdir(tmp, 0700)<0) { \
431 if (errno != EEXIST) \
439 #define create_nextdir(A) \
441 strcat(tmp, "/"); strcat(tmp, A); create_dir(); \
445 namei_CreateDataDirectories(namei_t * name, int *created)
451 strlcpy(tmp, name->n_base, sizeof(tmp));
454 create_nextdir(name->n_voldir1);
455 create_nextdir(name->n_voldir2);
456 create_nextdir(name->n_dir1);
457 if (name->n_dir2[0]) {
458 create_nextdir(name->n_dir2);
465 /* delTree(): Deletes an entire tree of directories (no files)
467 * root : Full path to the subtree. Should be big enough for PATH_MAX
468 * tree : the subtree to be deleted is rooted here. Specifies only the
469 * subtree beginning at tree (not the entire path). It should be
470 * a pointer into the "root" buffer.
472 * errp : errno of the first error encountered during the directory cleanup.
473 * *errp should have been initialized to 0.
476 * -1 : If errors were encountered during cleanup and error is set to
480 * If there are errors, we try to work around them and delete as many
481 * directories as possible. We don't attempt to remove directories that still
482 * have non-dir entries in them.
485 delTree(char *root, char *tree, int *errp)
493 /* delete the children first */
494 cp = strchr(tree, '/');
496 delTree(root, cp + 1, errp);
499 cp = tree + strlen(tree); /* move cp to the end of string tree */
501 /* now delete all entries in this dir */
502 if ((ds = opendir(root)) != (DIR *) NULL) {
504 while ((dirp = readdir(ds))) {
505 /* ignore . and .. */
506 if (!strcmp(dirp->d_name, ".") || !strcmp(dirp->d_name, ".."))
508 /* since root is big enough, we reuse the space to
509 * concatenate the dirname to the current tree
512 strcat(root, dirp->d_name);
513 if (afs_stat(root, &st) == 0 && S_ISDIR(st.st_mode)) {
514 /* delete this subtree */
515 delTree(root, cp + 1, errp);
517 *errp = *errp ? *errp : errno;
519 /* recover path to our cur tree by truncating it to
524 /* if (!errno) -- closedir not implicit if we got an error */
528 /* finally axe the current dir */
530 *errp = *errp ? *errp : errno;
532 #ifndef AFS_PTHREAD_ENV /* let rx get some work done */
534 #endif /* !AFS_PTHREAD_ENV */
539 /* if we encountered errors during cleanup, we return a -1 */
548 /* namei_RemoveDataDirectories
550 * Returns 0 on success.
551 * Returns -1 on error. Typically, callers ignore this error because we
552 * can continue running if the removes fail. The salvage process will
553 * finish tidying up for us.
558 namei_RemoveDataDirectories(namei_t * name)
565 afs_snprintf(tmp, 256, "%s\\%s", name->n_drive, name->n_voldir);
568 path += strlen(path);
571 for (i = 'A'; i <= 'R'; i++) {
573 if (rmdir(name->n_path) < 0 && errno != ENOENT)
578 /* Delete the Vol_NNNNNN.data directory. */
581 if (rmdir(name->n_path) < 0 && errno != ENOENT) {
589 * We only use the n_base and n_voldir1 entries
590 * and only do rmdir's.
593 namei_RemoveDataDirectories(namei_t * name)
597 int prefixlen = strlen(name->n_base), err = 0;
598 int vollen = strlen(name->n_voldir1);
599 char pbuf[MAXPATHLEN];
603 strlcpy(path, name->n_path, sizeof(pbuf));
605 /* move past the prefix and n_voldir1 */
606 path = path + prefixlen + 1 + vollen + 1; /* skip over the trailing / */
608 /* now delete all dirs upto path */
609 code = delTree(pbuf, path, &err);
611 /* We've now deleted everything under /n_base/n_voldir1/n_voldir2 that
612 * we could. Do not delete /n_base/n_voldir1, since doing such might
613 * interrupt another thread trying to create a volume. We could introduce
614 * some locking to make this safe (or only remove it for whole-partition
615 * salvages), but by not deleting it we only leave behind a maximum of
616 * 256 empty directories. So at least for now, don't bother. */
621 /* Create the file in the name space.
623 * Parameters stored as follows:
625 * p1 - volid - implied in containing directory.
626 * p2 - vnode - name is <vno:31-23>/<vno:22-15>/<vno:15-0><uniq:31-5><tag:2-0>
627 * p3 - uniq -- bits 4-0 are in mode bits 4-0
628 * p4 - dv ---- dv:15-0 in uid, dv:29-16 in gid, dv:31-30 in mode:6-5
630 * p1 - volid - creation time - dwHighDateTime
631 * p2 - vnode - -1 means special, file goes in "S" subdirectory.
632 * p3 - type -- name is <type>.<tag> where tag is a file name unqiquifier.
633 * p4 - parid - parent volume id - implied in containing directory.
635 * Return value is the inode number or (Inode)-1 if error.
636 * We "know" there is only one link table, so return EEXIST if there already
637 * is a link table. It's up to the calling code to test errno and increment
643 * This function is called by VCreateVolume to hide the implementation
644 * details of the inode numbers. This only allows for 7 volume special
645 * types, but if we get that far, this could should be dead by then.
648 namei_MakeSpecIno(int volid, int type)
651 ino = NAMEI_INODESPECIAL;
655 type &= NAMEI_TAGMASK;
656 ino |= ((Inode) type) << NAMEI_TAGSHIFT;
657 ino |= ((Inode) volid) << NAMEI_UNIQSHIFT;
662 /* SetOGM - set owner group and mode bits from parm and tag */
664 SetOGM(FD_t fd, int parm, int tag)
668 * owner - low 15 bits of parm.
669 * group - next 15 bits of parm.
670 * mode - 2 bits of parm, then lowest = 3 bits of tag.
672 int owner, group, mode;
674 owner = parm & 0x7fff;
675 group = (parm >> 15) & 0x7fff;
676 if (fchown(fd, owner, group) < 0)
679 mode = (parm >> 27) & 0x18;
681 if (fchmod(fd, mode) < 0)
689 CheckOGM(namei_t *name, FdHandle_t *fdP, int p1)
691 WIN32_FIND_DATA info;
695 FindFirstFileEx(name->n_path, FindExInfoStandard, &info,
696 FindExSearchNameMatch, NULL,
697 FIND_FIRST_EX_CASE_SENSITIVE);
700 return -1; /* Can't get info, leave alone */
704 if (info.ftCreationTime.dwHighDateTime != (unsigned int)p1)
710 /* GetOGM - get parm and tag from owner, group and mode bits. */
712 GetOGMFromStat(struct afs_stat *status, int *parm, int *tag)
714 *parm = status->st_uid | (status->st_gid << 15);
715 *parm |= (status->st_mode & 0x18) << 27;
716 *tag = status->st_mode & 0x7;
720 CheckOGM(namei_t *name, FdHandle_t *fdP, int p1)
722 struct afs_stat status;
724 if (afs_fstat(fdP->fd_fd, &status) < 0)
727 GetOGMFromStat(&status, &parm, &tag);
735 int big_vno = 0; /* Just in case we ever do 64 bit vnodes. */
737 /* Derive the name and create it O_EXCL. If that fails we have an error.
738 * Get the tag from a free column in the link table.
742 namei_icreate(IHandle_t * lh, char *part, afs_uint32 p1, afs_uint32 p2, afs_uint32 p3, afs_uint32 p4)
745 FD_t fd = INVALID_FD;
756 memset((void *)&tmp, 0, sizeof(IHandle_t));
757 memset(&tfd, 0, sizeof(FdHandle_t));
759 tmp.ih_dev = nt_DriveToDev(part);
760 if (tmp.ih_dev == -1) {
766 /* Parameters for special file:
767 * p1 - volume id - goes into owner/group/mode
770 * p4 - parent volume id
772 ftime.dwHighDateTime = p1;
773 ftime.dwLowDateTime = p2;
775 tmp.ih_vid = p4; /* Use parent volume id, where this file will be. */
776 tmp.ih_ino = namei_MakeSpecIno(p1, p3);
778 int vno = p2 & NAMEI_VNODEMASK;
779 /* Parameters for regular file:
793 tmp.ih_ino = (Inode) p2;
794 ftime.dwHighDateTime = p3;
795 ftime.dwLowDateTime = p4;
798 namei_HandleToName(&name, &tmp);
799 p = strrchr((char *)&name.n_path, '.');
801 for (i = 0; i < NAMEI_MAXVOLS; i++) {
802 *p = *int_to_base32(str1, i);
803 fd = nt_open((char *)&name.n_path, O_CREAT | O_RDWR | O_TRUNC | O_EXCL, 0666);
804 if (fd != INVALID_FD)
806 if (p2 == -1 && p3 == VI_LINKTABLE)
809 if (fd == INVALID_FD) {
813 tmp.ih_ino &= ~((Inode) NAMEI_TAGMASK << NAMEI_TAGSHIFT);
814 tmp.ih_ino |= ((Inode) i << NAMEI_TAGSHIFT);
817 if (!SetFileTime((HANDLE) fd, &ftime, NULL, NULL)) {
818 errno = OS_ERROR(EBADF);
825 if (fd == INVALID_FD) {
827 code = nt_unlink((char *)&name.n_path);
836 code = namei_SetLinkCount(fdP, tmp.ih_ino, 1, 0);
838 } else if (p2 == -1 && p3 == VI_LINKTABLE) {
839 if (fd == INVALID_FD)
841 /* hack at tmp to setup for set link count call. */
843 code = namei_SetLinkCount(&tfd, (Inode) 0, 1, 0);
848 if (fd != INVALID_FD)
851 if (code || (fd == INVALID_FD)) {
855 namei_SetLinkCount(fdP, tmp.ih_ino, 0, 0);
861 int save_errno = errno;
862 namei_RemoveDataDirectories(&name);
866 return (code || (fd == INVALID_FD)) ? (Inode) - 1 : tmp.ih_ino;
870 namei_icreate(IHandle_t * lh, char *part, afs_uint32 p1, afs_uint32 p2, afs_uint32 p3, afs_uint32 p4)
882 memset((void *)&tmp, 0, sizeof(IHandle_t));
883 memset(&tfd, 0, sizeof(FdHandle_t));
885 tmp.ih_dev = volutil_GetPartitionID(part);
886 if (tmp.ih_dev == -1) {
892 /* Parameters for special file:
893 * p1 - volume id - goes into owner/group/mode
896 * p4 - parent volume id
901 tmp.ih_vid = p4; /* Use parent volume id, where this file will be. */
902 tmp.ih_ino = namei_MakeSpecIno(p1, p3);
904 int vno = p2 & NAMEI_VNODEMASK;
905 /* Parameters for regular file:
917 /* If GetFreeTag succeeds, it atomically sets link count to 1. */
918 tag = GetFreeTag(lh, p2);
923 tmp.ih_ino = (Inode) p2;
924 /* name is <uniq(p3)><tag><vno(p2)> */
925 tmp.ih_ino |= ((Inode) tag) << NAMEI_TAGSHIFT;
926 tmp.ih_ino |= ((Inode) p3) << NAMEI_UNIQSHIFT;
931 namei_HandleToName(&name, &tmp);
932 fd = afs_open(name.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0);
934 if (errno == ENOTDIR || errno == ENOENT) {
935 if (namei_CreateDataDirectories(&name, &created_dir) < 0)
937 fd = afs_open(name.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR,
945 if (SetOGM(fd, ogm_parm, tag) < 0) {
951 if (p2 == -1 && p3 == VI_LINKTABLE) {
952 /* hack at tmp to setup for set link count call. */
953 memset((void *)&tfd, 0, sizeof(FdHandle_t)); /* minimalistic still, but a little cleaner */
956 code = namei_SetLinkCount(&tfd, (Inode) 0, 1, 0);
964 if (code || (fd < 0)) {
968 namei_SetLinkCount(fdP, tmp.ih_ino, 0, 0);
973 return (code || (fd < 0)) ? (Inode) - 1 : tmp.ih_ino;
979 namei_iopen(IHandle_t * h)
984 /* Convert handle to file name. */
985 namei_HandleToName(&name, h);
986 fd = afs_open((char *)&name.n_path, O_RDWR, 0666);
990 /* Need to detect vol special file and just unlink. In those cases, the
991 * handle passed in _is_ for the inode. We only check p1 for the special
995 namei_dec(IHandle_t * ih, Inode ino, int p1)
1002 if ((ino & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
1004 int type = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
1006 /* Verify this is the right file. */
1007 IH_INIT(tmp, ih->ih_dev, ih->ih_vid, ino);
1009 namei_HandleToName(&name, tmp);
1014 errno = OS_ERROR(ENOENT);
1018 if (CheckOGM(&name, fdP, p1) < 0) {
1019 FDH_REALLYCLOSE(fdP);
1021 errno = OS_ERROR(EINVAL);
1025 /* If it's the link table itself, decrement the link count. */
1026 if (type == VI_LINKTABLE) {
1027 if ((count = namei_GetLinkCount(fdP, (Inode) 0, 1, 0, 1)) < 0) {
1028 FDH_REALLYCLOSE(fdP);
1034 if (namei_SetLinkCount(fdP, (Inode) 0, count < 0 ? 0 : count, 1) <
1036 FDH_REALLYCLOSE(fdP);
1042 FDH_REALLYCLOSE(fdP);
1048 if ((code = OS_UNLINK(name.n_path)) == 0) {
1049 if (type == VI_LINKTABLE) {
1050 /* Try to remove directory. If it fails, that's ok.
1051 * Salvage will clean up.
1053 (void)namei_RemoveDataDirectories(&name);
1056 FDH_REALLYCLOSE(fdP);
1059 /* Get a file descriptor handle for this Inode */
1065 if ((count = namei_GetLinkCount(fdP, ino, 1, 0, 1)) < 0) {
1066 FDH_REALLYCLOSE(fdP);
1072 if (namei_SetLinkCount(fdP, ino, count, 1) < 0) {
1073 FDH_REALLYCLOSE(fdP);
1078 IH_INIT(th, ih->ih_dev, ih->ih_vid, ino);
1079 Log("Warning: Lost ref on ihandle dev %d vid %d ino %" AFS_INT64_FMT "\n",
1080 th->ih_dev, th->ih_vid, (afs_int64)th->ih_ino);
1083 /* If we're less than 0, someone presumably unlinked;
1084 don't bother setting count to 0, but we need to drop a lock */
1085 if (namei_SetLinkCount(fdP, ino, 0, 1) < 0) {
1086 FDH_REALLYCLOSE(fdP);
1092 IH_INIT(th, ih->ih_dev, ih->ih_vid, ino);
1094 namei_HandleToName(&name, th);
1096 code = OS_UNLINK(name.n_path);
1105 namei_inc(IHandle_t * h, Inode ino, int p1)
1111 if ((ino & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
1112 int type = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
1113 if (type != VI_LINKTABLE)
1118 /* Get a file descriptor handle for this Inode */
1124 if ((count = namei_GetLinkCount(fdP, ino, 1, 0, 1)) < 0)
1129 errno = OS_ERROR(EINVAL);
1133 if (namei_SetLinkCount(fdP, ino, count, 1) < 0)
1137 FDH_REALLYCLOSE(fdP);
1144 #ifndef AFS_NT40_ENV
1146 namei_replace_file_by_hardlink(IHandle_t *hLink, IHandle_t *hTarget)
1152 /* Convert handle to file name. */
1153 namei_HandleToName(&nameLink, hLink);
1154 namei_HandleToName(&nameTarget, hTarget);
1156 unlink(nameLink.n_path);
1157 code = link(nameTarget.n_path, nameLink.n_path);
1162 namei_copy_on_write(IHandle_t *h)
1164 afs_int32 fd, code = 0;
1167 struct afs_stat tstat;
1170 namei_HandleToName(&name, h);
1171 if (afs_stat(name.n_path, &tstat) < 0)
1173 if (tstat.st_nlink > 1) { /* do a copy on write */
1182 afs_snprintf(path, sizeof(path), "%s-tmp", name.n_path);
1183 fd = afs_open(path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0);
1195 size = tstat.st_size;
1198 tlen = size > 8192 ? 8192 : size;
1199 if (FDH_PREAD(fdP, buf, tlen, offset) != tlen)
1201 if (write(fd, buf, tlen) != tlen)
1207 FDH_REALLYCLOSE(fdP);
1212 unlink(name.n_path);
1213 code = rename(path, name.n_path);
1220 /************************************************************************
1221 * File Name Structure
1222 ************************************************************************
1224 * Each AFS file needs a unique name and it needs to be findable with
1225 * minimal lookup time. Note that the constraint on the number of files and
1226 * directories in a volume is the size of the vnode index files and the
1227 * max file size AFS supports (for internal files) of 2^31. Since a record
1228 * in the small vnode index file is 64 bytes long, we can have at most
1229 * (2^31)/64 or 33554432 files. A record in the large index file is
1230 * 256 bytes long, giving a maximum of (2^31)/256 = 8388608 directories.
1231 * Another layout parameter is that there is roughly a 16 to 1 ratio between
1232 * the number of files and the number of directories.
1234 * Using this information we can see that a layout of 256 directories, each
1235 * with 512 subdirectories and each of those having 512 files gives us
1236 * 256*512*512 = 67108864 AFS files and directories.
1238 * The volume, vnode, uniquifier and data version, as well as the tag
1239 * are required, either for finding the file or for salvaging. It's best to
1240 * restrict the name to something that can be mapped into 64 bits so the
1241 * "Inode" is easily comparable (using "==") to other "Inodes". The tag
1242 * is used to distinguish between different versions of the same file
1243 * which are currently in the RW and clones of a volume. See "Link Table
1244 * Organization" below for more information on the tag. The tag is
1245 * required in the name of the file to ensure a unique name.
1247 * ifdef AFS_NT40_ENV
1248 * The data for each volume group is in a separate directory. The name of the
1249 * volume is of the form: Vol_NNNNNN.data, where NNNNNN is a base 32
1250 * representation of the RW volume ID (even where the RO is the only volume
1251 * on the partition). Below that are separate subdirectories for the
1252 * AFS directories and special files. There are also 16 directories for files,
1253 * hashed on the low 5 bits (recall bit0 is always 0) of the vnode number.
1254 * These directories are named:
1255 * A - P - 16 file directories.
1256 * Q ----- data directory
1257 * R ----- special files directory
1259 * The vnode is hashed into the directory using the low bits of the
1262 * The format of a file name for a regular file is:
1263 * Y:\Vol_NNNNNN.data\X\V_IIIIII.J
1264 * Y - partition encoded as drive letter, starting with D
1265 * NNNNNN - base 32 encoded volume number of RW volume
1266 * X - hash directory, as above
1267 * IIIIII - base 32 encoded vnode number
1268 * J - base 32 encoded tag
1270 * uniq is stored in the dwHighDateTime creation time field
1271 * dv is stored in the dwLowDateTime creation time field
1273 * Special inodes are always in the R directory, as above, and are
1275 * True child volid is stored in the dwHighDateTime creation time field
1276 * vnode number is always -1 (Special)
1277 * type is the IIIIII part of the filename
1278 * uniq is the J part of the filename
1279 * parent volume id is implied in the containing directory
1282 * We can store data in the uid, gid and mode bits of the files, provided
1283 * the directories have root only access. This gives us 15 bits for each
1284 * of uid and gid (GNU chown considers 65535 to mean "don't change").
1285 * There are 9 available mode bits. Adn we need to store a total of
1286 * 32 (volume id) + 26 (vnode) + 32 (uniquifier) + 32 (data-version) + 3 (tag)
1287 * or 131 bits somewhere.
1289 * The format of a file name for a regular file is:
1290 * /vicepX/AFSIDat/V1/V2/AA/BB/<tag><uniq><vno>
1291 * V1 - low 8 bits of RW volume id
1292 * V2 - all bits of RW volume id
1293 * AA - high 8 bits of vnode number.
1294 * BB - next 9 bits of vnode number.
1295 * <tag><uniq><vno> - file name
1297 * Volume special files are stored in a separate directory:
1298 * /vicepX/AFSIDat/V1/V2/special/<tag><uniq><vno>
1301 * The vnode is hashed into the directory using the high bits of the
1302 * vnode number. This is so that consecutively created vnodes are in
1303 * roughly the same area on the disk. This will at least be optimal if
1304 * the user is creating many files in the same AFS directory. The name
1305 * should be formed so that the leading characters are different as quickly
1306 * as possible, leading to faster discards of incorrect matches in the
1314 /************************************************************************
1315 * Link Table Organization
1316 ************************************************************************
1318 * The link table volume special file is used to hold the link counts that
1319 * are held in the inodes in inode based AFS vice filesystems. For user
1320 * space access, the link counts are being kept in a separate
1321 * volume special file. The file begins with the usual version stamp
1322 * information and is then followed by one row per vnode number. vnode 0
1323 * is used to hold the link count of the link table itself. That is because
1324 * the same link table is shared among all the volumes of the volume group
1325 * and is deleted only when the last volume of a volume group is deleted.
1327 * Within each row, the columns are 3 bits wide. They can each hold a 0 based
1328 * link count from 0 through 7. Each colume represents a unique instance of
1329 * that vnode. Say we have a file shared between the RW and a RO and a
1330 * different version of the file (or a different uniquifer) for the BU volume.
1331 * Then one column would be holding the link count of 2 for the RW and RO
1332 * and a different column would hold the link count of 1 for the BU volume.
1333 * # ifdef AFS_NT40_ENV
1334 * The column used is determined for NT by the uniquifier tag applied to
1335 * generate a unique file name in the NTFS namespace. The file name is
1336 * of the form "V_<vno>.<tag>" . And the <tag> is also the column number
1337 * in the link table.
1339 * Note that we allow only 5 volumes per file, giving 15 bits used in the
1343 #define LINKTABLE_WIDTH 2
1344 #define LINKTABLE_SHIFT 1 /* log 2 = 1 */
1347 * compute namei link table file and bit offset from inode number.
1349 * @param[in] ino inode number
1350 * @param[out] offset link table file offset
1351 * @param[out] index bit offset within 2-byte record
1356 namei_GetLCOffsetAndIndexFromIno(Inode ino, afs_foff_t * offset, int *index)
1358 int toff = (int)(ino & NAMEI_VNODEMASK);
1359 int tindex = (int)((ino >> NAMEI_TAGSHIFT) & NAMEI_TAGMASK);
1361 *offset = (afs_foff_t) ((toff << LINKTABLE_SHIFT) + 8); /* * 2 + sizeof stamp */
1362 *index = (tindex << 1) + tindex;
1365 #ifdef AFS_PTHREAD_ENV
1366 /* XXX do static initializers work for WINNT/pthread? */
1367 pthread_mutex_t _namei_glc_lock = PTHREAD_MUTEX_INITIALIZER;
1368 #define NAMEI_GLC_LOCK MUTEX_ENTER(&_namei_glc_lock)
1369 #define NAMEI_GLC_UNLOCK MUTEX_EXIT(&_namei_glc_lock)
1370 #else /* !AFS_PTHREAD_ENV */
1371 #define NAMEI_GLC_LOCK
1372 #define NAMEI_GLC_UNLOCK
1373 #endif /* !AFS_PTHREAD_ENV */
1376 * get the link count of an inode.
1378 * @param[in] h namei link count table file handle
1379 * @param[in] ino inode number for which we are requesting a link count
1380 * @param[in] lockit if asserted, return with lock held on link table file
1381 * @param[in] fixup if asserted, write 1 to link count when read() returns
1383 * @param[in] nowrite return success on zero byte read or ZLC
1385 * @post if lockit asserted and lookup was successful, will return with write
1386 * lock on link table file descriptor
1388 * @return link count
1389 * @retval -1 namei link table i/o error
1394 namei_GetLinkCount(FdHandle_t * h, Inode ino, int lockit, int fixup, int nowrite)
1396 unsigned short row = 0;
1401 /* there's no linktable yet. the salvager will create one later */
1402 if (h->fd_fd == INVALID_FD && fixup)
1404 namei_GetLCOffsetAndIndexFromIno(ino, &offset, &index);
1407 if (FDH_LOCKFILE(h, offset) != 0)
1411 rc = FDH_PREAD(h, (char*)&row, sizeof(row), offset);
1412 if ((rc == 0 || !((row >> index) & NAMEI_TAGMASK)) && fixup && nowrite)
1414 if (rc == 0 && fixup) {
1416 * extend link table and write a link count of 1 for ino
1418 * in order to make MT-safe, truncation (extension really)
1419 * must happen under a mutex
1422 if (FDH_SIZE(h) >= offset+sizeof(row)) {
1424 goto bad_getLinkByte;
1426 FDH_TRUNC(h, offset+sizeof(row));
1428 rc = FDH_PWRITE(h, (char *)&row, sizeof(row), offset);
1431 if (rc != sizeof(row)) {
1432 goto bad_getLinkByte;
1435 if (fixup && !((row >> index) & NAMEI_TAGMASK)) {
1439 * in order to make this mt-safe, we need to do the read-modify-write
1440 * under a mutex. thus, we repeat the read inside the lock.
1443 rc = FDH_PREAD(h, (char *)&row, sizeof(row), offset);
1444 if (rc == sizeof(row)) {
1446 rc = FDH_PWRITE(h, (char *)&row, sizeof(row), offset);
1449 if (rc != sizeof(row))
1450 goto bad_getLinkByte;
1453 return (int)((row >> index) & NAMEI_TAGMASK);
1457 FDH_UNLOCKFILE(h, offset);
1462 namei_SetNonZLC(FdHandle_t * h, Inode ino)
1464 return namei_GetLinkCount(h, ino, 0, 1, 0);
1467 /* Return a free column index for this vnode. */
1469 GetFreeTag(IHandle_t * ih, int vno)
1483 /* Only one manipulates at a time. */
1484 if (FDH_LOCKFILE(fdP, offset) != 0) {
1485 FDH_REALLYCLOSE(fdP);
1489 offset = (vno << LINKTABLE_SHIFT) + 8; /* * 2 + sizeof stamp */
1491 nBytes = FDH_PREAD(fdP, (char *)&row, sizeof(row), offset);
1492 if (nBytes != sizeof(row)) {
1498 /* Now find a free column in this row and claim it. */
1499 for (col = 0; col < NAMEI_MAXVOLS; col++) {
1500 coldata = 7 << (col * 3);
1501 if ((row & coldata) == 0)
1504 if (col >= NAMEI_MAXVOLS) {
1509 coldata = 1 << (col * 3);
1512 if (FDH_PWRITE(fdP, (char *)&row, sizeof(row), offset) != sizeof(row)) {
1516 FDH_UNLOCKFILE(fdP, offset);
1517 FDH_REALLYCLOSE(fdP);
1521 FDH_UNLOCKFILE(fdP, offset);
1522 FDH_REALLYCLOSE(fdP);
1528 /* namei_SetLinkCount
1529 * If locked is set, assume file is locked. Otherwise, lock file before
1530 * proceeding to modify it.
1533 namei_SetLinkCount(FdHandle_t * fdP, Inode ino, int count, int locked)
1539 ssize_t nBytes = -1;
1541 namei_GetLCOffsetAndIndexFromIno(ino, &offset, &index);
1544 if (FDH_LOCKFILE(fdP, offset) != 0) {
1549 nBytes = FDH_PREAD(fdP, (char *)&row, sizeof(row), offset);
1550 if (nBytes != sizeof(row)) {
1552 errno = OS_ERROR(EBADF);
1553 goto bad_SetLinkCount;
1558 bytesRead = 7 << index;
1560 row &= (unsigned short)~bytesRead;
1561 row |= (unsigned short)count;
1563 if (FDH_PWRITE(fdP, (char *)&row, sizeof(short), offset) != sizeof(short)) {
1564 errno = OS_ERROR(EBADF);
1565 goto bad_SetLinkCount;
1573 FDH_UNLOCKFILE(fdP, offset);
1575 /* disallowed above 7, so... */
1580 /* ListViceInodes - write inode data to a results file. */
1581 static int DecodeInode(char *dpath, char *name, struct ViceInodeInfo *info,
1582 unsigned int volid);
1583 static int DecodeVolumeName(char *name, unsigned int *vid);
1584 static int namei_ListAFSSubDirs(IHandle_t * dirIH,
1585 int (*write_fun) (FILE *,
1586 struct ViceInodeInfo *,
1587 char *, char *), FILE * fp,
1588 int (*judgeFun) (struct ViceInodeInfo *,
1589 afs_uint32 vid, void *),
1590 afs_uint32 singleVolumeNumber, void *rock);
1595 * Write the inode data to the results file.
1597 * Returns -2 on error, 0 on success.
1599 * This is written as a callback simply so that other listing routines
1600 * can use the same inode reading code.
1603 WriteInodeInfo(FILE * fp, struct ViceInodeInfo *info, char *dir, char *name)
1606 n = fwrite(info, sizeof(*info), 1, fp);
1607 return (n == 1) ? 0 : -2;
1611 int mode_errors; /* Number of errors found in mode bits on directories. */
1613 VerifyDirPerms(char *path)
1615 struct afs_stat status;
1617 if (afs_stat(path, &status) < 0) {
1618 Log("Unable to stat %s. Please manually verify mode bits for this"
1619 " directory\n", path);
1621 if (((status.st_mode & 0777) != 0700) || (status.st_uid != 0))
1627 * Fill the results file with the requested inode information.
1629 * This code optimizes single volume salvages by just looking at that one
1630 * volume's directory.
1632 * @param[in] devname device name string
1633 * @param[in] moutnedOn vice partition mount point
1634 * @param[in] resultFile result file in which to write inode
1635 * metadata. If NULL, write routine is not
1637 * @param[in] judgeInode filter function pointer. if not NULL, only
1638 * inodes for which this routine returns non-
1639 * zero will be written to the results file.
1640 * @param[in] singleVolumeNumber volume id filter
1641 * @param[out] forcep always set to 0 for namei impl
1642 * @param[in] forceR not used by namei impl
1643 * @param[in] wpath not used by namei impl
1644 * @param[in] rock opaque pointer passed to judgeInode
1646 * @return operation status
1648 * @retval -1 complete failure, salvage should terminate.
1649 * @retval -2 not enough space on partition, salvager has error message
1653 ListViceInodes(char *devname, char *mountedOn, FILE *inodeFile,
1654 int (*judgeInode) (struct ViceInodeInfo * info, afs_uint32 vid, void *rock),
1655 afs_uint32 singleVolumeNumber, int *forcep, int forceR, char *wpath,
1659 struct afs_stat status;
1661 *forcep = 0; /* no need to salvage until further notice */
1663 /* Verify protections on directories. */
1665 VerifyDirPerms(mountedOn);
1668 namei_ListAFSFiles(mountedOn, WriteInodeInfo, inodeFile, judgeInode,
1669 singleVolumeNumber, rock);
1678 if (fflush(inodeFile) == EOF) {
1679 Log("Unable to successfully flush inode file for %s\n", mountedOn);
1682 if (fsync(fileno(inodeFile)) == -1) {
1683 Log("Unable to successfully fsync inode file for %s\n", mountedOn);
1688 * Paranoia: check that the file is really the right size
1690 if (afs_fstat(fileno(inodeFile), &status) == -1) {
1691 Log("Unable to successfully stat inode file for %s\n", mountedOn);
1694 if (status.st_size != ninodes * sizeof(struct ViceInodeInfo)) {
1695 Log("Wrong size (%d instead of %lu) in inode file for %s\n",
1696 (int) status.st_size,
1697 (long unsigned int) ninodes * sizeof(struct ViceInodeInfo),
1706 * Collect all the matching AFS files on the drive.
1707 * If singleVolumeNumber is non-zero, just return files for that volume.
1709 * @param[in] dev vice partition path
1710 * @param[in] writeFun function pointer to a function which
1711 * writes inode information to FILE fp
1712 * @param[in] fp file stream where inode metadata is sent
1713 * @param[in] judgeFun filter function pointer. if not NULL,
1714 * only entries for which a non-zero value
1715 * is returned are written to fp
1716 * @param[in] singleVolumeNumber volume id filter. if nonzero, only
1717 * process files for that specific volume id
1718 * @param[in] rock opaque pointer passed into writeFun and
1721 * @return operation status
1723 * @retval >=0 number of matching files found
1726 namei_ListAFSFiles(char *dev,
1727 int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
1730 int (*judgeFun) (struct ViceInodeInfo *, afs_uint32, void *),
1731 afs_uint32 singleVolumeNumber, void *rock)
1738 #ifndef AFS_NT40_ENV
1744 static void FreeZLCList(void);
1747 memset((void *)&ih, 0, sizeof(IHandle_t));
1749 ih.ih_dev = nt_DriveToDev(dev);
1751 ih.ih_dev = volutil_GetPartitionID(dev);
1754 if (singleVolumeNumber) {
1755 ih.ih_vid = singleVolumeNumber;
1756 namei_HandleToVolDir(&name, &ih);
1758 namei_ListAFSSubDirs(&ih, writeFun, fp, judgeFun,
1759 singleVolumeNumber, rock);
1763 /* Find all volume data directories and descend through them. */
1764 namei_HandleToInodeDir(&name, &ih);
1766 dirp1 = opendir(name.n_path);
1769 while ((dp1 = readdir(dirp1))) {
1771 /* Heirarchy is one level on Windows */
1772 if (!DecodeVolumeName(dp1->d_name, &ih.ih_vid)) {
1774 namei_ListAFSSubDirs(&ih, writeFun, fp, judgeFun,
1778 if (*dp1->d_name == '.')
1780 afs_snprintf(path2, sizeof(path2), "%s" OS_DIRSEP "%s", name.n_path,
1782 dirp2 = opendir(path2);
1784 while ((dp2 = readdir(dirp2))) {
1785 if (*dp2->d_name == '.')
1787 if (!DecodeVolumeName(dp2->d_name, &ih.ih_vid)) {
1789 namei_ListAFSSubDirs(&ih, writeFun, fp, judgeFun,
1806 static void AddToZLCDeleteList(char dir, char *name);
1807 static void DeleteZLCFiles(char *path);
1811 * examine a namei volume special file.
1813 * @param[in] path1 volume special directory path
1814 * @param[in] dname directory entry name
1815 * @param[in] myIH inode handle to volume directory
1816 * @param[out] linkHandle namei link count fd handle. if
1817 * the inode in question is the link
1818 * table, then the FdHandle is populated
1819 * @param[in] writeFun metadata write function pointer
1820 * @param[in] fp file pointer where inode metadata
1821 * is written by (*writeFun)()
1822 * @param[in] judgeFun inode filter function pointer. if
1823 * not NULL, only inodes for which this
1824 * function returns non-zero are recorded
1825 * into fp by writeFun
1826 * @param[in] singleVolumeNumer volume id filter. if non-zero, only
1827 * inodes associated with this volume id
1828 * are recorded by writeFun
1829 * @param[in] rock opaque pointer passed to writeFun and
1832 * @return operation status
1833 * @retval 1 count this inode
1834 * @retval 0 don't count this inode
1835 * @retval -1 failure
1840 _namei_examine_special(char * path1,
1843 FdHandle_t * linkHandle,
1844 int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
1847 int (*judgeFun) (struct ViceInodeInfo *, afs_uint32, void *),
1848 int singleVolumeNumber,
1852 struct ViceInodeInfo info;
1853 afs_uint32 inode_vgid;
1855 if (DecodeInode(path1, dname, &info, myIH->ih_vid) < 0) {
1861 inode_vgid = myIH->ih_vid;
1863 inode_vgid = (info.inodeNumber >> NAMEI_UNIQSHIFT) & NAMEI_UNIQMASK;
1866 if (info.u.param[2] != VI_LINKTABLE) {
1868 } else if ((info.u.param[0] != myIH->ih_vid) ||
1869 (inode_vgid != myIH->ih_vid)) {
1870 /* VGID encoded in linktable filename and/or OGM data isn't
1871 * consistent with VGID encoded in namei path */
1872 Log("namei_ListAFSSubDirs: warning: inconsistent linktable "
1873 "filename \"%s" OS_DIRSEP "%s\"; salvager will delete it "
1874 "(dir_vgid=%u, inode_vgid=%u, ogm_vgid=%u)\n",
1875 path1, dname, myIH->ih_vid,
1876 (unsigned int)inode_vgid,
1880 /* Open this handle */
1881 (void)afs_snprintf(path2, sizeof(path2),
1882 "%s" OS_DIRSEP "%s", path1, dname);
1883 linkHandle->fd_fd = afs_open(path2, Testing ? O_RDONLY : O_RDWR, 0666);
1885 namei_GetLinkCount(linkHandle, (Inode) 0, 1, 1, Testing);
1889 (*judgeFun) (&info, singleVolumeNumber, rock)) {
1891 if ((*writeFun) (fp, &info, path1, dname) < 0) {
1901 * examine a namei file.
1903 * @param[in] path1 volume special directory path
1904 * @param[in] dname directory entry name
1905 * @param[in] myIH inode handle to volume directory
1906 * @param[in] linkHandle namei link count fd handle.
1907 * @param[in] writeFun metadata write function pointer
1908 * @param[in] fp file pointer where inode metadata
1909 * is written by (*writeFun)()
1910 * @param[in] judgeFun inode filter function pointer. if
1911 * not NULL, only inodes for which this
1912 * function returns non-zero are recorded
1913 * into fp by writeFun
1914 * @param[in] singleVolumeNumer volume id filter. if non-zero, only
1915 * inodes associated with this volume id
1916 * are recorded by writeFun
1917 * @param[in] rock opaque pointer passed to writeFun and
1920 * @return operation status
1921 * @retval 1 count this inode
1922 * @retval 0 don't count this inode
1923 * @retval -1 failure
1924 * @retval -2 request ZLC delete
1929 _namei_examine_reg(char * path3,
1932 FdHandle_t * linkHandle,
1933 int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
1936 int (*judgeFun) (struct ViceInodeInfo *, afs_uint32, void *),
1937 int singleVolumeNumber,
1941 struct ViceInodeInfo info;
1943 int i; /* Windows-only (one level hash dir) */
1946 if (DecodeInode(path3, dname, &info, myIH->ih_vid) < 0) {
1951 namei_GetLinkCount(linkHandle,
1952 info.inodeNumber, 1, 1, Testing);
1953 if (info.linkCount == 0) {
1955 Log("Found 0 link count file %s" OS_DIRSEP "%s, deleting it.\n", path3, dname);
1956 #ifdef AFS_SALSRV_ENV
1957 /* defer -- the AddToZLCDeleteList() interface is not MT-safe */
1959 #else /* !AFS_SALSRV_ENV */
1960 AddToZLCDeleteList((char)i, dname);
1961 #endif /* !AFS_SALSRV_ENV */
1962 #else /* !DELETE_ZLC */
1963 Log("Found 0 link count file %s" OS_DIRSEP "%s.\n", path3,
1970 (*judgeFun) (&info, singleVolumeNumber, rock)) {
1972 if ((*writeFun) (fp, &info, path3, dname) < 0) {
1982 * listsubdirs work queue node.
1984 struct listsubdirs_work_node {
1985 #ifdef AFS_SALSRV_ENV
1986 int *error; /**< *error set if an error was
1987 * encountered in any listsubdirs
1991 IHandle_t * IH; /**< volume directory handle */
1992 FdHandle_t *linkHandle; /**< namei link count fd handle. when
1993 * examinining the link table special
1994 * inode, this will be pointed at the
1997 FILE * fp; /**< file pointer for writeFun */
1999 /** function which will write inode metadata to fp */
2000 int (*writeFun) (FILE *, struct ViceInodeInfo *, char *, char *);
2002 /** inode filter function */
2003 int (*judgeFun) (struct ViceInodeInfo *, afs_uint32, void *);
2004 int singleVolumeNumber; /**< volume id filter */
2005 void * rock; /**< pointer passed to writeFun and judgeFun */
2006 int code; /**< return code from examine function */
2007 int special; /**< asserted when this is a volume
2012 * simple wrapper around _namei_examine_special and _namei_examine_reg.
2014 * @param[in] work the struct listsubdirs_work_node for the associated
2015 * "list subdirs" job
2016 * @param[in] dir the directory to examine
2017 * @param[in] filename the filename in 'dir' to examine
2019 * @return operation status
2020 * @retval 1 count this inode
2021 * @retval 0 don't count this inode
2022 * @retval -1 failure
2025 _namei_examine_file(const struct listsubdirs_work_node *work, char *dir,
2028 if (work->special) {
2029 return _namei_examine_special(dir, filename, work->IH,
2030 work->linkHandle, work->writeFun, work->fp,
2031 work->judgeFun, work->singleVolumeNumber,
2034 return _namei_examine_reg(dir, filename, work->IH,
2035 work->linkHandle, work->writeFun, work->fp,
2036 work->judgeFun, work->singleVolumeNumber,
2042 #ifdef AFS_SALSRV_ENV
2043 /** @addtogroup afs_vol_salsrv_pario */
2047 * arguments for the _namei_examine_file_cbk callback function.
2049 struct listsubdirs_args {
2050 const struct listsubdirs_work_node *work; /**< arguments that are the same
2051 * for all invocations of
2052 * _namei_examine_file_cbk, in
2054 int *result; /**< where we can store the return code of _namei_examine_file */
2056 char dir[512]; /**< directory to examine */
2057 char filename[256]; /**< filename in 'dir' to examine */
2061 * a node in the list of results of listsubdir jobs.
2063 struct listsubdirs_result {
2065 int inodes; /**< return value from _namei_examine_file */
2069 * clean up a list of 'struct listsubdirs_result's and interpret the results.
2071 * @param[in] resultlist a list of 'struct listsubdirs_result's
2073 * @return number of inodes found
2077 _namei_listsubdirs_cleanup_results(struct rx_queue *resultlist)
2079 struct listsubdirs_result *res, *nres;
2082 for(queue_Scan(resultlist, res, nres, listsubdirs_result)) {
2084 /* noop, retain erroneous error code */
2085 } else if (res->inodes < 0) {
2100 * wait for the spawned listsubdirs jobs to finish, and return how many inodes
2103 * @param[in] queue queue to wait to finish
2104 * @param[in] resultlist list of 'struct listsubdirs_result's that the queued
2105 * jobs are storing their results in
2107 * @return number of inodes found
2111 _namei_listsubdirs_wait(struct afs_work_queue *queue, struct rx_queue *resultlist)
2115 code = afs_wq_wait_all(queue);
2120 return _namei_listsubdirs_cleanup_results(resultlist);
2124 * work queue entry point for examining namei files.
2126 * @param[in] queue pointer to struct Vwork_queue
2127 * @param[in] node pointer to struct Vwork_queue_node
2128 * @param[in] queue_rock opaque pointer to struct salsrv_pool_state
2129 * @param[in] node_rock opaque pointer to struct listsubdirs_work_node
2130 * @param[in] caller_rock opaque pointer to struct salsrv_worker_thread_state
2132 * @return operation status
2134 * @see Vwork_queue_callback_func_t
2139 _namei_examine_file_cbk(struct afs_work_queue *queue,
2140 struct afs_work_queue_node *node,
2146 struct listsubdirs_args *args = node_rock;
2147 const struct listsubdirs_work_node * work = args->work;
2148 char *dir = args->dir;
2149 char *filename = args->filename;
2151 code = _namei_examine_file(work, dir, filename);
2153 *(args->result) = code;
2157 /* we've errored, so no point in letting more jobs continue */
2158 afs_wq_shutdown(queue);
2164 static pthread_once_t wq_once = PTHREAD_ONCE_INIT;
2165 static pthread_key_t wq_key;
2168 * create the wq_key key for storing a work queue.
2171 _namei_wq_keycreate(void)
2173 osi_Assert(pthread_key_create(&wq_key, NULL) == 0);
2177 * set the work queue for this thread to use for backgrounding namei ops.
2179 * The work queue will be used in ListAFSSubdirs (called indirectly by
2180 * ListViceInodes) to examine files in parallel.
2182 * @param[in] wq the work queue to use
2185 namei_SetWorkQueue(struct afs_work_queue *wq)
2187 osi_Assert(pthread_once(&wq_once, _namei_wq_keycreate) == 0);
2189 osi_Assert(pthread_setspecific(wq_key, wq) == 0);
2193 * enqueue an examine file work unit.
2195 * @param[in] work the _namei_examine_file arguments that are common to
2196 * all callers within the same ListAFSFiles operation
2197 * @param[in] dir the specific directory to look at (string will be
2198 * copied; can be stack/temporary memory)
2199 * @param[in] filename the filename to look at (string will be copied; can be
2200 * stack/temporary memory)
2201 * @param[in] wq work queue to enqueue this work unit to
2202 * @param[in] resultlist the list to append the 'struct listsubdirs_result' to
2203 * for the enqueued work unit
2205 * @return operation status
2207 * @retval -1 fatal error
2209 * @note errors MUST be indicated by a -1 error code and nothing else, to be
2210 * compatible with _namei_examine_reg and _namei_examine_special
2215 _namei_examine_file_spawn(const struct listsubdirs_work_node *work,
2216 const char *dir, const char *filename,
2217 struct afs_work_queue *wq,
2218 struct rx_queue *resultlist)
2221 struct listsubdirs_args *args = NULL;
2222 struct listsubdirs_result *result = NULL;
2223 struct afs_work_queue_node *node = NULL;
2224 struct afs_work_queue_add_opts opts;
2226 args = malloc(sizeof(*args));
2232 result = malloc(sizeof(*result));
2233 if (result == NULL) {
2238 code = afs_wq_node_alloc(&node);
2243 code = afs_wq_node_set_detached(node);
2250 args->result = &result->inodes;
2251 strlcpy(args->dir, dir, sizeof(args->dir));
2252 strlcpy(args->filename, filename, sizeof(args->filename));
2254 code = afs_wq_node_set_callback(node,
2255 &_namei_examine_file_cbk,
2263 afs_wq_add_opts_init(&opts);
2266 code = afs_wq_add(wq, node, &opts);
2273 queue_Append(resultlist, result);
2278 afs_wq_node_put(node);
2294 #else /* !AFS_SALSRV_ENV */
2295 # define _namei_examine_file_spawn(work, dir, file, wq, resultlist) \
2296 _namei_examine_file(work, dir, file)
2297 #endif /* !AFS_SALSRV_ENV */
2300 * traverse and check inodes.
2302 * @param[in] dirIH volume group directory handle
2303 * @param[in] writeFun function pointer which will write inode
2304 * metadata to FILE stream fp
2305 * @param[in] fp file stream where inode metadata gets
2307 * @param[in] judgeFun inode filter function. if not NULL, only
2308 * inodes for which the filter returns non-zero
2309 * will be written out by writeFun
2310 * @param[in] singleVolumeNumber volume id filter. only inodes matching this
2311 * filter are written out by writeFun
2312 * @param[in] rock opaque pointer passed to judgeFun and writeFun
2314 * @return operation status
2316 * @retval >=0 number of matching inodes found
2318 * @todo the salsrv implementation may consume a lot of
2319 * memory for a large volume. at some point we should
2320 * probably write a background thread to asynchronously
2321 * clean up the resultlist nodes to reduce memory footprint
2326 namei_ListAFSSubDirs(IHandle_t * dirIH,
2327 int (*writeFun) (FILE *, struct ViceInodeInfo *, char *,
2330 int (*judgeFun) (struct ViceInodeInfo *, afs_uint32, void *),
2331 afs_uint32 singleVolumeNumber, void *rock)
2333 int code = 0, ret = 0;
2334 IHandle_t myIH = *dirIH;
2336 char path1[512], path3[512];
2337 DIR *dirp1, *dirp2, *dirp3;
2338 #ifndef AFS_NT40_ENV
2342 struct dirent *dp1, *dp3;
2343 FdHandle_t linkHandle;
2345 struct listsubdirs_work_node work;
2346 #ifdef AFS_SALSRV_ENV
2348 struct afs_work_queue *wq;
2350 struct rx_queue resultlist;
2354 static void AddToZLCDeleteList(char dir, char *name);
2355 static void DeleteZLCFiles(char *path);
2358 namei_HandleToVolDir(&name, &myIH);
2359 strlcpy(path1, name.n_path, sizeof(path1));
2361 /* Do the directory containing the special files first to pick up link
2364 (void)strcat(path1, OS_DIRSEP);
2365 (void)strcat(path1, NAMEI_SPECDIR);
2367 linkHandle.fd_fd = INVALID_FD;
2368 #ifdef AFS_SALSRV_ENV
2369 osi_Assert(pthread_once(&wq_once, _namei_wq_keycreate) == 0);
2371 wq = pthread_getspecific(wq_key);
2377 queue_Init(&resultlist);
2380 memset(&work, 0, sizeof(work));
2381 work.linkHandle = &linkHandle;
2384 work.writeFun = writeFun;
2385 work.judgeFun = judgeFun;
2386 work.singleVolumeNumber = singleVolumeNumber;
2389 #ifdef AFS_SALSRV_ENV
2390 work.error = &error;
2393 dirp1 = opendir(path1);
2395 while ((dp1 = readdir(dirp1))) {
2396 if (*dp1->d_name == '.')
2399 #ifdef AFS_SALSRV_ENV
2405 #endif /* AFS_SALSRV_ENV */
2407 code = _namei_examine_file_spawn(&work, path1, dp1->d_name, wq, &resultlist);
2417 /* count this inode */
2418 #ifndef AFS_SALSRV_ENV
2427 #ifdef AFS_SALSRV_ENV
2428 /* effectively a barrier */
2429 code = _namei_listsubdirs_wait(wq, &resultlist);
2430 if (code < 0 || error) {
2438 if (linkHandle.fd_fd == INVALID_FD) {
2439 Log("namei_ListAFSSubDirs: warning: VG %u does not have a link table; "
2440 "salvager will recreate it.\n", dirIH->ih_vid);
2443 /* Now run through all the other subdirs */
2444 namei_HandleToVolDir(&name, &myIH);
2445 strlcpy(path1, name.n_path, sizeof(path1));
2449 dirp1 = opendir(path1);
2451 while ((dp1 = readdir(dirp1))) {
2452 #ifndef AFS_NT40_ENV
2453 if (*dp1->d_name == '.')
2456 if (!strcmp(dp1->d_name, NAMEI_SPECDIR))
2459 #ifndef AFS_NT40_ENV /* This level missing on Windows */
2460 /* Now we've got a next level subdir. */
2461 afs_snprintf(path2, sizeof(path2), "%s" OS_DIRSEP "%s", path1, dp1->d_name);
2462 dirp2 = opendir(path2);
2464 while ((dp2 = readdir(dirp2))) {
2465 if (*dp2->d_name == '.')
2468 /* Now we've got to the actual data */
2469 afs_snprintf(path3, sizeof(path3), "%s" OS_DIRSEP "%s", path2,
2472 /* Now we've got to the actual data */
2473 afs_snprintf(path3, sizeof(path3), "%s\\%s", path1,
2476 dirp3 = opendir(path3);
2478 while ((dp3 = readdir(dirp3))) {
2479 #ifndef AFS_NT40_ENV
2480 if (*dp3->d_name == '.')
2484 #ifdef AFS_SALSRV_ENV
2492 #endif /* AFS_SALSRV_ENV */
2494 code = _namei_examine_file_spawn(&work, path3,
2507 #ifndef AFS_SALSRV_ENV
2515 #ifndef AFS_NT40_ENV /* This level missing on Windows */
2524 #ifdef AFS_SALSRV_ENV
2525 /* effectively a barrier */
2526 code = _namei_listsubdirs_wait(wq, &resultlist);
2527 if (code < 0 || error) {
2537 /* Then why does this directory exist? Blow it away. */
2538 namei_HandleToVolDir(&name, dirIH);
2539 namei_RemoveDataDirectories(&name);
2543 #ifdef AFS_SALSRV_ENV
2545 afs_wq_wait_all(wq);
2547 _namei_listsubdirs_cleanup_results(&resultlist);
2549 if (linkHandle.fd_fd != INVALID_FD)
2550 OS_CLOSE(linkHandle.fd_fd);
2562 DecodeVolumeName(char *name, unsigned int *vid)
2564 /* Name begins with "Vol_" and ends with .data. See nt_HandleToVolDir() */
2571 if (strncmp(name, "Vol_", 4))
2573 if (strcmp(name + len - 5, ".data"))
2576 stmp[len - 5] = '\0';
2577 *vid = base32_to_int(stmp + 4);
2582 DecodeVolumeName(char *name, unsigned int *vid)
2584 if (strlen(name) < 1)
2586 *vid = (unsigned int)flipbase64_to_int64(name);
2594 * Get the inode number from the name.
2599 DecodeInode(char *dpath, char *name, struct ViceInodeInfo *info,
2604 WIN32_FIND_DATA data;
2608 FdHandle_t linkHandle;
2611 afs_snprintf(fpath, sizeof(fpath), "%s\\%s", dpath, name);
2613 dirH = FindFirstFileEx(fpath, FindExInfoStandard, &data,
2614 FindExSearchNameMatch, NULL,
2615 FIND_FIRST_EX_CASE_SENSITIVE);
2616 if (dirH == INVALID_HANDLE_VALUE)
2619 (void)strcpy(stmp, name);
2620 s = strrchr(stmp, '_');
2624 t = strrchr(s, '.');
2629 vno = base32_to_int(s);
2630 tag = base32_to_int(t+1);
2631 info->inodeNumber = (Inode) tag << NAMEI_TAGSHIFT;
2632 info->inodeNumber |= (Inode) vno;
2633 info->byteCount = data.nFileSizeLow;
2635 dirl = dpath[strlen(dpath)-1];
2636 if (dirl == 'R') { /* Special inode. */
2637 info->inodeNumber |= NAMEI_INODESPECIAL;
2638 info->u.param[0] = data.ftCreationTime.dwHighDateTime;
2639 info->u.param[1] = data.ftCreationTime.dwLowDateTime;
2640 info->u.param[2] = tag;
2641 info->u.param[3] = volid;
2642 if (tag != VI_LINKTABLE)
2643 info->linkCount = 1;
2645 /* Open this handle */
2647 (void)sprintf(lpath, "%s\\%s", fpath, data.cFileName);
2648 linkHandle.fd_fd = nt_open(lpath, O_RDONLY, 0666);
2650 namei_GetLinkCount(&linkHandle, (Inode) 0, 0, 0, 0);
2654 namei_GetLinkCount(&linkHandle, info->inodeNumber, 0, 0, 0);
2655 if (info->linkCount == 0) {
2657 Log("Found 0 link count file %s\\%s, deleting it.\n",
2658 fpath, data.cFileName);
2659 AddToZLCDeleteList(dirl, data.cFileName);
2661 Log("Found 0 link count file %s\\%s.\n", path,
2665 info->u.param[2] = data.ftCreationTime.dwHighDateTime;
2666 info->u.param[3] = data.ftCreationTime.dwLowDateTime;
2667 info->u.param[1] = vno;
2668 info->u.param[0] = volid;
2675 DecodeInode(char *dpath, char *name, struct ViceInodeInfo *info,
2679 struct afs_stat status;
2681 lb64_string_t check;
2683 afs_snprintf(fpath, sizeof(fpath), "%s" OS_DIRSEP "%s", dpath, name);
2685 if (afs_stat(fpath, &status) < 0) {
2689 info->byteCount = status.st_size;
2690 info->inodeNumber = (Inode) flipbase64_to_int64(name);
2692 int64_to_flipbase64(check, info->inodeNumber);
2693 if (strcmp(name, check))
2696 GetOGMFromStat(&status, &parm, &tag);
2697 if ((info->inodeNumber & NAMEI_INODESPECIAL) == NAMEI_INODESPECIAL) {
2698 /* p1 - vid, p2 - -1, p3 - type, p4 - rwvid */
2699 info->u.param[0] = parm;
2700 info->u.param[1] = -1;
2701 info->u.param[2] = tag;
2702 info->u.param[3] = volid;
2704 /* p1 - vid, p2 - vno, p3 - uniq, p4 - dv */
2705 info->u.param[0] = volid;
2706 info->u.param[1] = (int)(info->inodeNumber & NAMEI_VNODEMASK);
2707 info->u.param[2] = (int)((info->inodeNumber >> NAMEI_UNIQSHIFT)
2708 & (Inode) NAMEI_UNIQMASK);
2709 info->u.param[3] = parm;
2716 * Convert the VolumeInfo file from RO to RW
2717 * this routine is called by namei_convertROtoRWvolume()
2720 #ifdef FSSYNC_BUILD_CLIENT
2722 convertVolumeInfo(FD_t fdr, FD_t fdw, afs_uint32 vid)
2724 struct VolumeDiskData vd;
2727 if (OS_READ(fdr, (char *)&vd, sizeof(struct VolumeDiskData)) !=
2728 sizeof(struct VolumeDiskData)) {
2729 Log("1 convertVolumeInfo: read failed for %lu with code %d\n",
2730 afs_printable_uint32_lu(vid),
2734 vd.restoredFromId = vd.id; /* remember the RO volume here */
2736 vd.id = vd.parentId;
2740 vd.uniquifier += 5000; /* just in case there are still file copies from
2741 * the old RW volume around */
2742 p = strrchr(vd.name, '.');
2743 if (p && !strcmp(p, ".readonly")) {
2746 if (OS_WRITE(fdw, (char *)&vd, sizeof(struct VolumeDiskData)) !=
2747 sizeof(struct VolumeDiskData)) {
2748 Log("1 convertVolumeInfo: write failed for %lu with code %d\n",
2749 afs_printable_uint32_lu(vid),
2758 * Convert a RO-volume into a RW-volume
2760 * This function allows to recover very fast from the loss of a partition
2761 * from RO-copies if all RO-Copies exist on another partition.
2762 * Then these RO-volumes can be made to the new RW-volumes.
2763 * Backup of RW-volumes then consists in "vos release".
2765 * We must make sure in this partition exists only the RO-volume which
2766 * is typical for remote replicas.
2768 * Then the linktable is already ok,
2769 * the vnode files need to be renamed
2770 * the volinfo file needs to be replaced by another one with
2771 * slightly different contents and new name.
2772 * The volume header file of the RO-volume in the /vicep<x> directory
2773 * is destroyed by this call. A new header file for the RW-volume must
2774 * be created after return from this routine.
2778 namei_ConvertROtoRWvolume(char *pname, afs_uint32 volumeId)
2781 #ifdef FSSYNC_BUILD_CLIENT
2783 char dir_name[512], oldpath[512], newpath[512];
2798 struct DiskPartition64 *partP;
2799 struct ViceInodeInfo info;
2800 struct VolumeDiskHeader h;
2801 # ifdef AFS_DEMAND_ATTACH_FS
2803 # endif /* AFS_DEMAND_ATTACH_FS */
2805 for (partP = DiskPartitionList; partP && strcmp(partP->name, pname);
2806 partP = partP->next);
2808 Log("1 namei_ConvertROtoRWvolume: Couldn't find DiskPartition for %s\n", pname);
2813 # ifdef AFS_DEMAND_ATTACH_FS
2814 locktype = VVolLockType(V_VOLUPD, 1);
2815 code = VLockVolumeByIdNB(volumeId, partP, locktype);
2821 # endif /* AFS_DEMAND_ATTACH_FS */
2823 if (VReadVolumeDiskHeader(volumeId, partP, &h)) {
2824 Log("1 namei_ConvertROtoRWvolume: Couldn't read header for RO-volume %lu.\n",
2825 afs_printable_uint32_lu(volumeId));
2830 FSYNC_VolOp(volumeId, pname, FSYNC_VOL_BREAKCBKS, 0, NULL);
2832 ino = namei_MakeSpecIno(h.parent, VI_LINKTABLE);
2833 IH_INIT(ih, partP->device, h.parent, ino);
2835 namei_HandleToName(&n, ih);
2836 strlcpy(dir_name, n.n_path, sizeof(dir_name));
2837 p = strrchr(dir_name, OS_DIRSEPC);
2839 dirp = opendir(dir_name);
2841 Log("1 namei_ConvertROtoRWvolume: Could not opendir(%s)\n", dir_name);
2846 while ((dp = readdir(dirp))) {
2847 /* struct ViceInodeInfo info; */
2848 #ifndef AFS_NT40_ENV
2849 if (*dp->d_name == '.')
2852 if (DecodeInode(dir_name, dp->d_name, &info, ih->ih_vid) < 0) {
2853 Log("1 namei_ConvertROtoRWvolume: DecodeInode failed for %s" OS_DIRSEP "%s\n",
2854 dir_name, dp->d_name);
2859 if (info.u.param[1] != -1) {
2860 Log("1 namei_ConvertROtoRWvolume: found other than volume special file %s" OS_DIRSEP "%s\n", dir_name, dp->d_name);
2865 if (info.u.param[0] != volumeId) {
2866 if (info.u.param[0] == ih->ih_vid) {
2867 if (info.u.param[2] == VI_LINKTABLE) { /* link table */
2872 Log("1 namei_ConvertROtoRWvolume: found special file %s" OS_DIRSEP "%s"
2873 " for volume %lu\n", dir_name, dp->d_name,
2874 afs_printable_uint32_lu(info.u.param[0]));
2879 if (info.u.param[2] == VI_VOLINFO) { /* volume info file */
2880 strlcpy(infoName, dp->d_name, sizeof(infoName));
2882 } else if (info.u.param[2] == VI_SMALLINDEX) { /* small vnodes file */
2883 strlcpy(smallName, dp->d_name, sizeof(smallName));
2885 } else if (info.u.param[2] == VI_LARGEINDEX) { /* large vnodes file */
2886 strlcpy(largeName, dp->d_name, sizeof(largeName));
2890 Log("1 namei_ConvertROtoRWvolume: unknown type %d of special file found : %s" OS_DIRSEP "%s\n", info.u.param[2], dir_name, dp->d_name);
2897 if (!infoSeen || !smallSeen || !largeSeen || !linkSeen) {
2898 Log("1 namei_ConvertROtoRWvolume: not all special files found in %s\n", dir_name);
2904 * If we come here then there was only a RO-volume and we can safely
2908 memset(&t_ih, 0, sizeof(t_ih));
2909 t_ih.ih_dev = ih->ih_dev;
2910 t_ih.ih_vid = ih->ih_vid;
2912 (void)afs_snprintf(oldpath, sizeof oldpath, "%s" OS_DIRSEP "%s", dir_name,
2914 fd = afs_open(oldpath, O_RDWR, 0);
2916 Log("1 namei_ConvertROtoRWvolume: could not open RO info file: %s\n",
2921 t_ih.ih_ino = namei_MakeSpecIno(ih->ih_vid, VI_VOLINFO);
2922 namei_HandleToName(&n, &t_ih);
2923 fd2 = afs_open(n.n_path, O_CREAT | O_EXCL | O_TRUNC | O_RDWR, 0);
2925 Log("1 namei_ConvertROtoRWvolume: could not create RW info file: %s\n", n.n_path);
2930 code = convertVolumeInfo(fd, fd2, ih->ih_vid);
2934 OS_UNLINK(n.n_path);
2938 SetOGM(fd2, ih->ih_vid, 1);
2941 t_ih.ih_ino = namei_MakeSpecIno(ih->ih_vid, VI_SMALLINDEX);
2942 namei_HandleToName(&n, &t_ih);
2943 (void)afs_snprintf(newpath, sizeof newpath, "%s" OS_DIRSEP "%s", dir_name,
2945 fd = afs_open(newpath, O_RDWR, 0);
2947 Log("1 namei_ConvertROtoRWvolume: could not open SmallIndex file: %s\n", newpath);
2951 SetOGM(fd, ih->ih_vid, 2);
2954 MoveFileEx(n.n_path, newpath, MOVEFILE_WRITE_THROUGH);
2956 link(newpath, n.n_path);
2960 t_ih.ih_ino = namei_MakeSpecIno(ih->ih_vid, VI_LARGEINDEX);
2961 namei_HandleToName(&n, &t_ih);
2962 (void)afs_snprintf(newpath, sizeof newpath, "%s" OS_DIRSEP "%s", dir_name,
2964 fd = afs_open(newpath, O_RDWR, 0);
2966 Log("1 namei_ConvertROtoRWvolume: could not open LargeIndex file: %s\n", newpath);
2970 SetOGM(fd, ih->ih_vid, 3);
2973 MoveFileEx(n.n_path, newpath, MOVEFILE_WRITE_THROUGH);
2975 link(newpath, n.n_path);
2982 h.volumeInfo_hi = h.id;
2983 h.smallVnodeIndex_hi = h.id;
2984 h.largeVnodeIndex_hi = h.id;
2985 h.linkTable_hi = h.id;
2987 if (VCreateVolumeDiskHeader(&h, partP)) {
2988 Log("1 namei_ConvertROtoRWvolume: Couldn't write header for RW-volume %lu\n",
2989 afs_printable_uint32_lu(h.id));
2994 if (VDestroyVolumeDiskHeader(partP, volumeId, h.parent)) {
2995 Log("1 namei_ConvertROtoRWvolume: Couldn't unlink header for RO-volume %lu\n",
2996 afs_printable_uint32_lu(volumeId));
2999 FSYNC_VolOp(volumeId, pname, FSYNC_VOL_DONE, 0, NULL);
3000 FSYNC_VolOp(h.id, pname, FSYNC_VOL_ON, 0, NULL);
3003 # ifdef AFS_DEMAND_ATTACH_FS
3005 VUnlockVolumeById(volumeId, partP);
3007 # endif /* AFS_DEMAND_ATTACH_FS */
3015 * returns a static string used to print either 32 or 64 bit inode numbers.
3018 PrintInode(char *s, Inode ino)
3020 static afs_ino_str_t result;
3024 (void)afs_snprintf(s, sizeof(afs_ino_str_t), "%" AFS_UINT64_FMT, (afs_uintmax_t) ino);
3031 /* Routines to facilitate removing zero link count files. */
3032 #define MAX_ZLC_NAMES 32
3033 #define MAX_ZLC_NAMELEN 16
3034 typedef struct zlcList_s {
3035 struct zlcList_s *zlc_next;
3037 char zlc_names[MAX_ZLC_NAMES][MAX_ZLC_NAMELEN];
3040 static zlcList_t *zlcAnchor = NULL;
3041 static zlcList_t *zlcCur = NULL;
3044 AddToZLCDeleteList(char dir, char *name)
3046 osi_Assert(strlen(name) <= MAX_ZLC_NAMELEN - 3);
3048 if (!zlcCur || zlcCur->zlc_n >= MAX_ZLC_NAMES) {
3049 if (zlcCur && zlcCur->zlc_next)
3050 zlcCur = zlcCur->zlc_next;
3052 zlcList_t *tmp = (zlcList_t *) malloc(sizeof(zlcList_t));
3058 zlcCur->zlc_next = tmp;
3062 zlcCur->zlc_next = NULL;
3067 (void)sprintf(zlcCur->zlc_names[zlcCur->zlc_n], "%c\\%s", dir, name);
3069 (void)sprintf(zlcCur->zlc_names[zlcCur->zlc_n], "%s", name);
3075 DeleteZLCFiles(char *path)
3081 for (z = zlcAnchor; z; z = z->zlc_next) {
3082 for (i = 0; i < z->zlc_n; i++) {
3084 (void)sprintf(fname, "%s\\%s", path, z->zlc_names[i]);
3086 (void)sprintf(fname, "%s", z->zlc_names[i]);
3087 if (namei_unlink(fname) < 0) {
3088 Log("ZLC: Can't unlink %s, dos error = %d\n", fname,
3092 z->zlc_n = 0; /* Can reuse space. */
3105 tnext = i->zlc_next;
3109 zlcCur = zlcAnchor = NULL;
3113 #endif /* AFS_NAMEI_ENV */