2000-02-18 03:39:52 +08:00
|
|
|
#ifndef HAVE_OPENDIR
|
|
|
|
|
2019-01-31 18:42:29 +08:00
|
|
|
/*-
|
2017-11-21 03:49:47 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2019-01-31 18:42:29 +08:00
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2000-02-18 03:39:52 +08: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.
|
2017-03-01 07:42:47 +08:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2000-02-18 03:39:52 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-07-04 01:31:45 +08:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__SCCSID("@(#)scandir.c 8.3 (Berkeley) 1/2/94");
|
2002-02-01 09:32:19 +08:00
|
|
|
__FBSDID("$FreeBSD$");
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan the directory dirname calling select to make a list of selected
|
|
|
|
* directory entries then sort using qsort and compare routine dcomp.
|
|
|
|
* Returns the number of entries and a pointer to a list of pointers to
|
|
|
|
* struct dirent (through namelist). Returns -1 if there were any errors.
|
|
|
|
*/
|
|
|
|
|
2013-04-02 19:38:12 +08:00
|
|
|
#include <stddef.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2002-06-06 04:58:59 +08:00
|
|
|
#include <sys/lock.h>
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The DIRSIZ macro gives the minimum record length which will hold
|
|
|
|
* the directory entry. This requires the amount of space in struct dirent
|
|
|
|
* without the d_name field, plus enough space for the name with a terminating
|
|
|
|
* null byte (dp->d_namlen+1), rounded up to a 4 byte boundary.
|
|
|
|
*/
|
|
|
|
#undef DIRSIZ
|
2000-08-29 04:06:54 +08:00
|
|
|
#ifdef _DIRENT_HAVE_D_NAMLEN
|
2000-02-18 03:39:52 +08:00
|
|
|
#define DIRSIZ(dp) \
|
2013-04-02 19:38:12 +08:00
|
|
|
(offsetof (struct dirent, d_name) + (((dp)->d_namlen+1 + 3) &~ 3))
|
2000-08-29 04:06:54 +08:00
|
|
|
#else
|
|
|
|
#define DIRSIZ(dp) \
|
2013-04-02 19:38:12 +08:00
|
|
|
(offsetof (struct dirent, d_name) + ((strlen((dp)->d_name)+1 + 3) &~ 3))
|
2000-08-29 04:06:54 +08:00
|
|
|
#endif
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
int
|
2002-02-01 09:32:19 +08:00
|
|
|
scandir(const char *dirname, struct dirent ***namelist,
|
|
|
|
int (*select)(const struct dirent *), int (*dcomp)(const struct dirent **,
|
|
|
|
const struct dirent **))
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2008-03-17 03:08:53 +08:00
|
|
|
register struct dirent *d, *p, **names = NULL;
|
|
|
|
register size_t arraysz, numitems;
|
2000-02-18 03:39:52 +08:00
|
|
|
DIR *dirp;
|
|
|
|
|
|
|
|
if ((dirp = opendir(dirname)) == NULL)
|
|
|
|
return(-1);
|
2002-06-06 04:58:59 +08:00
|
|
|
#ifdef HAVE_DD_LOCK
|
|
|
|
__lock_acquire_recursive(dirp->dd_lock);
|
|
|
|
#endif
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2008-03-17 03:08:53 +08:00
|
|
|
numitems = 0;
|
|
|
|
arraysz = 32; /* initial estimate of the array size */
|
2000-02-18 03:39:52 +08:00
|
|
|
names = (struct dirent **)malloc(arraysz * sizeof(struct dirent *));
|
2008-11-25 04:42:33 +08:00
|
|
|
if (names == NULL)
|
2008-03-17 03:08:53 +08:00
|
|
|
goto fail;
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
while ((d = readdir(dirp)) != NULL) {
|
|
|
|
if (select != NULL && !(*select)(d))
|
|
|
|
continue; /* just selected names */
|
|
|
|
/*
|
|
|
|
* Make a minimum size copy of the data
|
|
|
|
*/
|
|
|
|
p = (struct dirent *)malloc(DIRSIZ(d));
|
2008-11-25 04:42:33 +08:00
|
|
|
if (p == NULL)
|
2008-03-17 03:08:53 +08:00
|
|
|
goto fail;
|
2000-02-18 03:39:52 +08:00
|
|
|
p->d_ino = d->d_ino;
|
|
|
|
p->d_reclen = d->d_reclen;
|
2000-08-29 04:06:54 +08:00
|
|
|
#ifdef _DIRENT_HAVE_D_NAMLEN
|
2000-02-18 03:39:52 +08:00
|
|
|
p->d_namlen = d->d_namlen;
|
|
|
|
bcopy(d->d_name, p->d_name, p->d_namlen + 1);
|
2000-08-29 04:06:54 +08:00
|
|
|
#else
|
|
|
|
strcpy(p->d_name, d->d_name);
|
|
|
|
#endif
|
2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
* Check to make sure the array has space left and
|
|
|
|
* realloc the maximum size.
|
|
|
|
*/
|
2008-03-17 03:08:53 +08:00
|
|
|
if (numitems >= arraysz) {
|
|
|
|
struct dirent **names2;
|
|
|
|
|
|
|
|
names2 = reallocarray(names, arraysz,
|
|
|
|
2 * sizeof(struct dirent *));
|
|
|
|
if (names2 == NULL) {
|
|
|
|
free(p);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
names = names2;
|
|
|
|
arraysz *= 2;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
2008-03-17 03:08:53 +08:00
|
|
|
names[numitems++] = p;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
closedir(dirp);
|
2008-03-17 03:08:53 +08:00
|
|
|
if (numitems && dcomp != NULL)
|
|
|
|
qsort(names, numitems, sizeof(struct dirent *), (void *)dcomp);
|
|
|
|
*namelist = names;
|
|
|
|
#ifdef HAVE_DD_LOCK
|
|
|
|
__lock_release_recursive(dirp->dd_lock);
|
|
|
|
#endif
|
|
|
|
return (numitems);
|
2008-11-25 04:42:33 +08:00
|
|
|
|
2008-03-17 03:08:53 +08:00
|
|
|
fail:
|
|
|
|
while (numitems > 0)
|
|
|
|
free(names[--numitems]);
|
|
|
|
free(names);
|
|
|
|
closedir(dirp);
|
2002-06-06 04:58:59 +08:00
|
|
|
#ifdef HAVE_DD_LOCK
|
|
|
|
__lock_release_recursive(dirp->dd_lock);
|
|
|
|
#endif
|
2008-03-17 03:08:53 +08:00
|
|
|
return (-1);
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Alphabetic order comparison routine for those who want it.
|
|
|
|
*/
|
|
|
|
int
|
2017-12-04 11:43:30 +08:00
|
|
|
alphasort (const struct dirent **d1,
|
2003-06-07 03:57:51 +08:00
|
|
|
const struct dirent **d2)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2000-08-29 04:06:54 +08:00
|
|
|
return(strcmp((*d1)->d_name, (*d2)->d_name));
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ! HAVE_OPENDIR */
|