]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
split assume pipe2/dup3/sock_cloexec knobs
authorMike Frysinger <vapier@gentoo.org>
Sat, 18 Aug 2012 02:03:56 +0000 (22:03 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sat, 18 Aug 2012 04:35:47 +0000 (00:35 -0400)
We can't assume sock_cloexec and pipe2 are bound together as the former
defines are found in glibc only while the latter are a combo of kernel
headers and glibc.  So if we do a runtime detection of SOCK_CLOEXEC, but
pipe2() is a stub inside of glibc, we hit a problem.  For example:

main()
{
getgrnam("portage");
if (!popen("ls", "r"))
perror("popen()");
}

getgrnam() will detect that the kernel supports SOCK_CLOEXEC and then set
both __have_sock_cloexec and __have_pipe2 to true.  But if glibc was built
against older kernel headers where __NR_pipe2 does not exist, glibc will
have a ENOSYS stub for it.  So popen() will always fail as glibc assumes
pipe2() works.

While this isn't too much of an issue for some arches as they added the
functionality to the kernel at the same time, not all arches are that
lucky.

Since the code already has dedicated names for each feature, delete the
defines wiring these three features together and make each one a proper
dedicated knob.

We've been carrying this in Gentoo since glibc-2.9.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
ChangeLog
include/unistd.h
socket/have_sock_cloexec.c

index 79b571710a7872cdb1f4396a0e1798f310c9fa78..206206a8b721392e24951eef819d40b055431d60 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-08-18  Mike Frysinger  <vapier@gentoo.org>
+
+       [BZ #9685]
+       * include/unistd.h (__have_pipe2): Change define into an extern int.
+       (__have_dup3): Likewise.
+       * socket/have_sock_cloexec.c: Include fcntl.h.
+       (__have_pipe2): New variable.
+       (__have_dup3): Likewise.
+
 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
 
        * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
index e4bff80fc7727ae5e8b0f12e17c0fead7f8831da..9d74fb49e805298b12b4e06265263695717b4e07 100644 (file)
@@ -174,11 +174,8 @@ extern int __libc_pause (void);
 extern int __pause_nocancel (void) attribute_hidden;
 
 extern int __have_sock_cloexec;
-/* At lot of other functionality became available at the same time as
-   SOCK_CLOEXEC.  Avoid defining separate variables for all of them
-   unless it is really necessary.  */
-#define __have_pipe2 __have_sock_cloexec
-#define __have_dup3 __have_sock_cloexec
+extern int __have_pipe2;
+extern int __have_dup3;
 
 extern int __getlogin_r_loginuid (char *name, size_t namesize)
      attribute_hidden;
index d57cbcfaade7c5b71690dd43f55e68061709277c..8cf09594621e3d459ff9951fb57c10fbb75aca57 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2008 Free Software Foundation, Inc.
+/* Copyright (C) 2008-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
+#include <fcntl.h>
 #include <sys/socket.h>
 #include <kernel-features.h>
 
 #if defined SOCK_CLOEXEC && !defined __ASSUME_SOCK_CLOEXEC
 int __have_sock_cloexec;
 #endif
+
+#if defined O_CLOEXEC && !defined __ASSUME_PIPE2
+int __have_pipe2;
+#endif
+
+#if defined O_CLOEXEC && !defined __ASSUME_DUP3
+int __have_dup3;
+#endif