From 80b4e5f3ef231702b24d44c33e8dceb70abb3a06 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Thu, 10 May 2012 15:23:51 -0700 Subject: [PATCH] Hurd: opendirat --- ChangeLog | 4 ++++ sysdeps/mach/hurd/opendir.c | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/ChangeLog b/ChangeLog index 739ee96..22b2605 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-05-10 Thomas Schwinge + + * sysdeps/mach/hurd/opendir.c (__opendirat): New function. + 2012-05-10 Samuel Thibault * hurd/hurdchdir.c (_hurd_change_directory_port_from_name): diff --git a/sysdeps/mach/hurd/opendir.c b/sysdeps/mach/hurd/opendir.c index c71cb18..1759444 100644 --- a/sysdeps/mach/hurd/opendir.c +++ b/sysdeps/mach/hurd/opendir.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "dirstream.h" @@ -67,10 +68,45 @@ _hurd_fd_opendir (struct hurd_fd *d) } +DIR * +internal_function +__opendirat (int dfd, const char *name) +{ + if (name[0] == '\0') + { + /* POSIX.1-1990 says an empty name gets ENOENT; + but `open' might like it fine. */ + __set_errno (ENOENT); + return NULL; + } + + int flags = O_RDONLY | O_NONBLOCK | O_DIRECTORY | O_CLOEXEC; + int fd; +#ifdef IS_IN_rtld + assert (dfd == AT_FDCWD); + fd = open_not_cancel_2 (name, flags); +#else + fd = openat_not_cancel_3 (dfd, name, flags); +#endif + if (fd < 0) + return NULL; + + /* Extract the pointer to the descriptor structure. */ + DIR *dirp = _hurd_fd_opendir (_hurd_fd_get (fd)); + if (dirp == NULL) + __close (fd); + + return dirp; +} + + /* Open a directory stream on NAME. */ DIR * __opendir (const char *name) { +#if 0 /* TODO. */ + return __opendirat (AT_FDCWD, name); +#else if (name[0] == '\0') { /* POSIX.1-1990 says an empty name gets ENOENT; @@ -89,5 +125,6 @@ __opendir (const char *name) __close (fd); return dirp; +#endif } weak_alias (__opendir, opendir) -- 2.7.4