Summary: | Corrupted aux-cache causes ldconfig to segfault | ||
---|---|---|---|
Product: | glibc | Reporter: | Aurelien Jarno <aurelien> |
Component: | libc | Assignee: | Not yet assigned to anyone <unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | drepper.fsp, fweimer |
Priority: | P2 | Flags: | fweimer:
security-
|
Version: | unspecified | ||
Target Milestone: | 2.29 | ||
See Also: | https://sourceware.org/bugzilla/show_bug.cgi?id=20890 | ||
Host: | Target: | ||
Build: | Last reconfirmed: |
Description
Aurelien Jarno
2015-03-08 20:46:14 UTC
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU C Library master sources". The branch, master has been updated via 6a1cf708dd5681b517744d6d4fac02e4e4a0aa2e (commit) from a2d4cf72c0ab07d4e58b42c01ac3ed2b95ca8d9b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6a1cf708dd5681b517744d6d4fac02e4e4a0aa2e commit 6a1cf708dd5681b517744d6d4fac02e4e4a0aa2e Author: Aurelien Jarno <aurelien@aurel32.net> Date: Wed Mar 11 21:03:50 2015 -0400 Fix ldconfig segmentation fault with corrupted cache (Bug 18093). ldconfig is using an aux-cache to speed up the ld.so.cache update. It is read by mmaping the file to a structure which contains data offsets used as pointers. As they are not checked, it is not hard to get ldconfig to segfault with a corrupted file. This happens for instance if the file is truncated, which is common following a filesystem check following a system crash. This can be reproduced for example by truncating the file to roughly half of it's size. There is already some code in elf/cache.c (load_aux_cache) to check for a corrupted aux cache, but it happens to be broken and not enough. The test (aux_cache->nlibs >= aux_cache_size) compares the number of libs entry with the cache size. It's a non sense, as it basically assumes that each library entry is a 1 byte... Instead this commit computes the theoretical cache size using the headers and compares it to the real size. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 6 ++++++ NEWS | 2 +- elf/cache.c | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) Fixed in master. This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU C Library master sources". The annotated tag, glibc-2.22 has been created at be75ddf5e4dfab2aa4ceb2428cc146e7ea26a346 (tag) tagging 78bd7499af46d739ce94410eaeea006e874ca9e5 (commit) replaces glibc-2.21 tagged by Carlos O'Donell on Wed Aug 5 02:45:12 2015 -0400 - Log ----------------------------------------------------------------- The GNU C Library ================= The GNU C Library version 2.22 is now available. The GNU C Library is used as *the* C library in the GNU system and in GNU/Linux systems, as well as many other systems that use Linux as the kernel. The GNU C Library is primarily designed to be a portable and high performance C library. It follows all relevant standards including ISO C11 and POSIX.1-2008. It is also internationalized and has one of the most complete internationalization interfaces known. The GNU C Library webpage is at http://www.gnu.org/software/libc/ Packages for the 2.22 release may be downloaded from: http://ftpmirror.gnu.org/libc/ http://ftp.gnu.org/gnu/libc/ The mirror list is at http://www.gnu.org/order/ftp.html NEWS for version 2.22 ===================== * The following bugs are resolved with this release: 438, 4719, 6544, 6792, 11216, 12836, 13028, 13064, 13151, 13152, 14094, 14292, 14841, 14906, 14958, 15319, 15467, 15790, 15969, 16159, 16339, 16350, 16351, 16352, 16353, 16361, 16512, 16526, 16538, 16559, 16560, 16704, 16783, 16850, 17053, 17090, 17195, 17269, 17293, 17322, 17403, 17475, 17523, 17542, 17569, 17581, 17588, 17596, 17620, 17621, 17628, 17631, 17692, 17711, 17715, 17776, 17779, 17792, 17833, 17836, 17841, 17912, 17916, 17930, 17932, 17944, 17949, 17964, 17965, 17967, 17969, 17977, 17978, 17987, 17991, 17996, 17998, 17999, 18007, 18019, 18020, 18029, 18030, 18032, 18034, 18036, 18038, 18039, 18042, 18043, 18046, 18047, 18049, 18068, 18080, 18093, 18100, 18104, 18110, 18111, 18116, 18125, 18128, 18134, 18138, 18185, 18196, 18197, 18206, 18210, 18211, 18217, 18219, 18220, 18221, 18234, 18244, 18245, 18247, 18287, 18319, 18324, 18333, 18346, 18371, 18383, 18397, 18400, 18409, 18410, 18412, 18418, 18422, 18434, 18444, 18457, 18468, 18469, 18470, 18479, 18483, 18495, 18496, 18497, 18498, 18502, 18507, 18508, 18512, 18513, 18519, 18520, 18522, 18527, 18528, 18529, 18530, 18532, 18533, 18534, 18536, 18539, 18540, 18542, 18544, 18545, 18546, 18547, 18549, 18553, 18557, 18558, 18569, 18583, 18585, 18586, 18592, 18593, 18594, 18602, 18612, 18613, 18619, 18633, 18641, 18643, 18648, 18657, 18676, 18694, 18696. * Cache information can be queried via sysconf() function on s390 e.g. with _SC_LEVEL1_ICACHE_SIZE as argument. * A buffer overflow in gethostbyname_r and related functions performing DNS requests has been fixed. If the NSS functions were called with a misaligned buffer, the buffer length change due to pointer alignment was not taken into account. This could result in application crashes or, potentially arbitrary code execution, using crafted, but syntactically valid DNS responses. (CVE-2015-1781) * The time zone file parser has been made more robust against crafted time zone files, avoiding heap buffer overflows related to the processing of the tzh_ttisstdcnt and tzh_ttisgmtcnt fields, and a stack overflow due to large time zone data files. Overly long time zone specifiers in the TZ variable no longer result in stack overflows and crashes. * A powerpc and powerpc64 optimization for TLS, similar to TLS descriptors for LD and GD on x86 and x86-64, has been implemented. You will need binutils-2.24 or later to enable this optimization. * Character encoding and ctype tables were updated to Unicode 7.0.0, using new generator scripts contributed by Pravin Satpute and Mike FABIAN (Red Hat). These updates cause user visible changes, such as the fix for bug 17998. * CVE-2014-8121 The NSS backends shared internal state between the getXXent and getXXbyYY NSS calls for the same database, causing a denial-of-service condition in some applications. * Added vector math library named libmvec with the following vectorized x86_64 implementations: cos, cosf, sin, sinf, sincos, sincosf, log, logf, exp, expf, pow, powf. The library can be disabled with --disable-mathvec. Use of the functions is enabled with -fopenmp -ffast-math starting from -O1 for GCC version >= 4.9.0. Shared library libmvec.so is linked in as needed when using -lm (no need to specify -lmvec explicitly for not static builds). Visit <https://sourceware.org/glibc/wiki/libmvec> for detailed information. * A new fmemopen implementation has been added with the goal of POSIX compliance. The new implementation fixes the following long-standing issues: BZ#6544, BZ#11216, BZ#12836, BZ#13151, BZ#13152, and BZ#14292. The old implementation is still present for use be by existing binaries. * The 32-bit sparc sigaction ABI was inadvertently broken in the 2.20 and 2.21 releases. It has been fixed to match 2.19 and older, but binaries built against 2.20 and 2.21 might need to be recompiled. See BZ#18694. * Port to Native Client running on ARMv7-A (--host=arm-nacl). Contributed by Roland McGrath (Google). Contributors ============ This release was made possible by the contributions of many people. The maintainers are grateful to everyone who has contributed changes or bug reports. These include: Adhemerval Zanella Alan Modra Alexandre Oliva Andreas Schwab Andrew Senkevich Andriy Rysin Arjun Shankar Aurelien Jarno Benno Schulenberg Brad Hubbard Carlos O'Donell Chris Metcalf Christian Schmidt Chung-Lin Tang Cong Wang Cyril Hrubis Daniel Marjamäki David S. Miller Dmitry V. Levin Eric Rannaud Evangelos Foutras Feng Gao Florian Weimer Gleb Fotengauer-Malinovskiy H.J. Lu Igor Zamyatin J William Piggott James Cowgill James Lemke John David Anglin Joseph Myers Kevin Easton Khem Raj Leonhard Holz Mark Wielaard Marko Myllynen Martin Galvan Martin Sebor Matthew Fortune Mel Gorman Mike Frysinger Miroslav Lichvar Nathan Lynch Ondřej Bílka Paul Eggert Paul Pluzhnikov Pavel Kopyl Pravin Satpute Rajalakshmi Srinivasaraghavan Rical Jasan Richard Henderson Roland McGrath Rüdiger Sonderfeld Samuel Thibault Siddhesh Poyarekar Stefan Liebler Steve Ellcey Szabolcs Nagy Torvald Riegel Tulio Magno Quites Machado Filho Vincent Bernat Wilco Dijkstra Yaakov Selkowitz Zack Weinberg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJVwbEHAAoJECXvCkNsKkr//nwH/RbC+AmWbbrY7POeygVVxZVv 6ww/s4WOx3MJc0VNhQucelDCmRVRfKdoqtiex2bcysOiK2mv6K4efgYV7dkilT5O NhpjENGE2qCvRIeplmDdGDBTLwhxwcQoQXrFYtcayEXpeCHoJjSzY9PyeNWGvmLM eEah8kVPh6FsNf/YD28MXtChCpfoZf5IrVhXvn7+f2zPjUEy1PuHmo2kU9LzoCRu q3xtd8ICpVkAvFCoUnN7YEOITj3g9Qd+zGebfj8LpVL5zoQs9n2egSv+jIdNGQVI XuQ+oVXuMd9ho1p6LayZpTsY19jALxgk8ysnTzBofi+1Zkc8FTEB0fFdplDIwMg= =9uQ7 -----END PGP SIGNATURE----- Adhemerval Zanella (36): powerpc: multiarch Makefile cleanup for powerpc64 powerpc: Simplify bcopy default implementation powerpc: Remove POWER7 wordcopy ifunc powerpc: wordcopy/memmove cleanup for ppc64 powerpc: multiarch Makefile cleanup for powerpc32 powerpc: wordcopy/memmove cleanup for ppc32 powerpc: sysdeps/powerpc configure cleanup powerpc: drop R_PPC_REL16 check powerpc: Fix TABORT encoding for little endian powerpc: Fix memmove static build powerpc: Fix inline feraiseexcept, feclearexcept macros Update powerpc-fpu ULPs. powerpc: Fix incorrect results for pow when using FMA powerpc: Remove HAVE_ASM_GLOBAL_DOT_NAME define powerpc: Fix __wcschr static build libc-vdso.h place consolidation Fix non-portable echo usage in sysdeps/unix/make-syscalls.sh Add BZ #16704 as fixed Fix stdlib/tst-setcontext3 with dash [BZ#18418] i386: Remove six-argument specialized implementations Remove socket.S implementation Consolidate vDSO macros and usage Consolidate gettimeofday across aarch64/s390/tile Update powerpc-fpu libm-test-ulps. Fix ChangeLog entry x86: clock_gettime and timespec_get vDSO cleanup Use inline syscalls for non-cancellable versions nptl: Rewrite cancellation macros Consolidate sched_getcpu x86: Remove vsyscall usage libio: fmemopen rewrite to POSIX compliance libio: Update tst-fmemopen2.c libio: Update powerpc64le libc.abilist Avoid C++ tests when the C++ cannot be linked libio: Fix fmemopen 'w' mode with provided buffer Update powerpc-fpu libm-test-ulps. Alan Modra (5): Fix localplt test breakage with new readelf Remove HAVE_ASM_PPC_REL16 references powerpc64 configure message powerpc __tls_get_addr call optimization Harden powerpc64 elf_machine_fixup_plt Alexandre Oliva (6): Unicode 7.0.0 update; added generator scripts. Amendments to Unicode 7 update. BZ #15969: search locale archive again after alias expansion Fix constness error just introduced in findlocale. Avoid unsafe loc_name type casts with additional variable Fix DTV race, assert, DTV_SURPLUS Static TLS limit, and nptl_db garbage Andreas Schwab (16): Fix value of O_TMPFILE for architectures with non-default O_DIRECTORY (bug 17912) Filter out PTHREAD_MUTEX_NO_ELISION_NP bit in pthread_mutexattr_gettype (BZ #15790) Fix failure of elf/tst-audit2 when compiled with GCC-5 Fix read past end of pattern in fnmatch (bug 18032) Fix parallel build error Don't define __CORRECT_ISO_CPP_STRING_H_PROTO for non-GCC compilers (bug 17631) m68k: fix 64-bit arithmetic in atomic operations (bug 18128) aarch64: Increase MINSIGSTKSZ and SIGSTKSZ (bug 16850) Separate internal state between getXXent and getXXbyYY NSS calls (bug 18007) Simplify handling of nameserver configuration in resolver Record TTL also for DNS PTR queries (bug 18513) Fix buffer overflow for writes to memory buffer stream (bug 18549) Update NEWS m68k: update libm test ULPs Fix spurious conform test failures Properly terminate FDE in makecontext for ix86 (bug 18635) Andrew Senkevich (29): This is the beginning of series of patches with addition Refactoring of START for conditions in individual tests Last part of changes regarding to libm-test.inc: addition This patch adds infrastructure for addition of SIMD This is update for configure, build and install of vector math library. Localplt testing for vector math library and libmvec_hidden_* macro series. This patch adds detection of availability for AVX512F and AVX512DQ ISAs. Start of series of patches with x86_64 vector math functions. Addition of testing infrastructure for vector math functions. Vector cosf for x86_64. This patch adds vector cosf tests. More strict check of AVX512 support in assembler. Vector sin for x86_64 and tests. Vector sinf for x86_64 and tests. Vector log for x86_64 and tests. Vector logf for x86_64 and tests. Vector exp for x86_64 and tests. Vector expf for x86_64 and tests. Vector pow for x86_64 and tests. Vector powf for x86_64 and tests. Vector sincos for x86_64 and tests. Vector sincosf for x86_64 and tests. Fixed powerpc64 build. Combination of data tables for x86_64 vector functions sin, cos and sincos. Combination of data tables for x86_64 vector functions sinf, cosf and sincosf. More correct description of linking with vector math library. Fixed several libmvec bugs found during testing on KNL hardware. Added runtime check for AVX vector math tests. Prevent runtime fail of SSE vector math tests on non SSE4.1 machine. Andriy Rysin (1): Fix sorting order for Ukrainian locale (BZ 17293) Arjun Shankar (4): CVE-2015-1781: resolv/nss_dns/dns-host.c buffer overflow [BZ#18287] Ensure `wint_t' is defined before use in include/stdio.h Modify elf/tst-audit9.c to use test-skeleton.c Modify several tests to use test-skeleton.c Aurelien Jarno (1): Fix ldconfig segmentation fault with corrupted cache (Bug 18093). Benno Schulenberg (1): sprof: Make an error message identical to two others, and more accurate. Brad Hubbard (1): Use calloc to allocate xports (BZ #17542) Carlos O'Donell (15): Open development for 2.22. Fix missing ChangeLog attribution. NEWS: Fix spelling. Use alignment macros, pagesize and powerof2. hppa: Update libm-test-ulps. hppa: Fix feupdateenv and fesetexceptflag (Bug 18111). Enhance nscd's inotify support (Bug 14906). Bug 18125: Call exit after last linked context. Fail locale installation if localedef fails. Add sprintf benchmark. Fix ruserok scalability with large ~/.rhosts file. Add missing Advanced API (RFC3542) (1) defines. Regenerate libc.pot for 2.22 release. Updated translations for 2.22. Update version.h and include/features.h for 2.22 release Chris Metcalf (8): linux-generic: add a README tile: Enable PI_STATIC_AND_HIDDEN tile: use better variable naming in INLINE_SYSCALL math/test-fenvinline: avoid compiler warning tile: Regenerate ULPs. tst-leaks: raise timeout to 5 seconds tile: Fix BZ #18508 (makecontext yield infinite backtrace) tilepro: fix warnings in sysdeps/tile/tilepro/bits/atomic.h Christian Schmidt (1): Update currency_symbol in da_DK Chung-Lin Tang (5): Adjust timeouts for some tests, to accommodate slow processors, Fix order of arguments to rt_sigprocmask syscall when setting the signal mask Update Nios II ulps file. Add #include <string.h> to nptl/tst-join7mod.c to silence GCC warnings. Fixes extern protected data handling testcases elf/tst-protected1a Cong Wang (1): in.h: Coordinate in6_pktinfo and ip6_mtuinfo for kernel and glibc [BZ #15850] Cyril Hrubis (1): Set errno to ENOMEM on overflow in sbrk (bug 18592) Daniel Marjamäki (1): Add __nonnull attribute to wcscpy and wcsncpy [BZ#18265] David S. Miller (7): Update SPARC ulps. Rebuilt fresh sparc ULPS to get rid of removed tests. Convert sparc over to lowlevellock-futex.h Sparc memchr/memcmp/strncmp fixes from Il'ya Malakhov. Update sparc localplt.data Fix sparc build. Regenerate SPARC ULPs. Dmitry V. Levin (3): Prepare for restoration of .interp section in libpthread.so _res_hconf_reorder_addrs: fix typo in comment Fix potential hanging of gethostbyaddr_r/gethostbyname_r Eric Rannaud (1): linux: open and openat ignore 'mode' with O_TMPFILE in flags Evangelos Foutras (1): Fix __memcpy_chk on non-SSE2 CPUs Feng Gao (1): Use "|" instead of "+" when combine the _IO_LINE_BUF and _IO_UNBUFFERED flags Florian Weimer (32): NEWS: Also mention CVE-2015-1473 _nss_nis_initgroups_dyn: Return status instead of NSS_STATUS_SUCCESS vfprintf: Introduce THOUSANDS_SEP_T vfprintf: Introduce JUMP_TABLE_BASE_LABEL vfprintf: Define WORK_BUFFER_SIZE Avoid SIGFPE in wordexp [BZ #18100] pthread_setaffinity (Linux variant): Rewrite to use VLA instead of alloca Define libc_max_align_t for internal use Add struct scratch_buffer and its internal helper functions scratch_buffer_grow_preserve: Add missing #include <string.h> pldd: Use struct scratch_buffer instead of extend_alloca grp: Rewrite to use struct scratch_buffer instead of extend_alloca _nss_compat_initgroups_dyn: Use struct scratch_buffer instead of extend_alloca getnameinfo: Use struct scratch_buffer instead of extend_alloca nscd_getgr_r: Use struct scratch_buffer instead of extend_alloca scratch_buffer: Suppress truncation warning on 32-bit Do not build with -Winline Make time zone file parser more robust [BZ #17715] posix_fallocate, posix_fallocate64 stub: Do not set errno test-skeleton: Support temporary files without memory leaks [BZ#18333] CVE-2014-8121: Do not close NSS files database during iteration [BZ #18007] NEWS: BZ#18319 was fixed in commit ed159672eb3cd650a32b7e5cb4d5ec1fe0e63802 i386: Remove fallocate, fallocate64, posix_fallocate, posix_fallocate64 __ASSUME_FALLOCATE is always true on 32-bit architectures vfprintf: Move jump table definition and the macros out of function vfprintf: Introduce printf_positional function vfprintf: Remove label name switching for the jump table Avoid some aliasing violations in libio Fix indentation to match nesting in previous commit posix_fallocate: Emulation fixes and documentation [BZ #15661] Commit 7fe9e2e089f4990b7d18d0798f591ab276b15f2b fixes [BZ# 17322] pthread_key_create: Fix typo in comment Gleb Fotengauer-Malinovskiy (1): nptl: restore .interp section in libpthread.so H.J. Lu (23): Compile gcrt1.o with -fPIC Compile vismain with -fPIE and link with -pie Replace ELF_RTYPE_CLASS_NOCOPY with ELF_RTYPE_CLASS_COPY Replace __attribute__((visibility("protected"))) Preserve bound registers in _dl_runtime_resolve Add ELF_RTYPE_CLASS_EXTERN_PROTECTED_DATA to x86 Add a testcase for copy reloc against protected data Limit threads sharing L2 cache to 2 for SLM/KNL Check tzspec_len == 0 in __tzfile_read Remove a trailing `\' in make-syscalls.sh Don't issue an error if DT_PLTRELSZ is missing Make sure that calloc is called at least once Don't issue errors on GDB Python files Align TCB offset to the maximum alignment Support compilers defaulting to PIE Add a testcase for i386 LD_AUDIT Add and use sysdeps/i386/link-defines.sym Add la_symbind32 to x86-64 audit tests Improve bndmov encoding with zero displacement Replace %ld with %jd and cast to intmax_t Sort NEWS Add si_addr_bnd to _sigfault in x86 struct siginfo Extend local PLT reference check Igor Zamyatin (1): Preserve bound registers for pointer pass/return J William Piggott (1): [BZ #17969] James Cowgill (1): [BZ #17930] MIPS: Define SHM_NORESERVE. James Lemke (1): Fix for test "malloc_usable_size: expected 7 but got 11" John David Anglin (2): hppa: fix __O_SYNC to match the kernel hppa: Fix feholdexcpt and fesetenv (Bug 18110). Joseph Myers (162): soft-fp: Support floating-point extensions without quieting sNaNs. soft-fp: Refine FP_EX_DENORM handling for comparisons. soft-fp: Fix _FP_FMA when product is zero and third argument is finite (bug 17932). Remove sysdeps/mips soft-fp subdirectories. Fix sincos errno setting (bug 15467). Fix exp2 spurious underflows (bug 16560). Fix powerpc software sqrt (bug 17964). Fix powerpc software sqrtf (bug 17967). Fix dbl-64/wordsize-64 remquo (bug 17569). Fix MIPS __mips_isa_rev -Werror=undef build. Fix MIPS _COMPILING_NEWLIB -Werror=undef build. Fix MIPS _ABIO64 -Werror=undef build. Fix remquo spurious overflows (bug 17978). Fix sign of remquo zero remainder in round-downward mode (bug 17987). Refine documentation of libm exceptions goals. Fix posix_spawn getrlimit64 namespace (bug 17991). Fix search.h namespace (bug 17996). Fix atan / atan2 missing underflows (bug 15319). Fix scandir scandirat namespace (bug 17999). soft-fp: Adjust call to abort for kernel use. Fix x86/x86_64 scalb (qNaN, -Inf) (bug 16783). Fix ldbl-128ibm acoshl inaccuracy (bug 18019). Fix ldbl-128ibm asinhl inaccuracy (bug 18020). Fix ldbl-128ibm ilogbl near powers of 2 (bug 18029). Fix ldbl-128ibm logbl near powers of 2 (bug 18030). Fix asin missing underflows (bug 16351). Fix ldbl-128/ldbl-128ibm acosl inaccuracy (bug 18038, bug 18039). Avoid uninitialized warnings in Bessel functions. Avoid -Wno-write-strings for k_standard.c. Add comment to CSTR macro in k_standard.c. Fix ldbl-96, ldbl-128ibm atanhl inaccuracy (bug 18046, bug 18047). Correct __ASSUME_PRLIMIT64 for hppa/microblaze/sh (bug 17779). soft-fp: Condition sfp-machine.h include path on __KERNEL__. Fix /* in comment in previous commit. soft-fp: Support conditional zero-initialization in declarations. soft-fp: Use multiple-include guards. Add test for bug 18104. soft-fp: Add _FP_UNREACHABLE. soft-fp: Define and use _FP_STATIC_ASSERT. Make sem_timedwait use FUTEX_CLOCK_REALTIME (bug 18138). Note old commit as having resolved bug 11505. Add more tests of log2. Regenerate x86_64, x86 ulps from scratch. Add more tests of cosh, sinh. Add more tests of expm1. Add more tests of acos. Support six-argument syscalls from C for 32-bit x86, use generic lowlevellock-futex.h (bug 18138). Add more tests of asin. Remove unused macros from i386 lowlevellock.h. Add another test of asin. Add more tests of acosh, asinh and atanh. Fix dbl-64 atan in non-default rounding modes (bug 18197). Fix dbl-64 atan2 in non-default rounding modes (bug 18210, bug 18211). Add more tests of cabs. Add more tests of cbrt. Add more tests of atan. Add more tests of atanh. Add more tests of clog and clog10. Fix strtof decimal rounding close to half least subnormal (bug 18247). Fix ldbl-128 roundl for exponents in [31, 47] (bug 18346). Remove MIPS version of waitid.c. Add further tests of cosh and sinh. Add more tests of csqrt. Add more tests of erf, erfc. Add more tests of exp, exp10, exp2, expm1. Add more tests of log, log10, log1p, log2. Add more tests of lgamma. Add another test of pow. Add more tests of cos, sin, sincos. Add more tests of tan. Add more tests of tanh. Add more tests of tgamma. Add more tests of libm functions. Add further tests of libm functions. Add more tests of acosh, atanh, cos, csqrt, erfc, sin, sincos. Add more tests of csqrt, lgamma, log10, sinh. Fix mips16 __fpu_control static linking (bug 18397). Fix linknamespace test handling of architecture-specific st_other. Fix log1p missing underflows (bug 16339). Fix atanf spurious underflows (bug 18196). Fix erfcf spurious underflows (bug 18217). Fix lgammaf spurious underflows (bug 18220). Fix tanf spurious underflows (bug 18221). Fix atanhl missing underflows (bug 16352). Fix i386 atanhl spurious underflows (bug 18049). Fix ldbl-96 remquol (finite, Inf) (bug 18244). conformtest: clean up POSIX expectations for unistd.h. conformtest: correct POSIX expectations for locale.h. conformtest: use proper _POSIX_C_SOURCE value for POSIX. linknamespace: whitelist re_syntax_options. Fix sysdeps/ieee754/dbl-64/mpa.c for -Wuninitialized. Fix lgamma implementations for -Wuninitialized. Fix pathconf basename namespace (bug 18444). Restore _POSIX2_C_VERSION definition (bug 438). Fix ldbl-128 / ldbl-128ibm asinl for -Wuninitialized. Fix ldbl-128 / ldbl-128ibm erfcl for -Wuninitialized Fix ldbl-128 / ldbl-128ibm tanl for -Wuninitialized. Fix soft-fp fma for -Wuninitialized. Fix fnmatch towlower namespace (bug 18469). Use libc_hidden_proto / libc_hidden_def with __strnlen. Use better variable names in MIPS syscall macros. Fix fnmatch wmemchr namespace (bug 18468). Fix fnmatch strnlen namespace (bug 18470). Fix regex wctype namespace (bug 18495). Fix psignal, psiginfo declaration conditions (bug 18483). Fix regex wcrtomb namespace (bug 18496). Fix open_memstream namespace (bug 18498). Say "C++ tests" in comment on __open_memstream declaration. Fix pathconf statvfs namespace (bug 18507). Fix regcomp wcscoll, wcscmp namespace (bug 18497). Fix h_errno namespace (bug 18520). Fix ecvt_r, fcvt_r namespace (bug 18522). Fix aio_* pread namespace (bug 18519). Fix getlogin_r namespace (bug 18527). Fix grp.h endgrent, getgrent namespace (bug 18528). Fix netdb.h addrinfo namespace (bug 18529). Fix syslog fputs_unlocked namespace (bug 18530). Fix linknamespace expectations for in6addr_any, in6addr_loopback. Fix gethostbyaddr in6addr_any, in6addr_loopback namespace (bug 18532). Fix vsyslog namespace (bug 18533). Fix syslog dprintf namespace (bug 18534). Fix sem_* tdelete, tfind, tsearch, twalk namespace (bug 18536). Fix fmtmsg addseverity namespace (bug 18539). Fix getpass fflush_unlocked namespace (bug 18540). Fix swscanf vswscanf namespace (bug 18542). Fix mq_notify pthread_barrier_* namespace (bug 18544). Create hidden aliases for non-libc syscalls automatically. Fix mq_receive, mq_send mq_timed* namespace (bug 18545). Fix mq_notify socket, recv namespace (bug 18546). Fix ttyslot namespace (bug 18547). Fix nice getpriority, setpriority namespace (bug 18553). Remove ldbl-128ibm variants of complex math functions. Fix netinet/in.h MCAST_* namespace (bug 18558). Remove stray spurious-underflow markings from cexp test. Remove include/bits/ipc.h. Fix asinh missing underflows (bug 16350). conformtest: Support xfail markers on individual assertions. conformtest: Fix pselect expectations. Fix x86 / x86_64 expl, exp10l missing underflows (bug 16361). Correct ChangeLog syntax for conditional change within function. Fix x86_64 / x86 expm1l (-min_subnorm) result sign (bug 18569). Fix expm1 missing underflows (bug 16353). Fix exp2, exp2f spurious underflows (bug 18219). Fix csqrt spurious underflows (bug 18371). Fix math/Makefile dependency on libm-test.stmp for libmvec tests. Fix spurious "inexact" exceptions from __kernel_standard_l (bug 18245, bug 18583). Fix sin, sincos missing underflows (bug 16526, bug 16538). Fix ldbl-128 expl missing underflows (bug 18586). Fix csin, csinh overflow in directed rounding modes (bug 18593). Move csin, csinh tests to auto-libm-test-in. Fix cexp, ccos, ccosh, csin, csinh spurious underflows (bug 18594). Refactor libm tests. Use round-to-nearest internally in jn, test with ALL_RM_TEST (bug 18602). Update headers for Linux 4.0, 4.1 definitions. Fix j1, jn missing underflows (bug 16559). Fix ldbl-128 j1l spurious underflows (bug 18612). Improve tgamma accuracy (bug 18613). Regenerate MIPS libm-test-ulps. Regenerate ARM libm-test-ulps. Regenerate powerpc-nofpu libm-test-ulps. Fix ldbl-128 expm1l (-min_subnorm) result sign (bug 18619). Mark bug 2981 (elf/tst-audit* fail on MIPS) as fixed. Kevin Easton (1): Reduce lock contention in __tz_convert() [BZ #16145] (partial fix) Khem Raj (2): Reflect renaming of bh_IN and tu_IN in SUPPORTED file [BZ #17475] locale: Do not define lang_ab for tcy_IN and bhb_IN Leonhard Holz (6): Remove unused definitions Improve strcoll with strdiff. Split locale generation snippet into a separate file Add strcoll benchmark remove now unused idxnow in strcoll remove unnecessary memset in strcoll Mark Wielaard (2): elf.h SHF_EXCLUDE signed int 31 bit shift triggers undefined behaviour. elf.h: Add section compression constants and structures. Marko Myllynen (4): Fix bo_CN and bo_IN. Fix monetary.h comment Remove unused PREDEFINED_CLASSES code locale: Remove obsolete repertoire map references Martin Galvan (2): NPTL: swap comments for THREAD_SETMEM and THREAD_SETMEM_NC for i386 and x86_64 NPTL: Remove duplicate definition of PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP Martin Sebor (4): powerpc: setcontext.S uses power6 mtfsf when not supported [BZ #18116] Attempting to install glibc configured with --prefix=/usr into The C++ 2011 std::call_once function is specified to allow The patch committed to fix bug #18435 caused regressions on aarch64 Matthew Fortune (2): ia64: remove fixed page size macros and others [BZ #17792] Add support for DT_MIPS_RLD_MAP_REL. Mel Gorman (2): malloc: Consistently apply trim_threshold to all heaps [BZ #17195] malloc: Do not corrupt the top of a threaded heap if top chunk is MINSIZE [BZ #18502] Mike Frysinger (27): ia64: drop custom getpagesize hppa: fix build failure with RTLD_PRIVATE_ERRNO add changelog for previous commit alloca: fix buf interaction manual: drop strerror C89 compatibility note hppa: update __O_SYNC fix with [BZ #18068] pwd.h: add __nonnull markings [BZ #18641] nscd: drop selinux/flask.h include tst-tzset: raise timeout to 5 seconds hppa/ia64: _dl_symbol_address: add PLT bypass for rtld hppa/ia64: _dl_unmap: make it hidden sparc: fix sigaction for 32bit builds [BZ #18694] ia64: siginfo.h: delete siginfo name ia64: sifaction.h: change sa_flags to an int ia64: stat.h: rename pad0 to __glibc_reserved0 ia64: msg.h: fix msg_qnum/msg_qbytes types ia64: sigaction.h: fix sa_flags ordering conform/linknamespace: whitelist matherrf/matherrl pwd.h: revert __nonnull markings on putpwent [BZ #18641] ia64: clean up old kernel headers cruft ia64: atomic.h: fix atomic_exchange_and_add 64bit handling ia64: drop __tls_get_addr from expected ld.so plt usage hppa: rewrite INLINE_SYSCALL hppa: fix sysdep.h header setup hppa: sigaction.h: change sa_flags to an int hppa: fix pthreadtypes.h namespace failures hppa: add bz entry for pthreadtypes.h fix Miroslav Lichvar (1): Update timex.h for ADJ_SETOFFSET. Nathan Lynch (1): ARM: VDSO support Ondřej Bílka (2): Handle mblen return code when n is zero. Use strspn/strcspn/strpbrk ifunc in internal calls. Paul Eggert (6): Add ersatz _Static_assert on older C hosts * manual/time.texi (TZ Variable): glibc no longer comes with tzdata. * stdlib/setenv.c (__add_to_environ): * stdlib/setenv.c (__add_to_environ): Revert previous change. Better fix for setenv (..., NULL, ...) Remove obsolete aliases that broke 'locale -a' Paul Pluzhnikov (13): Cleanup: add missing #include's Fix BZ #17269 -- _IO_wstr_overflow integer overflow Fix BZ #17916 - fopen unbounded stack usage for ccs= modes Fix minor formatting violation. Fix BZ 18036 buffer overflow (read past end of buffer) in internal_fnmatch Fix BZ #18043: buffer-overflow (read past the end) in wordexp/parse_dollars/parse_param Cleanup: in preparation for fixing BZ #16734, fix memory leaks exposed by Refactor wordexp-test.c such that words always ends at the edge of Fix off-by-one which caused BZ #18042 and add a test for it. Mention BZ #18042 in NEWS. Fix BZ #18043 (c4): buffer-overflow (read past the end) in wordexp/parse_dollars/parse_param Minor refactoring: Fix BZ #18043 comment # 19: don't call undefined setenv(..., NULL, 1). Pavel Kopyl (1): Add forced deletion support to _dl_close_worker Pravin Satpute (1): Correcting language code for Bhili and Tulu locales (bug 17475) Rajalakshmi Srinivasaraghavan (2): powerpc: POWER7 strncpy optimization for unaligned string powerpc: strstr optimization Rical Jasan (1): manual: complete example in error message documentation Richard Henderson (5): alpha: Unconditionally include dl-sysdep.h in sysdep.h alpha: Update libm-test-ulps math/test-fenvinline: Cast fe_exc to unsigned int before printing alpha: Update libm-test-ulps soft-fp: Fix alpha kernel build problem Roland McGrath (97): Clean up sysdep-dl-routines variable. Exclude rpcent functions and NSS backends for rpc, key when excluding sunrpc. x86: Clean up __vdso_clock_gettime variable. Clean up NPTL fork to be compat-only. Clean up NPTL longjmp to be compat-only. Clean up NPTL system to be compat-only. Clean up nptl/tst-join5 use of nanosleep. Fix nptl/tst-kill5 not to presume SIGRTMAX exists. Fix dirent/tst-fdopendir not to presume O_NOATIME exists. Fix libio/tst-atime not to presume ST_NOATIME exists. Move tst-getlogin to login/ subdirectory. Do not use SA_NOCLDWAIT in tst-pselect. Conditionalize some tests' use of SA_SIGINFO. Use signal rather than sigaction in nptl/tst-cleanup2. NPTL: Build tests using clone directly only for Linux. Don't set unused field in rt/tst-timer2. Conditionalize use of SIGRTMIN in nptl/tst-locale1.c. NPTL: Conditionalize some sanity tests for SIGCANCEL/SIGSETXID. ARM: Add missing sfi_breg in LDR_GLOBAL macro. Clean up math/test-snan. Pointless update in README. Another pointless update in README. Support after-link variable to run a final step on binaries. Use -Werror=undef for assembly code. NPTL: Initializer for .init_array-only configurations. Add placeholder c++-types.data and *.abilist files. Don't crash in iconv setup when getcwd fails. Convert tst-iconv5 to use test-skeleton. Convert tst-iconv3 to use test-skeleton. Convert dlfcn/tststatic2 to use test-skeleton. Deglobalize internal variables in timer_routines.c. Avoid C++ tests when the C++ cannot be linked. Avoid more C++ tests. Conditionalize some test code for SIGRTMIN, SA_SIGINFO. Split rpcent tests out of tst-netdb. Define ETH_ALEN in generic <netinet/if_ether.h>. Avoid re-exec-self in bug-setlocale1. ChangeLog format Document test-wrapper-env-only in INSTALL. Harmonize posix/regcomp.c with gnulib: comment formatting Let tests result in UNSUPPORTED; use that for unbuildable C++ cases ARM: Rewrite sysdeps/arm/tls-macros.h ARM: Fix memcpy & memmove for [ARM_ALWAYS_BX] Minor cleanups in libio/iofdopen.c Convert dlfcn/tststatic to use test-skeleton. Make test-skeleton.c grok TEST_DIRECT magic environment variable. Let non-add-on preconfigure scripts set libc_config_ok. Omit libc-modules.h for all .v.i files. Add arm-nacl port. Fuller check for invalid NSID in _dl_open. Avoid confusing compiler with dynamically impossible statically invalid dereference in _dl_close_worker. ARM: Define PI_STATIC_AND_HIDDEN. NaCl: Make __suseconds_t be long int rather than int32_t. NaCl: Fix symbol names for euidaccess. NaCl: Change clock_t to long int. NaCl: Fix elf_loader file name in nacl-test-wrapper.sh BZ#18383: Add test case for large alignment in TLS blocks. NaCl: Implement gethostname. NaCl: Provide non-default values for uname. Add a test case for scandir. Break __scandir_cancel_handler out into its own file. Refactor scandir/scandirat to use common tail. Nit fixes in last change. NaCl: Make fdopendir skip fcntl check. Refactor opendir. BZ#18434: Fix sem_post EOVERFLOW check for [!__HAVE_64B_ATOMICS]. BZ#18434: Mark fixed in NEWS. Move usleep.c using nanosleep to sysdeps/posix. NaCl: Set tid field to a unique value. Fix nptl-init.c use of INTERNAL_SYSCALL_DECL. Split timed-wait functions out of nptl/lowlevellock.c. NaCl: Add NaCl-specific __lll_timedlock_wait. NaCl: Fix thinko in last change. NaCl: Fix lll_futex_timed_wait timeout calculation. NaCl: Make thread exit wake pthread_join. Fix setenv.c diagnostic pragma to be compatible with GCC 4.6 BZ#18383: Another test case, with TLS refs and defs in separate TUs. NaCl: Implement nacl_interface_ext_supply entry point. Line-wrap some log entries. Print more information in tst-getcpu failure case. NaCl: Fix glob.c build after getlogin_r -> __getlogin_r. Use unsigned types for counters in AIO code. Use unsigned types for counters in getaddrinfo_a code. NPTL: Use unsigned type for setxid_futex. Install a dummy <rpc/netdb.h> when not building sunrpc/. Fix some places to use $(LN_S) makefile variable. BZ#18383: Conditionalize test-xfail-tst-tlsalign{,-static} on ARM assembler bug. PLT avoidance for _exit in rtld. Provide __libc_fatal for rtld. NaCl: Make pthread_condattr_setclock reject CLOCK_MONOTONIC. Factor file identity rules out of generic rtld code. Add abilist files and NEWS item for arm-nacl port. NaCl: Use only nacl_irt_dev_filename, never nacl_irt_filename. NaCl: Fix missing getdtablesize symbol. Add SIGWINCH to generic <bits/signum.h>. Make sysdeps/posix bring in login subdir. NaCl: Remove bogus O_SHLOCK, O_EXLOCK definitions. Rüdiger Sonderfeld (1): Document tv_sec is of type time_t: Samuel Thibault (28): hurd: fix build with pthread aio hurd: fix f?chflags prototypes, declare them and their flags hurd: allow poll() array bigger than FD_SETSIZE hurd: map nice levels 1-to-1 with Mach prio levels hurdselect: Let select get interrupted by signals hurd: fix sigstate locking hurdselect: remove dead code. hurd: support mmap with PROT_NONE hurd: add basic types for ioctls hurd: fix compilation of signal.h in C++ hurd: fix compilation of signal.h in C++ hurd: Ignore bytes beyond sockaddr length for AF_UNIX hurd: fix tls.h build hurd: Fix abi-tag, following ba90e05 Fix time/getdate.c build. add hurd/hurdsocket.h file missing from a5eb23d hurd: fix unwind-resume.c build hurd: fix unwind-resume.c build Add fixed bug numbers to NEWS Revert "hurd: Fix abi-tag, following ba90e05" Fix aio_error thread-safety. hurd: Make libc able to call pthread stubs Add missing dependency Fix warnings Fix visibility of EXTPROC macro Add more exception to local headers list mach: fix typo hurd: permit to use mlock from non-root process Siddhesh Poyarekar (25): Consolidate arena_lookup and arena_lock into a single arena_get Skip logging for DNSSEC responses [BZ 14841] Fix up NEWS merge goof-up Update NEWS Minor changelog fixup Add *.pyc to .gitignore Add envz_remove to the libc manual Succeed if make check does not report any errors Avoid deadlock in malloc on backtrace (BZ #16159) Fix typo in safety annotations in envz_remove Fix monetary.h comment New module to import and process benchmark output benchtest: script to compare two benchmarks Avoid boolean coercion in tst-tls-atexit test case Remove unnecessary mutex locks from tst-tls-atexit test case Whitespace fix in tst-tls-atexit.c Fix up ChangeLog Fix up typo in tst-tls-atexit Set NODELETE flag when opening already open objects with RTLD_NODELETE Whitespace fixup in cxa_thread_atexit_impl.c Add comment to clarify how the test can fail Remove Linuxism from tst-tls-atexit Also use l_tls_dtor_count to decide on object unload (BZ #18657) Mention dl_load_lock by name in the comments Use IE model for static variables in libc.so, libpthread.so and rtld Stefan Liebler (18): S390: Build failure due to nptl/pt-longjmp.c changes. s390: Use generic lowlevellock-futex.h S/390: Regenerate ULPs S/390: Fix setcontext/swapcontext which are not restoring sigmask. Update tst_mbrlen/tst_mbrtowc for mblen change Set errno for log1p on pole/domain error. Use correct signedness in wcsncmp S/390: Get cache information via sysconf S/390: Regenerate ULPs Adjust tst-strfmon1 after da_DK locale change. S/390: Regenerate ULPs Fix timezone tests run in parallel. Fix benchtests build failure after 'add benchmark for strcoll' S390: Fix sem.h conformance test failures. S390: Regenerate ULPs. S390: Fix "backtrace() returns infinitely deep stack frames with makecontext()" [BZ #18508]. S390: Regenerate ULPs i686: Mark stdlib/tst-makecontext as XFAIL. Steve Ellcey (6): 2015-02-13 Steve Ellcey <sellcey@imgtec.com> 2015-02-17 Steve Ellcey <sellcey@imgtec.com> 2015-02-17 Steve Ellcey <sellcey@imgtec.com> 2015-02-18 Steve Ellcey <sellcey@imgtec.com> * inet/rcmd.c (rresvport_af): Change ss to anonymous union * resolv/res_hconf.c (_res_hconf_reorder_addrs): Use a union to Szabolcs Nagy (11): [AArch64] Fix the big endian loader name. [AArch64] Fix inline asm clobber list in tls-macros.h struct stat is not posix conform [BZ 18034][AArch64] Lazy TLSDESC relocation data race fix [AArch64] Fix cfi_adjust_cfa_offset usage in dl-tlsdesc.S Regenerate aarch64 libm-test-ulps [AArch64] make setcontext etc functions consistent with the kernel [AArch64][BZ 18400] fix elf_prpsinfo in procfs.h [AArch64][BZ 18648] change greg_t definition in ucontext.h [AArch64][BZ #17711] Fix extern protected data handling [ARM][BZ #17711] Fix extern protected data handling Torvald Riegel (11): Make error checking effective in nptl/tst-cond25.c. ia64: Remove custom lowlevellock.h Fix lost wake-up when pthread_rwlock_timedrwlock times out. Fix missing wake-ups in pthread_rwlock_rdlock. Fix atomic_full_barrier on x86 and x86_64. Clean up BUSY_WAIT_NOP and atomic_delay. Remove documentation of lowlevellock systemtap probes. Do not create invalid pointers in C code of string functions. Add and use new glibc-internal futex API. Clean up semaphore EINTR handling after Linux futex docs clarification. hppa: Remove custom lowlevellock.h. Tulio Magno Quites Machado Filho (2): BZ #18116: Mark fixed in NEWS. Avoid outputting to TTY after an expected memory corruption in testcase Vincent Bernat (1): time: ensure failing strptime() tests are reported correctly Wilco Dijkstra (14): Rather than using a C implementation of memset, directly call memset, which Rather than using a C implementation of memmove, directly call memmove, which Use __copysign rather than copysign. 2015-05-06 Szabolcs Nagy <szabolcs.nagy@arm.com> Remove various ABS macros and replace uses with fabs (or in one case abs) Add missing math_private includes. 2015-05-28 Wilco Dijkstra <wdijkstr@arm.com> 2015-06-02 Szabolcs Nagy <szabolcs.nagy@arm.com> This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use standard C99 macros. This has no effect on generated code. Replace finite with isfinite. Remove unused file sysdeps/ieee754/support.c Inline __ieee754_sqrt and __ieee754_sqrtf. Also add external definitions. Optimize the strlen implementation by using a page cross check and a fast check Add AArch64 versions of math_opt_barrier and math_force_eval that avoid going via memory. Yaakov Selkowitz (1): manual: fix XPG basename prototype Zack Weinberg (1): Deprecate the use of regexp.h ----------------------------------------------------------------------- This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU C Library master sources". The branch, master has been updated via 2954daf00bb4dc27c69a48e6798d5960ea320741 (commit) from a27a4f4721837a5fb36ace833764b06a64c5af1c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2954daf00bb4dc27c69a48e6798d5960ea320741 commit 2954daf00bb4dc27c69a48e6798d5960ea320741 Author: Andreas Schwab <schwab@suse.de> Date: Tue Oct 23 09:40:14 2018 +0200 Add more checks for valid ld.so.cache file (bug 18093) ----------------------------------------------------------------------- Summary of changes: ChangeLog | 7 +++++++ elf/cache.c | 5 +++++ elf/dl-cache.c | 5 ++++- 3 files changed, 16 insertions(+), 1 deletions(-) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU C Library master sources". The annotated tag, glibc-2.29 has been created at e7c9e41bb2407b0150997b382b49a5f3bb579bf9 (tag) tagging 56c86f5dd516284558e106d04b92875d5b623b7a (commit) replaces glibc-2.28.9000 tagged by Siddhesh Poyarekar on Thu Jan 31 22:24:07 2019 +0530 - Log ----------------------------------------------------------------- The GNU C Library ================= The GNU C Library version 2.29 is now available. The GNU C Library is used as *the* C library in the GNU system and in GNU/Linux systems, as well as many other systems that use Linux as the kernel. The GNU C Library is primarily designed to be a portable and high performance C library. It follows all relevant standards including ISO C11 and POSIX.1-2008. It is also internationalized and has one of the most complete internationalization interfaces known. The GNU C Library webpage is at http://www.gnu.org/software/libc/ Packages for the 2.29 release may be downloaded from: http://ftpmirror.gnu.org/libc/ http://ftp.gnu.org/gnu/libc/ The mirror list is at http://www.gnu.org/order/ftp.html NEWS for version 2.29 ==================== * The getcpu wrapper function has been added, which returns the currently used CPU and NUMA node. This function is Linux-specific. * A new convenience target has been added for distribution maintainers to build and install all locales as directories with files. The new target is run by issuing the following command in your build tree: 'make localedata/install-locale-files', with an optional DESTDIR to set the install root if you wish to install into a non-default configured location. * Optimized generic exp, exp2, log, log2, pow, sinf, cosf, sincosf and tanf. * The reallocarray function is now declared under _DEFAULT_SOURCE, not just for _GNU_SOURCE, to match BSD environments. * For powercp64le ABI, Transactional Lock Elision is now enabled iff kernel indicates that it will abort the transaction prior to entering the kernel (PPC_FEATURE2_HTM_NOSC on hwcap2). On older kernels the transaction is suspended, and this caused some undefined side-effects issues by aborting transactions manually. Glibc avoided it by abort transactions manually on each syscall, but it lead to performance issues on newer kernels where the HTM state is saved and restore lazily (the state being saved even when the process actually does not use HTM). * The functions posix_spawn_file_actions_addchdir_np and posix_spawn_file_actions_addfchdir_np have been added, enabling posix_spawn and posix_spawnp to run the new process in a different directory. These functions are GNU extensions. The function posix_spawn_file_actions_addchdir_np is similar to the Solaris function of the same name. * The popen and system do not run atfork handlers anymore (BZ#17490). Although it is a possible POSIX violation, the POSIX rationale in pthread_atfork documentation regarding atfork handlers is to handle inconsistent mutex state after a fork call in a multi-threaded process. In both popen and system there is no direct access to user-defined mutexes. * Support for the C-SKY ABIV2 running on Linux has been added. This port requires at least binutils-2.32, gcc-9.0, and linux-4.20. Two ABIs are supported: - C-SKY ABIV2 soft-float little-endian - C-SKY ABIV2 hard-float little-endian * strftime's default formatting of a locale's alternative year (%Ey) has been changed to zero-pad the year to a minimum of two digits, like "%y". This improves the display of Japanese era years during the first nine years of a new era, and is expected to be harmless for all other locales (only Japanese locales regularly have alternative year numbers less than 10). Zero-padding can be overridden with the '_' or '-' flags (which are GNU extensions). * As a GNU extension, the '_' and '-' flags can now be applied to "%EY" to control how the year number is formatted; they have the same effect that they would on "%Ey". Deprecated and removed features, and other changes affecting compatibility: * The glibc.tune tunable namespace has been renamed to glibc.cpu and the tunable glibc.tune.cpu has been renamed to glibc.cpu.name. * The type of the pr_uid and pr_gid members of struct elf_prpsinfo, defined in <sys/procfs.h>, has been corrected to match the type actually used by the Linux kernel. This affects the size and layout of that structure on MicroBlaze, MIPS (n64 ABI only), Nios II and RISC-V. * For the MIPS n32 ABI, the type of the pr_sigpend and pr_sighold members of struct elf_prstatus, and the pr_flag member of struct elf_prpsinfo, defined in <sys/procfs.h>, has been corrected to match the type actually used by the Linux kernel. This affects the size and layout of those structures. * An archaic GNU extension to scanf, under which '%as', '%aS', and '%a[...]' meant to scan a string and allocate space for it with malloc, is now restricted to programs compiled in C89 or C++98 mode with _GNU_SOURCE defined. This extension conflicts with C99's use of '%a' to scan a hexadecimal floating-point number, which is now available to programs compiled as C99 or C++11 or higher, regardless of _GNU_SOURCE. POSIX.1-2008 includes the feature of allocating a buffer for string input with malloc, using the modifier letter 'm' instead. Programs using '%as', '%aS', or '%a[...]' with the old GNU meaning should change to '%ms', '%mS', or '%m[...]' respectively. Programs that wish to use the C99 '%a' no longer need to avoid _GNU_SOURCE. GCC's -Wformat warnings can detect most uses of this extension, as long as all functions that call vscanf, vfscanf, or vsscanf are annotated with __attribute__ ((format (scanf, ...))). Changes to build and runtime requirements: * Python 3.4 or later is required to build the GNU C Library. * On most architectures, GCC 5 or later is required to build the GNU C Library. (On powerpc64le, GCC 6.2 or later is still required, as before.) Older GCC versions and non-GNU compilers are still supported when compiling programs that use the GNU C Library. Security related changes: CVE-2018-19591: A file descriptor leak in if_nametoindex can lead to a denial of service due to resource exhaustion when processing getaddrinfo calls with crafted host names. Reported by Guido Vranken. CVE-2019-6488: On x32, the size_t parameter may be passed in the lower 32 bits of a 64-bit register with with non-zero upper 32 bit. When it happened, accessing the 32-bit size_t value as the full 64-bit register in the assembly string/memory functions would cause a buffer overflow. Reported by H.J. Lu. CVE-2016-10739: The getaddrinfo function could successfully parse IPv4 addresses with arbitrary trailing characters, potentially leading to data or command injection issues in applications. Release Notes ============= https://sourceware.org/glibc/wiki/Release/2.29 Contributors ============ This release was made possible by the contributions of many people. The maintainers are grateful to everyone who has contributed changes or bug reports. These include: Adhemerval Zanella Albert ARIBAUD (3ADEV) Alexandra Hájková Andreas K. Hüttel Andreas Schwab Anton Youdkevitch Arjun Shankar Assaf Gordon Aurelien Jarno Carlos O'Donell Charles-Antoine Couret DJ Delorie Darius Rad David S. Miller Dmitry V. Levin Florian Weimer Fredrik Noring Gabriel F. T. Gomes H.J. Lu Ilya Leoshkevich Ilya Yu. Malakhov Istvan Kurucsai Jim Wilson Joseph Myers Justus Winter Kemi Wang Leonardo Sandoval Mao Han Martin Jansa Martin Kuchta Martin Sebor Mingli Yu Moritz Eckert PanderMusubi Paul Clarke Paul Eggert Paul Pluzhnikov Pochang Chen Rafael Avila de Espindola Rafael Ávila de Espíndola Rafal Luzynski Rajalakshmi Srinivasaraghavan Rogerio Alves Samuel Thibault Sergi Almacellas Abellana Siddhesh Poyarekar Stefan Liebler Steve Ellcey Szabolcs Nagy TAMUKI Shoichi Tobias Klauser Tulio Magno Quites Machado Filho Uroš Bizjak Wilco Dijkstra Zack Weinberg Zong Li -----BEGIN PGP SIGNATURE----- iQEcBAABAgAGBQJcUyg2AAoJEHnEPfvxzyGHauAIAJmbTi6IHhY18D0NwFH002a/ Z/4L4jTd9/I8kaR+qYMGDi1tO+cTWtxO3jdlIU7/1VRdnL1h+HnlYTJlc64DVP9t 3W4lhSJRbK8HWlV0emmNHnBCgV6SxOMaMPN286WKLDTYI3OrOs16qkKneDqhWEoG BS1rvxdkd27hOds3CY4xsgCFgeyo/aS+sqV2nMNdcpGBb1ZLNET3O3AkP155BwOF utMl2xbQ5Ue17mOrw1TiOUJqvvf6FhNHFLT1dgBmgAVP+sXhjgL00co4sHh5xu5x vJ1ju3KgzIYtxbiAIUTppia/nRFX4K8z+VL7f4aDeUm6cxuikECcpCVgH7if4gc= =Fcnu -----END PGP SIGNATURE----- Adhemerval Zanella (43): powerpc: Only enable TLE with PPC_FEATURE2_HTM_NOSC Use libsupport for tst-spawn.c Fix ifunc support with DT_TEXTREL segments (BZ#20480) Fix misreported errno on preadv2/pwritev2 (BZ#23579) libio: Flush stream at freopen (BZ#21037) Fix build from commit 0b727ed x86: Fix Haswell strong flags (BZ#23709) Fix tst-preadvwritev2 build failure on HURD posix: Add internal symbols for posix_spawn interface support: Fix printf format for TEST_COMPARE_STRING posix: Use posix_spawn on popen posix: Use posix_spawn on system Fix ChangeLog date from previous commit posix: Fix segfault in maybe_script_execute m68k: Fix sigaction kernel definition (BZ #23960) alpha: Use Linux generic sigaction implementation hppa: Remove kernel_sigaction.h ia64: Remove kernel_sigaction.h s390: Use generic kernel_sigaction.h Fix BZ number for 43a45c2d82 Replace check_mul_overflow_size_t with __builtin_mul_overflow termios: Define TIOCSER_TEMT with __USE_MISC (BZ#17783) termios: Consolidate struct termios termios: Consolidate termios c_cc symbolic constants termios: Consolidate Input Modes definitions. termios: Consolidate Output Modes definitions termios: Consolidate Baud Rate Selection definitions (BZ#23783) termios: Consolidate control mode definitions termios: Consolidate local mode definitions termios: Consolidate tcflow symbolic constants termios: Remove Linux _IOT_termios termios: Add powerpc termios-misc termios: Consolidate termios.h posix: Clear close-on-exec for posix_spawn adddup2 (BZ#23640) nptl: Remove tst-cancel-wrappers test and related macros nptl: Fix testcases for new pthread cancellation mechanism x86_64: Remove wrong THREAD_ATOMIC_* macros i386: Remove bogus THREAD_ATOMIC_* macros nptl: Cleanup cancellation macros posix: Fix tst-spawn.c issue from commit 805334b26c elf: Fix LD_AUDIT for modules with invalid version (BZ#24122) hurd: Fix libsupport xsigstack build [elf] Revert 8e889c5da3 (BZ#24122) Albert ARIBAUD (3ADEV) (12): Y2038: provide size of default time_t for target architecture Fix date typo in ChangeLog Y2038: Add 64-bit time for all architectures Y2038: make __tz_convert compatible with 64-bit-time Y2038: add function __localtime64 Fix __TIMERSIZE and @theglibcadj typos Y2038: add function __localtime64_r Y2038: add function __gmtime64 Y2038: add function __gmtime64_r Y2038: add function __ctime64 Y2038: add function __ctime64_r Y2038: make __difftime compatible with 64-bit time Alexandra Hájková (1): Add an additional test to resolv/tst-resolv-network.c Andreas K. Hüttel (1): resolv: IDNA tests: AAAA (28) is valid, no fallthrough to default Andreas Schwab (16): RISC-V: Don't use ps_get_thread_area in libthread_db (bug 23402) Don't build libnsl for new ABIs Remove leading space from testrun.sh Add missing unwind information to ld.so on powerpc32 (bug 23707) Fix stack overflow in tst-setcontext9 (bug 23717) Don't reduce test timeout to less than default Don't use PSEUDO_END for non-PSEUDO function Add more checks for valid ld.so.cache file (bug 18093) RISC-V: properly terminate call chain (bug 23125) libanl: properly cleanup if first helper thread creation failed (bug 22927) RISC-V: don't assume PI mutexes and robust futexes before 4.20 (bug 23864) Move *-le.abilist to le/*.abilist Remove support for abilist-pattern Reindent nptl/pthread_rwlock_common.c Fix rwlock stall with PREFER_WRITER_NONRECURSIVE_NP (bug 23861) nscd: avoid assertion failure during persistent db check Anton Youdkevitch (1): aarch64: optimized memcpy implementation for thunderx2 Arjun Shankar (3): Clean up iconv/gconv_int.h for unnecessary declarations Remove unnecessary locking when reading iconv configuration [BZ #22062] Unconditionally call __gconv_get_path when reading iconv configuration Assaf Gordon (1): regex: fix heap-use-after-free error Aurelien Jarno (4): Update Alpha libm-test-ulps ARM: fix kernel assisted atomics with GCC 8 (bug 24034) en_US: define date_fmt (bug 24046) Only build libm with -fno-math-errno (bug 24024) Carlos O'Donell (11): Add version.h, and NEWS update to ChangeLog. Add convenience target 'install-locale-files'. Fix ChangeLog date. Update be translations. Update be translations. Update translations for be. Fix test failure with -DNDEBUG. Fix tst-setcontext9 for optimized small stacks. abilist.awk: Treat .tdata like .tbss and reject unknown combinations. Add --no-hard-links option to localedef (bug 23923) x86: Add Hygon Dhyana support. Charles-Antoine Couret (1): argp: do not call _IO_fwide() if _LIBC is not defined DJ Delorie (10): RISC-V: Fix rounding save/restore bug. Regen RISC-V rvd ULPs Improve ChangeLog message. Add test-in-container infrastructure. Fix IA64 links-dso-program link. links-dso-program: Fix build-programs=no build case. malloc: tcache double free check test-container: add "su" command to run test as root, add unshare hints malloc: Add another test for tcache double free check. test-container: move postclean outside of namespace changes Darius Rad (1): RISC-V: Update nofpu ULPs David S. Miller (2): Regenerate sparc ulps. Add VDSO support to sparc. Dmitry V. Levin (1): Fix a few typos in comments Florian Weimer (61): Linux: Rewrite __old_getdents64 [BZ #23497] mbstowcs: Remove outdated comment error, error_at_line: Add missing va_end calls nscd: Deallocate existing user names in file parser nss_files: Fix file stream leak in aliases lookup [BZ #23521] error, warn, warnx: Use __fxprintf for wide printing [BZ #23519] Fix attribution of previous change in ChangeLog Makeconfig (ASFLAGS): Always append required assembler flags Add --with-nonshared-cflags option to configure math: Regenerate s390 ulps malloc: Add ChangeLog for accidentally committed change __readlink_chk: Assume HAVE_INLINED_SYSCALLS __readlink_chk: Remove micro-optimization Makeconfig: Do not sort and deduplicate +cflags [BZ # 17248] Avoid running some tests if the file system does not support holes nscd: Fix use-after-free in addgetnetgrentX [BZ #23520] test-container: EPERM from unshare is UNSUPPORTED regex: Add test tst-regcomp-truncated [BZ #23578] reallocarray: Declare under _DEFAULT_SOURCE misc: New test misc/tst-gethostid resource: Update struct rusage comments [BZ #23689] time/tst-mktime2: Improve test error reporting conform: XFAIL siginfo_t si_band test on sparc64 stdlib/test-bz22786: Avoid spurious test failures using alias mappings stdlib/tst-strtod-overflow: Switch to support_blob_repeat support_blob_repeat: Call mkstemp directory for the backing file stdlib/test-bz22786: Avoid memory leaks in the test itself support/test-container.c: Include <libc-pointer-arith.h> support/shell-container.c: Use support_copy_file_range posix: New function posix_spawn_file_actions_addchdir_np [BZ #17405] support: Implement TEST_COMPARE_STRING malloc: Convert the unlink macro to the unlink_chunk function malloc: Use current (C11-style) atomics for fastbin access support: Print timestamps in timeout handler malloc: tcache: Validate tc_idx before checking for double-frees [BZ #23907] CVE-2018-19591: if_nametoindex: Fix descriptor for overlong name [BZ #23927] support: Implement support_quote_string support_quote_string: Do not use str parameter name support: Add signal support to support_capture_subprocess_check posix: Do not include testcases.h, ptestcases.h in source tree scripts/abilist.awk: Handle special _end symbol for Hurd support: Close original descriptors in support_capture_subprocess support: Implement <support/descriptors.h> to track file descriptors inet/tst-if_index-long: New test case for CVE-2018-19591 [BZ #23927] posix: New function posix_spawn_file_actions_addfchdir_np [BZ #17405] compat getdents64: Use correct offset for retry [BZ #23972] timespec_get (posix): Fix copyright header manual: Document thread/task IDs for Linux support: Do not require overflow builtin in support/blob_repeat.c localedata: Remove executable bit from localedata/locales/bi_VU [BZ #23995] locale: Rewrite locale/gen-translit.pl in Python malloc: Always call memcpy in _int_realloc [BZ #24027] nptl/tst-audit-threads: Switch to <support/test-driver.c> intl: Do not return NULL on asprintf failure in gettext [BZ #24018] Fix ChangeLog entry Linux: Improve handling of resource limits in misc/tst-ttyname manual: Use @code{errno} instead of @var{errno} [BZ #24063] malloc: Revert fastbins to old-style atomics resolv: Reformat inet_addr, inet_aton to GNU style resolv: Do not send queries for non-host-names in nss_dns [BZ #24112] CVE-2016-10739: getaddrinfo: Fully parse IPv4 address strings [BZ #20018] Fredrik Noring (1): MIPS: Use `.set mips2' to emulate LL/SC for the R5900 too Gabriel F. T. Gomes (11): Fix typo in the documentation of gcvt Add tests for argp_error and argp_failure with floating-point parameters Add test for warn, warnx, vwarn, and vwarnx with floating-point parameters Add tests with floating-point arguments for err* and verr* functions Use TEST_COMPARE_STRING in recently added test Convert tst-efgcvt to the new test framework Prepare vfscanf to use __strtof128_internal Remove redirection of _IO_vfprintf Add *-ldbl.h headers to include/bits Add tests for the long double version of ecvt and fcvt Set behavior of sprintf-like functions with overlapping source and destination H.J. Lu (34): x86: Rename get_common_indeces to get_common_indices x86: Cleanup cpu-features-offsets.sym x86: Don't include <init-arch.h> in assembly codes x86: Move STATE_SAVE_OFFSET/STATE_SAVE_MASK to sysdep.h test-container: Use xcopy_file_range for cross-device copy [BZ #23597] i386: Use ENTRY and END in start.S [BZ #23606] i386: Use _dl_runtime_[resolve|profile]_shstk for SHSTK [BZ #23716] x86: Use RTM intrinsics in pthread mutex lock elision x86: Use _rdtsc intrinsic for HP_TIMING_NOW x86: Don't include <x86intrin.h> x86: Support RDTSCP for benchtests Check multiple NT_GNU_PROPERTY_TYPE_0 notes [BZ #23509] x86/CET: Add a re-exec test with legacy bitmap _dl_exception_create_format: Support %x/%lx/%zx elf/dl-exception.c: Include <_itoa.h> for _itoa prototype x86: Extend CPUID support in struct cpu_features Add getcpu Don't use __typeof__ (getcpu) x86: Merge i386/x86_64 atomic-machine.h manual/examples: Remove redundant "if not" x86-64: Vectorize sincosf_poly and update s_sincosf-fma.c Regenerate sysdeps/x86_64/fpu/libm-test-ulps x86-64: Remove s_sincosf-sse2.S riscv: Use __has_include__ to include <asm/syscalls.h> [BZ #24022] soft-fp: Properly check _FP_W_TYPE_SIZE [BZ #24066] Disable lazy binding on tests for minimal signal handler x86-64 memchr/wmemchr: Properly handle the length parameter [BZ# 24097] x86-64 memcmp/wmemcmp: Properly handle the length parameter [BZ# 24097] x86-64 memcpy: Properly handle the length parameter [BZ# 24097] x86-64 memrchr: Properly handle the length parameter [BZ# 24097] x86-64 memset/wmemset: Properly handle the length parameter [BZ# 24097] x86-64 strncmp family: Properly handle the length parameter [BZ# 24097] x86-64 strncpy: Properly handle the length parameter [BZ# 24097] x86-64 strnlen/wcsnlen: Properly handle the length parameter [BZ# 24097] Ilya Leoshkevich (12): S390: Use symbolic offsets for stack variables in 32-bit _dl_runtime_resolve S390: Use symbolic offsets for stack variables in 32-bit _dl_runtime_profile S390: Use symbolic offsets for stack variables in 64-bit _dl_runtime_resolve S390: Use symbolic offsets for stack variables in 64-bit _dl_runtime_profile S390: Do not clobber R0 in 32-bit _dl_runtime_resolve S390: Do not clobber R0 in 32-bit _dl_runtime_profile S390: Do not clobber R0 in 64-bit _dl_runtime_resolve S390: Do not clobber R0 in 64-bit _dl_runtime_profile S390: Test that lazy binding does not clobber R0 Move __fentry__ version definition to sysdeps/{i386,x86_64} S390: Implement 64-bit __fentry__ S390: Fix unwind in 32-bit _mcount Ilya Yu. Malakhov (1): signal: Use correct type for si_band in siginfo_t [BZ #23562] Istvan Kurucsai (3): malloc: Additional checks for unsorted bin integrity I. malloc: Add more integrity checks to mremap_chunk. malloc: Check the alignment of mmapped chunks before unmapping. Jim Wilson (1): RISC-V: Update LP64D libm-test-ulps. Joseph Myers (123): Move SNAN_TESTS_TYPE_CAST out of math-tests.h. Move SNAN_TESTS_PRESERVE_PAYLOAD out of math-tests.h. Fix math/test-misc.c for undefined fenv.h macros. Do not define various fenv.h macros for MIPS soft-float (bug 23479). Consistently terminate libm-test-*.inc TEST lines with commas. Move comment from libm-test-nextdown.inc to libm-test-nexttoward.inc. Replace gen-libm-test.pl with gen-libm-test.py. Move SNAN_TESTS_* out of math-tests.h. Use Linux 4.18 in build-many-glibcs.py. Update install.texi documentation of uses of Perl and Python. Update syscall-names.list for Linux 4.18. Add NT_VMCOREDD, AT_MINSIGSTKSZ from Linux 4.18 to elf.h. Update struct signalfd_siginfo from Linux 4.18. Update netinet/tcp.h from Linux 4.18. Move ROUNDING_TESTS_* out of math-tests.h. Don't redefine ROUNDING_TESTS_* in math/test-*-vlen*.h. Move EXCEPTION_TESTS_* out of math-tests.h Move EXCEPTION_ENABLE_SUPPORTED out of math-tests.h. Update netinet/udp.h from Linux 4.18. Move EXCEPTION_SET_FORCES_TRAP out of math-tests.h. Split fenv_private.h out of math_private.h more consistently. Make gen-libm-test.py treat plus_oflow and minus_oflow as non-finite. Replace conform/list-header-symbols.pl with a Python script. Do not include fenv_private.h in math_private.h. Move fenv.h soft-float inlines from fenv_private.h to include/fenv.h. Move float128 inlines from sysdeps/generic/math_private.h to include/math.h. Remove alpha math_private.h. Add build-many-glibcs.py --enable-obsolete-* configs. Add build-many-glibcs.py support for building more GCC libraries. Remove x86_64 math_private.h asms. Include most of elf/ modules-names in modules-names-tests. Use floor functions not __floor functions in glibc libm. Use rint functions not __rint functions in glibc libm. Fix sys/procfs.h pr_uid, pr_gid type (bug 23649). Fix MIPS n32 pr_sigpend, pr_sighold, pr_flag type (bug 23656). Update siginfo constants from Linux kernel (bug 21286). Use ceil functions not __ceil functions in glibc libm. Fix ldbl-128ibm ceill, floorl inlining of ceil, floor. Unify many bits/mman.h headers. Invert sense of list of i686-class processors in sysdeps/x86/cpu-features.h. Use trunc functions not __trunc functions in glibc libm. Unify some sys/procfs.h headers. Unify more sys/procfs.h headers. Complete sys/procfs.h unification. Share MAP_* flags between more architectures. Use round functions not __round functions in glibc libm. Use copysign functions not __copysign functions in glibc libm. Remove unnecessary math_private.h includes. Move MREMAP_* to bits/mman-shared.h. Add more fma tests. Fix libnldbl_nonshared.a references to internal libm symbols (bug 23735). Use bits/mman-linux.h for hppa. Use common bits/msq.h for more architectures. Use common bits/sem.h for more architectures. Use common bits/shm.h for more architectures. Use single bits/msq.h for all architectures. Use single bits/sem.h for all architectures. Move SHMLBA to its own header. Use single bits/shm.h for all architectures. Do not allow divide-by-zero exception for pow(+/- 0, -Inf). Handle surrogate pairs in c16rtomb (bug 23794, DR#488, C2X). Stop c32rtomb and mbrtoc32 aliasing wcrtomb and mbrtowc (bug 23793). Use Linux 4.19 in build-many-glibcs.py. Update kernel version in syscall-names.list to 4.19. Use gen-libm-test.py to generate ulps table for manual. Add new ELF note types from Linux 4.19 to elf.h. Add IN_MASK_CREATE from Linux 4.19 to sys/inotify.h. Remove pre-Python-3.4 compatibility from build-many-glibcs.py. Patch to require Python 3.4 or later to build glibc. Use tempfile.TemporaryDirectory in conform/glibcconform.py. Convert linknamespace tests from Perl to Python. Update and correct SPARC configuration for supported socket syscalls (bug 23848). Disable -Wformat-overflow= warnings for some printf tests. Avoid printf ("%s", NULL) in posix/bug-regex22.c. Correct SH kernel-features.h undefines (bug 23862). Fix __ASSUME_MLOCK2 for ARM, MicroBlaze (bug 23867). Remove __ASSUME_SOCKETCALL. Replace conformtest.pl with conformtest.py. Update conform/Makefile mkdir commands. Remove redundant macro definitions from ia64 sfp-machine.h. Fix i686 build with GCC 9. Fix armv7 build with GCC 9. Fix sparc64 build with GCC 9. Add hidden_tls_def macros, fix powerpc-soft build with GCC 9. Fix mips build with GCC 9. Use unique identifiers in conformtest. Separate conformtest subtest generation and execution. Combine more conformtest tests into single execution of the compiler. Fix Arm __ASSUME_COPY_FILE_RANGE (bug 23915). Touch more glibc source files in build-many-glibcs.py. Fix Hurd build with read-only source directory. Do not copy glibc sources in build-many-glibcs.py. Replace gen-as-const.awk by gen-as-const.py. Make gen-as-const.py handle '--' consistently with awk script. Stop test-in-container trying to run other-OS binaries. Update miscellaneous files from upstream sources. Update timezone code from tzcode 2018g. Move tst-signal-numbers to Python. Use gen-as-const.py to process .pysym files. Remove x86 mathinline.h hypot inline. Do not clobber sp in _hurd_stack_setup. Remove x86 mathinline.h asinh, acosh, atanh inlines. Add test that MAP_* constants agree with kernel. Do not clobber r12 for ia64 syscalls. Remove __ASSUME_ST_INO_64_BIT. Remove x86 mathinline.h sinh, cosh, tanh inlines. Remove x86 mathinline.h. Require GCC 5 or later to build glibc (bug 23993). Update longlong.h. Update nios2, sparc32 localplt.data for difftime changes (bug 24023). Use Linux 4.20 in build-many-glibcs.py. Update timezone code from tzcode 2018i. Update copyright dates with scripts/update-copyrights. Update copyright dates not handled by scripts/update-copyrights. Update miscellaneous files from upstream sources. Update syscall-names.list for Linux 4.20. Add HWCAP_SSBS from Linux 4.20 to AArch64 bits/hwcap.h. Add PACKET_IGNORE_OUTGOING from Linux 4.20 to netpacket/packet.h. Add IPV6_MULTICAST_ALL from Linux 4.20 to bits/in.h. Update MIPS libm-test-ulps. Update Linux kernel version in tst-mman-consts.py. Update powerpc-nofpu libm-test-ulps. Use binutils 2.32 branch in build-many-glibcs.py. Justus Winter (1): hurd: Handle "pid" magical lookup retry Kemi Wang (1): Mutex: Add pthread mutex tunables Leonardo Sandoval (5): benchtests: Set float type on --threshold argument benchtests: keep comparing even if function timings do not match benchtests: include --stats parameter benchtests: send non-consumable data to stderr x86-64: Optimize strcat/strncat, strcpy/strncpy and stpcpy/stpncpy with AVX2 Mao Han (4): Update config.guess and config.sub to current versions. C-SKY: Add dynamic relocations to elf.h Add statx conditionals for wordsize-32 *xstat.c Add C-SKY port Martin Jansa (2): sysdeps/ieee754/soft-fp: ignore maybe-uninitialized with -O [BZ #19444] sysdeps/ieee754: prevent maybe-uninitialized errors with -O [BZ #19444] Martin Kuchta (1): pthread_cond_broadcast: Fix waiters-after-spinning case [BZ #23538] Martin Sebor (1): Add support for GCC 9 attribute copy. Mingli Yu (1): Linux gethostid: Check for NULL value from gethostbyname_r [BZ #23679] Moritz Eckert (1): malloc: Mitigate null-byte overflow attacks PanderMusubi (1): bs_BA: Fix a small typo in comment (bug 24011). Paul Clarke (1): powerpc: Fix tiny bug in strncmp.c Paul Eggert (21): regex: fix memory leak in Gnulib regex: Gnulib unibyte RRI uses bytes not chars regex: port Gnulib code to z/OS POSIX environment regex: fix uninitialized memory access Fix tzfile low-memory assertion failure Simplify tzfile fstat failure code Merge mktime, timegm from upstream Gnulib Fix mktime localtime offset confusion mktime fix for Gnulib + coreutils regex: __builtin_expect → __glibc_unlikely regex: simplify by using intprops.h mktime: fix EOVERFLOW bug mktime: new test for mktime failure mktime: simplify offset guess mktime: make more room for overflow mktime: fix bug with Y2038 DST transition mktime: fix non-EOVERFLOW errno handling mktime: DEBUG_MKTIME cleanup regex: fix storage-exhaustion error regex: simplify Gnulib port regex: improve Gnulib port to AIX Paul Pluzhnikov (4): Fix BZ#23400 (creating temporary files in source tree), and undefined behavior in test. [BZ #20271] Add newlines in __libc_fatal calls. stdlib: assert on NULL function pointer in atexit etc. [BZ #20544] Fix potential stack overflow [BZ #23490] Pochang Chen (1): malloc: Verify size of top chunk. Rafael Avila de Espindola (1): Simplify an #if #else #endif Rafael Ávila de Espíndola (6): Enable VDSO on x86_64 statically linked programs [BZ #19767] Enable VDSO on powerpc statically linked programs (bug 19767) Enable VDSO for static linking on aarch64 Enable VDSO on i386 statically linked programs Enable VDSO for static linking on arm Enable VDSO for static linking on mips Rafal Luzynski (12): ChangeLog: Fix an obvious typo. en_IN: Set the correct date format for "%x" (bug 17426). Indian and similar locales: Set the correct date format (bug 17426). Italian and Swiss locales: Use the correct separators (bug 10797). it_CH/it_IT locales: Correct some LC_TIME formats (bug 10425). kl_GL: Fix spelling of Sunday, should be "sapaat" (bug 20209). kl_GL: Update the month names and date formats (bug 23740). NEWS: Fix a minor typo ("incosistent" -> "inconsistent"). NEWS: Fix another typo ("multithread..." -> "multi-threaded..."). sq_AL: Use the correct date and time formats (bug 10496, 23724). Multiple locales: Use the correct 12-hour time formats (bug 10496). ChangeLog: Fix an obvious typo in the previous commit. Rajalakshmi Srinivasaraghavan (3): powerpc: Rearrange little endian specific files powerpc: Remove powerpc specific sinf and cosf optimization Speedup first memmem match Rogerio Alves (2): powerpc: Fix VSCR position in ucontext (bug 24088) powerpc: fix tst-ucontext-ppc64-vscr test for POWER 5/6. Samuel Thibault (36): hurd: Add missing symbols for proper libc_get/setspecific hurd: Avoid PLTs for __pthread_get/setspecific hurd: XFAIL absence of C11 threads implementation hurd: set interrupt timeout to 1 minute hurd: Return EIO on non-responding interrupted servers hurd: Fix race between calling RPC and handling a signal hurd: Fix cancellation just before RPC call hurd: Fix race between calling RPC and handling a signal hurd: return EIEIO instead of EIO hurd: Document how to translate EIEIO error message hurd: Fix build Merge branch 'master' of git://sourceware.org/git/glibc hurd: Fix errno* generation Merge branch 'master' into errno hurd: Add pci RPC stubs hurd: Support msync hurd: Fix last-minute refactoring Hurd: Implement chdir support in posix_spawn Hurd: Fix ulinks in fd table reallocation Hurd: export _hurd_port_move hurd: Document dtable_cloexec size convention. hurd: Fix spawni's user_link reallocation hurd: Fix build with GCC 9 hurd: Fix F_*LK* fcntl with __USE_FILE_OFFSET64 hurd: Support lockf at offset 0 with size 0 or 1. hurd: Fix returning value for fcntl(F_*LK*) htl: Fix comparing attr with default values Fix test-as-const-jmp_buf-ssp.c generation on gnu-i386 hurd: Implement support for posix_spawn_file_actions_addfchdir_np hurd: Fix linknamespace of spawni hurd: Fix 64bit fcntl lock implementation hurd: advertise *_setpshared as not supported hurd: Check at_flags passed to faccessat hurd: Support AT_EMPTY_PATH hurd: Fix initial sigaltstack state hurd: Fix initial sigaltstack state Sergi Almacellas Abellana (1): Currency symbol should not preceed amount for [BZ #23791] Siddhesh Poyarekar (14): Rename the glibc.tune namespace to glibc.cpu Add ChangeLog for the last commit [benchtests] Fix compare_strings.py for python2 benchtests: Clean up the alloc_bufs [aarch64] Fix value of MIN_PAGE_SIZE for testing [benchtests] Add mandatory attributes to workload tests [benchtests] Add workload test properties to schema [aarch64] Add an ASIMD variant of strlen for falkor Print strlen benchmark output in json Reallocate buffers for every run in strlen Update libc.pot Update translations Prepare for 2.29 release Tag 2.29 release Stefan Liebler (63): Test stdlib/test-bz22786 exits now with unsupported if malloc fails. Fix segfault in maybe_script_execute. S390: Regenerate ULPs. Adjust name of ld.so in test-container.c. Fix race in pthread_mutex_lock while promoting to PTHREAD_MUTEX_ELISION_NP [BZ #23275] S390: Regenerate ULPs. Add missing libnss_testX.so requirement for tst-nss-test3. S390: Add configure check to detect z10 as mininum architecture level set. S390: Use hwcap instead of dl_hwcap in ifunc-resolvers. S390: Unify 31/64bit memset. S390: Refactor memset ifunc handling. S390: Implement bzero with memset. S390: Unify 31/64bit memcmp. S390: Refactor memcmp ifunc handling. S390: Unify 31/64bit memcpy. S390: Refactor memcpy/mempcpy ifunc handling. S390: Remove s390 specific implementation of bcopy. S390: Use memcpy for forward cases in memmove. S390: Add configure check to detect z13 as mininum architecture level set. S390: Add z13 memmove ifunc variant. S390: Add z13 strstr ifunc variant. S390: Add z13 memmem ifunc variant. S390: Refactor strlen ifunc handling. S390: Refactor strnlen ifunc handling. S390: Refactor strcpy ifunc handling. S390: Refactor stpcpy ifunc handling. S390: Refactor strncpy ifunc handling. S390: Refactor stpncpy ifunc handling. S390: Refactor strcat ifunc handling. S390: Refactor strncat ifunc handling. S390: Refactor strcmp ifunc handling. S390: Refactor strncmp ifunc handling. S390: Refactor strchr ifunc handling. S390: Refactor strchrnul ifunc handling. S390: Refactor strrchr ifunc handling. S390: Refactor strspn ifunc handling. S390: Refactor strpbrk ifunc handling. S390: Refactor strcspn ifunc handling. S390: Refactor memchr ifunc handling. S390: Refactor rawmemchr ifunc handling. S390: Refactor memccpy ifunc handling. S390: Refactor memrchr ifunc handling. S390: Refactor wcslen ifunc handling. S390: Refactor wcsnlen ifunc handling. S390: Refactor wcscpy ifunc handling. S390: Refactor wcpcpy ifunc handling. S390: Refactor wcsncpy ifunc handling. S390: Refactor wcpncpy ifunc handling. S390: Refactor wcscat ifunc handling. S390: Refactor wcsncat ifunc handling. S390: Refactor wcscmp ifunc handling. S390: Refactor wcsncmp ifunc handling. S390: Refactor wcschr ifunc handling. S390: Refactor wcschrnul ifunc handling. S390: Refactor wcsrchr ifunc handling. S390: Refactor wcsspn ifunc handling. S390: Refactor wcspbrk ifunc handling. S390: Refactor wcscspn ifunc handling. S390: Refactor wmemchr ifunc handling. S390: Refactor wmemset ifunc handling. S390: Refactor wmemcmp ifunc handling. S390: Refactor gconv_simple ifunc handling. S390: Cleanup ifunc-resolve.h. Steve Ellcey (1): Remove extra space at end of line. Szabolcs Nagy (17): Clean up converttoint handling and document the semantics Add new exp and exp2 implementations Missed ChangeLog Add new log implementation Add new log2 implementation Add new pow implementation Fix the documentation comment of checkint in powf Increase timeout of libio/tst-readline Increase timeout of nss/tst-nss-files-hosts-multi i64: fix missing exp2f, log2f and powf symbols in libm.a [BZ #23822] Remove the error handling wrapper from exp and exp2 Remove the error handling wrapper from log Remove the error handling wrapper from log2 Remove the error handling wrapper from pow Fix powf overflow handling in non-nearest rounding mode [BZ #23961] AArch64: Update dl-procinfo.c with new HWCAP Fix the manual for old texinfo TAMUKI Shoichi (4): strftime: Consequently use the "L_" macro with character literals manual: Fix the wording to "alternative" rather than "alternate" strftime: Set the default width of "%Ey" to 2 [BZ #23758] strftime: Pass the additional flags from "%EY" to "%Ey" [BZ #24096] Tobias Klauser (1): Add PF_XDP, AF_XDP and SOL_XDP from Linux 4.18 to bits/socket.h. Tulio Magno Quites Machado Filho (4): Fix _dl_profile_fixup data-dependency issue (Bug 23690) powerpc: Add missing CFI register information (bug #23614) Print cache size and geometry auxv types on LD_SHOW_AUXV=1 Add XFAIL_ROUNDING_IBM128_LIBGCC to more fma() tests Uroš Bizjak (1): alpha: Fix __remqu corrupting $f3 register Wilco Dijkstra (13): Simplify and speedup strstr/strcasestr first match Improve performance of sincosf Improve performance of sinf and cosf Fix spaces in x86_64 ULP file Use generic sinf/cosf in lgammaf_r Speedup tanf range reduction Update NEWS for sinf improvements Remove unused math files Fix strstr bug with huge needles (bug 23637) [AArch64] Adjust writeback in non-zero memset Refactor string benchtests Improve bench-strlen [AArch64] Add ifunc support for Ares Zack Weinberg (11): [manual] Job control is no longer optional. Use STRFMON_LDBL_IS_DBL instead of __ldbl_is_dbl. Add __vfscanf_internal and __vfwscanf_internal with flags arguments. Use SCANF_ISOC99_A instead of _IO_FLAGS2_SCANF_STD. Use SCANF_LDBL_IS_DBL instead of __ldbl_is_dbl. Add __v*printf_internal with flags arguments Add __vsyslog_internal, with same flags as __v*printf_internal. Use PRINTF_FORTIFY instead of _IO_FLAGS2_FORTIFY (bug 11319) Use PRINTF_LDBL_IS_DBL instead of __ldbl_is_dbl. Use C99-compliant scanf under _GNU_SOURCE with modern compilers. Tests for minimal signal handler functionality in MINSIGSTKSZ space. Zong Li (3): elf: Fix the ld flags not be applied to tst-execstack-mod.so soft-fp: Use temporary variable in FP_FRAC_SUB_3/FP_FRAC_SUB_4 soft-fp: Add implementation for 128 bit self-contained ----------------------------------------------------------------------- The master branch has been updated by Alexandra Hajkova <ahajkova@sourceware.org>: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=481c30cb9573a280649fbf27251e6a0f4af1b2b1 commit 481c30cb9573a280649fbf27251e6a0f4af1b2b1 Author: Alexandra H�jkov� <ahajkova@redhat.com> Date: Thu May 9 13:51:40 2019 +0200 elf: Add tst-ldconfig-bad-aux-cache test [BZ #18093] This test corrupts /var/cache/ldconfig/aux-cache and executes ldconfig to check it will not segfault using the corrupted aux_cache. The test uses the test-in-container framework. Verified no regressions on x86_64. |