public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] hurd: Consolidate file_name_lookup implementation
@ 2023-02-01 19:06 Samuel Thibault
0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2023-02-01 19:06 UTC (permalink / raw)
To: glibc-cvs
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d011ab5708c2be4e2cc7eb8851c9e2c614410bd3
commit d011ab5708c2be4e2cc7eb8851c9e2c614410bd3
Author: Sergey Bugaev <bugaevc@gmail.com>
Date: Mon Jan 30 15:52:14 2023 +0300
hurd: Consolidate file_name_lookup implementation
Instead of __file_name_lookup_at delegating to __file_name_lookup
in simple cases, make __file_name_lookup_at deal with both cases, and
have __file_name_lookup simply wrap __file_name_lookup_at.
This factorizes handling the empy name case.
Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
Message-Id: <20230130125216.6254-2-bugaevc@gmail.com>
Diff:
---
hurd/hurdlookup.c | 10 ++--------
hurd/lookup-at.c | 51 +++++++++++++++++++++++++++++++++++----------------
2 files changed, 37 insertions(+), 24 deletions(-)
diff --git a/hurd/hurdlookup.c b/hurd/hurdlookup.c
index 49eac4439e..3cfe444f5e 100644
--- a/hurd/hurdlookup.c
+++ b/hurd/hurdlookup.c
@@ -16,6 +16,7 @@
<https://www.gnu.org/licenses/>. */
#include <hurd.h>
+#include <hurd/fd.h>
#include <hurd/lookup.h>
#include <string.h>
#include <fcntl.h>
@@ -220,14 +221,7 @@ weak_alias (__hurd_directory_name_split, hurd_directory_name_split)
file_t
__file_name_lookup (const char *file_name, int flags, mode_t mode)
{
- error_t err;
- file_t result;
-
- err = __hurd_file_name_lookup (&_hurd_ports_use, &__getdport, 0,
- file_name, flags, mode & ~_hurd_umask,
- &result);
-
- return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
+ return __file_name_lookup_at (AT_FDCWD, 0, file_name, flags, mode);
}
weak_alias (__file_name_lookup, file_name_lookup)
diff --git a/hurd/lookup-at.c b/hurd/lookup-at.c
index 6f30a067e8..25dab5a16b 100644
--- a/hurd/lookup-at.c
+++ b/hurd/lookup-at.c
@@ -36,9 +36,6 @@ __file_name_lookup_at (int fd, int at_flags,
if (err)
return (__hurd_fail (err), MACH_PORT_NULL);
- if (fd == AT_FDCWD || file_name[0] == '/')
- return __file_name_lookup (file_name, flags, mode);
-
if (empty != 0 && file_name[0] == '\0')
{
enum retry_type doretry;
@@ -56,22 +53,44 @@ __file_name_lookup_at (int fd, int at_flags,
return err ? (__hurd_dfail (fd, err), MACH_PORT_NULL) : result;
}
- file_t startdir;
- error_t use_init_port (int which, error_t (*operate) (mach_port_t))
+ if (fd == AT_FDCWD || file_name[0] == '/')
{
- return (which == INIT_PORT_CWDIR ? (*operate) (startdir)
- : _hurd_ports_use (which, operate));
+ err = __hurd_file_name_lookup (&_hurd_ports_use, &__getdport, 0,
+ file_name, flags, mode & ~_hurd_umask,
+ &result);
+ if (err)
+ {
+ __hurd_fail (err);
+ return MACH_PORT_NULL;
+ }
+ }
+ else
+ {
+ file_t startdir;
+ /* We need to look the file up relative to the given directory (and
+ not our cwd). For this to work, we supply our own wrapper for
+ _hurd_ports_use, which replaces cwd with our startdir. */
+ error_t use_init_port (int which, error_t (*operate) (mach_port_t))
+ {
+ return (which == INIT_PORT_CWDIR ? (*operate) (startdir)
+ : _hurd_ports_use (which, operate));
+ }
+
+ err = HURD_DPORT_USE (fd, (startdir = port,
+ __hurd_file_name_lookup (&use_init_port,
+ &__getdport, NULL,
+ file_name,
+ flags,
+ mode & ~_hurd_umask,
+ &result)));
+ if (err)
+ {
+ __hurd_dfail (fd, err);
+ return MACH_PORT_NULL;
+ }
}
- err = HURD_DPORT_USE (fd, (startdir = port,
- __hurd_file_name_lookup (&use_init_port,
- &__getdport, NULL,
- file_name,
- flags,
- mode & ~_hurd_umask,
- &result)));
-
- return err ? (__hurd_dfail (fd, err), MACH_PORT_NULL) : result;
+ return result;
}
file_t
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-02-01 19:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-01 19:06 [glibc] hurd: Consolidate file_name_lookup implementation Samuel Thibault
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).