NetBSD/lib/libc/gen/readdir.c

94 lines
3.2 KiB
C
Raw Normal View History

/* $NetBSD: readdir.c,v 1.15 2000/01/22 22:19:12 mycroft Exp $ */
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)
#if 0
static char sccsid[] = "@(#)readdir.c 8.3 (Berkeley) 9/29/94";
#else
__RCSID("$NetBSD: readdir.c,v 1.15 2000/01/22 22:19:12 mycroft Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
1993-03-21 12:45:37 +03:00
#include <sys/param.h>
1993-03-21 12:45:37 +03:00
#include <dirent.h>
#include <errno.h>
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#ifdef __weak_alias
__weak_alias(readdir,_readdir)
#endif
1993-03-21 12:45:37 +03:00
/*
* get next entry in a directory.
*/
struct dirent *
readdir(dirp)
1998-02-03 21:23:37 +03:00
DIR *dirp;
1993-03-21 12:45:37 +03:00
{
1998-02-03 21:23:37 +03:00
struct dirent *dp;
1993-03-21 12:45:37 +03:00
1993-03-21 12:45:37 +03:00
for (;;) {
1994-12-28 06:06:05 +03:00
if (dirp->dd_loc >= dirp->dd_size) {
if (dirp->dd_flags & __DTF_READALL)
return (NULL);
dirp->dd_loc = 0;
}
if (dirp->dd_loc == 0 && !(dirp->dd_flags & __DTF_READALL)) {
1998-02-27 21:21:19 +03:00
dirp->dd_seek = lseek(dirp->dd_fd, (off_t)0, SEEK_CUR);
dirp->dd_size = getdents(dirp->dd_fd,
1998-02-27 21:21:19 +03:00
dirp->dd_buf, (size_t)dirp->dd_len);
1993-03-21 12:45:37 +03:00
if (dirp->dd_size <= 0)
1994-12-28 06:06:05 +03:00
return (NULL);
1993-03-21 12:45:37 +03:00
}
1998-11-13 15:31:50 +03:00
dp = (struct dirent *)
(void *)(dirp->dd_buf + (size_t)dirp->dd_loc);
1994-10-19 06:13:42 +03:00
if ((long)dp & 03) /* bogus pointer check */
1994-12-28 06:06:05 +03:00
return (NULL);
1998-11-13 15:31:50 +03:00
/* d_reclen is unsigned; no need to compare it <= 0 */
if (dp->d_reclen > dirp->dd_len + 1 - dirp->dd_loc)
1994-12-28 06:06:05 +03:00
return (NULL);
1993-03-21 12:45:37 +03:00
dirp->dd_loc += dp->d_reclen;
if (dp->d_ino == 0)
continue;
1994-12-28 06:06:05 +03:00
if (dp->d_type == DT_WHT && (dirp->dd_flags & DTF_HIDEW))
continue;
1993-03-21 12:45:37 +03:00
return (dp);
}
}