From: Daniel Palmer <daniel@thingy.jp>
To: w@1wt.eu, linux@weissschuh.net
Cc: linux-kernel@vger.kernel.org, Daniel Palmer <daniel@thingy.jp>
Subject: [PATCH] tools/nolibc: Add dirfd()
Date: Fri, 28 Aug 2026 20:22:04 +0900 [thread overview]
Message-ID: <20260828112204.104111-1-daniel@thingy.jp> (raw)
This is useful for things like fstatat() on children of directory
opened with opendir().
At the same time use it to replace the two places that are converting
the DIR point back into an fd.
Signed-off-by: Daniel Palmer <daniel@thingy.jp>
---
tools/include/nolibc/dirent.h | 38 +++++++++++++++++++++++++++--------
1 file changed, 30 insertions(+), 8 deletions(-)
diff --git a/tools/include/nolibc/dirent.h b/tools/include/nolibc/dirent.h
index 4e02ef25e72d..ba229b215a0b 100644
--- a/tools/include/nolibc/dirent.h
+++ b/tools/include/nolibc/dirent.h
@@ -27,6 +27,18 @@ typedef struct {
char dummy[1];
} DIR;
+/* Internal dirfd() that does not set errno */
+static __attribute__((unused))
+int nolibc_dirfd(DIR *dirp)
+{
+ intptr_t i = (intptr_t)dirp;
+
+ if (i >= 0)
+ return -1;
+
+ return ~i;
+}
+
static __attribute__((unused))
DIR *fdopendir(int fd)
{
@@ -49,15 +61,27 @@ DIR *opendir(const char *name)
}
static __attribute__((unused))
-int closedir(DIR *dirp)
+int dirfd(DIR *dirp)
{
- intptr_t i = (intptr_t)dirp;
+ int fd = nolibc_dirfd(dirp);
- if (i >= 0) {
+ if (fd < 0) {
SET_ERRNO(EBADF);
return -1;
}
- return close(~i);
+
+ return fd;
+}
+
+static __attribute__((unused))
+int closedir(DIR *dirp)
+{
+ int fd = dirfd(dirp);
+
+ if (fd < 0)
+ return -1;
+
+ return close(fd);
}
static __attribute__((unused))
@@ -65,14 +89,12 @@ int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result)
{
char buf[sizeof(struct linux_dirent64) + NAME_MAX + 1] __nolibc_aligned_as(struct linux_dirent64);
struct linux_dirent64 *ldir = (void *)buf;
- intptr_t i = (intptr_t)dirp;
int fd, ret;
- if (i >= 0)
+ fd = nolibc_dirfd(dirp);
+ if (fd < 0)
return EBADF;
- fd = ~i;
-
ret = _sys_getdents64(fd, ldir, sizeof(buf));
if (ret < 0)
return -ret;
--
2.53.0
next reply other threads:[~2026-08-28 11:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-28 11:22 Daniel Palmer [this message]
2026-08-28 12:15 ` Thomas Weißschuh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260828112204.104111-1-daniel@thingy.jp \
--to=daniel@thingy.jp \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@weissschuh.net \
--cc=w@1wt.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®