aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-17Get rid of format warning in bug-vfprintf-nargs.c.Stefan Liebler
2014-12-17Get rid of format warning in tst-widetext.c.Stefan Liebler
2014-12-17Fix printf format errorAndreas Schwab
2014-12-16Use PTR_MANGLE on libgcc unwinder function pointers.Roland McGrath
2014-12-16Revert "Use pragmas rather than makefiles for necessary options for unwind ↵Roland McGrath
code." This reverts commit c324fcfe75c3976ae0b16943df00710e1d0d74f7.
2014-12-16Use pragmas rather than makefiles for necessary options for unwind code.Roland McGrath
2014-12-16Fix x86_64 memrchr namespace (bug 17719).Joseph Myers
On x86_64, memrchr (not a standard function) is defined as a strong symbol, instead of a weak alias of __memrchr as on other architectures. This results in linknamespace test failures from the use of __memrchr from dirname. (Not a conformance issue because of the mem* reservation, but contrary to glibc conventions.) This patch makes x86_64 follow other architectures by defining memrchr as a weak alias. Tested for x86_64 (testsuite, and that disassembly of installed shared libraries is unchanged by the patch). [BZ #17719] * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and define as weak alias of __memrchr. (__memrchr): Do not define as strong alias of memrchr. * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace): Remove variable. (test-xfail-UNIX98/libgen.h/linknamespace): Likewise. (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise. (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
2014-12-16Fix resolver if_* namespace (bug 17717).Joseph Myers
Resolver code, brought in by pthreads (at least), uses if_* interfaces that weren't in POSIX before 2001, resulting in linknamespace failures. This patch changes those interfaces to be weak aliases of __if_* and makes the resolver use __if_* directly. Tested for x86_64 (testsuite, and that disassembly of installed shared libraries is unchanged by this patch). [BZ #17717] * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and define as weak alias of __if_nametoindex. Use libc_hidden_weak. (if_indextoname): Rename to __if_indextoname and define as weak alias of __if_indextoname. Use libc_hidden_weak. (if_freenameindex): Rename to __if_freenameindex and define as weak alias of __if_freenameindex. (if_nameindex): Rename to __if_nameindex and define as weak alias of __if_nameindex. * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to __if_nametoindex and define as weak alias of __if_nametoindex. Use libc_hidden_weak. (if_freenameindex): Rename to __if_freenameindex and define as weak alias of __if_freenameindex. (if_nameindex): Rename to __if_nameindex and define as weak alias of __if_nameindex. (if_indextoname): Rename to __if_indextoname and define as weak alias of __if_indextoname. Use libc_hidden_weak. * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to __if_nametoindex and define as weak alias of __if_nametoindex. Use libc_hidden_weak. (if_freenameindex): Rename to __if_freenameindex and define as weak alias of __if_freenameindex. Use libc_hidden_weak. (if_nameindex_netlink): Use __if_freenameindex instead of if_freenameindex. (if_nameindex): Rename to __if_nameindex and define as weak alias of __if_nameindex. Use libc_hidden_weak. (if_indextoname): Rename to __if_indextoname and define as weak alias of __if_indextoname. Use libc_hidden_weak. * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use libc_hidden_proto. [!_ISOMAC] (__if_freenameindex): Likewise. * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of if_nametoindex. * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove variable. (test-xfail-XPG4/pwd.h/linknamespace): Likewise. (test-xfail-UNIX98/aio.h/linknamespace): Likewise. (test-xfail-UNIX98/grp.h/linknamespace): Likewise. (test-xfail-UNIX98/pthread.h/linknamespace): Likewise. (test-xfail-UNIX98/pwd.h/linknamespace): Likewise. (test-xfail-UNIX98/sched.h/linknamespace): Likewise. (test-xfail-UNIX98/time.h/linknamespace): Likewise.
2014-12-16Remove some semaphore.h linknamespace XFAILs.Joseph Myers
Roland's recent sem_* changes introduced some XPASSes for semaphore.h linknamespace tests by removing a non-static variable "mountpoint". This patch removes the XFAILs for the fixed bug. Tested for x86_64. * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace): Remove variable. (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise. (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
2014-12-16Fix the 'array subscript is above array bounds' warning correctlySiddhesh Poyarekar
Use DIAG_IGNORE_NEEDS_COMMENT instead since the compiler should have seen that NS never goes beyond MAXNS.
2014-12-16Fix 'array subscript is above array bounds' warning in res_send.cSiddhesh Poyarekar
I see this warning in my build on F21 x86_64, which seems to be due to a weak check for array bounds. Fixed by making the bounds check stronger. This is not an actual bug since nscount is never set to anything greater than MAXNS. The compiler however does not know this, so we need the stronger bounds check to quieten the compiler.
2014-12-16Modify libio/tst-fopenloc.c to use test-skeleton.cArjun Shankar
This test would earlier fail when run under test-skeleton.c due to bug #17522 in 'fputws'. That bug is now fixed and so this test may be modified.
2014-12-16Modify stdlib/tst-bsearch.c to use test-skeleton.cArjun Shankar
This test used to define a 'struct entry' that conflicts with the definition in search.h included in test-skeleton. The struct is now renamed 'item'.
2014-12-16Modify stdio-common/tst-fseek.c to use test-skeleton.cArjun Shankar
This test needs a TIMEOUT longer than the default 2 seconds since it sleeps twice for a second each.
2014-12-16Ignore warning in string/tester.c.Torvald Riegel
2014-12-16Fix warning in misc/tst-mntent2.c.Torvald Riegel
2014-12-16Fix warning in elf/tst-unique4lib.cc.Torvald Riegel
2014-12-16Avoid infinite loop in nss_dns getnetbyname [BZ #17630]Florian Weimer
2014-12-16stdio-common/Makefile: readd bug26 testcaseAllan McRae
This testcase was accidentally removed in commit a5357b7c.
2014-12-16Return allocated array instead of unallocated.Ondřej Bílka
In locale/programs/ld-ctype.c we returned array that was on stack. Fixed by returning static array instead.
2014-12-15Add comments for the generic lowlevellock implementation.Torvald Riegel
Patch by Bernard Ogden <bernie.ogden@linaro.org>.
2014-12-15Fix nptl/tst-sem4: always start with a fresh semaphore.Torvald Riegel
2014-12-15Fix nptl/tst-mutex5.c: Do not skip tests if elision is enabled.Torvald Riegel
2014-12-15stdio-common: Include <libc-internal.h> in some testsAdhemerval Zanella
This patch adds the missing libc-internal.h include on test-vprintf.c tst-sprintf.c.
2014-12-15Remove custom pthread_once implementation on s390.Torvald Riegel
2014-12-15CVE-2012-3406: Stack overflow in vfprintf [BZ #16617]Jeff Law
A larger number of format specifiers coudld cause a stack overflow, potentially allowing to bypass _FORTIFY_SOURCE format string protection.
2014-12-15Bump required version of texinfo to 4.7Will Newton
It seems we require texinfo 4.7 for the --plaintext option, so document that and check for the correct version in configure. ChangeLog: 2014-12-15 Will Newton <will.newton@linaro.org> * manual/install.texi: Bump required version of texinfo to 4.7 from 4.5. * INSTALL: Regenerated. * configure.ac: Check for makeinfo version 4.7 and above. * configure: Regenerated.
2014-12-12NPTL: Refactor named semaphore code to use shm-directory.hRoland McGrath
2014-12-12NPTL: Add stubs for Linux-only extension functions.Roland McGrath
2014-12-12Fix NPTL build for !__ASSUME_SET_ROBUST_LIST case.Roland McGrath
2014-12-12resolv: Suppress maybe uninitialized warningStefan Liebler
In send_vc function at resolv/res_send.c, There is the following warning on some architectures: 'resplen' may be used uninitialized in this function [-Wmaybe-uninitialized] And this is a false positive. This patch suppress the compiler warning.
2014-12-12Get rid of warning comparision will always evaluate as trueStefan Liebler
2014-12-11Fix for test "malloc_usable_size: expected 7 but got 11"James Lemke
[BZ #17581] Revert this fix while investigating a problem.
2014-12-11Refactor shm_{open,unlink} code to separate Linux-specific directory choice ↵Roland McGrath
from POSIX-generic code.
2014-12-12* Fix SH specific compiler warnings which are for integer-pointerKaz Kojima
type conversions without cast.
2014-12-11Move semaphore.h to sysdeps/pthread/.Joseph Myers
Carlos reported failures in conform/ tests in environments where the compiler used could only find headers in glibc's source and build trees, not any previously installed headers <https://sourceware.org/ml/libc-alpha/2014-09/msg00040.html>. This patch moves nptl/semaphore.h to sysdeps/pthread/semaphore.h so that it can be found by builds from all glibc subdirectories; it's not in any way NPTL-specific. (I left the Makefile setting to install this header in nptl/, but maybe it should move as well - it's just not clear to me what ifeq ($(subdir),...) conditional should be used to select the directory to associate the header with for installation purposes. The path in the toplevel Makefile used for begin-end-check also remains hardcoded; it's a known todo issue to rework that test to run in each subdirectory checking the headers installed from that subdirectory, rather than a separate hardcoded list.) Tested for x86_64 (testsuite, and that installed stripped shared libraries are unchanged by the patch). I did *not* test a configuration such as that in which Carlos saw failure. * nptl/semaphore.h: Move to ... * sysdeps/pthread/semaphore.h: ... here. * Makefile (installed-headers): Change nptl/semaphore.h to sysdeps/pthread/semaphore.h.
2014-12-11Suppress -Wformat-security in tst-error1.c.Roland McGrath
2014-12-11Eliminate -Wno-format from printf/scanf tests.Roland McGrath
2014-12-11Add more headers to include/ for conform tests.Joseph Myers
Carlos reported failures in conform/ tests in environments where the compiler used could only find headers in glibc's source and build trees, not any previously installed headers <https://sourceware.org/ml/libc-alpha/2014-09/msg00040.html>. This patch adds wrappers for two of the affected headers to include/, which is the normal way to make headers visible when building or testing in directories other than the one containing the header (I suppose these headers weren't needed in any such directories except conform/, or other build or test failures would have resulted). I believe the same issue applies at least to regexp.h and re_comp.h - we don't currently have conform/ expectations for those, but when such expectations are added we'll also need to add header wrappers. Tested for x86_64 (testsuite, and that installed stripped shared libraries are unchanged by the patch). I did *not* test a configuration such as that in which Carlos saw failure. * include/cpio.h: New file. * include/fmtmsg.h: Likewise.
2014-12-11Clean up localedata tests printf formats, don't use -Wno-format.Joseph Myers
2014-12-11Fix -Wformat-security warnings in posix/regexbug1.cRoland McGrath
2014-12-11tile: add inhibit_loop_to_libcall to string functionsChris Metcalf
Without this, on gcc 4.8.2 the built glibc crashes when memcpy or memset are invoked, since they call themselves recursively. See commit 85c2e6110c9a01ec for the generic inhibit_loop_to_libcall.
2014-12-11Fix __sendmmsg prototype guardsAdhemerval Zanella
Add __USE_GNU guards on 'socket/sys/socket.h' __sendmmsg prototype.
2014-12-11 * sysdeps/mips/dl-trampoline.c: Modify switch expression to haveSteve Ellcey
integer value instead of boolean.
2014-12-112014-12-11 Steve Ellcey <sellcey@imgtec.com>Steve Ellcey
* malloc/malloc.c: Fix powerof2 check.
2014-12-11Get rid of warning inlining failed in call to maybe_swap_uint32Stefan Liebler
2014-12-11S/390: Get rid of assembler warning value truncated.Stefan Liebler
2014-12-11Constify string parametersAndreas Schwab
2014-12-11powerpc: Fix lgammal_r overflow warningsAdhemerval Zanella
ldbl-128ibm uses ldbl-128 e_lgammal_r implementation as is, however some constants definitions overflows for IBM long double range. This patch suppress the compiler warnings until the ldbl-128ibm implementation is fixed.
2014-12-11Remove obsolete commentAndreas Schwab