1998-02-27 21:21:19 +03:00
|
|
|
/* $NetBSD: opendir.c,v 1.16 1998/02/27 18:21:19 perry Exp $ */
|
1995-02-25 11:50:56 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-07-27 09:26:23 +04:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-13 23:45:36 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1995-02-25 11:50:56 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)opendir.c 8.7 (Berkeley) 12/10/94";
|
|
|
|
#else
|
1998-02-27 21:21:19 +03:00
|
|
|
__RCSID("$NetBSD: opendir.c,v 1.16 1998/02/27 18:21:19 perry Exp $");
|
1995-02-25 11:50:56 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#include "namespace.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/param.h>
|
1994-12-28 06:06:05 +03:00
|
|
|
#include <sys/mount.h>
|
1994-12-28 06:22:37 +03:00
|
|
|
#include <sys/stat.h>
|
1994-12-28 06:06:05 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <dirent.h>
|
1994-12-28 06:06:05 +03:00
|
|
|
#include <errno.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
1996-12-20 23:44:55 +03:00
|
|
|
#include <string.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(opendir,_opendir);
|
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-12-28 06:06:05 +03:00
|
|
|
* Open a directory.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
DIR *
|
|
|
|
opendir(name)
|
|
|
|
const char *name;
|
|
|
|
{
|
|
|
|
|
1994-12-28 06:06:05 +03:00
|
|
|
return (__opendir2(name, DTF_HIDEW|DTF_NODUP));
|
|
|
|
}
|
|
|
|
|
|
|
|
DIR *
|
|
|
|
__opendir2(name, flags)
|
|
|
|
const char *name;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
DIR *dirp;
|
|
|
|
int fd;
|
1994-12-28 06:22:37 +03:00
|
|
|
struct stat sb;
|
1994-12-28 06:06:05 +03:00
|
|
|
int pagesz;
|
|
|
|
int incr;
|
1997-10-10 06:18:18 +04:00
|
|
|
int unionstack, nfsdir;
|
|
|
|
struct statfs sfb;
|
1994-12-28 06:06:05 +03:00
|
|
|
|
1995-06-12 23:38:02 +04:00
|
|
|
if ((fd = open(name, O_RDONLY | O_NONBLOCK)) == -1)
|
1994-12-28 06:06:05 +03:00
|
|
|
return (NULL);
|
1994-12-28 06:22:37 +03:00
|
|
|
if (fstat(fd, &sb) || !S_ISDIR(sb.st_mode)) {
|
1994-07-27 18:37:39 +04:00
|
|
|
errno = ENOTDIR;
|
1994-12-28 06:06:05 +03:00
|
|
|
close(fd);
|
|
|
|
return (NULL);
|
1994-07-27 18:37:39 +04:00
|
|
|
}
|
1994-07-27 09:26:23 +04:00
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1 ||
|
1993-03-21 12:45:37 +03:00
|
|
|
(dirp = (DIR *)malloc(sizeof(DIR))) == NULL) {
|
1994-12-28 06:06:05 +03:00
|
|
|
close(fd);
|
|
|
|
return (NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-12-28 06:06:05 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-09-15 14:48:51 +04:00
|
|
|
* If the machine's page size is an exact multiple of DIRBLKSIZ,
|
|
|
|
* use a buffer that is cluster boundary aligned.
|
1993-03-21 12:45:37 +03:00
|
|
|
* Hopefully this can be a big win someday by allowing page trades
|
|
|
|
* to user space to be done by getdirentries()
|
|
|
|
*/
|
1994-09-15 14:48:51 +04:00
|
|
|
if (((pagesz = getpagesize()) % DIRBLKSIZ) == 0)
|
1994-12-28 06:06:05 +03:00
|
|
|
incr = pagesz;
|
1994-09-15 14:48:51 +04:00
|
|
|
else
|
1994-12-28 06:06:05 +03:00
|
|
|
incr = DIRBLKSIZ;
|
1994-09-15 14:48:51 +04:00
|
|
|
|
1994-12-28 06:06:05 +03:00
|
|
|
/*
|
|
|
|
* Determine whether this directory is the top of a union stack.
|
|
|
|
*/
|
|
|
|
|
1997-10-10 06:18:18 +04:00
|
|
|
if (fstatfs(fd, &sfb) < 0) {
|
|
|
|
free(dirp);
|
|
|
|
close(fd);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & DTF_NODUP)
|
1997-02-25 16:16:39 +03:00
|
|
|
unionstack = !(strncmp(sfb.f_fstypename, MOUNT_UNION,
|
|
|
|
MFSNAMELEN)) || (sfb.f_flags & MNT_UNION);
|
1997-10-10 06:18:18 +04:00
|
|
|
else
|
1994-12-28 06:06:05 +03:00
|
|
|
unionstack = 0;
|
|
|
|
|
1997-10-10 06:18:18 +04:00
|
|
|
nfsdir = !(strncmp(sfb.f_fstypename, MOUNT_NFS, MFSNAMELEN));
|
|
|
|
|
|
|
|
if (unionstack || nfsdir) {
|
1998-02-27 21:21:19 +03:00
|
|
|
size_t len;
|
|
|
|
size_t space;
|
1997-10-10 06:18:18 +04:00
|
|
|
char *buf;
|
|
|
|
char *ddptr;
|
1994-12-28 06:06:05 +03:00
|
|
|
char *ddeptr;
|
|
|
|
int n;
|
|
|
|
struct dirent **dpv;
|
|
|
|
|
|
|
|
/*
|
1997-10-10 06:18:18 +04:00
|
|
|
* The strategy here for directories on top of a union stack
|
|
|
|
* is to read all the directory entries into a buffer, sort
|
|
|
|
* the buffer, and remove duplicate entries by setting the
|
|
|
|
* inode number to zero.
|
|
|
|
*
|
|
|
|
* For directories on an NFS mounted filesystem, we try
|
|
|
|
* to get a consistent snapshot by trying until we have
|
|
|
|
* successfully read all of the directory without errors
|
|
|
|
* (i.e. 'bad cookie' errors from the server because
|
|
|
|
* the directory was modified). These errors should not
|
|
|
|
* happen often, but need to be dealt with.
|
1994-12-28 06:06:05 +03:00
|
|
|
*/
|
1997-10-10 06:18:18 +04:00
|
|
|
retry:
|
|
|
|
len = 0;
|
|
|
|
space = 0;
|
|
|
|
buf = 0;
|
|
|
|
ddptr = 0;
|
1994-12-28 06:06:05 +03:00
|
|
|
|
|
|
|
do {
|
|
|
|
/*
|
|
|
|
* Always make at least DIRBLKSIZ bytes
|
|
|
|
* available to getdirentries
|
|
|
|
*/
|
|
|
|
if (space < DIRBLKSIZ) {
|
|
|
|
space += incr;
|
|
|
|
len += incr;
|
|
|
|
buf = realloc(buf, len);
|
|
|
|
if (buf == NULL) {
|
|
|
|
free(dirp);
|
|
|
|
close(fd);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
ddptr = buf + (len - space);
|
|
|
|
}
|
|
|
|
|
1998-02-27 21:21:19 +03:00
|
|
|
dirp->dd_seek = lseek(fd, (off_t)0, SEEK_CUR);
|
1997-10-10 06:18:18 +04:00
|
|
|
n = getdents(fd, ddptr, space);
|
|
|
|
/*
|
|
|
|
* For NFS: EINVAL means a bad cookie error
|
|
|
|
* from the server. Keep trying to get a
|
|
|
|
* consistent view, in this case this means
|
|
|
|
* starting all over again.
|
|
|
|
*/
|
|
|
|
if (n == -1 && errno == EINVAL && nfsdir) {
|
|
|
|
free(buf);
|
1998-02-27 21:21:19 +03:00
|
|
|
lseek(fd, (off_t)0, SEEK_SET);
|
1997-10-10 06:18:18 +04:00
|
|
|
goto retry;
|
|
|
|
}
|
1994-12-28 06:06:05 +03:00
|
|
|
if (n > 0) {
|
|
|
|
ddptr += n;
|
|
|
|
space -= n;
|
|
|
|
}
|
|
|
|
} while (n > 0);
|
|
|
|
|
|
|
|
ddeptr = ddptr;
|
|
|
|
flags |= __DTF_READALL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Re-open the directory.
|
|
|
|
* This has the effect of rewinding back to the
|
|
|
|
* top of the union stack and is needed by
|
|
|
|
* programs which plan to fchdir to a descriptor
|
|
|
|
* which has also been read -- see fts.c.
|
|
|
|
*/
|
|
|
|
if (flags & DTF_REWIND) {
|
|
|
|
(void) close(fd);
|
|
|
|
if ((fd = open(name, O_RDONLY)) == -1) {
|
|
|
|
free(buf);
|
|
|
|
free(dirp);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There is now a buffer full of (possibly) duplicate
|
|
|
|
* names.
|
|
|
|
*/
|
|
|
|
dirp->dd_buf = buf;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Go round this loop twice...
|
|
|
|
*
|
|
|
|
* Scan through the buffer, counting entries.
|
|
|
|
* On the second pass, save pointers to each one.
|
|
|
|
* Then sort the pointers and remove duplicate names.
|
|
|
|
*/
|
1997-10-10 06:18:18 +04:00
|
|
|
if (!nfsdir) {
|
|
|
|
for (dpv = 0;;) {
|
|
|
|
for (n = 0, ddptr = buf; ddptr < ddeptr;) {
|
|
|
|
struct dirent *dp;
|
1994-12-28 06:06:05 +03:00
|
|
|
|
1997-10-10 06:18:18 +04:00
|
|
|
dp = (struct dirent *) ddptr;
|
|
|
|
if ((long)dp & 03)
|
|
|
|
break;
|
|
|
|
if ((dp->d_reclen <= 0) ||
|
|
|
|
(dp->d_reclen > (ddeptr + 1 - ddptr)))
|
|
|
|
break;
|
|
|
|
ddptr += dp->d_reclen;
|
|
|
|
if (dp->d_fileno) {
|
|
|
|
if (dpv)
|
|
|
|
dpv[n] = dp;
|
|
|
|
n++;
|
|
|
|
}
|
1994-12-28 06:06:05 +03:00
|
|
|
}
|
|
|
|
|
1997-10-10 06:18:18 +04:00
|
|
|
if (dpv) {
|
|
|
|
struct dirent *xp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This sort must be stable.
|
|
|
|
*/
|
1998-02-27 21:21:19 +03:00
|
|
|
mergesort(dpv, (size_t)n, sizeof(*dpv),
|
1997-10-10 06:18:18 +04:00
|
|
|
alphasort);
|
|
|
|
|
|
|
|
dpv[n] = NULL;
|
|
|
|
xp = NULL;
|
1994-12-28 06:06:05 +03:00
|
|
|
|
1997-10-10 06:18:18 +04:00
|
|
|
/*
|
|
|
|
* Scan through the buffer in sort
|
|
|
|
* order, zapping the inode number
|
|
|
|
* of any duplicate names.
|
|
|
|
*/
|
|
|
|
for (n = 0; dpv[n]; n++) {
|
|
|
|
struct dirent *dp = dpv[n];
|
|
|
|
|
|
|
|
if ((xp == NULL) ||
|
|
|
|
strcmp(dp->d_name,
|
|
|
|
xp->d_name))
|
|
|
|
xp = dp;
|
|
|
|
else
|
|
|
|
dp->d_fileno = 0;
|
|
|
|
if (dp->d_type == DT_WHT &&
|
|
|
|
(flags & DTF_HIDEW))
|
|
|
|
dp->d_fileno = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(dpv);
|
1994-12-28 06:06:05 +03:00
|
|
|
break;
|
1997-10-10 06:18:18 +04:00
|
|
|
} else {
|
|
|
|
dpv = malloc((n+1) * sizeof(struct dirent *));
|
|
|
|
if (dpv == NULL)
|
|
|
|
break;
|
|
|
|
}
|
1994-12-28 06:06:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dirp->dd_len = len;
|
|
|
|
dirp->dd_size = ddptr - dirp->dd_buf;
|
|
|
|
} else {
|
|
|
|
dirp->dd_len = incr;
|
1998-02-27 21:21:19 +03:00
|
|
|
dirp->dd_buf = malloc((size_t)dirp->dd_len);
|
1994-12-28 06:06:05 +03:00
|
|
|
if (dirp->dd_buf == NULL) {
|
|
|
|
free(dirp);
|
|
|
|
close (fd);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
dirp->dd_seek = 0;
|
|
|
|
flags &= ~DTF_REWIND;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
dirp->dd_loc = 0;
|
1994-12-28 06:06:05 +03:00
|
|
|
dirp->dd_fd = fd;
|
|
|
|
dirp->dd_flags = flags;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Set up seek point for rewinddir.
|
|
|
|
*/
|
1994-07-27 09:26:23 +04:00
|
|
|
dirp->dd_rewind = telldir(dirp);
|
1994-12-28 06:06:05 +03:00
|
|
|
|
|
|
|
return (dirp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|