aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
AgeCommit message (Collapse)AuthorFilesLines
2013-09-30Properly cache the result from looking up the nss database configAndreas Schwab1-8/+6
2013-09-28tst-fanotify: fix styleMike Frysinger1-8/+9
Reported-by: Andreas Jaeger <aj@suse.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-09-28don't use Bash-specific ${parameter/pattern/string} expansionPatrick 'P. J.' McDermott2-3/+5
sysdeps/unix/make-syscalls.sh and sysdeps/unix/Makefile use GNU Bash's ${parameter/pattern/string} parameter expansion. Non-Bash shells (e.g. dash or BusyBox ash when built with CONFIG_ASH_BASH_COMPAT disabled) don't support this expansion syntax. So glibc will fail to build when $(SHELL) expands to a path that isn't provided by Bash. An example build failure: for dir in [...]; do \ test -f $dir/syscalls.list && \ { sysdirs='[...]' \ asm_CPP='gcc -c -I[...] -D_LIBC_REENTRANT -include include/libc-symbols.h -DASSEMBLER -g -Wa,--noexecstack -E -x assembler-with-cpp' \ /bin/sh sysdeps/unix/make-syscalls.sh $dir || exit 1; }; \ test $dir = sysdeps/unix && break; \ done > [build-dir]/sysd-syscallsT sysdeps/unix/make-syscalls.sh: line 273: syntax error: bad substitution This patch simply replaces the three instances of the Bash-only syntax in these files with an echo and sed command substitution. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-09-27Add SH implementation of stackguard-macros.h.Kaz Kojima1-0/+6
2013-09-26Faster strrchr.Ondřej Bílka6-943/+199
2013-09-25PowerPC: Fix POINTER_CHK_GUARD thread register for PPC64Adhemerval Zanella1-1/+1
2013-09-24sysdeps/mach/hurd/i386/tls.h: Remove TLS_INIT_TP_EXPENSIVE.Will Newton1-1/+0
This define was removed from the rest of the tree eight years ago. ChangeLog: 2013-09-24 Will Newton <will.newton@linaro.org> * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove macro.
2013-09-23BZ #15754: Fix test case for ARM.Carlos O'Donell1-1/+6
Statically built binaries use __pointer_chk_guard_local, while dynamically built binaries use __pointer_chk_guard. Provide the right definition depending on the test case we are building.
2013-09-23BZ #15754: CVE-2013-4788Carlos O'Donell9-0/+67
The pointer guard used for pointer mangling was not initialized for static applications resulting in the security feature being disabled. The pointer guard is now correctly initialized to a random value for static applications. Existing static applications need to be recompiled to take advantage of the fix. The test tst-ptrguard1-static and tst-ptrguard1 add regression coverage to ensure the pointer guards are sufficiently random and initialized to a default value.
2013-09-20Make __ffs hiddenAndreas Schwab5-0/+5
2013-09-19Consolidate common code into macrosSiddhesh Poyarekar1-74/+62
Consolidated common Taylor series polynomials into macros in s_sin.c to make it a bit cleaner.
2013-09-19Consolidate sin/cos table lookup codeSiddhesh Poyarekar1-114/+35
2013-09-19Consolidate sin/cos computation for large inputsSiddhesh Poyarekar1-47/+36
2013-09-19Remove redundant goto linesSiddhesh Poyarekar1-40/+3
2013-09-18MIPS: IEEE 754-2008 NaN encoding supportMaciej W. Rozycki1-18/+21
It has been a long practice for software using IEEE 754 floating-point arithmetic run on MIPS processors to use an encoding of Not-a-Number (NaN) data different to one used by software run on other processors. And as of IEEE 754-2008 revision [1] this encoding does not follow one recommended in the standard, as specified in section 6.2.1, where it is stated that quiet NaNs should have the first bit (d1) of their significand set to 1 while signalling NaNs should have that bit set to 0, but MIPS software interprets the two bits in the opposite manner. As from revision 3.50 [2][3] the MIPS Architecture provides for processors that support the IEEE 754-2008 preferred NaN encoding format. As the two formats (further referred to as "legacy NaN" and "2008 NaN") are incompatible to each other, tools have to provide support for the two formats to help people avoid using incompatible binary modules. The change is comprised of two functional groups of features, both of which are required for correct support. 1. Dynamic linker support. To enforce the NaN encoding requirement in dynamic linking a new ELF file header flag has been defined. This flag is set for 2008-NaN shared modules and executables and clear for legacy-NaN ones. The dynamic linker silently ignores any incompatible modules it encounters in dependency processing. To avoid unnecessary processing of incompatible modules in the presence of a shared module cache, a set of new cache flags has been defined to mark 2008-NaN modules for the three ABIs supported. Changes to sysdeps/unix/sysv/linux/mips/readelflib.c have been made following an earlier code quality suggestion made here: http://sourceware.org/ml/libc-ports/2009-03/msg00036.html and are therefore a little bit more extensive than the minimum required. Finally a new name has been defined for the dynamic linker so that 2008-NaN and legacy-NaN binaries can coexist on a single system that supports dual-mode operation and that a legacy dynamic linker that does not support verifying the 2008-NaN ELF file header flag is not chosen to interpret a 2008-NaN binary by accident. 2. Floating environment support. IEEE 754-2008 features are controlled in the Floating-Point Control and Status (FCSR) register and updates are needed to floating environment support so that the 2008-NaN flag is set correctly and the kernel default, inferred from the 2008-NaN ELF file header flag at the time an executable is loaded, respected. As the NaN encoding format is a property of GCC code generation that is both a user-selected GCC configuration default and can be overridden with GCC options, code that needs to know what NaN encoding standard it has been configured for checks for the __mips_nan2008 macro that is defined internally by GCC whenever the 2008-NaN mode has been selected. This mode is determined at the glibc configuration time and therefore a few consistency checks have been added to catch cases where compilation flags have been overridden by the user. The 2008 NaN set of features relies on kernel support as the in-kernel floating-point emulator needs to be aware of the NaN encoding used even on hard-float processors and configure the FPU context according to the value of the 2008 NaN ELF file header flag of the executable being started. As at this time work on kernel support is still in progress and the relevant changes have not made their way yet to linux.org master repository. Therefore the minimum version supported has been artificially set to 10.0.0 so that 2008-NaN code is not accidentally run on a Linux kernel that does not suppport it. It is anticipated that the version is adjusted later on to the actual initial linux.org kernel version to support this feature. Legacy NaN encoding support is unaffected, older kernel versions remain supported. [1] "IEEE Standard for Floating-Point Arithmetic", IEEE Computer Society, IEEE Std 754-2008, 29 August 2008 [2] "MIPS Architecture For Programmers, Volume I-A: Introduction to the MIPS32 Architecture", MIPS Technologies, Inc., Document Number: MD00082, Revision 3.50, September 20, 2012 [3] "MIPS Architecture For Programmers, Volume I-A: Introduction to the MIPS64 Architecture", MIPS Technologies, Inc., Document Number: MD00083, Revision 3.50, September 20, 2012
2013-09-18e500 port: fpu_control.h.Joseph Myers1-1/+38
2013-09-18e500 port: setjmp/longjmp.Joseph Myers2-36/+47
2013-09-18Don't force -msoft-float for powerpc --without-fp.Joseph Myers1-5/+0
2013-09-18Format sincos32.cSiddhesh Poyarekar1-236/+254
2013-09-17Fix powerpc fpu_control.h namespace and parenthesis issues (bug 15966).Joseph Myers1-12/+12
2013-09-11Faster strchr implementation.Ondřej Bílka4-200/+160
2013-09-11Update powerpc-fpu ULPs.Adhemerval Zanella1-2/+63
2013-09-11Add O_TMPFILE to <fcntl.h>Andreas Schwab2-0/+5
2013-09-10Remove DO_NOT_USE_THIS conditionals.Ondřej Bílka5-97/+0
2013-09-06Coordinate IPv6 definitions for Linux and glibcCarlos O'Donell1-0/+12
This change synchronizes the glibc headers with the Linux kernel headers and arranges to coordinate the definition of structures already defined the Linux kernel UAPI headers. It is now safe to include glibc's netinet/in.h or Linux's linux/in6.h in any order in a userspace application and you will get the same ABI. The ABI is guaranteed by UAPI and glibc.
2013-09-05PowerPC: fix POWER7 memrchr for some large inputsAdhemerval Zanella2-4/+4
2013-09-05tst-fanotify: skip when we get back EPERMMike Frysinger1-5/+8
Since fanotify_init requires CAP_SYS_ADMIN in order to work (which usually means running as root), we need to handle that error case too. Reported-by: Andreas Jaeger <aj@suse.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-09-04Remove --disable-versioning.Joseph Myers6-13/+5
2013-09-03Fix lgammaf spurious underflow (bug 15427).Joseph Myers3-2/+110
2013-09-03Add unaligned strcmp.Ondřej Bílka4-2/+222
2013-09-02tst-fanotify: new simple testMike Frysinger2-1/+57
Basic test for the fanotify functions. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-09-02Fix spurious jnf underflows (bug 14155).Joseph Myers3-6/+37
2013-09-02Fix typo.Ondřej Bílka1-1/+1
2013-08-30Fix then/than typos.Ondřej Bílka5-19/+19
2013-08-30Fix typos.Ondřej Bílka12-12/+12
2013-08-30Fix rawmemchr regression on bulldozer.Ondřej Bílka2-109/+0
2013-08-29Remove aix specific files.Ondřej Bílka9-869/+0
2013-08-29Hurd: Add ESUCCESS error_t value.Thomas Schwinge2-1/+17
2013-08-29Hurd: Use __executable_start symbol instead of _start.Samuel Thibault1-2/+2
_start points to the first instruction, not to the ELF header. __executable_start does point on the ELF header.
2013-08-29Support ELFOSABI_GNU on all GNU systems.Thomas Schwinge2-23/+48
2013-08-29Use ELFOSABI_GNU instead of ELFOSABI_LINUX.Thomas Schwinge1-4/+4
2013-08-29[BZ #15522] strtod ("nan(N)") returning a sNaN in some casesThomas Schwinge5-20/+41
2013-08-29Fix typos.Ondřej Bílka7-7/+7
2013-08-28Use __glibc_unlikely instead of __builtin_expect (..., 0)Siddhesh Poyarekar1-1/+1
2013-08-27True stub __ifreq.Roland McGrath1-0/+79
2013-08-27Clean up __libc_sa_len helper.Roland McGrath3-66/+13
2013-08-27Replace generic bits/socket.h with 4.4 file.Roland McGrath1-358/+0
2013-08-27Flesh out 4.4 bits/socket.h with SOCK_CLOEXEC, SOCK_NONBLOCK.Roland McGrath1-1/+17
2013-08-27Fix handling LC_CTYPE nonascii-case fallback in i686 SSE4.2 and SSSE3 ↵Andreas Schwab2-0/+24
strcasecmp/strncasecmp
2013-08-21Fix typos.Ondřej Bílka21-26/+26