about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Install nscd systemd files allan/config-filesAllan McRae2015-02-085-0/+36
| | | | | Install nscd systemd services file and tmpfile when glibc is configured with --with-systemdsystemunitdir=<dir>
* Install config filesMike Frysinger2015-02-082-0/+8
| | | | | glibc comes with a bunch of config files that every distro hand installs because glibc itself doesn't take care of it. Update glibc to do the work.
* hurd: Fix abi-tag, following ba90e05Samuel Thibault2015-02-082-1/+2
|
* hurd: fix tls.h buildSamuel Thibault2015-02-082-0/+3
|
* hurd: Ignore bytes beyond sockaddr length for AF_UNIXSamuel Thibault2015-02-085-8/+22
|
* Add ersatz _Static_assert on older C hostsPaul Eggert2015-02-073-1/+14
| | | | | * misc/sys/cdefs.h (_Static_assert): Define a substitute, if on a pre-C11 C platform that is not known to support _Static_assert.
* hurd: fix compilation of signal.h in C++Samuel Thibault2015-02-072-4/+5
|
* hurd: fix compilation of signal.h in C++Samuel Thibault2015-02-072-1/+3
|
* hurd: add basic types for ioctlsSamuel Thibault2015-02-072-1/+30
|
* hurd: support mmap with PROT_NONESamuel Thibault2015-02-072-2/+10
|
* hurdselect: remove dead code.Samuel Thibault2015-02-072-7/+2
| | | | | | | | | | | | | | | | | | This removes code which actually never happens, and is already taken care of in the function. This is in the second part of select, when the __mach_msg() function over the portset has returned something else than MACH_MSG_SUCCESS. I guess in the past the value returned by __mach_msg() was stored in err, so this code was necessary to set back err to 0, but now it is stored in msgerr, so err is already still 0 by default. It can thus never contain MACH_RCV_TIMED_OUT, i.e. the code is dead. The first case mentioned in the comment is already handled: on time out with no message, err is already still the default 0. On time out due to poll, err would still be 0, unless some of the io_select RPCs has returned EINTR, in which case it contains EINTR. If any other io_select RPCs had returned a proper answer, got!=0, and thus err is set to 0 just below. The code is thus indeed not useful any more.
* hurd: fix sigstate lockingSamuel Thibault2015-02-072-2/+6
| | | | | | | | | It looks like _hurd_thread_sigstate used to return with the sigstate lock held long ago, but since that's no longer the case, don't unlock something that isn't locked. Note that it's unlikely this change fixes anything in practice since its current implementation (on i386) makes this call a nop.
* hurdselect: Let select get interrupted by signalsSamuel Thibault2015-02-072-1/+6
| | | | | We need to set MACH_RCV_INTERRUPT to avoid __mach_msg just looping on signals, and then we can handle the interruption.
* hurd: map nice levels 1-to-1 with Mach prio levelsSamuel Thibault2015-02-072-2/+5
|
* hurd: allow poll() array bigger than FD_SETSIZESamuel Thibault2015-02-072-1/+3
|
* hurd: fix f?chflags prototypes, declare them and their flagsSamuel Thibault2015-02-076-7/+45
|
* hurd: fix build with pthread aioSamuel Thibault2015-02-072-1/+9
|
* ARM: Add missing sfi_breg in LDR_GLOBAL macro.Roland McGrath2015-02-062-2/+7
|
* NPTL: Conditionalize some sanity tests for SIGCANCEL/SIGSETXID.Roland McGrath2015-02-063-0/+11
|
* Conditionalize use of SIGRTMIN in nptl/tst-locale1.c.Roland McGrath2015-02-062-1/+7
|
* Don't set unused field in rt/tst-timer2.Roland McGrath2015-02-062-2/+4
|
* NPTL: Build tests using clone directly only for Linux.Roland McGrath2015-02-066-8/+24
|
* Use signal rather than sigaction in nptl/tst-cleanup2.Roland McGrath2015-02-062-8/+6
|
* Conditionalize some tests' use of SA_SIGINFO.Roland McGrath2015-02-064-2/+20
|
* Do not use SA_NOCLDWAIT in tst-pselect.Roland McGrath2015-02-062-2/+3
|
* Move tst-getlogin to login/ subdirectory.Roland McGrath2015-02-064-2/+7
|
* Fix libio/tst-atime not to presume ST_NOATIME exists.Roland McGrath2015-02-062-3/+5
|
* Fix dirent/tst-fdopendir not to presume O_NOATIME exists.Roland McGrath2015-02-062-0/+5
|
* Fix nptl/tst-kill5 not to presume SIGRTMAX exists.Roland McGrath2015-02-062-1/+4
|
* Clean up nptl/tst-join5 use of nanosleep.Roland McGrath2015-02-062-7/+11
|
* Clean up NPTL system to be compat-only.Roland McGrath2015-02-062-8/+44
|
* Clean up NPTL longjmp to be compat-only.Roland McGrath2015-02-062-6/+54
|
* Clean up NPTL fork to be compat-only.Roland McGrath2015-02-063-4/+57
|
* x86: Clean up __vdso_clock_gettime variable.Roland McGrath2015-02-067-232/+20
|
* Exclude rpcent functions and NSS backends for rpc, key when excluding sunrpc.Roland McGrath2015-02-0613-12/+58
|
* Clean up sysdep-dl-routines variable.Roland McGrath2015-02-0614-26/+33
|
* NEWS: Fix spelling.Carlos O'Donell2015-02-061-1/+1
|
* NEWS: Also mention CVE-2015-1473Florian Weimer2015-02-061-4/+5
|
* soft-fp: Fix _FP_FMA when product is zero and third argument is finite (bug ↵Joseph Myers2015-02-065-0/+381
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 17932). soft-fp's _FP_FMA fails to set the result's exponent for cases where the result of the multiplication is 0, yielding incorrect (arbitrary, depending on uninitialized values) results for those cases. This affects libm for architectures using soft-fp to implement fma. This patch adds the exponent setting and tests for this case. Tested for ARM soft-float (which uses soft-fp fma), x86_64 and x86 (to verify not introducing new libm test failures there). (This bug showed up in testing my patch to move the Linux kernel to current soft-fp. math/Makefile has "override CFLAGS += -Wno-uninitialized" which would have stopped compiler warnings from showing up this problem, although I wouldn't be surprised if removing that shows spurious warnings from this code, if the compiler fails to follow that various cases where the exponent is uninitialized don't need it initialized because the class is set to a value meaning the uninitialized exponent isn't used.) [BZ #17932] * soft-fp/op-common.h (_FP_FMA): Set exponent of result in case where multiplication results in zero and third argument is finite and nonzero. * math/auto-libm-test-in: Add more tests of fma. * math/auto-libm-test-out: Regenerated.
* soft-fp: Refine FP_EX_DENORM handling for comparisons.Joseph Myers2015-02-062-4/+51
| | | | | | | | | | | | | | | | | | | | | | In <https://sourceware.org/ml/libc-alpha/2014-09/msg00488.html>, I noted that comparisons in soft-fp did not set FP_EX_DENORM unless denormal operands were flushed to zero. This patch fixes soft-fp to check for denormal operands for comparisons and set that exception whenever FP_EX_DENORM is not zero. In particular, for the one architecture for which the Linux kernel defines FP_EX_DENORM (alpha), this corresponds to the existing logic for comparisons and so allows that logic to be replaced by a simple call to FP_CMP_D when soft-fp is updated in the kernel. Tested for powerpc (e500) that installed stripped shared libraries are unchanged by this patch. * soft-fp/op-common.h (_FP_CMP_CHECK_DENORM): New macro. (_FP_CMP_CHECK_FLUSH_ZERO): Likewise. (_FP_CMP): Use_FP_CMP_CHECK_DENORM and _FP_CMP_CHECK_FLUSH_ZERO. (_FP_CMP_EQ): Likewise. (_FP_CMP_UNORD): Use _FP_CMP_CHECK_DENORM.
* soft-fp: Support floating-point extensions without quieting sNaNs.Joseph Myers2015-02-062-4/+16
| | | | | | | | | | | | | | | | | | | | | | | One special case needed in soft-fp to replace the old version in the Linux kernel is extending from a narrower floating-point format to a wider one without quieting signaling NaNs. (This is for arch/powerpc/math-emu/lfs.c, where previously it used the old FP_CONV which didn't do anything special for NaNs, then handled packing specially for NaNs to avoid quieting at packing time, and discarded the exceptions from unpacking.) This patch accordingly refactors FP_EXTEND, creating a separate _FP_EXTEND_CNAN that offers a choice of how NaNs are handled, with FP_EXTEND reimplemented as a wrapper that provides the common case of the IEEE operation that does quiet signaling NaNs and raise exceptions for them. Tested for powerpc (e500) that installed stripped shared libraries are unchanged by this patch. * soft-fp/op-common.h (FP_EXTEND): Rename to _FP_EXTEND_CNAN with extra argument CHECK_NAN. Redefine as wrapper around _FP_EXTEND_CNAN.
* Fix missing ChangeLog attribution.Carlos O'Donell2015-02-061-0/+1
|
* Open development for 2.22. glibc-2.21.90Carlos O'Donell2015-02-061-2/+2
|
* Update version.h and include/features.h for 2.21 release glibc-2.21Carlos O'Donell2015-02-063-3/+7
|
* hppa: Sync with pthread.h.Carlos O'Donell2015-02-062-1/+1150
| | | | | | | | This reverts part of the previous commit to refactor pthread.h. The refactoring must be done by having pthread.h include arch bits headers, not the other way around. Then hppa provides the arch bits header. For now we synchronzie again with pthread.h and include the entire contents in the hppa copy.
* CVE-2015-1472: wscanf allocates too little memoryPaul Pluzhnikov2015-02-064-15/+62
| | | | | | | | | | | BZ #16618 Under certain conditions wscanf can allocate too little memory for the to-be-scanned arguments and overflow the allocated buffer. The implementation now correctly computes the required buffer size when using malloc. A regression test was added to tst-sscanf.
* glibc 2.21 pre-release update.Carlos O'Donell2015-02-0540-46505/+67618
| | | | | | | | | | | | Update all translations. Update contributions in the manual. Update installation notes with information about newest working tools. Reconfigure using exactly autoconf 2.69. Regenerate INSTALL.
* hppa: Remove warnings and fix conformance errors.Carlos O'Donell2015-02-0514-1212/+151
| | | | | | | | | | | | | | | | | (1) Fix warnings. This is a bulk update to fix all the warnings that were causing build failures with -Werror on hppa. The most egregious problems are in dl-fptr.c which needs to be entirely rewritten, thus I've used -Wno-error for that. (2) Fix conformance errors. The sysdep.c file had __syscall_error and syscall in one file which caused conformance issues by including syscall when __syscall_error was linked to. The fix is obviously to split the file and use syscall.c to implement syscall.
* Function name typo error in non-PIC case, fixed in this patch.Chung-Lin Tang2015-02-052-1/+6
|
* Fix two bugs in sparc atomics.David S. Miller2015-01-312-7/+14
| | | | | | | | * sysdeps/sparc/sparc32/bits/atomic.h (__sparc32_atomic_do_unlock24): Put the memory barrier before the unlock not after it. (__v9_compare_and_exchange_val_32_acq): Use unions to avoid getting volatile register usage warnings from the compiler.