summaryrefslogtreecommitdiff
path: root/lib/openat.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-01-19 09:58:01 +0000
committerJim Meyering <jim@meyering.net>2005-01-19 09:58:01 +0000
commit158377f794b66ed5e9390141319dcd7d3a40b084 (patch)
treedbc7b13cab6a013a0e3abde1129628994249279e /lib/openat.c
parentaf5592710cd738a051c70eec758c9827d6581dd4 (diff)
downloadcoreutils-158377f794b66ed5e9390141319dcd7d3a40b084.tar.xz
(fdopendir, fstatat): New functions.
Diffstat (limited to 'lib/openat.c')
-rw-r--r--lib/openat.c90
1 files changed, 89 insertions, 1 deletions
diff --git a/lib/openat.c b/lib/openat.c
index fa617b807..14d138ced 100644
--- a/lib/openat.c
+++ b/lib/openat.c
@@ -1,5 +1,5 @@
/* provide a replacement openat function
- Copyright (C) 2004 Free Software Foundation, Inc.
+ Copyright (C) 2004, 2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -89,3 +89,91 @@ rpl_openat (int fd, char const *filename, int flags, ...)
errno = saved_errno;
return new_fd;
}
+
+/* Replacement for Solaris' function by the same name.
+ <http://www.google.com/search?q=fdopendir+site:docs.sun.com>
+ Simulate it by doing save_cwd/fchdir/opendir(".")/restore_cwd.
+ If either the save_cwd or the restore_cwd fails (relatively unlikely,
+ and usually indicative of a problem that deserves close attention),
+ then give a diagnostic and exit nonzero.
+ Otherwise, this function works just like Solaris' fdopendir. */
+DIR *
+fdopendir (int fd)
+{
+ struct saved_cwd saved_cwd;
+ int saved_errno;
+ DIR *dir;
+
+ if (fd == AT_FDCWD)
+ return opendir (".");
+
+ if (save_cwd (&saved_cwd) != 0)
+ error (exit_failure, errno,
+ _("fdopendir: unable to record current working directory"));
+
+ if (fchdir (fd) != 0)
+ {
+ saved_errno = errno;
+ free_cwd (&saved_cwd);
+ errno = saved_errno;
+ return NULL;
+ }
+
+ dir = opendir (".");
+ saved_errno = errno;
+
+ if (restore_cwd (&saved_cwd) != 0)
+ error (exit_failure, errno,
+ _("fdopendir: unable to restore working directory"));
+
+ free_cwd (&saved_cwd);
+
+ errno = saved_errno;
+ return dir;
+}
+
+/* Replacement for Solaris' function by the same name.
+ <http://www.google.com/search?q=fstatat+site:docs.sun.com>
+ Simulate it by doing save_cwd/fchdir/(stat|lstat)/restore_cwd.
+ If either the save_cwd or the restore_cwd fails (relatively unlikely,
+ and usually indicative of a problem that deserves close attention),
+ then give a diagnostic and exit nonzero.
+ Otherwise, this function works just like Solaris' fstatat. */
+int
+fstatat (int fd, char const *filename, struct stat *st, int flag)
+{
+ struct saved_cwd saved_cwd;
+ int saved_errno;
+ int err;
+
+ if (fd == AT_FDCWD)
+ return (flag == AT_SYMLINK_NOFOLLOW
+ ? lstat (filename, st)
+ : stat (filename, st));
+
+ if (save_cwd (&saved_cwd) != 0)
+ error (exit_failure, errno,
+ _("fstatat: unable to record current working directory"));
+
+ if (fchdir (fd) != 0)
+ {
+ saved_errno = errno;
+ free_cwd (&saved_cwd);
+ errno = saved_errno;
+ return -1;
+ }
+
+ err = (flag == AT_SYMLINK_NOFOLLOW
+ ? lstat (filename, st)
+ : stat (filename, st));
+ saved_errno = errno;
+
+ if (restore_cwd (&saved_cwd) != 0)
+ error (exit_failure, errno,
+ _("fstatat: unable to restore working directory"));
+
+ free_cwd (&saved_cwd);
+
+ errno = saved_errno;
+ return err;
+}