aboutsummaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2025-06-23 13:02:53 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2025-06-23 13:03:10 +0000
commit0a5b763d98b921f921243525ff25a70bbe00cfaa (patch)
tree2a1ddbaedc905fa4e5e4752fc606d234cfbf1907 /lib/libc
parentb47a6c93e262f4245492c947af8a600a4b1fe308 (diff)
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/Makefile.inc4
-rw-r--r--lib/libc/gen/Symbol.map2
-rw-r--r--lib/libc/gen/scandir.328
-rw-r--r--lib/libc/gen/scandir.c14
-rw-r--r--lib/libc/tests/gen/scandir_blocks_test.c12
-rw-r--r--lib/libc/tests/gen/scandir_test.c12
6 files changed, 40 insertions, 32 deletions
diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc
index f2f5afbb24d8..ad13aaa65621 100644
--- a/lib/libc/gen/Makefile.inc
+++ b/lib/libc/gen/Makefile.inc
@@ -499,8 +499,8 @@ MLINKS+=rand48.3 _rand48.3 \
MLINKS+=rtld_get_var.3 \
rtld_set_var.3
MLINKS+=scandir.3 alphasort.3 \
- scandir.3 fscandir.3 \
- scandir.3 fscandir_b.3 \
+ scandir.3 fdscandir.3 \
+ scandir.3 fdscandir_b.3 \
scandir.3 scandir_b.3 \
scandir.3 scandirat.3 \
scandir.3 scandirat_b.3 \
diff --git a/lib/libc/gen/Symbol.map b/lib/libc/gen/Symbol.map
index e7483d3e6ec2..8faecf4b3048 100644
--- a/lib/libc/gen/Symbol.map
+++ b/lib/libc/gen/Symbol.map
@@ -460,6 +460,8 @@ FBSD_1.8 {
execvpe;
fscandir;
fscandir_b;
+ fdscandir;
+ fdscandir_b;
fts_open_b;
glob_b;
psiginfo;
diff --git a/lib/libc/gen/scandir.3 b/lib/libc/gen/scandir.3
index 21df9316d511..9ced9fa4ef9d 100644
--- a/lib/libc/gen/scandir.3
+++ b/lib/libc/gen/scandir.3
@@ -30,11 +30,11 @@
.Os
.Sh NAME
.Nm scandir ,
-.Nm fscandir ,
+.Nm fdscandir ,
.Nm scandirat ,
.Nm scandir_b ,
-.Nm fscandir_b ,
-.Nm fscandirat_b ,
+.Nm fdscandir_b ,
+.Nm fdscandirat_b ,
.Nm alphasort ,
.Nm versionsort
.Nd scan a directory
@@ -50,7 +50,7 @@
.Fa "int \*(lp*compar\*(rp\*(lpconst struct dirent **, const struct dirent **\*(rp"
.Fc
.Ft int
-.Fo fscandir
+.Fo fdscandir
.Fa "int dirfd"
.Fa "struct dirent ***namelist"
.Fa "int \*(lp*select\*(rp\*(lpconst struct dirent *\*(rp"
@@ -72,7 +72,7 @@
.Fa "int \*(lp^compar\*(rp\*(lpconst struct dirent **, const struct dirent **\*(rp"
.Fc
.Ft int
-.Fo fscandir_b
+.Fo fdscandir_b
.Fa "int dirfd"
.Fa "struct dirent ***namelist"
.Fa "int \*(lp^select\*(rp\*(lpconst struct dirent *\*(rp"
@@ -144,7 +144,7 @@ The memory allocated for the array can be deallocated with
by freeing each pointer in the array and then the array itself.
.Pp
The
-.Fn fscandir
+.Fn fdscandir
function is similar to
.Fn scandir ,
but takes a file descriptor referencing a directory instead of a path.
@@ -185,12 +185,12 @@ for additional details.
.Pp
The
.Fn scandir_b ,
-.Fn fscandir_b ,
+.Fn fdscandir_b ,
and
.Fn scandirat_b
functions behave in the same way as
.Fn scandir ,
-.Fn fscandir ,
+.Fn fdscandir ,
and
.Fn scandirat ,
respectively,
@@ -201,10 +201,10 @@ rather than
.Sh DIAGNOSTICS
The
.Fn scandir ,
-.Fn fscandir ,
+.Fn fdscandir ,
.Fn scandirat ,
.Fn scandir_b ,
-.Fn fscandir_b ,
+.Fn fdscandir_b ,
and
.Fn scandirat_b
functions return the number of directory entries found on succes.
@@ -236,9 +236,9 @@ and
.Fn versionsort
functions are GNU extensions and conform to no standard.
The
-.Fn fscandir ,
+.Fn fdscandir ,
.Fn scandir_b ,
-.Fn fscandir_b ,
+.Fn fdscandir_b ,
and
.Fn scandirat_b
functions are
@@ -262,8 +262,8 @@ and
functions were added in
.Fx 13.2 .
The
-.Fn fscandir ,
-.Fn fscandir_b ,
+.Fn fdscandir ,
+.Fn fdscandir_b ,
and
.Fn scandirat_b
functions were added in
diff --git a/lib/libc/gen/scandir.c b/lib/libc/gen/scandir.c
index d8033a985862..134c88713d39 100644
--- a/lib/libc/gen/scandir.c
+++ b/lib/libc/gen/scandir.c
@@ -159,10 +159,10 @@ scandir(const char *dirname, struct dirent ***namelist,
int
#ifdef I_AM_SCANDIR_B
-fscandir_b(int dirfd, struct dirent ***namelist, select_block select,
+fdscandir_b(int dirfd, struct dirent ***namelist, select_block select,
dcomp_block dcomp)
#else
-fscandir(int dirfd, struct dirent ***namelist,
+fdscandir(int dirfd, struct dirent ***namelist,
int (*select)(const struct dirent *), int (*dcomp)(const struct dirent **,
const struct dirent **))
#endif
@@ -203,9 +203,9 @@ scandirat(int dirfd, const char *dirname, struct dirent ***namelist,
return (-1);
ret =
#ifdef I_AM_SCANDIR_B
- fscandir_b
+ fdscandir_b
#else
- fscandir
+ fdscandir
#endif
(fd, namelist, select, dcomp);
serrno = errno;
@@ -242,3 +242,9 @@ scandir_thunk_cmp(const void *p1, const void *p2, void *thunk)
return (dc((const struct dirent **)p1, (const struct dirent **)p2));
}
#endif
+
+#ifdef I_AM_SCANDIR_B
+__weak_reference(fdscandir_b, fscandir_b);
+#else
+__weak_reference(fdscandir, fscandir);
+#endif
diff --git a/lib/libc/tests/gen/scandir_blocks_test.c b/lib/libc/tests/gen/scandir_blocks_test.c
index 28aeef4e7d4c..b94270bc410e 100644
--- a/lib/libc/tests/gen/scandir_blocks_test.c
+++ b/lib/libc/tests/gen/scandir_blocks_test.c
@@ -57,19 +57,19 @@ ATF_TC_BODY(scandir_b_test, tc)
free(namelist);
}
-ATF_TC(fscandir_b_test);
-ATF_TC_HEAD(fscandir_b_test, tc)
+ATF_TC(fdscandir_b_test);
+ATF_TC_HEAD(fdscandir_b_test, tc)
{
- atf_tc_set_md_var(tc, "descr", "Test fscandir_b()");
+ atf_tc_set_md_var(tc, "descr", "Test fdscandir_b()");
}
-ATF_TC_BODY(fscandir_b_test, tc)
+ATF_TC_BODY(fdscandir_b_test, tc)
{
struct dirent **namelist = NULL;
int fd, i, ret;
scandir_blocks_prepare(tc);
ATF_REQUIRE((fd = open("dir", O_DIRECTORY | O_RDONLY)) >= 0);
- ret = fscandir_b(fd, &namelist,
+ ret = fdscandir_b(fd, &namelist,
^(const struct dirent *ent) {
return (strcmp(ent->d_name, "skip") != 0);
},
@@ -112,7 +112,7 @@ ATF_TC_BODY(scandirat_b_test, tc)
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, scandir_b_test);
- ATF_TP_ADD_TC(tp, fscandir_b_test);
+ ATF_TP_ADD_TC(tp, fdscandir_b_test);
ATF_TP_ADD_TC(tp, scandirat_b_test);
return (atf_no_error());
}
diff --git a/lib/libc/tests/gen/scandir_test.c b/lib/libc/tests/gen/scandir_test.c
index dcd73fe94df5..9a9940aca881 100644
--- a/lib/libc/tests/gen/scandir_test.c
+++ b/lib/libc/tests/gen/scandir_test.c
@@ -63,19 +63,19 @@ ATF_TC_BODY(scandir_test, tc)
free(namelist);
}
-ATF_TC(fscandir_test);
-ATF_TC_HEAD(fscandir_test, tc)
+ATF_TC(fdscandir_test);
+ATF_TC_HEAD(fdscandir_test, tc)
{
- atf_tc_set_md_var(tc, "descr", "Test fscandir()");
+ atf_tc_set_md_var(tc, "descr", "Test fdscandir()");
}
-ATF_TC_BODY(fscandir_test, tc)
+ATF_TC_BODY(fdscandir_test, tc)
{
struct dirent **namelist = NULL;
int fd, i, ret;
scandir_prepare(tc);
ATF_REQUIRE((fd = open("dir", O_DIRECTORY | O_RDONLY)) >= 0);
- ret = fscandir(fd, &namelist, scandir_select, scandir_compare);
+ ret = fdscandir(fd, &namelist, scandir_select, scandir_compare);
scandir_verify(tc, ret, namelist);
for (i = 0; i < ret; i++)
free(namelist[i]);
@@ -127,7 +127,7 @@ ATF_TC_BODY(scandir_none, tc)
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, scandir_test);
- ATF_TP_ADD_TC(tp, fscandir_test);
+ ATF_TP_ADD_TC(tp, fdscandir_test);
ATF_TP_ADD_TC(tp, scandirat_test);
ATF_TP_ADD_TC(tp, scandir_none);
return (atf_no_error());