about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* * manual/signal.texi: Document MTASC-safety properties.Alexandre Oliva2014-02-012-0/+141
|
* * manual/setjmp.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+48
|
* * manual/search.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+76
|
* * manual/resource.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+88
|
* * manual/process.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+76
|
* * manual/platform.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+22
|
* * manual/pipe.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+114
|
* * manual/pattern.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+731
|
* * manual/message.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-2/+161
|
* [BZ #12751]Alexandre Oliva2014-01-313-1/+539
| | | | * manual/memory.texi: Document MTASC-safety properties.
* * manual/math.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+107
|
* * manual/locale.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+150
|
* * manual/llio.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+284
|
* * manual/libdl.texi: New.Alexandre Oliva2014-01-312-0/+14
|
* * manual/lang.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+21
|
* * manual/job.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+29
|
* * manual/getopt.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+30
|
* * manual/ctype.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-312-0/+77
|
* [BZ #16046] Static dlopen correction fallout fixes.Maciej W. Rozycki2014-01-317-71/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes to address issues from BZ #15022 resolution, as follows: * TLS updates to csu/libc-tls.c -- we now have a proper main map, so there's no longer a need to create a separate fake one to keep TLS structures, * random updates to elf/dl-close.c -- LM_ID_BASE is now a valid name space ID for static executables as well, so assert that we don't unload the main map. Similarly dl_nns isn't supposed to be 0 for static executables anymore, * actual BZ #16046 fix to elf/dl-iteratephdr.c -- the dl_iterate_phdr special function for static executables isn't needed anymore, provided that l_phdr and l_phnum members of the main map have been properly initialized (done in _dl_non_dynamic_init in elf/dl-support.c now), * ld.so.cache loader update to elf/dl-load.c -- GL(dl_ns)[LM_ID_BASE]._ns_loaded is now always initialized in static executables so can become the fallback loader map to check for DF_1_NODEFLIB, provided that the l_flags_1 member of the main map has been properly initialized (done in elf/dl-support.c now); this also ensures previous semantics elsewhere in elf/dl-load.c, * matching updates to elf/dl-support.c -- to complement the two fixes above.
* * manual/debug.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-302-0/+30
|
* Disable x87 inline functions for SSE2 mathH.J. Lu2014-01-293-3/+10
| | | | | | | When i386 and x86-64 mathinline.h was merged into a single mathinline.h, "gcc -m32" enables x87 inline functions on x86-64 even when -mfpmath=sse and SSE2 is enabled. It is a regression on x86-64. We should check __SSE2_MATH__ instead of __x86_64__ when disabling x87 inline functions.
* * manual/charset.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-292-0/+98
|
* [AArch64] Regenerate libm-test-ulps.Marcus Shawcroft2014-01-292-15/+4
| | | | Re-generate libm-test-ulps from scratch.
* Fix spaces before tabsSiddhesh Poyarekar2014-01-292-33/+38
|
* * manual/crypt.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-292-0/+34
|
* * manual/conf.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-292-0/+23
|
* * manual/arith.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-292-0/+153
|
* * manual/argp.texi: Document MTASC-safety properties.Alexandre Oliva2014-01-292-0/+186
|
* * manual/macros.texi: Introduce macros to document multiAlexandre Oliva2014-01-294-0/+860
| | | | | | thread, asynchronous signal and asynchronous cancellation safety properties. * manual/intro.texi: Introduce the properties themselves.
* Add -mieee to SH sysdep-CFLAGS for older SH compilers.Kaz Kojima2014-01-282-0/+7
|
* m68k: regenerate libm test ULPsAndreas Schwab2014-01-272-1667/+3904
|
* Let gen-libm-test.pl find itself when run outside source directoryAndreas Schwab2014-01-272-2/+8
|
* Add bug entry for previous commit in NEWSSiddhesh Poyarekar2014-01-271-1/+1
|
* Fix invalid memory access when parsing netgroup files with blank lines (BZ ↵Siddhesh Poyarekar2014-01-272-1/+6
| | | | | | | | | | | | | | | | | | | | | | #16506) The netgroups file parsing code tries to access the character before the newline in parsed lines to see if it is a backslash (\). This results in an access before the block allocated for the line if the line is blank, i.e. does not have anything other than the newline character. This doesn't seem like it will cause any crashes because the byte belongs to the malloc metadata block and hence access to it will always succeed. There could be an invalid alteration in code flow where a blank line is seen as a continuation due to the preceding byte *happening* to be '\\'. This could be done by interposing malloc, but that's not really a security problem since one could interpose getnetgrent_r itself and achieve a similar 'exploit'. The possibility of actually exploiting this is remote to impossible since it also requires the previous line to end with a '\\', which would happen only on invalid configurations.
* Avoid undefined behaviour in netgroupcacheSiddhesh Poyarekar2014-01-272-5/+16
| | | | | | Using a buffer after it has been reallocated is undefined behaviour, so get offsets of the triplets in the old buffer before reallocating it.
* Update French translationsAllan McRae2014-01-272-468/+524
|
* Regenerate SH libm-test-ulps with proper compiler options.Kaz Kojima2014-01-272-9/+720
|
* Rebuild sparc ULPs.David S. Miller2014-01-242-1203/+9821
| | | | * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
* Move SH libm-test-ulps to sysdeps/sh and regenerate it.Kaz Kojima2014-01-253-1094/+5491
|
* tile: Regenerate libm-test-ulpsChris Metcalf2014-01-242-496/+1522
|
* alpha: Update libm-test-ulpsRichard Henderson2014-01-242-1142/+9873
|
* alpha: Fix tls-macros.hRichard Henderson2014-01-242-11/+16
| | | | | | Reported to the gcc bugzilla, there was a missing dependency on $gp that let the compiler generated $gp reload be scheduled across the macros here.
* ARM: Fix clone build for ARMv4Will Newton2014-01-242-7/+7
| | | | | | | | | | | | | | | ARMv4 does not have the blx instruction, so use the BLX macro which handles abstracting this for us. Build tested for armv7, armv4t and armv4. ports/ChangeLog.arm: 2014-01-24 Will Newton <will.newton@linaro.org> [BZ #16499] * sysdeps/unix/sysv/linux/arm/clone.S: Use BLX macro instead of blx instruction directly.
* Adjust pointers to triplets in netgroup query data (BZ #16474)Siddhesh Poyarekar2014-01-243-2/+18
| | | | | | | | | The _nss_*_getnetgrent_r query populates the netgroup results in the allocated buffer and then sets the result triplet to point to strings in the buffer. This is a problem when the buffer is reallocated since the pointers to the triplet strings are no longer valid. The pointers need to be adjusted so that they now point to strings in the reallocated buffer.
* Restore ucontext ABI for soft-float sh4.Kaz Kojima2014-01-243-99/+6
|
* S/390: Increase tst-tls7 test case timeoutStefan Liebler2014-01-232-1/+5
| | | | | | | | TLS in a dlopened object works fine when accessed from a signal handler. The default kernel scheduling parameters prevents the testcase to finish within the 4 seconds. Tested the bigger timeout on s390 and s390x.
* Adjust SH specific fpu_control.h and ucontext.h files.Kaz Kojima2014-01-234-103/+43
|
* S/390: Merge 32 and 64 bit ucontext.h.Andreas Krebbel2014-01-223-98/+13
|
* Include generic symbol-hacks.h for x32H.J. Lu2014-01-202-1/+6
| | | | | | In BZ #15605 fix with addding memset/memmove alias in symbol-hacks.h, x32 symbol-hacks.h change was missing. Fixed by including <sysdeps/generic/symbol-hacks.h> in x32 symbol-hacks.h.
* PowerPC: Fix gettimeofday ifunc selectionAdhemerval Zanella2014-01-204-5/+18
| | | | | | | | | | | | The IFUNC selector for gettimeofday runs before _libc_vdso_platform_setup where __vdso_gettimeofday is set. The selector then sets __gettimeofday (the internal version used within GLIBC) to use the system call version instead of the vDSO one. This patch changes the check if vDSO is available to get its value directly instead of rely on __vdso_gettimeofday. This patch changes it by getting the vDSO value directly. It fixes BZ#16431.