FreeBSD Bugzilla – Attachment 232470 Details for
Bug 262038
fts(3): Check for readdir(3) errors
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Check for readdir errors in fts
fts-Check-for-readdir-errors.patch (text/plain), 6.29 KB, created by
Mahmoud Abumandour
on 2022-03-15 11:10:52 UTC
(
hide
)
Description:
Check for readdir errors in fts
Filename:
MIME Type:
Creator:
Mahmoud Abumandour
Created:
2022-03-15 11:10:52 UTC
Size:
6.29 KB
patch
obsolete
>From b8196e463fdf03952cc27411d22cd48a3ded4702 Mon Sep 17 00:00:00 2001 >From: Mahmoud Abumandour <ma.mandourr@gmail.com> >Date: Wed, 9 Mar 2022 21:26:26 +0200 >Subject: [PATCH] fts: Check for readdir errors > >--- > lib/libc/gen/fts-compat.c | 31 ++++++++++++++++++++++++++++--- > lib/libc/gen/fts-compat11.c | 32 +++++++++++++++++++++++++++++--- > lib/libc/gen/fts.c | 33 ++++++++++++++++++++++++++++++--- > 3 files changed, 87 insertions(+), 9 deletions(-) > >diff --git a/lib/libc/gen/fts-compat.c b/lib/libc/gen/fts-compat.c >index ccdd4f15905b..b56b52cfdef1 100644 >--- a/lib/libc/gen/fts-compat.c >+++ b/lib/libc/gen/fts-compat.c >@@ -610,6 +610,19 @@ __fts_set_clientptr_44bsd(FTS *sp, void *clientptr) > sp->fts_clientptr = clientptr; > } > >+static struct dirent * >+fts_safe_readdir(DIR *dirp, int *readdir_errno) >+{ >+ struct dirent *ret; >+ >+ errno = 0; >+ if (!dirp) >+ return (NULL); >+ ret = freebsd11_readdir(dirp); >+ *readdir_errno = errno; >+ return (ret); >+} >+ > /* > * This is the tricky part -- do not casually change *anything* in here. The > * idea is to build the linked list of entries that are used by fts_children >@@ -634,7 +647,7 @@ fts_build(FTS *sp, int type) > DIR *dirp; > void *oldaddr; > int cderrno, descend, len, level, maxlen, nlinks, oflag, saved_errno, >- nostat, doadjust, dnamlen; >+ nostat, doadjust, dnamlen, readdir_errno; > char *cp; > > /* Set current node pointer. */ >@@ -738,8 +751,9 @@ fts_build(FTS *sp, int type) > > /* Read the directory, attaching each entry to the `link' pointer. */ > doadjust = 0; >+ readdir_errno = 0; > for (head = tail = NULL, nitems = 0; >- dirp && (dp = freebsd11_readdir(dirp));) { >+ (dp = fts_safe_readdir(dirp, &readdir_errno));) { > dnamlen = dp->d_namlen; > if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) > continue; >@@ -839,6 +853,16 @@ mem1: saved_errno = errno; > } > ++nitems; > } >+ >+ if (readdir_errno) { >+ cur->fts_errno = readdir_errno; >+ /* >+ * If we've not read any items yet, treat >+ * the error as if we can't access the dir. >+ */ >+ cur->fts_info = nitems ? FTS_ERR : FTS_DNR; >+ } >+ > if (dirp) > (void)closedir(dirp); > >@@ -877,7 +901,8 @@ mem1: saved_errno = errno; > > /* If didn't find anything, return NULL. */ > if (!nitems) { >- if (type == BREAD) >+ if (type == BREAD && >+ cur->fts_info != FTS_DNR && cur->fts_info != FTS_ERR) > cur->fts_info = FTS_DP; > return (NULL); > } >diff --git a/lib/libc/gen/fts-compat11.c b/lib/libc/gen/fts-compat11.c >index 288351d2008b..088a6dbe2333 100644 >--- a/lib/libc/gen/fts-compat11.c >+++ b/lib/libc/gen/fts-compat11.c >@@ -607,6 +607,19 @@ freebsd11_fts_set_clientptr(FTS11 *sp, void *clientptr) > sp->fts_clientptr = clientptr; > } > >+static struct dirent * >+fts_safe_readdir(DIR *dirp, int *readdir_errno) >+{ >+ struct dirent *ret; >+ >+ errno = 0; >+ if (!dirp) >+ return (NULL); >+ ret = freebsd11_readdir(dirp); >+ *readdir_errno = errno; >+ return (ret); >+} >+ > /* > * This is the tricky part -- do not casually change *anything* in here. The > * idea is to build the linked list of entries that are used by fts_children >@@ -630,7 +643,8 @@ fts_build(FTS11 *sp, int type) > DIR *dirp; > void *oldaddr; > char *cp; >- int cderrno, descend, oflag, saved_errno, nostat, doadjust; >+ int cderrno, descend, oflag, saved_errno, nostat, doadjust, >+ readdir_errno; > long level; > long nlinks; /* has to be signed because -1 is a magic value */ > size_t dnamlen, len, maxlen, nitems; >@@ -736,8 +750,9 @@ fts_build(FTS11 *sp, int type) > > /* Read the directory, attaching each entry to the `link' pointer. */ > doadjust = 0; >+ readdir_errno = 0; > for (head = tail = NULL, nitems = 0; >- dirp && (dp = freebsd11_readdir(dirp));) { >+ (dp = fts_safe_readdir(dirp, &readdir_errno));) { > dnamlen = dp->d_namlen; > if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) > continue; >@@ -823,6 +838,16 @@ mem1: saved_errno = errno; > } > ++nitems; > } >+ >+ if (readdir_errno) { >+ cur->fts_errno = readdir_errno; >+ /* >+ * If we've not read any items yet, treat >+ * the error as if we can't access the dir. >+ */ >+ cur->fts_info = nitems ? FTS_ERR : FTS_DNR; >+ } >+ > if (dirp) > (void)closedir(dirp); > >@@ -859,7 +884,8 @@ mem1: saved_errno = errno; > > /* If didn't find anything, return NULL. */ > if (!nitems) { >- if (type == BREAD) >+ if (type == BREAD && >+ cur->fts_info != FTS_DNR && cur->fts_info != FTS_ERR) > cur->fts_info = FTS_DP; > return (NULL); > } >diff --git a/lib/libc/gen/fts.c b/lib/libc/gen/fts.c >index d0705e123775..5186ae047a3b 100644 >--- a/lib/libc/gen/fts.c >+++ b/lib/libc/gen/fts.c >@@ -604,6 +604,19 @@ fts_set_clientptr(FTS *sp, void *clientptr) > sp->fts_clientptr = clientptr; > } > >+static struct dirent * >+fts_safe_readdir(DIR *dirp, int *readdir_errno) >+{ >+ struct dirent *ret; >+ >+ errno = 0; >+ if (!dirp) >+ return (NULL); >+ ret = readdir(dirp); >+ *readdir_errno = errno; >+ return (ret); >+} >+ > /* > * This is the tricky part -- do not casually change *anything* in here. The > * idea is to build the linked list of entries that are used by fts_children >@@ -627,7 +640,8 @@ fts_build(FTS *sp, int type) > DIR *dirp; > void *oldaddr; > char *cp; >- int cderrno, descend, oflag, saved_errno, nostat, doadjust; >+ int cderrno, descend, oflag, saved_errno, nostat, doadjust, >+ readdir_errno; > long level; > long nlinks; /* has to be signed because -1 is a magic value */ > size_t dnamlen, len, maxlen, nitems; >@@ -733,7 +747,9 @@ fts_build(FTS *sp, int type) > > /* Read the directory, attaching each entry to the `link' pointer. */ > doadjust = 0; >- for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) { >+ readdir_errno = 0; >+ for (head = tail = NULL, nitems = 0; >+ (dp = fts_safe_readdir(dirp, &readdir_errno));) { > dnamlen = dp->d_namlen; > if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) > continue; >@@ -819,6 +835,16 @@ mem1: saved_errno = errno; > } > ++nitems; > } >+ >+ if (readdir_errno) { >+ cur->fts_errno = readdir_errno; >+ /* >+ * If we've not read any items yet, treat >+ * the error as if we can't access the dir. >+ */ >+ cur->fts_info = nitems ? FTS_ERR : FTS_DNR; >+ } >+ > if (dirp) > (void)closedir(dirp); > >@@ -855,7 +881,8 @@ mem1: saved_errno = errno; > > /* If didn't find anything, return NULL. */ > if (!nitems) { >- if (type == BREAD) >+ if (type == BREAD && >+ cur->fts_info != FTS_DNR && cur->fts_info != FTS_ERR) > cur->fts_info = FTS_DP; > return (NULL); > } >-- >2.34.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 262038
:
231923
|
232355
|
232470
|
232739