about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-02-02 10:16:17 +0000
committerRoland McGrath <roland@gnu.org>2006-02-02 10:16:17 +0000
commit212ab55aaac55a701ac7baf7b5f80d82a3f45041 (patch)
treecd7058f073b8924fcf6f8fd38cd24f6aee9abeb6
parent30c14fdb7b289916af895bc1fb027e7f6534b370 (diff)
downloadglibc-212ab55aaac55a701ac7baf7b5f80d82a3f45041.tar.gz
glibc-212ab55aaac55a701ac7baf7b5f80d82a3f45041.tar.xz
glibc-212ab55aaac55a701ac7baf7b5f80d82a3f45041.zip
* sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): Use the same
	fstat check for ENOENT that should be EBADF as for ENOTDIR, and also
	check for missing /proc the same way.
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/unix/sysv/linux/openat.c19
2 files changed, 8 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b113e5b0b..086d6c65d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-02-02  Roland McGrath  <roland@redhat.com>
 
+	* sysdeps/unix/sysv/linux/openat.c (__atfct_seterrno): Use the same
+	fstat check for ENOENT that should be EBADF as for ENOTDIR, and also
+	check for missing /proc the same way.
+
 	* include/errno.h [__cplusplus]: Avoid extra header magic for C++.
 
 	* manual/install.texi (Tools for Compilation): Require gcc 3.4,
diff --git a/sysdeps/unix/sysv/linux/openat.c b/sysdeps/unix/sysv/linux/openat.c
index 67e9df2e45..4c1f302ab0 100644
--- a/sysdeps/unix/sysv/linux/openat.c
+++ b/sysdeps/unix/sysv/linux/openat.c
@@ -30,7 +30,8 @@
 #if !defined OPENAT && !defined __ASSUME_ATFCTS
 # define OPENAT openat
 
-
+/* Set errno after a failed call.  If BUF is not null,
+   it is a /proc/self/fd/ path name we just tried to use.  */
 void
 attribute_hidden
 __atfct_seterrno (int errval, int fd, const char *buf)
@@ -39,7 +40,7 @@ __atfct_seterrno (int errval, int fd, const char *buf)
     {
       struct stat64 st;
 
-      if (errval == ENOTDIR)
+      if (errval == ENOTDIR || errval == ENOENT)
 	{
 	  /* This can mean either the file descriptor is invalid or
 	     /proc is not mounted.  */
@@ -48,23 +49,11 @@ __atfct_seterrno (int errval, int fd, const char *buf)
 	    return;
 
 	  /* If /proc is not mounted there is nothing we can do.  */
-	  if (S_ISDIR (st.st_mode)
+	  if ((errval != ENOTDIR || S_ISDIR (st.st_mode))
 	      && (__xstat64 (_STAT_VER, "/proc/self/fd", &st) != 0
 		  || !S_ISDIR (st.st_mode)))
 	    errval = ENOSYS;
 	}
-      else if (errval == ENOENT)
-	{
-	  /* This could mean the file descriptor is not valid.  We
-	     reuse BUF for the stat call.  Find the slash after the
-	     file descriptor number.  */
-	  *(char *) strchr (buf + sizeof "/proc/self/fd", '/') = '\0';
-
-	  int e = __lxstat64 (_STAT_VER, buf, &st);
-	  if ((e == -1 && errno == ENOENT)
-	      ||(e == 0 && !S_ISLNK (st.st_mode)))
-	    errval = EBADF;
-	}
     }
 
   __set_errno (errval);